* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FBF7F2;
  --surface: #FFFFFF;
  --ink: #3A1420;
  --body-text: #5C4A44;
  --muted: #7A5F58;
  --muted-2: #9A8578;
  --border: #F0E4DA;
  --border-2: #EBD9CE;
  --brand-deep: #4A0D1B;
  --brand-deep-text: #F3DCCB;
  --story-bg: #4A0D1B;
  --story-text: #F3DCCB;
  --story-sub: #E4C9BC;
  --accent: #C22335;
  --accent-pink: #F5A8C5;
  --accent-pink-pale: #F9DCE7;
  --accent-pink-pale-2: #FBEAF0;
  --radius-pill: 999px;
  --radius-card: 16px;
  --radius-card-sm: 12px;
  --font-display: 'DM Serif Display', serif;
  --font-display-style: normal;
  --font-body: 'Archivo', sans-serif;
  --shadow-cta: none;
}

:root[data-theme="after-dark"] {
  --bg: #170609;
  --surface: #241016;
  --ink: #F6E8DC;
  --body-text: #D8B7AB;
  --muted: #C79A8D;
  --muted-2: #B07A6C;
  --border: #33141C;
  --border-2: #6E3140;
  --brand-deep: #E3242B;
  --brand-deep-text: #ffffff;
  --story-bg: #2A0B10;
  --story-text: #F6E8DC;
  --story-sub: #D8B7AB;
  --accent: #E3242B;
  --accent-pink: #FF6B9A;
  --accent-pink-pale: #33141C;
  --accent-pink-pale-2: #241016;
  --radius-pill: 4px;
  --radius-card: 12px;
  --radius-card-sm: 10px;
  --font-display: 'Bodoni Moda', serif;
  --font-display-style: italic;
  --font-body: 'Archivo', sans-serif;
  --shadow-cta: 0 0 34px rgba(227,36,43,0.35);
}

