:root {
    --cream: #fff7ef;
    --cream-2: #fcebdd;
    --paper: #fffdf8;
    --peach: #f3b5a4;
    --coral: #e96459;
    --rose: #ef7f88;
    --mint: #b8d9ce;
    --teal: #2f7771;
    --sage: #76885f;
    --gold: #d99a31;
    --brown: #4b2618;
    --brown-2: #6f4937;
    --ink: #2d251f;
    --muted: #74685f;
    --line: rgba(75, 38, 24, .13);
    --shadow: 0 24px 70px rgba(75, 38, 24, .13);
    --shadow-sm: 0 12px 34px rgba(75, 38, 24, .09);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
    --header-bg: rgba(255, 253, 248, .86);
    --overlay: rgba(46, 30, 24, .46);
}

html[data-theme="dark"] {
    --cream: #191511;
    --cream-2: #211a16;
    --paper: #241e19;
    --peach: #a76258;
    --coral: #f07b70;
    --rose: #f29098;
    --mint: #507b70;
    --teal: #8fc5bb;
    --sage: #a9b88c;
    --gold: #e3ad4d;
    --brown: #f1c3aa;
    --brown-2: #ddb098;
    --ink: #fff5ed;
    --muted: #c7b9ae;
    --line: rgba(255, 245, 237, .12);
    --shadow: 0 24px 70px rgba(0, 0, 0, .3);
    --shadow-sm: 0 12px 34px rgba(0, 0, 0, .24);
    --header-bg: rgba(25, 21, 17, .88);
    --overlay: rgba(0, 0, 0, .67);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    transition: background-color .25s ease, color .25s ease;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }

