:root {
  --cream: #fffaf5;
  --paper: #fffefd;
  --blush: #f6dce3;
  --blush-deep: #b96f82;
  --peach: #f8dfca;
  --sage: #d8e6d5;
  --sage-deep: #526d58;
  --lavender: #e9e3f4;
  --ink: #3f413e;
  --muted: #73766f;
  --line: #e9e2da;
  --danger: #9c4f58;
  --shadow: 0 18px 50px rgba(84, 65, 60, 0.09);
  --radius: 22px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.65 var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(3rem, 7vw, 6.1rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.3rem, 4vw, 4rem); letter-spacing: -0.04em; }
h3 { font-size: 1.5rem; }
.container { width: var(--container); margin-inline: auto; }
.section { padding-block: clamp(76px, 10vw, 130px); }
.section--tinted { background: var(--cream); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.eyebrow { margin-bottom: 14px; color: var(--sage-deep); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }

.site-header, .admin-header { position: relative; z-index: 20; display: flex; align-items: center; justify-content: space-between; min-height: 88px; padding: 18px max(24px, calc((100vw - 1160px) / 2)); background: rgba(255, 254, 253, .94); border-bottom: 1px solid var(--line); }
.site-header { position: sticky; top: 0; transition: background .22s ease, box-shadow .22s ease, transform .24s ease; }
.site-header.is-scrolled { background: rgba(255, 254, 253, .9); box-shadow: 0 12px 32px rgba(70, 57, 52, .08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.site-header.is-hidden { transform: translateY(-100%); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1; }
.brand__mark { display: grid; width: 42px; aspect-ratio: 1; place-items: center; border: 1px solid #c896a3; border-radius: 50% 50% 46% 54%; color: var(--blush-deep); font: 600 1.35rem var(--serif); transform: rotate(-7deg); }
.brand__mark::first-letter { transform: rotate(7deg); }
.brand strong { display: block; font: 600 1.25rem var(--serif); letter-spacing: .01em; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: .61rem; letter-spacing: .2em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 28px; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { position: relative; font-size: .88rem; text-decoration: none; }
.site-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--blush-deep); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a.is-current::after { transform: scaleX(1); }
.nav-dropdown { position: relative; min-width: 0; }
.nav-dropdown__button { position: relative; display: inline-flex; padding: 0; align-items: center; gap: 7px; background: transparent; border: 0; cursor: pointer; font-size: .88rem; }
.nav-dropdown__button::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--blush-deep); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.nav-dropdown__button:hover::after, .nav-dropdown__button.is-current::after, .nav-dropdown.is-open .nav-dropdown__button::after { transform: scaleX(1); }
.nav-dropdown__chevron { color: var(--sage-deep); font-size: .78rem; transform: translateY(-1px); transition: transform .2s ease; }
.nav-dropdown.is-open .nav-dropdown__chevron { transform: translateY(1px) rotate(180deg); }
.nav-dropdown__menu { position: absolute; top: calc(100% + 18px); left: 50%; display: grid; width: max-content; max-width: calc(100vw - 32px); min-width: 240px; padding: 10px; background: rgba(255, 254, 253, .98); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translate(-50%, -8px); transition: opacity .18s ease, transform .18s ease; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown__menu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--ink); font-size: .86rem; text-decoration: none; white-space: nowrap; }
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a.is-current { background: var(--cream); color: var(--sage-deep); }
.menu-button { display: none; padding: 8px; background: none; border: 0; }
.menu-button span { display: block; width: 25px; height: 1px; margin: 5px; background: var(--ink); }
.language-toggle { display: grid; width: 42px; height: 42px; padding: 0; place-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; color: var(--sage-deep); font-size: .72rem; font-weight: 600; letter-spacing: .06em; transition: background .2s ease, border-color .2s ease; }
.language-toggle:hover { background: var(--sage); border-color: var(--sage); }

.hero { position: relative; min-height: min(760px, calc(100vh - 88px)); overflow: hidden; background: #f6eee5; }
.hero__image { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255, 250, 245, .74) 0%, rgba(255, 250, 245, .42) 36%, transparent 62%); content: ""; }
.hero__content { position: relative; z-index: 2; width: min(630px, calc(100% - 40px)); padding: clamp(100px, 14vh, 160px) 0 80px max(20px, calc((100vw - 1160px) / 2)); }
.hero__content h1 { max-width: 630px; margin-bottom: 24px; }
.hero__content h1 em { display: inline-block; }
.hero__line { display: block; white-space: nowrap; }
html[lang="vi"] .hero__content .eyebrow { max-width: 100%; font-size: .64rem; line-height: 1.55; letter-spacing: .11em; white-space: nowrap; }
html[lang="vi"] .hero__content h1 { max-width: 560px; font-size: clamp(2.7rem, 4.7vw, 4.5rem); line-height: 1.04; }
html[lang="vi"] .hero__content > p:not(.eyebrow) { max-width: 480px; font-size: 1rem; }
.hero__content h1 em { color: var(--blush-deep); font-weight: inherit; }
.hero__content > p:not(.eyebrow) { max-width: 520px; color: #5c5e59; font-size: 1.12rem; }
.hero__copy { white-space: nowrap; }
.hero__note { position: absolute; z-index: 2; right: max(24px, calc((100vw - 1160px) / 2)); bottom: 30px; margin: 0; padding-left: 30px; color: #64645f; font: italic 1rem/1.4 var(--serif); }
.hero__note::before { position: absolute; top: 50%; left: 0; width: 20px; border-top: 1px solid; content: ""; }
.button-row { display: flex; align-items: center; gap: 26px; margin-top: 35px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 24px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-weight: 600; text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .6; transform: none; }
.button--primary { background: var(--sage-deep); color: white; box-shadow: 0 8px 20px rgba(82, 109, 88, .15); }
.button--primary:hover { background: #405946; }
.button--light { background: var(--paper); color: var(--ink); }
.button--outline { background: transparent; border-color: #cfc8c0; }
.button--small { min-height: 40px; padding: 8px 18px; }
.button--full { width: 100%; }
.text-link { font-size: .9rem; font-weight: 600; text-underline-offset: 5px; }
.button--nowrap, .text-link--nowrap { white-space: nowrap; }

.reveal-on-scroll { opacity: 0; filter: blur(10px); transform: translate3d(0, 26px, 0) scale(.985); transition: opacity .75s ease, filter .75s ease, transform .75s cubic-bezier(.2, .72, .18, 1); transition-delay: var(--reveal-delay, 0ms); will-change: opacity, filter, transform; }
.reveal-on-scroll.is-visible { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
.product-card.reveal-on-scroll.is-visible:hover { transform: translateY(-5px); }
.contact-link.reveal-on-scroll.is-visible:hover { transform: translateY(-3px); }

.intro { max-width: 780px; text-align: center; }
.intro p:last-child { max-width: 660px; margin-inline: auto; color: var(--muted); font-size: 1.08rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-grid--shop { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.product-card { position: relative; display: flex; overflow: hidden; flex-direction: column; background: var(--paper); border: 1px solid rgba(223, 214, 204, .8); border-radius: var(--radius); box-shadow: 0 8px 28px rgba(83, 67, 61, .05); transition: transform .25s ease, box-shadow .25s ease; }
.product-card__details { display: flex; width: 100%; height: 100%; padding: 0; appearance: none; cursor: pointer; flex: 1; flex-direction: column; background: transparent; border: 0; color: inherit; font: inherit; text-align: left; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.product-card__image-wrap { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; flex: 0 0 auto; background: var(--cream); contain: layout paint; touch-action: pan-y; }
.product-card__image { position: absolute; inset: 0; display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: cover; object-position: center; transition: transform .45s ease; }
.product-card:hover .product-card__image { transform: scale(1.025); }
.product-card__body { display: flex; padding: 23px; flex: 1; flex-direction: column; }
.product-card__body h3 { margin: 10px 0 9px; }
.product-card__body p { min-height: 52px; margin-bottom: 18px; color: var(--muted); font-size: .9rem; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.product-card__meta strong { color: var(--ink); font-size: .9rem; letter-spacing: 0; }
.badge { position: absolute; top: 14px; left: 14px; padding: 6px 11px; border-radius: 999px; font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.badge--featured { background: rgba(255, 254, 253, .92); color: var(--blush-deep); }
.badge--sold { top: auto; bottom: 14px; background: rgba(63, 65, 62, .88); color: white; }
.product-card__details:focus-visible { outline: 3px solid rgba(82, 109, 88, .26); outline-offset: -3px; }
.stock { margin-top: auto; font-size: .76rem; font-weight: 600; }
.stock::before { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; content: ""; }
.stock--in { color: var(--sage-deep); }.stock--in::before { background: #78987f; }.stock--out { color: var(--muted); }.stock--out::before { background: #aaa; }

.flower-carousel { overflow: hidden; padding-block: 18px 8px; }
.flower-carousel__viewport { margin: -18px -10px -10px; padding: 26px 10px 10px; overflow: hidden; cursor: grab; touch-action: pan-y; }
.flower-carousel__viewport.is-dragging { cursor: grabbing; }
.flower-carousel__track { display: flex; align-items: stretch; gap: 18px; will-change: transform; }
.flower-carousel .product-card { flex: 0 0 calc((100% - 108px) / 5); transform-origin: center bottom; user-select: none; }
.flower-carousel .product-card:hover { transform: translateY(-7px) scale(1.025); }
.flower-carousel .product-card__image-wrap { aspect-ratio: 4 / 4.6; }
.flower-carousel .product-card__body { padding: 18px; }
.flower-carousel .product-card__body h3 { font-size: 1.14rem; }
.flower-carousel .product-card__body p { display: -webkit-box; min-height: 44px; overflow: hidden; font-size: .82rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.flower-carousel .product-card__meta { align-items: flex-start; gap: 10px; flex-direction: column; }
.product-grid--shop .product-card__image-wrap { aspect-ratio: 4 / 4.6; }
.product-grid--shop .product-card__body { padding: 18px; }
.product-grid--shop .product-card__body h3 { font-size: 1.14rem; }
.product-grid--shop .product-card__body p { display: -webkit-box; min-height: 44px; overflow: hidden; font-size: .82rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-grid--shop .product-card__meta { align-items: flex-start; gap: 10px; flex-direction: column; }
.product-grid--shop .product-card.reveal-on-scroll { filter: blur(18px); transform: translate3d(0, 34px, 0) scale(.96); }
.product-grid--shop .product-card.reveal-on-scroll.is-visible { filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
.product-grid--shop .product-card.reveal-on-scroll.is-visible:hover { transform: translateY(-5px); }

.modal-open { overflow: hidden; }
.product-modal { position: fixed; z-index: 80; inset: 0; display: grid; padding: 24px; place-items: center; background: rgba(47, 44, 40, .36); opacity: 0; backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0); transition: opacity .22s ease, backdrop-filter .22s ease, -webkit-backdrop-filter .22s ease; }
.product-modal.is-visible { opacity: 1; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.product-modal__card { position: relative; display: grid; width: min(920px, 100%); max-height: min(720px, calc(100vh - 48px)); overflow: hidden; grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr); background: rgba(255, 254, 253, .95); border: 1px solid rgba(255, 255, 255, .75); border-radius: 30px; box-shadow: 0 34px 90px rgba(50, 43, 38, .25); transform: translateY(16px) scale(.98); transition: transform .24s cubic-bezier(.2, .72, .18, 1); }
.product-modal.is-visible .product-modal__card { transform: translateY(0) scale(1); }
.product-modal__media { position: relative; display: grid; width: 100%; height: 100%; min-height: 520px; padding: 0; overflow: hidden; place-items: center; background: var(--cream); border: 0; contain: layout paint; cursor: zoom-in; touch-action: manipulation; }
.product-modal__media img { display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: contain; object-position: center; }
.product-modal__content { display: flex; padding: clamp(28px, 5vw, 58px); flex-direction: column; justify-content: center; }
.product-modal__content h2 { margin-bottom: 14px; font-size: clamp(2.4rem, 4vw, 4rem); }
.product-modal__content strong { margin-bottom: 20px; color: var(--sage-deep); font-size: 1rem; }
.product-modal__content > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; }
.product-modal__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.product-modal__close { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; background: rgba(255, 254, 253, .88); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; color: var(--ink); font-size: 1.45rem; line-height: 1; }
.product-image-viewer { position: fixed; z-index: 100; inset: 0; display: flex; width: 100vw; height: 100dvh; padding: clamp(18px, 4vw, 44px); overflow: auto; align-items: center; justify-content: center; background: rgba(34, 31, 29, .74); opacity: 0; transition: opacity .18s ease; }
.product-image-viewer.is-visible { opacity: 1; }
.product-image-viewer img { width: auto; height: auto; max-width: min(calc(100vw - 36px), 980px); max-height: calc(100dvh - 36px); margin: auto; object-fit: contain; object-position: center; border-radius: 18px; box-shadow: 0 28px 90px rgba(0, 0, 0, .32); }
.product-image-viewer__close { position: absolute; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; padding: 0; place-items: center; background: rgba(255, 254, 253, .9); border: 1px solid rgba(255, 255, 255, .7); border-radius: 50%; cursor: pointer; color: var(--ink); font-size: 1.5rem; line-height: 1; }

.story { position: relative; min-height: 720px; padding: clamp(74px, 10vw, 130px) 0; overflow: hidden; isolation: isolate; }
.story::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(105deg, rgba(49, 53, 47, .32), rgba(255, 250, 245, .12)); content: ""; }
.story__background { position: absolute; z-index: -2; inset: -18px; width: calc(100% + 36px); height: calc(100% + 36px); object-fit: cover; filter: blur(5px); transform: scale(1.02); }
.story__inner { display: grid; padding: clamp(30px, 5vw, 66px); grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: clamp(40px, 7vw, 90px); background: rgba(255, 254, 253, .88); border: 1px solid rgba(255, 255, 255, .76); border-radius: 30px; box-shadow: 0 28px 80px rgba(50, 43, 38, .18); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.story__intro { align-self: center; }
.story__intro h2 { max-width: 620px; margin-bottom: 24px; }
.story__intro > p:last-child { max-width: 560px; margin-bottom: 0; color: var(--muted); font-size: 1.02rem; }
.story__values { border-top: 1px solid rgba(82, 109, 88, .2); }
.story__value { display: grid; padding: 24px 0; grid-template-columns: 40px 1fr; gap: 14px; border-bottom: 1px solid rgba(82, 109, 88, .2); }
.story__value > span { color: var(--blush-deep); font: italic .85rem var(--serif); }
.story__value h3 { margin: 0 0 7px; font-size: 1.28rem; }
.story__value p { margin: 0; color: var(--muted); font-size: .86rem; }
.contact { color: white; background: var(--sage-deep); text-align: center; }
.contact .eyebrow { color: var(--blush); }.contact h2 { margin-bottom: 14px; }.contact p:not(.eyebrow) { margin-bottom: 32px; color: #e1e9e1; }
.contact__actions { display: flex; align-items: center; justify-content: center; gap: 24px; }
.contact__socials { display: flex; gap: 10px; }
.contact__socials a { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255, 255, 255, .38); border-radius: 50%; color: white; transition: background .2s ease, transform .2s ease; }
.contact__socials a:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.icon { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-fill { fill: currentColor; stroke: none; }
.svg-symbols { position: absolute; width: 0; height: 0; overflow: hidden; }
.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 34px max(24px, calc((100vw - 1160px) / 2)); font-size: .78rem; }
.site-footer p { margin: 0; color: var(--muted); }.site-footer > a { justify-self: end; }

.page-hero { position: relative; display: grid; min-height: 360px; padding: clamp(80px, 10vw, 130px) 20px; overflow: hidden; place-items: center; isolation: isolate; background: linear-gradient(135deg, var(--cream), #f8ecee); text-align: center; }
.page-hero::before { position: absolute; z-index: -2; inset: 0; background-image: var(--hero-image); background-position: var(--hero-position, center); background-size: cover; content: ""; opacity: var(--hero-image-opacity, 0); transform: scale(1.02); }
.page-hero::after { position: absolute; z-index: -1; inset: 0; background: var(--hero-overlay, linear-gradient(180deg, rgba(255, 250, 245, .84), rgba(255, 250, 245, .64))); content: ""; opacity: var(--hero-overlay-opacity, 0); }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(3.5rem, 7vw, 6rem); }.page-hero > p:last-child { max-width: 650px; margin: auto; color: var(--muted); }
body[data-page="shop"] .page-hero h1 { letter-spacing: 0.01em; line-height: 1.12; }
body[data-page="shop"][data-shop-category="All"] .page-hero h1 { max-width: min(920px, 100%); margin-inline: auto; font-size: clamp(2.15rem, 7.8vw, 5.35rem); line-height: 1.08; }
.page-hero--all { --hero-image: url("../assets/aurora-boutique.png"); --hero-image-opacity: .34; --hero-overlay-opacity: 1; }
.page-hero--company { --hero-image: url("../assets/aurora-boutique.png"); --hero-image-opacity: .58; --hero-overlay-opacity: 1; --hero-overlay: linear-gradient(120deg, rgba(255, 250, 245, .9), rgba(248, 223, 202, .72), rgba(216, 230, 213, .66)); --hero-position: 58% center; }
.page-hero--regular { --hero-image: url("../assets/demo-flower-01.png"); --hero-image-opacity: .64; --hero-overlay-opacity: 1; --hero-overlay: linear-gradient(135deg, rgba(255, 250, 245, .88), rgba(246, 220, 227, .66)); --hero-position: center 58%; }
.page-hero--memorial { --hero-image: url("../assets/demo-flower-03.png"); --hero-image-opacity: .48; --hero-overlay-opacity: 1; --hero-overlay: linear-gradient(135deg, rgba(255, 254, 253, .9), rgba(233, 227, 244, .72), rgba(216, 230, 213, .62)); --hero-position: center 48%; }
.page-hero--vase { --hero-image: url("../assets/demo-flower-02.png"); --hero-image-opacity: .62; --hero-overlay-opacity: 1; --hero-overlay: linear-gradient(125deg, rgba(255, 250, 245, .86), rgba(216, 230, 213, .68), rgba(255, 254, 253, .72)); --hero-position: center 45%; }
.page-hero--seasonal { --hero-image: url("../assets/demo-flower-04.png"); --hero-image-opacity: .62; --hero-overlay-opacity: 1; --hero-overlay: linear-gradient(135deg, rgba(255, 250, 245, .86), rgba(248, 223, 202, .68), rgba(246, 220, 227, .58)); --hero-position: center 52%; }
body[data-page="shop"]:not([data-shop-category="All"]) .page-hero { min-height: clamp(300px, 42vw, 470px); }
body[data-page="shop"]:not([data-shop-category="All"]) .page-hero h1 { max-width: none; margin: 0; color: #363934; font-size: clamp(1.72rem, 8.7vw, 5.35rem); white-space: nowrap; text-shadow: 0 2px 18px rgba(255, 254, 253, .48); }
body[data-page="shop"][data-shop-category="Company Ceremonial Bouquets"] .page-hero h1 { font-size: clamp(1rem, 5.7vw, 5rem); }
body[data-page="shop"]:not([data-shop-category="All"]) .page-hero p:not(.eyebrow) { max-width: 620px; margin: 20px auto 0; color: #565b53; font-size: 1.05rem; }
body[data-page="shop"]:not([data-shop-category="All"]) .page-hero .eyebrow { margin: 0 0 16px; color: var(--sage-deep); font-size: .72rem; }
.contact-hero { display: grid; min-height: 470px; padding: 80px 20px; place-items: center; background: radial-gradient(circle at 78% 30%, rgba(247, 214, 224, .64), transparent 31%), radial-gradient(circle at 18% 80%, rgba(207, 227, 208, .68), transparent 34%), var(--cream); text-align: center; }
.contact-hero__content { max-width: 820px; }
.contact-hero h1 { max-width: min(900px, 100%); margin: 0 auto 24px; font-size: clamp(2.15rem, 7.8vw, 5.35rem); line-height: 1.08; }
.contact-hero__content > p:last-child { max-width: 640px; margin-inline: auto; color: var(--muted); font-size: 1.06rem; }
.contact-directory { max-width: 1080px; }
.contact-directory__heading { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.contact-directory__heading h2 { font-size: clamp(2.3rem, 4vw, 3.6rem); }
.contact-directory__heading > p:last-child { max-width: 600px; margin-inline: auto; color: var(--muted); }
.contact-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.contact-link { position: relative; display: flex; min-width: 0; min-height: 190px; padding: 28px 24px; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 24px; background: var(--cream); border: 1px solid var(--line); border-radius: 20px; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.contact-link:hover { border-color: #c7d9c5; box-shadow: 0 15px 35px rgba(70, 60, 52, .08); transform: translateY(-3px); }
.contact-link__icon { display: grid; width: 44px; height: 44px; place-items: center; background: var(--sage); border-radius: 50%; color: var(--sage-deep); }
.contact-link small { display: block; margin-bottom: 6px; color: var(--muted); font-size: .67rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-link strong { display: block; overflow-wrap: anywhere; font: 500 1.05rem/1.45 var(--serif); }
.contact-link__arrow { position: absolute; top: 26px; right: 24px; color: var(--muted); }
.contact-social { background: #e5eee3; }
.contact-social__heading { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.contact-social__heading h2 { margin-bottom: 0; font-size: clamp(2.3rem, 4vw, 3.6rem); }
.contact-links--social { max-width: 720px; margin-inline: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-links--social .contact-link { background: rgba(255, 254, 253, .78); border-color: rgba(120, 152, 127, .24); }
.contact-links--social .contact-link:hover { border-color: #b96f82; }
.contact-link--social .contact-link__icon { background: var(--blush); color: var(--blush-deep); }
.catalog-toolbar { display: flex; justify-content: center; margin-bottom: 36px; }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.category-select__label { align-self: center; color: var(--muted); font-size: .73rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.category-select__wrap { position: relative; }
.category-select__wrap::after { position: absolute; top: 50%; right: 17px; width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; color: var(--sage-deep); content: ""; pointer-events: none; transform: translateY(-68%) rotate(45deg); }
.category-select { min-width: min(78vw, 340px); padding: 12px 44px 12px 18px; appearance: none; background: rgba(255, 254, 253, .92); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; color: var(--ink); box-shadow: 0 12px 28px rgba(83, 67, 61, .05); outline: none; }
.category-select:focus { border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(82, 109, 88, .13); }
.filter-button { padding: 9px 18px; background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; }
.filter-button:hover, .filter-button.is-active { background: var(--sage); border-color: var(--sage); }
.notice { margin-bottom: 20px; padding: 13px 16px; border-radius: 12px; font-size: .9rem; }
.notice--info { background: var(--lavender); }.notice--success { background: var(--sage); color: #3e6147; }.notice--error { background: #f8dfe2; color: var(--danger); }

.admin-shell, .admin-page { background: var(--cream); }
.login-layout { display: grid; min-height: 100vh; grid-template-columns: minmax(400px, .8fr) 1.2fr; }
.login-card { display: flex; width: min(500px, 100%); margin: auto; padding: 50px; flex-direction: column; gap: 50px; }
.login-card h1 { margin: 0 0 10px; font-size: clamp(2.8rem, 5vw, 4rem); }.login-card p { color: var(--muted); }
form label { display: block; margin: 17px 0 7px; font-size: .78rem; font-weight: 600; }
input, textarea { width: 100%; padding: 12px 14px; background: var(--paper); border: 1px solid #dcd3ca; border-radius: 11px; color: var(--ink); outline: none; }
input:focus, textarea:focus { border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(82, 109, 88, .12); }
textarea { resize: vertical; }.login-card form .button { margin-top: 26px; }
.login-art { min-height: 100vh; overflow: hidden; }.login-art img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }

.admin-loading { display: grid; min-height: 100vh; place-items: center; color: var(--muted); }
.admin-header { position: sticky; top: 0; box-shadow: 0 4px 20px rgba(60, 55, 50, .04); }
.admin-header__actions { display: flex; align-items: center; gap: 22px; font-size: .8rem; }
.admin-main { width: var(--container); margin: auto; padding: 55px 0 100px; }
.admin-title { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.admin-title h1 { margin: 0 0 10px; font-size: clamp(2.8rem, 5vw, 4.8rem); }.admin-title p:last-child { margin: 0; color: var(--muted); }
.admin-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(340px, .75fr); align-items: start; gap: 25px; }
.admin-panel { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(70, 57, 52, .05); }
.admin-panel--form { position: sticky; top: 110px; }
.admin-panel__heading { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.admin-panel__heading h2 { margin: 0; font-size: 1.7rem; }.admin-panel__heading p { margin: 3px 0 0; color: var(--muted); font-size: .78rem; }.admin-panel__heading .eyebrow { color: var(--sage-deep); }
.icon-button { width: 36px; height: 36px; background: var(--cream); border: 0; border-radius: 50%; cursor: pointer; font-size: 1.4rem; }
.admin-products { padding: 8px 25px; }.empty-state { padding: 45px 20px; color: var(--muted); text-align: center; }
.admin-product { display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.admin-product:last-child { border-bottom: 0; }.admin-product img { width: 78px; height: 72px; object-fit: cover; background: var(--cream); border-radius: 12px; }
.admin-product h3 { overflow: hidden; margin: 0 0 3px; font: 600 1rem var(--sans); text-overflow: ellipsis; white-space: nowrap; }.admin-product p { margin: 0; color: var(--muted); font-size: .77rem; }
.admin-product__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; }.mini-tag { padding: 2px 7px; background: var(--cream); border-radius: 99px; color: var(--muted); font-size: .65rem; }
.admin-product__actions { display: flex; gap: 6px; }.action-button { padding: 7px 9px; background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; font-size: .75rem; }.action-button--danger { color: var(--danger); }
.product-form { padding: 8px 26px 28px; }.product-form small { display: block; margin-top: 5px; color: var(--muted); font-size: .7rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 22px 0; }
.check { display: flex; min-height: 58px; align-items: center; gap: 8px; margin: 0; padding: 9px; background: var(--cream); border-radius: 10px; font-size: .72rem; }.check input { width: auto; accent-color: var(--sage-deep); }
.image-preview { margin-top: 12px; }.image-preview img { width: 100%; height: 150px; object-fit: cover; border-radius: 12px; }
.form-actions { display: flex; gap: 8px; }

@media (max-width: 1100px) {
  .product-grid--shop { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .flower-carousel .product-card { flex-basis: calc((100% - 84px) / 4); }
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--shop { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flower-carousel .product-card { flex-basis: calc((100% - 60px) / 3); }
  .product-modal__card { grid-template-columns: 1fr; overflow-y: auto; }
  .product-modal__media { height: min(58vh, 380px); min-height: 320px; max-height: 380px; }
  .story__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-links { grid-template-columns: 1fr; }.contact-link { min-height: 150px; }
  .admin-grid { grid-template-columns: 1fr; }.admin-panel--form { position: static; }.login-layout { grid-template-columns: 1fr; }.login-art { display: none; }
}

@media (max-width: 820px) {
  .site-header { min-height: 74px; }
  .header-actions { gap: 4px; }
  .language-toggle { width: 38px; height: 38px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 74px; right: 14px; left: 14px; display: none; max-width: calc(100vw - 28px); max-height: calc(100vh - 92px); padding: 10px; overflow-x: hidden; overflow-y: auto; align-items: stretch; gap: 2px; flex-direction: column; background: rgba(255, 254, 253, .97); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); backdrop-filter: blur(16px); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 14px; border-radius: 10px; font-size: .95rem; }
  .site-nav a:hover, .site-nav a.is-current { background: var(--cream); }
  .site-nav a::after { display: none; }
  .nav-dropdown__button { width: 100%; min-width: 0; padding: 13px 14px; justify-content: space-between; border-radius: 10px; font-size: .95rem; }
  .nav-dropdown__button:hover, .nav-dropdown__button.is-current, .nav-dropdown.is-open .nav-dropdown__button { background: var(--cream); }
  .nav-dropdown__button::after { display: none; }
  .nav-dropdown__menu { position: static; width: 100%; max-width: 100%; min-width: 0; padding: 0 0 4px 10px; overflow: hidden; background: transparent; border: 0; border-radius: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { transform: none; }
  .nav-dropdown:not(.is-open) .nav-dropdown__menu { display: none; }
  .nav-dropdown__menu a { min-width: 0; padding: 10px 12px; overflow-wrap: anywhere; white-space: normal; font-size: .9rem; line-height: 1.35; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1160px); }
  .hero { min-height: 690px; }.hero__image { object-position: 64% center; opacity: .67; }.hero::after { background: linear-gradient(90deg, rgba(255, 250, 245, .9), rgba(255, 250, 245, .28)); }.hero__content { padding-top: 100px; }.hero__content h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }.hero__note { display: none; }
  html[lang="vi"] .hero__content .eyebrow { font-size: .6rem; letter-spacing: .08em; }
  html[lang="vi"] .hero__content h1 { max-width: 330px; font-size: clamp(2.25rem, 10.5vw, 3.2rem); line-height: 1.07; }
  html[lang="vi"] .hero__content > p:not(.eyebrow) { max-width: 340px; font-size: .94rem; line-height: 1.6; }
  .button-row, .section-heading, .admin-title { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }.product-grid--shop { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }.flower-carousel .product-card { flex-basis: min(72vw, 270px); }.flower-carousel__track { gap: 14px; }.flower-carousel .product-card__body { padding: 18px; }.story { min-height: 0; padding: 28px 0; }.story__inner { width: calc(100% - 28px); padding: 28px 20px; gap: 30px; border-radius: 22px; }.story__intro h2 { font-size: clamp(2.35rem, 12vw, 3.35rem); }.story__value { padding: 20px 0; grid-template-columns: 32px 1fr; }.story__background { filter: blur(7px); }
  .button--nowrap { padding-inline: 20px; font-size: .88rem; }.contact__actions { flex-direction: column; gap: 18px; }.contact-hero { min-height: 430px; padding-block: 60px; }.contact-hero h1 { font-size: clamp(2.1rem, 9vw, 3.65rem); }.contact-directory { padding-block: 72px; }.contact-directory__heading, .contact-social__heading { margin-bottom: 36px; }.contact-link { min-height: 142px; padding: 24px 20px; }.product-modal { padding: 14px; }.product-modal__card { max-height: calc(100vh - 28px); border-radius: 22px; }.product-modal__content { padding: 26px 20px; }.product-modal__actions { flex-direction: column; }.product-modal__actions .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }.site-footer > a { justify-self: center; }
  .login-card { padding: 30px 22px; }.admin-header { align-items: flex-start; gap: 16px; }.admin-header__actions { align-items: flex-end; flex-direction: column; gap: 5px; }.admin-header__actions > span, .admin-header__actions .text-link { display: none; }
  .admin-main { padding-top: 35px; }.admin-product { grid-template-columns: 62px minmax(0, 1fr); }.admin-product img { width: 62px; height: 62px; }.admin-product__actions { grid-column: 2; }.form-row { grid-template-columns: 1fr; }.check-grid { grid-template-columns: 1fr; }.form-actions { flex-direction: column; }
}

@media (max-width: 430px) {
  .product-grid--shop { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; } }