body { font-family: var(--font-body); color: var(--body-text); background: var(--bg); overflow-x: hidden; transition: background .15s ease, color .15s ease; }
a { text-decoration: none; color: inherit; }
h1, h2 { font-family: var(--font-display); font-weight: 400; color: var(--ink); }
:root[data-theme="after-dark"] h1, :root[data-theme="after-dark"] h2 { font-style: italic; font-weight: 500; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.util-bar { background: var(--accent-pink-pale-2); font-size: 12px; color: var(--brand-deep); padding: 8px 0; border-bottom: 1px solid var(--border); }
:root[data-theme="after-dark"] .util-bar { color: var(--muted); }
.util-bar .wrap { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; text-align: center; }
.util-bar i { margin-right: 4px; }

header.site-header { padding: 18px 0; position: sticky; top: 0; z-index: 150; background: var(--surface); border-bottom: 1px solid var(--border); }

.theme-toggle { position: fixed; right: 14px; bottom: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 4px; background: rgba(23,6,9,0.92); padding: 5px; border-radius: 22px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.theme-toggle-btn { font-family: var(--font-body); font-size: 13px; font-weight: 700; padding: 10px 16px; border-radius: 999px; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 7px; white-space: nowrap; background: transparent; color: #D8B7AB; }
.theme-toggle-btn.active { background: #E3242B; color: #fff; }

.help-bubble { position: fixed; bottom: 20px; left: 20px; background: var(--accent); color: #fff; border-radius: var(--radius-pill); padding: 12px 18px; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 14px rgba(0,0,0,.18); z-index: 500; text-decoration: none; }
header.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-left { display: flex; align-items: center; gap: 18px; font-size: 20px; color: var(--body-text); }
.header-left a { position: relative; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-word { font-family: var(--font-display); font-style: var(--font-display-style); font-size: 27px; color: var(--accent); }
.logo-img { height: 50px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.header-icons { display: flex; gap: 18px; font-size: 20px; color: var(--body-text); align-items: center; }
.header-icons a { position: relative; }
header.site-header .wrap:has(.header-left) { flex-wrap: nowrap; }
header.site-header .wrap:has(.header-left) .header-left,
header.site-header .wrap:has(.header-left) .header-icons { flex: 1; }
header.site-header .wrap:has(.header-left) .header-icons { justify-content: flex-end; }
header.site-header .wrap:has(.header-left) .logo { flex: 0 0 auto; }
.icon-btn { background: none; border: none; padding: 0; margin: 0; font-size: inherit; color: inherit; cursor: pointer; display: inline-flex; line-height: 1; }
.hamburger-btn { background: none; border: none; padding: 0; font-size: 22px; color: var(--body-text); cursor: pointer; display: inline-flex; line-height: 1; }
.cart-count, .wishlist-count { position: absolute; top: -8px; right: -10px; background: var(--accent); color: #fff; font-size: 10px; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.menu-drawer-overlay { position: fixed; inset: 0; background: rgba(23,6,9,0.5); display: none; z-index: 1200; }
.menu-drawer-overlay.open { display: block; }
.menu-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 85vw; background: var(--surface); z-index: 1201; transform: translateX(-100%); transition: transform .2s ease; overflow-y: auto; }
.menu-drawer.open { transform: translateX(0); }
.menu-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.menu-drawer-section { padding: 10px 20px; border-bottom: 1px solid var(--border); }
.menu-drawer-section a { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: var(--ink); text-decoration: none; font-size: 14px; }
.menu-drawer-section a i { font-size: 18px; width: 20px; text-align: center; color: var(--muted-2); }
.menu-drawer-section a img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.search-bar-row { padding: 14px 0 0; }
.search-bar { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 12px 18px; max-width: 480px; margin: 0 auto; cursor: pointer; color: var(--muted); font-size: 14px; background: var(--bg); }
.search-bar:hover { border-color: var(--accent); }

.promo-ribbon { background: var(--brand-deep); color: var(--brand-deep-text); text-align: center; padding: 10px 16px; font-size: 13px; font-weight: 500; }
.promo-ribbon a { color: inherit; text-decoration: underline; }

.signup-banner { background: var(--accent-pink-pale); border: 1px solid var(--border); border-radius: 20px; padding: 40px 24px; margin: 16px 0 40px; }
.signup-banner h2 { font-family: var(--font-display); font-style: var(--font-display-style); }
.signup-banner p { color: var(--body-text); max-width: 480px; margin: 0 auto; font-size: 14px; }

.grid-bestcats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bestcat-tile { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--border); border-radius: var(--radius-card-sm); padding: 14px 16px; background: var(--surface); font-weight: 500; font-size: 14px; color: var(--ink); }
.bestcat-tile img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--accent-pink-pale); }

.grid-bigtiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.bigtile { position: relative; height: 200px; border-radius: var(--radius-card); overflow: hidden; display: block; }
.bigtile img { width: 100%; height: 100%; object-fit: cover; }
.bigtile .label { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px; background: linear-gradient(to top, rgba(0,0,0,.65), transparent); color: #fff; font-weight: 600; font-size: 16px; }

nav.menu { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
nav.menu .wrap { display: flex; justify-content: center; gap: 28px; padding: 12px 0; font-size: 14px; flex-wrap: wrap; text-align: center; }
nav.menu a.active { font-weight: 700; color: var(--accent); }
nav.menu a.sale { color: var(--accent); font-weight: 600; }

.trust-strip { background: var(--accent-pink-pale-2); }
.trust-strip .wrap { display: flex; justify-content: center; gap: 10px; padding: 10px 0; font-size: 13px; color: var(--body-text); align-items: center; flex-wrap: wrap; text-align: center; }

.page-banner { text-align: center; padding: 40px 24px; background: var(--accent-pink-pale); }
.page-banner h1 { font-size: clamp(24px, 5.5vw, 32px); margin-bottom: 6px; }
.page-banner p { font-size: 14px; color: var(--muted); }
.breadcrumb { font-size: 13px; color: var(--muted); margin-top: 10px; }
.breadcrumb a { color: var(--accent); }

.hero { text-align: center; padding: 64px 24px; background: var(--accent-pink-pale); }
.hero .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 3px; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; }
.hero h1 { font-size: clamp(26px, 6vw, 44px); margin-bottom: 16px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.1; }
.hero p.sub { font-size: 16px; color: var(--body-text); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }

.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; row-gap: 10px; }
.btn { padding: 14px 30px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 700; cursor: pointer; border: 2px solid var(--accent); display: inline-block; background: transparent; color: var(--accent); font-family: var(--font-body); }
.btn.primary { background: var(--accent); color: #fff; border: none; box-shadow: var(--shadow-cta); }
.btn.secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
:root[data-theme="after-dark"] .btn.secondary { border-color: var(--border-2); color: var(--ink); }
.btn.block { width: 100%; text-align: center; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.deal-banner { display: flex; align-items: center; justify-content: center; max-width: 1052px; margin: 24px auto 0; background: var(--accent-pink-pale-2); border-radius: 10px; padding: 14px 24px; font-size: 14px; flex-wrap: wrap; gap: 16px; text-align: center; }
.deal-banner span.label { font-weight: 600; color: var(--accent); }

.section { padding: 50px 0 10px; text-align: center; }
.section h2 { font-size: 28px; margin-bottom: 24px; }

.filter-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.pill { font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: var(--radius-pill); border: 1px solid var(--border-2); background: var(--surface); color: var(--body-text); }
.pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
:root[data-theme="after-dark"] .pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.cat-select-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.cat-select-row label { font-size: 13px; font-weight: 700; color: var(--muted-2); letter-spacing: 1px; text-transform: uppercase; }
.cat-select-row select { font-size: 14px; padding: 10px 14px; border-radius: 10px; border: 1px solid var(--border-2); background: var(--surface); max-width: 280px; color: var(--ink); }

.grid-categories { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-card { border: 1px solid var(--border); border-radius: var(--radius-card-sm); padding: 18px 10px; text-align: center; background: var(--surface); }
.cat-card i { font-size: 26px; }
.cat-card p.t { font-size: 14px; font-weight: 700; margin: 10px 0 2px; color: var(--ink); }
.cat-card p.s { font-size: 12px; color: var(--muted-2); }

.dept-section { margin-bottom: 36px; }
.dept-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; flex-wrap: wrap; gap: 8px; }
.dept-section-head h3 { font-family: var(--font-display); font-style: var(--font-display-style); font-size: 22px; font-weight: 400; color: var(--ink); }
.dept-section-head a { font-size: 13px; color: var(--accent); font-weight: 700; white-space: nowrap; }
.dept-section .blurb { font-size: 13px; color: var(--muted-2); margin-bottom: 14px; }

.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prod-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 16px; text-align: center; }
.prod-card .img { height: 180px; border-radius: var(--radius-card-sm); background: var(--accent-pink-pale); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 28px; overflow: hidden; }
.prod-card .img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-card-sm); }
.prod-card p.name { font-size: 14px; color: var(--ink); font-weight: 600; margin-bottom: 8px; line-height: 1.35; min-height: 38px; }
.prod-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.prod-row .price { font-size: 19px; font-weight: 700; color: var(--ink); }
:root[data-theme="after-dark"] .prod-row .price { color: var(--accent-pink); }
.add-btn, .wish-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-pink-pale-2); color: var(--accent); border: none; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; cursor: pointer; }
:root[data-theme="after-dark"] .add-btn, :root[data-theme="after-dark"] .wish-btn { border: 1px solid var(--border-2); background: transparent; }
.wish-btn.active { color: var(--accent-pink); }
.load-more-row { text-align: center; margin-top: 24px; }

.story { margin: 50px 0; background: var(--brand-deep); border-radius: var(--radius-card); padding: 40px 36px; text-align: center; }
.story h2 { color: var(--brand-deep-text); }
.story p { font-size: 15px; color: var(--brand-deep-text); opacity: 0.85; line-height: 1.7; margin-bottom: 22px; max-width: 640px; margin-left: auto; margin-right: auto; }
.story .btn.primary { background: var(--brand-deep-text); color: var(--brand-deep); }
.story .btn.secondary { border-color: var(--accent-pink); color: var(--accent-pink); }

footer.site-footer { border-top: 1px solid var(--border); margin-top: 40px; background: var(--surface); }
footer.site-footer .wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 0 40px; gap: 14px; text-align: center; }
footer.site-footer .links { display: flex; justify-content: center; gap: 18px; font-size: 13px; color: var(--body-text); flex-wrap: wrap; }
footer.site-footer .social { display: flex; justify-content: center; gap: 14px; font-size: 18px; color: var(--body-text); }