::selection { background: var(--peach); color: var(--ink); }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 94px 0; }
.section-shell { position: relative; overflow: hidden; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; background: var(--ink); color: var(--paper); padding: 10px 14px; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.announcement-bar {
    background: var(--brown);
    color: var(--paper);
    font-size: 12px;
    letter-spacing: .045em;
}
html[data-theme="dark"] .announcement-bar { background: #0f0d0b; color: #fff4ec; }
.announcement-inner { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 10px; white-space: nowrap; }
.live-time-wrap { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; opacity: .92; font-variant-numeric: tabular-nums; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 84px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand-mark { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; box-shadow: 0 5px 18px rgba(75,38,24,.12); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 700; color: var(--brown); letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .025em; }
.primary-nav { display: flex; justify-content: center; gap: 24px; font-size: 14px; font-weight: 700; }
.primary-nav a { position: relative; padding: 28px 0; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--coral); transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn, .bag-btn, .menu-toggle {
    border: 1px solid var(--line);
    background: var(--paper);
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(75,38,24,.05);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.icon-btn:hover, .bag-btn:hover { transform: translateY(-2px); border-color: rgba(233,100,89,.45); }
.bag-btn { display: inline-flex; gap: 7px; padding: 0 11px; font-size: 12px; font-weight: 800; }
.bag-count { min-width: 19px; height: 19px; display: grid; place-items: center; border-radius: 999px; background: var(--coral); color: #fff; font-size: 10px; }
.account-chip { display: inline-flex; align-items: center; gap: 8px; padding: 5px 10px 5px 5px; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; font-size: 12px; font-weight: 800; }
.avatar, .account-avatar { display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--peach), var(--mint)); color: var(--brown); font-weight: 900; }
.avatar { width: 32px; height: 32px; }
.menu-toggle { display: none; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 2px 0; }

.hero { padding: 82px 0 74px; min-height: 720px; display: grid; align-items: center; background: radial-gradient(circle at 18% 18%, rgba(243,181,164,.22), transparent 28%), radial-gradient(circle at 84% 12%, rgba(184,217,206,.25), transparent 26%), var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: 11px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .center-heading h2, .build-copy h2, .about-copy h2, .bulk-card h2, .newsletter-card h2, .modal-card h2, .account-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.045em;
    line-height: 1.06;
    margin: 16px 0 20px;
    color: var(--brown);
}
.hero h1 { font-size: clamp(52px, 6.1vw, 84px); max-width: 760px; }
.hero h1 span { color: var(--coral); font-style: italic; }
.hero-copy > p { max-width: 640px; font-size: 18px; color: var(--muted); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 31px 0 28px; }
.btn { min-height: 49px; border-radius: 14px; border: 1px solid transparent; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 900; font-size: 14px; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--coral), #ef8d73); color: #fff; box-shadow: 0 14px 32px rgba(233,100,89,.22); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(233,100,89,.3); }
.btn-ghost { background: var(--paper); border-color: var(--line); color: var(--brown); }
.btn-dark { background: var(--brown); color: var(--paper); }
.full { width: 100%; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted); font-weight: 700; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-card { width: min(480px, 88%); aspect-ratio: 1; border-radius: 50%; padding: 18px; background: rgba(255,255,255,.5); border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-logo-card img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }
html[data-theme="dark"] .hero-card { background: rgba(255,255,255,.07); }
.floating-card { position: absolute; margin: 0; width: 150px; height: 150px; border-radius: 26px; overflow: hidden; border: 7px solid var(--paper); box-shadow: var(--shadow-sm); transform: rotate(-6deg); }
.floating-card img { width: 100%; height: 100%; object-fit: cover; }
.floating-a { right: -12px; top: 52px; }
.floating-b { left: -18px; bottom: 40px; transform: rotate(7deg); }
.paint-dot { position: absolute; border-radius: 50%; filter: blur(.2px); }
.paint-dot-1 { width: 20px; height: 20px; background: var(--gold); right: 22%; bottom: 7%; }
.paint-dot-2 { width: 14px; height: 14px; background: var(--mint); left: 19%; top: 8%; }
.paint-dot-3 { width: 11px; height: 11px; background: var(--rose); right: 8%; top: 40%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(5px); opacity: .45; }
.hero-orb-one { width: 430px; height: 430px; background: rgba(243,181,164,.2); left: -180px; bottom: -190px; }
.hero-orb-two { width: 380px; height: 380px; background: rgba(184,217,206,.22); right: -160px; top: -110px; }

.mini-strip { border-block: 1px solid var(--line); background: var(--paper); }
.mini-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.mini-strip a { min-height: 110px; padding: 20px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 12px; border-right: 1px solid var(--line); transition: background .2s ease; }
.mini-strip a:last-child { border-right: 0; }
.mini-strip a:hover { background: var(--cream-2); }
.mini-strip span { grid-row: 1 / 3; font-size: 28px; align-self: center; }
.mini-strip strong { font-size: 14px; }
.mini-strip small { color: var(--muted); font-size: 12px; }

.section-heading { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 34px; }
.section-heading h2, .center-heading h2, .build-copy h2, .about-copy h2 { font-size: clamp(38px, 4vw, 58px); margin-bottom: 0; }
.center-heading { text-align: center; max-width: 760px; margin: 0 auto 38px; }
.center-heading .eyebrow { justify-content: center; }
.center-heading p { color: var(--muted); margin: 12px auto 0; }
.text-link { color: var(--coral); font-weight: 900; font-size: 13px; white-space: nowrap; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 6px 25px rgba(75,38,24,.04); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.product-media { position: relative; aspect-ratio: 1 / 1.05; overflow: hidden; background: var(--cream-2); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-media img { transform: scale(1.045); }
.badge { position: absolute; left: 12px; top: 12px; background: rgba(255,247,239,.92); color: #6a2f1f; border-radius: 999px; padding: 7px 10px; font-size: 10px; font-weight: 900; letter-spacing: .04em; }
.badge-mint { background: rgba(213,237,229,.94); color: #285d56; }
.badge-gold { background: rgba(255,235,192,.94); color: #765415; }
.badge-pink { background: rgba(255,217,222,.94); color: #7e3942; }
.wish-btn { position: absolute; z-index: 3; right: 12px; top: 12px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: #5d3927; cursor: pointer; font-size: 20px; box-shadow: 0 5px 18px rgba(0,0,0,.08); }
.wish-btn.active { background: var(--coral); color: #fff; }
.product-info { padding: 18px; }
.product-type { color: var(--teal); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 900; }
.product-info h3 { margin: 7px 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; color: var(--brown); }
.product-info p { margin: 0; color: var(--muted); font-size: 13px; min-height: 62px; }
.product-action { margin-top: 15px; width: 100%; border: 1px solid var(--line); background: var(--cream); border-radius: 12px; min-height: 42px; font-weight: 900; color: var(--brown); cursor: pointer; transition: background .2s, border-color .2s; }
.product-action:hover { background: var(--cream-2); border-color: rgba(233,100,89,.4); }
.catalogue-note { color: var(--muted); font-size: 12px; text-align: center; margin: 24px 0 0; }

.soft-section { background: linear-gradient(180deg, var(--cream-2), var(--cream)); border-block: 1px solid var(--line); }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.experience-card { padding: 28px 18px; min-height: 184px; border: 1px solid var(--line); background: var(--paper); border-radius: 24px; cursor: pointer; display: grid; justify-items: center; align-content: center; text-align: center; transition: transform .2s, border-color .2s, background .2s; }
.experience-card:hover, .experience-card.active { transform: translateY(-5px); border-color: rgba(233,100,89,.4); background: linear-gradient(180deg, var(--paper), rgba(243,181,164,.12)); }
.experience-icon { font-size: 42px; }
.experience-card strong { margin-top: 12px; font-family: Georgia, "Times New Roman", serif; font-size: 20px; color: var(--brown); }
.experience-card small { color: var(--muted); margin-top: 4px; }
.recommendation { margin: 20px auto 0; max-width: 740px; padding: 14px 18px; border-radius: 14px; background: var(--paper); border: 1px dashed var(--line); color: var(--muted); text-align: center; }

.build-grid, .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.photo-stack { position: relative; min-height: 520px; }
.photo-main { width: 82%; height: 500px; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.photo-small { position: absolute; width: 42%; height: 260px; object-fit: cover; right: 0; bottom: -22px; border-radius: 28px; border: 8px solid var(--cream); box-shadow: var(--shadow-sm); }
.build-copy > p, .about-copy > p { color: var(--muted); font-size: 16px; }
.steps-list { list-style: none; margin: 28px 0 30px; padding: 0; display: grid; gap: 13px; }
.steps-list li { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; padding: 13px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line); }
.steps-list li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--cream-2); color: var(--coral); font-weight: 900; }
.steps-list div { display: grid; }
.steps-list small { color: var(--muted); }

.process-section { background: var(--paper); border-block: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { border: 1px solid var(--line); background: var(--cream); border-radius: 22px; padding: 26px; min-height: 210px; }
.process-card > span { color: var(--coral); font-weight: 900; font-size: 12px; letter-spacing: .12em; }
.process-card h3 { font-family: Georgia, "Times New Roman", serif; color: var(--brown); font-size: 25px; margin: 34px 0 8px; }
.process-card p { color: var(--muted); margin: 0; font-size: 14px; }

.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-auto-rows: 260px; gap: 14px; }
.gallery-item { border: 0; padding: 0; border-radius: 24px; overflow: hidden; background: var(--paper); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.08); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.bulk-section { padding-top: 20px; }
.bulk-card { padding: 45px 48px; border-radius: var(--radius-xl); background: linear-gradient(120deg, rgba(243,181,164,.45), rgba(184,217,206,.4)); border: 1px solid var(--line); display: flex; gap: 40px; justify-content: space-between; align-items: center; }
.bulk-card h2 { font-size: clamp(36px, 4vw, 55px); margin: 12px 0; }
.bulk-card p { max-width: 760px; margin: 0; color: var(--muted); }

.about-logo { border-radius: 50%; overflow: hidden; max-width: 520px; margin: auto; padding: 14px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.about-logo img { border-radius: 50%; }
.company-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.company-facts div { padding: 14px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; display: grid; }
.company-facts small { color: var(--muted); }
.company-facts strong { color: var(--brown); }
.manual-note { font-size: 12px !important; background: var(--cream-2); padding: 12px 14px; border-radius: 12px; border: 1px dashed var(--line); }
.manual-note code { color: var(--coral); }

.newsletter-section { padding-top: 20px; }
.newsletter-card { padding: 38px 42px; border-radius: var(--radius-xl); background: var(--brown); color: #fff8f3; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.newsletter-card h2 { color: #fff8f3; font-size: clamp(32px, 3vw, 46px); margin: 12px 0 8px; }
.newsletter-card p { margin: 0; opacity: .74; }
.newsletter-form { display: flex; gap: 8px; min-width: 430px; }
.newsletter-form input { min-height: 49px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.09); color: #fff; border-radius: 14px; padding: 0 15px; flex: 1; outline: 0; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.58); }

.site-footer { margin-top: 74px; padding: 56px 0 24px; border-top: 1px solid var(--line); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { border-radius: 50%; }
.footer-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 28px; color: var(--brown); }
.footer-brand p { color: var(--muted); margin: 3px 0 0; font-size: 12px; }
.footer-grid h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 14px; color: var(--teal); }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; font-size: 13px; color: var(--muted); }
.footer-grid a:hover, .link-button:hover { color: var(--coral); }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px; }
.link-button { border: 0; padding: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.inline-form { margin: 0; }

.modal-backdrop { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; background: var(--overlay); backdrop-filter: blur(9px); }
.modal-backdrop[hidden] { display: none; }
.modal-card { width: min(560px, 100%); max-height: min(88vh, 760px); overflow: auto; position: relative; padding: 30px; border-radius: 28px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 30px 90px rgba(0,0,0,.22); }
.modal-close { position: absolute; right: 16px; top: 16px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--cream); cursor: pointer; font-size: 22px; }
.auth-brand { display: flex; gap: 14px; align-items: center; padding-right: 44px; }
.auth-brand img { border-radius: 50%; }
.auth-brand h2 { font-size: 31px; margin: 5px 0 0; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; margin: 24px 0; }
.auth-tab { min-height: 42px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; font-weight: 900; color: var(--muted); }
.auth-tab.active { background: var(--paper); color: var(--brown); box-shadow: 0 4px 18px rgba(75,38,24,.08); }
.auth-form { display: none; gap: 14px; }
.auth-form.active { display: grid; }
.auth-form label { display: grid; gap: 7px; font-size: 12px; font-weight: 800; }
.auth-form input, .search-box input { width: 100%; min-height: 46px; border: 1px solid var(--line); background: var(--cream); color: var(--ink); border-radius: 12px; padding: 0 13px; outline: 0; }
.auth-form input:focus, .search-box input:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(233,100,89,.09); }
.password-field { position: relative; }
.password-field input { padding-right: 60px; }
.show-pass { position: absolute; right: 8px; top: 7px; height: 32px; border: 0; background: transparent; color: var(--coral); font-size: 11px; font-weight: 900; cursor: pointer; }
.check-row { display: grid !important; grid-template-columns: 18px 1fr; gap: 10px !important; align-items: start; color: var(--muted); font-weight: 600 !important; }
.check-row input { width: 18px; min-height: 18px; margin: 2px 0 0; }
.form-note { margin: 0; text-align: center; color: var(--muted); font-size: 11px; }
.search-modal h2 { margin-top: 9px; font-size: 38px; }
.search-box { display: grid; grid-template-columns: 30px 1fr; align-items: center; border: 1px solid var(--line); background: var(--cream); border-radius: 14px; padding: 0 12px; }
.search-box input { border: 0; background: transparent; padding-left: 0; box-shadow: none !important; }
.search-results { margin-top: 15px; color: var(--muted); font-size: 13px; }
.search-result-link { display: block; padding: 12px; margin-top: 8px; border: 1px solid var(--line); background: var(--cream); border-radius: 12px; }
.search-result-link strong { display: block; color: var(--brown); }

.drawer { position: fixed; z-index: 600; top: 0; right: 0; bottom: 0; width: min(430px, 92vw); background: var(--paper); box-shadow: -20px 0 70px rgba(0,0,0,.18); transform: translateX(105%); transition: transform .28s ease; display: grid; grid-template-rows: auto 1fr; }
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h2 { font-family: Georgia, "Times New Roman", serif; color: var(--brown); margin: 0; font-size: 26px; }
.drawer-close { width: 38px; height: 38px; border: 1px solid var(--line); background: var(--cream); border-radius: 50%; cursor: pointer; font-size: 22px; }
.drawer-body { padding: 22px; overflow: auto; }
.drawer-overlay { position: fixed; inset: 0; z-index: 550; background: var(--overlay); }
.drawer-overlay[hidden] { display: none; }
.empty-state { min-height: 70vh; display: grid; place-items: center; align-content: center; text-align: center; }
.empty-state > span { font-size: 56px; }
.empty-state h3 { font-family: Georgia, "Times New Roman", serif; color: var(--brown); font-size: 25px; margin: 12px 0 4px; }
.empty-state p { color: var(--muted); max-width: 310px; font-size: 13px; }

.lightbox-card { position: relative; width: min(850px, 92vw); height: min(84vh, 860px); border-radius: 28px; overflow: hidden; background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.lightbox-card img { width: 100%; height: 100%; object-fit: contain; background: var(--cream); }
.lightbox-close { z-index: 2; }
.builder-modal { width: min(640px, 100%); }
.builder-intro { color: var(--muted); font-size: 13px; }
.builder-step { margin: 20px 0; }
.builder-step > strong { display: block; margin-bottom: 9px; color: var(--brown); }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-row button { border: 1px solid var(--line); background: var(--cream); border-radius: 999px; padding: 9px 13px; cursor: pointer; font-size: 12px; font-weight: 800; }
.choice-row button.active { background: var(--brown); color: var(--paper); border-color: var(--brown); }
.builder-summary { padding: 14px; border-radius: 14px; background: var(--cream-2); margin: 22px 0 14px; display: grid; }
.builder-summary small { color: var(--muted); }
.builder-summary strong { color: var(--brown); }

.toast { position: fixed; z-index: 700; right: 20px; top: 130px; max-width: 430px; display: flex; gap: 18px; align-items: center; padding: 14px 16px; border-radius: 14px; box-shadow: var(--shadow); background: var(--paper); border: 1px solid var(--line); }
.toast-success { border-left: 4px solid var(--teal); }
.toast-error { border-left: 4px solid var(--coral); }
.toast button { border: 0; background: transparent; cursor: pointer; color: var(--muted); font-size: 19px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.account-page { min-height: 100vh; background: linear-gradient(160deg, var(--cream), var(--cream-2)); }
.account-header { position: sticky; }
.account-main { padding: 48px 0 90px; }
.account-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.account-side, .account-content { background: var(--paper); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-sm); }
.account-side { padding: 26px; position: sticky; top: 110px; }
.account-avatar { width: 66px; height: 66px; font-size: 24px; }
.account-side h1 { font-family: Georgia, "Times New Roman", serif; color: var(--brown); font-size: 25px; margin: 14px 0 2px; }
.account-side > p { color: var(--muted); font-size: 12px; margin: 0 0 24px; overflow-wrap: anywhere; }
.account-side nav { display: grid; gap: 5px; }
.account-side nav a { padding: 10px 12px; border-radius: 10px; color: var(--muted); font-size: 13px; font-weight: 800; }
.account-side nav a.active, .account-side nav a:hover { background: var(--cream-2); color: var(--brown); }
.account-content { padding: 34px; min-height: 620px; }
.account-content h2 { font-size: 46px; }
.dashboard-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.dashboard-cards article { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.dashboard-cards article > span { font-size: 28px; }
.dashboard-cards strong { display: block; margin: 10px 0 6px; color: var(--brown); }
.dashboard-cards p { margin: 0; color: var(--muted); font-size: 12px; }
.account-banner { margin-top: 18px; padding: 24px; border-radius: 20px; background: linear-gradient(120deg, rgba(243,181,164,.4), rgba(184,217,206,.38)); display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.account-banner h3 { font-family: Georgia, "Times New Roman", serif; color: var(--brown); font-size: 27px; margin: 6px 0 0; }
.inline-alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 18px; background: var(--cream-2); border-left: 4px solid var(--teal); }
.inline-alert.error { border-left-color: var(--coral); }

@media (max-width: 1080px) {
    .brand-copy small { display: none; }
    .primary-nav { gap: 16px; }
    .primary-nav a { font-size: 12px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-card { grid-template-columns: 1fr; }
    .newsletter-form { min-width: 0; width: 100%; }
}

@media (max-width: 860px) {
    .announcement-inner { justify-content: flex-start; overflow: auto; scrollbar-width: none; padding-block: 8px; }
    .announcement-inner::-webkit-scrollbar { display: none; }
    .live-time-wrap { margin-left: 16px; }
    .nav-wrap { grid-template-columns: auto auto 1fr; gap: 10px; min-height: 72px; }
    .menu-toggle { display: grid; grid-column: 2; }
    .nav-actions { justify-content: flex-end; }
    .primary-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; flex-direction: column; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 18px; padding: 10px; }
    .primary-nav.open { display: flex; }
    .primary-nav a { padding: 11px 12px; border-radius: 10px; }
    .primary-nav a:hover { background: var(--cream); }
    .primary-nav a::after { display: none; }
    .account-name { display: none; }
    .hero { min-height: auto; padding: 62px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow { justify-content: center; }
    .hero-copy > p { margin-inline: auto; }
    .hero-cta, .hero-trust { justify-content: center; }
    .hero-visual { min-height: 490px; }
    .mini-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .mini-strip a:nth-child(2) { border-right: 0; }
    .mini-strip a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .experience-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .build-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-wide { grid-column: span 1; }
    .bulk-card { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
    .account-layout { grid-template-columns: 1fr; }
    .account-side { position: static; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, var(--container)); }
    .section { padding: 68px 0; }
    .announcement-inner .dot, .announcement-inner > span:nth-child(3), .announcement-inner > span:nth-child(4), .announcement-inner > span:nth-child(5) { display: none; }
    .brand-mark img { width: 48px; height: 48px; }
    .brand-copy strong { font-size: 23px; }
    .nav-wrap { min-height: 65px; gap: 7px; }
    .icon-btn, .bag-btn, .menu-toggle { min-width: 38px; height: 38px; border-radius: 12px; }
    #searchBtn { display: none; }
    .bag-btn { padding: 0 9px; }
    .bag-btn > span:first-child { display: none; }
    .hero { padding-top: 48px; }
    .hero h1 { font-size: clamp(45px, 13vw, 64px); }
    .hero-copy > p { font-size: 16px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-visual { min-height: 390px; }
    .hero-card { width: 80%; }
    .floating-card { width: 110px; height: 110px; border-width: 5px; border-radius: 20px; }
    .floating-a { right: 0; top: 25px; }
    .floating-b { left: 0; bottom: 25px; }
    .mini-strip a { min-height: 92px; padding: 14px 10px; grid-template-columns: 34px 1fr; }
    .mini-strip span { font-size: 23px; }
    .mini-strip strong { font-size: 12px; }
    .mini-strip small { font-size: 10px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
    .section-heading h2, .center-heading h2, .build-copy h2, .about-copy h2 { font-size: 39px; }
    .product-grid, .experience-grid, .process-grid { grid-template-columns: 1fr; }
    .product-info p { min-height: auto; }
    .photo-stack { min-height: 390px; }
    .photo-main { height: 365px; width: 88%; }
    .photo-small { height: 185px; border-width: 6px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .gallery-tall { grid-row: span 1; }
    .bulk-card { padding: 30px 24px; }
    .company-facts { grid-template-columns: 1fr; }
    .newsletter-card { padding: 30px 24px; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .modal-card { padding: 24px 18px; border-radius: 22px; }
    .auth-brand img { width: 68px; height: 68px; }
    .auth-brand h2 { font-size: 25px; }
    .dashboard-cards { grid-template-columns: 1fr; }
    .account-content { padding: 24px 18px; }
    .account-content h2 { font-size: 38px; }
    .account-banner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