.content-page { max-width: 720px; margin: 0 auto; padding: 40px 24px 60px; text-align: center; }
.content-page h2 { font-size: 20px; margin: 28px 0 10px; }
.content-page p, .content-page li { font-size: 14px; color: var(--body-text); line-height: 1.8; }
.content-page ul { list-style: none; }

.guide-index { display: grid; gap: 10px; margin: 24px 0 40px; text-align: left; }
.guide-card { display: flex; align-items: center; gap: 14px; border: 1px solid var(--border); border-radius: var(--radius-card-sm); padding: 16px 18px; background: var(--surface); text-decoration: none; transition: border-color .15s; }
.guide-card:hover { border-color: var(--accent); }
.guide-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-pink-pale-2); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.guide-card .guide-text { flex: 1; }
.guide-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 3px; color: var(--ink); }
.guide-card p { font-size: 12.5px; color: var(--muted-2); margin: 0; line-height: 1.5; }
.guide-card .guide-arrow { color: var(--accent); font-size: 16px; flex-shrink: 0; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 50px 24px; max-width: 1100px; margin: 0 auto; text-align: left; }
.product-detail .img-large { height: 400px; border-radius: var(--radius-card); background: var(--accent-pink-pale); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 48px; overflow: hidden; }
.product-detail .img-large img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-card); }
.product-detail .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }
.product-detail h1 { font-size: clamp(22px, 5vw, 32px); margin-bottom: 10px; margin-top: 8px; }
.product-detail .price { font-family: var(--font-body); font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
:root[data-theme="after-dark"] .product-detail .price { color: var(--accent-pink); }
.product-detail p.desc { font-size: 14.5px; color: var(--body-text); line-height: 1.75; margin-bottom: 22px; }
.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.qty-row button { width: 36px; height: 36px; border-radius: var(--radius-pill); border: 1px solid var(--border-2); background: var(--surface); color: var(--ink); font-size: 16px; }
.qty-row span { width: 30px; text-align: center; font-weight: 700; }

.cart-table-wrap { overflow-x: auto; }
.cart-table { width: 100%; text-align: left; border-collapse: collapse; margin-bottom: 24px; min-width: 480px; }
.cart-table th { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); text-align: left; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.cart-table td { padding: 14px 10px 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--ink); }
.cart-item-name { display: flex; align-items: center; gap: 12px; }
.cart-item-name .thumb { width: 52px; height: 52px; border-radius: 10px; background: var(--accent-pink-pale); display: flex; align-items: center; justify-content: center; color: var(--accent); overflow: hidden; flex-shrink: 0; }
.cart-item-name .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-summary { max-width: 360px; margin-left: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; }
.cart-summary .row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--body-text); margin-bottom: 10px; }
.cart-summary .row.total { font-weight: 700; font-size: 18px; color: var(--ink); border-top: 1px solid var(--border); padding-top: 14px; }

.shipping-progress { margin-bottom: 20px; }
.shipping-progress .msg { font-size: 13px; color: var(--body-text); margin-bottom: 8px; text-align: center; }
.shipping-progress .bar { height: 8px; border-radius: var(--radius-pill); background: var(--accent-pink-pale); overflow: hidden; }
.shipping-progress .fill { height: 100%; background: var(--accent); border-radius: var(--radius-pill); transition: width .3s ease; }

.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 800px; margin: 0 auto; padding: 50px 24px; text-align: left; }
.account-grid h2 { font-size: 20px; margin-bottom: 16px; }

/* Home hero (split layout with photo collage) */
.home-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; max-width: 1360px; margin: 0 auto; padding: 64px 48px; text-align: left; }
.home-hero .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.home-hero h1 { font-size: clamp(26px, 5.5vw, 52px); line-height: 1.08; margin-bottom: 20px; }
.home-hero p.sub { font-size: 16px; line-height: 1.65; color: var(--body-text); max-width: 480px; margin-bottom: 30px; }
.home-hero-visual { position: relative; height: 420px; }
.home-hero-visual .blob { position: absolute; top: 20px; right: 20px; width: 340px; height: 340px; border-radius: 50%; background: var(--accent-pink-pale); }
.home-hero-photo { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(58,20,32,0.22); background: var(--surface); }
.home-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-hero-photo.p1 { top: 0; left: 10px; width: 210px; height: 270px; transform: rotate(-4deg); }
.home-hero-photo.p2 { top: 90px; right: 0; width: 190px; height: 190px; transform: rotate(3deg); }
.home-hero-photo.p3 { bottom: 0; left: 120px; width: 200px; height: 170px; transform: rotate(-2deg); }
.home-hero-badge { position: absolute; bottom: 40px; right: 20px; background: var(--brand-deep); color: var(--brand-deep-text); font-size: 13px; font-weight: 600; padding: 10px 18px; border-radius: var(--radius-pill); box-shadow: 0 10px 26px rgba(58,20,32,0.3); display: flex; align-items: center; gap: 8px; }

.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; max-width: 1360px; margin-left: auto; margin-right: auto; padding: 0 48px; }
.section-head h2 { font-size: 32px; }
.section-head .see-all { font-size: 14px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.section-wrap { max-width: 1360px; margin: 0 auto; padding: 8px 48px 56px; }

.groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.group-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; text-decoration: none; color: inherit; display: block; }
.group-tile img { width: 100%; height: 200px; object-fit: cover; display: block; }
.group-tile-body { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.group-tile-body p.t { font-size: 16px; font-weight: 700; color: var(--ink); }
.group-tile-body p.c { font-size: 13px; color: var(--muted-2); margin-top: 2px; }
.group-tile-arrow { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-pink-pale-2); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.prod-card-img-wrap { position: relative; }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--brand-deep); color: var(--brand-deep-text); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; }
:root[data-theme="after-dark"] .product-tag { background: var(--accent); color: #fff; border-radius: 3px; }

.story-band { background: var(--story-bg); padding: 72px 48px; }
.story-band-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; text-align: left; }
.story-band .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 3px; color: var(--accent-pink); margin-bottom: 14px; text-transform: uppercase; }
.story-band h2 { color: var(--story-text); font-size: clamp(24px, 5vw, 40px); line-height: 1.15; margin-bottom: 18px; }
.story-band p.sub { color: var(--story-sub); font-size: 16px; line-height: 1.7; max-width: 520px; }
.story-band-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.teaser-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 26px; text-align: left; }
.teaser-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-pink-pale-2); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.teaser-card p.t { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.teaser-card p.s { font-size: 14px; color: var(--muted-2); line-height: 1.6; }

.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 44px 0; text-align: left; }
.footer-col p.head { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--ink); margin-bottom: 10px; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: var(--body-text); padding: 5px 0; }
.footer-brand-blurb { font-size: 14px; color: var(--muted-2); line-height: 1.7; max-width: 300px; margin-top: 12px; }
.footer-bottom-row { border-top: 1px solid var(--border); padding: 18px 0 22px; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted-2); flex-wrap: wrap; gap: 10px; }

/* Category page: sidebar layout */
.cat-layout { display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: start; max-width: 1360px; margin: 0 auto; padding: 24px 48px 80px; }
.cat-sidebar-head { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--muted-2); text-transform: uppercase; margin-bottom: 10px; }
.cat-nav-link { display: block; padding: 10px 14px; border-radius: 10px; color: var(--body-text); font-weight: 600; font-size: 14px; text-decoration: none; margin-bottom: 2px; }
.cat-nav-link.active { background: var(--brand-deep); color: var(--brand-deep-text); font-weight: 700; }
:root[data-theme="after-dark"] .cat-nav-link.active { border-radius: 8px; }
.cat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Guides accordion */
.guide-accordion { max-width: 860px; margin: 0 auto; padding: 0 24px 72px; display: flex; flex-direction: column; gap: 14px; }
.guide-accordion summary { list-style: none; cursor: pointer; }
.guide-accordion summary::-webkit-details-marker { display: none; }
.guide-acc-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); }
.guide-acc-summary { display: flex; align-items: center; gap: 16px; padding: 20px 22px; }
.guide-acc-body { padding: 2px 24px 24px 82px; display: flex; flex-direction: column; gap: 13px; }
.guide-acc-body p.intro { font-size: 15px; line-height: 1.7; color: var(--body-text); font-weight: 600; }
.guide-acc-body p.point { font-size: 14.5px; line-height: 1.7; color: var(--body-text); }
.guide-acc-body p.point strong { color: var(--ink); }
.guide-fact { background: var(--accent-pink-pale-2); border-radius: 12px; padding: 16px 18px; }
.guide-fact p.label { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--accent); margin-bottom: 5px; text-transform: uppercase; }
.guide-fact p.text { font-size: 14px; line-height: 1.65; color: var(--body-text); }
.guide-recs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 10px; }
.guide-rec-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.guide-rec-card img { width: 100%; height: 110px; object-fit: cover; display: block; }
.guide-rec-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.guide-rec-body p.n { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.3; flex: 1; }
.guide-rec-add { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; border: none; cursor: pointer; flex-shrink: 0; }

/* Our Story timeline */
.story-timeline { max-width: 760px; margin: 0 auto; padding: 0 24px 40px; display: flex; flex-direction: column; gap: 40px; }
.story-chapter { display: flex; gap: 26px; text-align: left; }
.story-chapter-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: var(--brand-deep); color: var(--brand-deep-text); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.story-chapter-num { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; color: var(--accent); margin-bottom: 8px; text-transform: uppercase; }
.story-chapter h2 { font-size: 28px; margin-bottom: 12px; }
.story-chapter p { font-size: 15.5px; line-height: 1.8; color: var(--body-text); }
.story-support-band { background: var(--story-bg); padding: 64px 24px; text-align: center; }
.story-support-band h2 { color: var(--story-text); font-size: 36px; margin-bottom: 14px; }
.story-support-band > .wrap > p { color: var(--story-sub); max-width: 540px; margin: 0 auto 36px; font-size: 15px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; max-width: 900px; margin: 0 auto; }
.support-card { background: rgba(243,220,203,0.07); border: 1px solid rgba(245,168,197,0.25); border-radius: var(--radius-card); padding: 24px; }
:root[data-theme="after-dark"] .support-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.support-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-pink); color: var(--story-bg); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
:root[data-theme="after-dark"] .support-card-icon { background: rgba(255,255,255,0.12); color: var(--accent-pink); border-radius: 10px; }
.support-card p.t { font-size: 16px; font-weight: 700; color: var(--story-text); margin-bottom: 6px; }
.support-card p.s { font-size: 14px; line-height: 1.65; color: var(--story-sub); }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--body-text); margin-bottom: 6px; }
.field input { width: 100%; padding: 12px 14px; border: 1px solid var(--border-2); border-radius: 10px; font-size: 14px; background: var(--surface); color: var(--ink); font-family: var(--font-body); }
input.tc-input { font-family: var(--font-body); }

@media (max-width: 1024px) {
  .grid-categories { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  header.site-header .wrap { flex-wrap: wrap; justify-content: center; row-gap: 10px; }
  .header-icons { order: 2; }
  .logo-img { height: 40px; max-width: 170px; }
  .hero h1 { font-size: 30px; }
  .hero { padding: 40px 20px; }
  .grid-bestcats { grid-template-columns: repeat(2, 1fr); }
  .grid-categories { grid-template-columns: repeat(3, 1fr); }
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-detail, .account-grid { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px 48px; }
  .product-detail .img-large { height: 320px; }
  .cart-summary { max-width: 100%; margin-left: 0; }
  .grid-bigtiles { grid-template-columns: 1fr; }

  .home-hero { grid-template-columns: 1fr; text-align: center; padding: 32px 20px 40px; gap: 28px; }
  .home-hero p.sub { margin-left: auto; margin-right: auto; }
  .home-hero h1 { font-size: 34px; }
  .home-hero-visual { order: -1; height: 280px; overflow: hidden; margin-bottom: 8px; }
  .home-hero-visual .blob { width: 78%; height: auto; aspect-ratio: 1 / 1; top: 10px; right: 5%; }
  .home-hero-photo.p1 { width: 44%; height: 82%; left: 2%; top: 0; }
  .home-hero-photo.p2 { width: 38%; height: 58%; right: 2%; left: auto; top: 22%; }
  .home-hero-photo.p3 { width: 40%; height: 50%; left: 26%; bottom: 0; top: auto; }
  .home-hero-badge { right: 4%; bottom: 8%; font-size: 12px; padding: 8px 14px; }
  .section-head, .section-wrap, .home-hero, .cat-layout { padding-left: 20px; padding-right: 20px; }
  .groups-grid, .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .story-band-inner { grid-template-columns: 1fr; text-align: center; padding: 0; gap: 22px; }
  .story-band { padding: 44px 20px; }
  .story-band-actions { align-items: center; }
  .footer-cols { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-brand-blurb { margin-left: auto; margin-right: auto; }
  .footer-col > div { justify-content: center; }
  .footer-bottom-row { flex-direction: column; text-align: center; gap: 10px; }
  .cat-layout { grid-template-columns: 1fr; gap: 24px; }
  .cat-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-sidebar { display: flex; flex-direction: column; gap: 8px; }
  .guide-recs-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-acc-body { padding: 2px 20px 20px 20px; }
}
@media (max-width: 520px) {
  .grid-categories { grid-template-columns: repeat(2, 1fr); }
  .grid-bestcats { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .cart-summary { max-width: 100%; margin-left: 0; }
  .grid-bigtiles { grid-template-columns: 1fr; }
  .bestcat-tile { font-size: 13px; padding: 12px; }
  .bestcat-tile img { width: 48px; height: 48px; }
  .logo-word { font-size: 22px; }
  .logo-img { height: 34px; max-width: 140px; }
  .theme-toggle { right: 10px; bottom: 16px; }
  .theme-toggle-btn { padding: 8px 12px; font-size: 12px; }

  .home-hero h1 { font-size: 28px; }
  .teaser-grid, .footer-cols, .cat-cards, .guide-recs-grid { grid-template-columns: 1fr; }
  .story-band h2 { font-size: 28px; }

  .groups-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .group-tile img { height: 110px; }
  .group-tile-body { padding: 10px 12px; }
  .group-tile-body p.t { font-size: 13px; }
  .group-tile-body p.c { font-size: 11px; }
  .group-tile-arrow { width: 26px; height: 26px; font-size: 12px; }

  .grid-products { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .prod-card { padding: 7px; }
  .prod-card .img { height: 76px; margin-bottom: 6px; border-radius: 8px; }
  .prod-card .img img { border-radius: 8px; }
  .prod-card p.name { font-size: 10.5px; margin-bottom: 4px; min-height: 27px; line-height: 1.25; }
  .prod-row { gap: 3px; }
  .prod-row .price { font-size: 12px; }
  .add-btn, .wish-btn { width: 22px; height: 22px; font-size: 11px; }
}
