/*
Theme Name: Tea Passage
Theme URI: https://teapassage.com
Author: Tea Passage
Description: A modern, minimal editorial tea store. Warm white palette, magazine-style layouts, mood-based tea discovery. WooCommerce compatible with custom frontend styling.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: tea-passage
Tags: woocommerce, tea, editorial, minimal, blog, e-commerce, light
*/

/* ═══ RESET ═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: #F8F6F1; color: #2D2926; font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 15px; line-height: 1.75; letter-spacing: 0.01em; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: rgba(184,134,11,0.2); color: #2D2926; }

/* ═══ DESIGN TOKENS ═══════════════════════════════════════ */
:root {
  --bg: #F8F6F1;
  --bg-warm: #F0EDE6;
  --bg-deep: #E8E4DB;
  --surface: #FFFFFF;
  --surface-warm: #FAF8F4;
  --surface-hover: #F0EDE6;
  --text: #2D2926;
  --text-secondary: #6B6560;
  --text-muted: #9A958D;
  --text-light: #B5AFA7;
  --accent: #B8860B;
  --accent-soft: rgba(184,134,11,0.12);
  --accent-hover: #9A7009;
  --border: rgba(45,41,38,0.08);
  --border-hover: rgba(45,41,38,0.15);
  --shadow-sm: 0 1px 3px rgba(45,41,38,0.04);
  --shadow-md: 0 4px 20px rgba(45,41,38,0.06);
  --shadow-lg: 0 12px 40px rgba(45,41,38,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-serif: 'Cormorant Garamond', 'Noto Serif SC', 'Georgia', serif;
  --font-sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-2xl: 144px;
}

/* ═══ TYPOGRAPHY ══════════════════════════════════════════ */
.font-serif { font-family: var(--font-serif); }
.t-display { font-family: var(--font-serif); font-size: clamp(40px, 6vw, 76px); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }
.t-headline { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 52px); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
.t-title { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 32px); font-weight: 400; line-height: 1.2; }
.t-subtitle { font-family: var(--font-serif); font-size: clamp(16px, 1.8vw, 20px); font-weight: 500; line-height: 1.35; }
.t-body { font-size: 16px; line-height: 1.8; color: var(--text-secondary); }
.t-body-sm { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.t-caption { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.t-price { font-family: var(--font-serif); font-size: 18px; color: var(--text); font-weight: 500; }

/* ═══ LAYOUT ══════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 56px; } }

/* ═══ NAVIGATION ══════════════════════════════════════════ */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.4s ease, box-shadow 0.4s ease; }
.site-nav.scrolled { background: rgba(248,246,241,0.92); backdrop-filter: blur(20px) saturate(1.1); box-shadow: 0 1px 0 var(--border); }
.site-nav .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
@media (min-width: 768px) { .site-nav .nav-inner { height: 76px; } }
.site-nav .logo { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--text); letter-spacing: 0.02em; transition: opacity 0.3s ease; }
.site-nav .logo:hover { opacity: 0.6; }
.site-nav .nav-links { display: none; align-items: center; gap: 40px; }
@media (min-width: 768px) { .site-nav .nav-links { display: flex; } }
.site-nav .nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-secondary); transition: color 0.3s ease; }
.site-nav .nav-links a:hover { color: var(--accent); }
.site-nav .nav-cta { font-size: 13px; font-weight: 500; color: var(--text); letter-spacing: 0.04em; transition: color 0.3s ease; }
.site-nav .nav-cta:hover { color: var(--accent); }

/* ═══ HERO ════════════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg); }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(248,246,241,0.15) 0%, rgba(248,246,241,0.05) 40%, rgba(248,246,241,0.5) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 640px; padding: 0 24px; }
.hero-content .t-caption { color: var(--text-muted); margin-bottom: 20px; display: block; }
.hero-content .t-display { color: var(--text); margin-bottom: 16px; }
.hero-content .t-body { color: var(--text-secondary); max-width: 420px; margin: 0 auto 32px; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll .scroll-line { width: 1px; height: 40px; background: var(--text-light); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 0.8; transform: scaleY(1.3); } }

/* ═══ BUTTONS ═════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; border-radius: 100px; transition: all 0.35s ease; cursor: pointer; }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-hover); }
.btn-outline:hover { border-color: var(--text); }
.btn-text { background: transparent; color: var(--text); padding: 8px 0; border-radius: 0; border-bottom: 1px solid transparent; }
.btn-text:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* ═══ SECTION HEADER ══════════════════════════════════════ */
.section-head { margin-bottom: 48px; }
.section-head .t-caption { color: var(--text-light); margin-bottom: 12px; display: block; }
.section-head .t-title { color: var(--text); }
.section-head-flex { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.section-head-flex a { font-size: 13px; color: var(--text-muted); transition: color 0.3s ease; }
.section-head-flex a:hover { color: var(--accent); }

/* ═══ PRODUCT CARD ════════════════════════════════════════ */
.p-card { display: block; }
.p-card .p-img { position: relative; overflow: hidden; border-radius: var(--radius-md); margin-bottom: 20px; aspect-ratio: 4/5; background: var(--surface-warm); }
.p-card .p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.p-card:hover .p-img img { transform: scale(1.04); }
.p-card .p-subtitle { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 6px; }
.p-card .p-name { font-family: var(--font-serif); font-size: 17px; font-weight: 500; color: var(--text); line-height: 1.35; transition: color 0.3s ease; }
.p-card:hover .p-name { color: var(--accent); }
.p-card .p-price { margin-top: 8px; display: block; }

/* ═══ MOOD CARD (Explore by Feeling) ══════════════════════ */
/* Mood cards — inline styles preferred, these are minimal fallbacks */

/* ═══ JOURNAL CARD ════════════════════════════════════════ */
.j-card { display: block; }
.j-card .j-img { position: relative; overflow: hidden; border-radius: var(--radius-md); margin-bottom: 20px; aspect-ratio: 16/10; background: var(--surface-warm); }
.j-card .j-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.j-card:hover .j-img img { transform: scale(1.04); }
.j-card .j-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.j-card .j-meta .t-caption { margin-bottom: 0; }
.j-card .j-title { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--text); line-height: 1.3; transition: color 0.3s ease; }
.j-card:hover .j-title { color: var(--accent); }
.j-card .j-excerpt { font-size: 14px; line-height: 1.65; color: var(--text-muted); margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ═══ BREWING GUIDE ═══════════════════════════════════════ */
.brewing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-md); overflow: hidden; }
@media (min-width: 640px) { .brewing { grid-template-columns: repeat(4, 1fr); } }
.brew-item { background: var(--surface); padding: 28px 24px; }
.brew-item .brew-icon { color: var(--text-light); margin-bottom: 12px; }
.brew-item .brew-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.brew-item .brew-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 6px; }
.brew-item .brew-value { font-family: var(--font-serif); font-size: 18px; color: var(--text); }

/* ═══ FLAVOR TAGS ═════════════════════════════════════════ */
.flavor-tag { display: inline-block; padding: 6px 14px; background: var(--accent-soft); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--accent); letter-spacing: 0.02em; }

/* ═══ META ROW ════════════════════════════════════════════ */
.meta-row { display: flex; align-items: center; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.meta-row .meta-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); width: 80px; flex-shrink: 0; }
.meta-row .meta-value { font-size: 14px; color: var(--text); }

/* ═══ DIVIDER ═════════════════════════════════════════════ */
.divider { height: 1px; background: var(--border); }
.divider-accent { height: 1px; background: var(--accent); opacity: 0.2; }

/* ═══ ACCENT LINE ═════════════════════════════════════════ */
.accent-line { width: 40px; height: 1px; background: var(--accent); }

/* ═══ GRIDS ═══════════════════════════════════════════════ */
.grid-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .grid-5 { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .grid-5 { grid-template-columns: repeat(5, 1fr); gap: 16px; } }

.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.grid-3 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 48px; } }

.grid-journal { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .grid-journal { grid-template-columns: 1fr 1fr; gap: 40px; } }

/* ═══ GALLERY THUMBS ══════════════════════════════════════ */
.gallery-thumbs { display: flex; gap: 10px; margin-top: 16px; }
.gallery-thumbs .thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); cursor: pointer; opacity: 0.6; transition: all 0.3s ease; }
.gallery-thumbs .thumb.active, .gallery-thumbs .thumb:hover { opacity: 1; border-color: var(--text); }
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ PAGE HERO ═══════════════════════════════════════════ */
.page-hero { position: relative; min-height: 55vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg-warm); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88); }
.page-hero .page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(248,246,241,0.2) 0%, rgba(248,246,241,0.5) 100%); }
.page-hero .page-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.page-hero .page-hero-content .t-caption { color: var(--text-light); margin-bottom: 16px; display: block; }
.page-hero .page-hero-content .t-headline { color: var(--text); }

/* ═══ BREADCRUMB ══════════════════════════════════════════ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: color 0.3s ease; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--text); }

/* ═══ REVEAL ANIMATION ════════════════════════════════════ */
.reveal { opacity: 1; }
.js-enabled .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.js-enabled .reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ FOOTER ══════════════════════════════════════════════ */
.site-footer { border-top: 1px solid var(--border); padding: 80px 0 32px; }
@media (min-width: 768px) { .site-footer { padding: 100px 0 32px; } }
.site-footer .footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .site-footer .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; } }
.site-footer .footer-brand { font-family: var(--font-serif); font-size: 20px; color: var(--text); }
.site-footer .footer-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); max-width: 260px; margin-top: 16px; }
.site-footer .footer-heading { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 20px; }
.site-footer .footer-links li { margin-bottom: 10px; }
.site-footer .footer-links a { font-size: 14px; color: var(--text-secondary); transition: color 0.3s ease; }
.site-footer .footer-links a:hover { color: var(--accent); }
.site-footer .footer-bottom { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (min-width: 768px) { .site-footer .footer-bottom { flex-direction: row; justify-content: space-between; } }
.site-footer .footer-bottom p, .site-footer .footer-bottom a { font-size: 12px; color: var(--text-light); }

/* ═══ POST CONTENT ════════════════════════════════════════ */
.post-content { max-width: 680px; margin: 0 auto; }
.post-content p { font-size: 17px; line-height: 1.85; color: var(--text-secondary); margin-bottom: 28px; }
.post-content h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 400; color: var(--text); margin: 48px 0 20px; }
.post-content h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--text); margin: 36px 0 16px; }
.post-content ul { margin: 16px 0 28px 24px; }
.post-content ul li { list-style: disc; font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 10px; }
.post-content ol { margin: 16px 0 28px 24px; }
.post-content ol li { list-style: decimal; font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 10px; }

/* ═══ FAQ ═════════════════════════════════════════════════ */
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-item h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 500; color: var(--text); margin-bottom: 10px; }

/* ═══ WOO OVERRIDES ═══════════════════════════════════════ */
.woocommerce-breadcrumb { display: none !important; }
.woocommerce-result-count { display: none; }
.woocommerce-ordering { display: none; }
.added_to_cart { display: none !important; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { background: var(--surface) !important; border: 1px solid var(--border) !important; color: var(--text) !important; border-radius: var(--radius-md) !important; padding: 16px 24px !important; }

/* Cart button */
.add_to_cart_button, .single_add_to_cart_button, #place_order {
  background: var(--text) !important; color: var(--bg) !important; font-size: 13px !important;
  font-weight: 500 !important; letter-spacing: 0.04em !important; padding: 16px 36px !important;
  border-radius: 100px !important; transition: all 0.35s ease !important;
}
.add_to_cart_button:hover, .single_add_to_cart_button:hover, #place_order:hover {
  background: var(--accent) !important; color: #fff !important; transform: translateY(-1px) !important;
}

/* Quantity */
.qty { background: var(--surface) !important; border: 1px solid var(--border) !important; color: var(--text) !important;
  padding: 12px 16px !important; border-radius: var(--radius-sm) !important; font-size: 14px !important; width: 70px !important; }

/* Cart & Checkout */
.woocommerce-cart-form th { background: var(--bg-warm); color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; border: none; padding: 16px; font-weight: 500; }
.woocommerce-cart-form td { border-bottom: 1px solid var(--border); padding: 20px 16px; color: var(--text); }
.woocommerce-cart-form .product-name a { color: var(--text); font-family: var(--font-serif); font-size: 16px; }
.woocommerce-cart-form .product-price, .woocommerce-cart-form .product-subtotal { color: var(--text); font-family: var(--font-serif); }
.cart_totals { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-sm); }
.cart_totals h2 { font-family: var(--font-serif); font-size: 20px; color: var(--text); margin-bottom: 24px; }

/* Checkout inputs */
.woocommerce-checkout input, .woocommerce-checkout textarea, .woocommerce-checkout select {
  background: var(--surface) !important; border: 1px solid var(--border) !important; color: var(--text) !important;
  padding: 14px 18px !important; border-radius: var(--radius-sm) !important; font-size: 14px !important;
}
.woocommerce-checkout input:focus { border-color: var(--accent) !important; outline: none !important; }
.woocommerce-checkout label { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
#order_review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; }

/* Payment */
.wc_payment_method { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 8px; background: var(--surface); }

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  .section-head-flex { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (min-width: 640px) { .show-mobile { display: none !important; } }

/* ═══ SPACING ═════════════════════════════════════════════ */
.pt-32 { padding-top: 128px; }
.py-xl { padding-top: 96px; padding-bottom: 96px; }
@media (min-width: 768px) { .py-xl { padding-top: 128px; padding-bottom: 128px; } }
.py-lg { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 768px) { .py-lg { padding-top: 80px; padding-bottom: 80px; } }
.pb-xl { padding-bottom: 96px; }
@media (min-width: 768px) { .pb-xl { padding-bottom: 128px; } }


/* ═══════════════════════════════════════════════════════════ */
/* HEADER V2 — Editorial Navigation                          */
/* ═══════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header--scrolled {
  background: rgba(248,246,241,0.94);
  backdrop-filter: blur(20px) saturate(1.1);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header-inner { height: 72px; padding: 0 40px; }
}

/* Logo */
.header-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.header-logo:hover { opacity: 0.6; }

/* Desktop Navigation */
.header-nav-desktop {
  display: none;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .header-nav-desktop { display: flex; }
}

.header-nav-desktop a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.header-nav-desktop a:hover { color: var(--text); }

.header-nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header-nav-desktop a:hover::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.3s ease;
  font-family: var(--font-sans);
}

.nav-dropdown-toggle:hover {
  color: var(--text);
}

.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 0;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-dropdown-link:hover {
  color: var(--text);
  background: var(--bg-warm);
}

.nav-dropdown-link--featured {
  color: var(--accent);
  font-weight: 500;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
}

/* Right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .header-actions { gap: 32px; }
}

/* Cart */
.header-cart {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-cart:hover { color: var(--text); }

.header-cart-label {
  display: none;
}

@media (min-width: 768px) {
  .header-cart-label { display: inline; }
}

.header-cart-count {
  font-family: var(--font-serif);
  color: var(--text);
}

/* Mobile Menu Toggle */
.header-menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 44px;
  height: 44px;
  gap: 7px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  margin-right: -6px;
}

@media (min-width: 768px) {
  .header-menu-toggle { display: none; }
}

.menu-toggle-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

.menu-toggle-bar:last-child { width: 18px; }

.header-menu-toggle:hover .menu-toggle-bar { width: 26px; }

/* ═══════════════════════════════════════════════════════════ */
/* DRAWER MENU — Right Slide Panel                           */
/* ═══════════════════════════════════════════════════════════ */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(45, 41, 38, 0.2);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-backdrop--visible {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: var(--bg);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.drawer-menu--open {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .drawer-menu { display: none; }
  .drawer-backdrop { display: none; }
}

/* Close button */
.drawer-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.drawer-close:hover { color: var(--text); }

/* Drawer content */
.drawer-content {
  padding: 72px 32px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

/* Drawer sections (accordion) */
.drawer-section {
  border-bottom: 1px solid var(--border);
}

.drawer-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease;
}

.drawer-section-toggle:hover { color: var(--accent); }

.drawer-chevron {
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.drawer-section-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding-left: 8px;
}

.drawer-section-panel--open {
  max-height: 300px;
  padding-bottom: 16px;
}

/* Drawer links */
.drawer-link {
  display: block;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s ease, padding-left 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.drawer-link:hover { color: var(--accent); padding-left: 4px; }

.drawer-link--sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: none;
  letter-spacing: 0.02em;
}

.drawer-link--sub:hover { color: var(--text); }

.drawer-link--featured {
  color: var(--accent);
  font-weight: 500;
}

/* Drawer footer */
.drawer-footer {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.drawer-footer-link {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.drawer-footer-link:hover { color: var(--accent); }

.drawer-footer-copy {
  font-size: 12px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════ */
/* CART PAGE — Minimal Editorial                             */
/* ═══════════════════════════════════════════════════════════ */

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 639px) {
  .cart-item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-warm);
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .cart-item-image { width: 64px; height: 64px; }
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
}

.cart-item-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  background: var(--surface);
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.cart-qty-btn:hover { background: var(--bg-warm); color: var(--text); }

.cart-qty-btn:active { background: var(--bg-deep); }

.cart-qty-value {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--bg);
}

.cart-item-price {
  text-align: right;
}

@media (max-width: 639px) {
  .cart-item-price {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.cart-item-price .t-price {
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 639px) {
  .cart-item-price .t-price { margin-bottom: 0; }
}

.cart-item-remove {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item-remove:hover { color: #C44; }

/* Subtotal */
.cart-subtotal {
  margin-top: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-continue {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
  transition: color 0.3s ease;
}

.cart-continue:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════ */
/* CHECKOUT — Brand Editorial                                 */
/* ═══════════════════════════════════════════════════════════ */

.checkout-summary-toggle {
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.checkout-summary-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease;
}

.checkout-summary-btn:hover { background: var(--bg-warm); }

.checkout-summary-btn svg {
  transition: transform 0.3s ease;
  color: var(--text-light);
}

.checkout-summary-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.checkout-summary-panel--open {
  max-height: 600px;
  padding-bottom: 24px;
}

.checkout-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.checkout-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
}

.checkout-columns {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .checkout-columns {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* WooCommerce checkout overrides */
.woocommerce-checkout .form-row {
  margin-bottom: 20px;
}

.woocommerce-checkout .form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.woocommerce-checkout .woocommerce-input-wrapper {
  width: 100%;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea.input-text,
.woocommerce-checkout select {
  width: 100%;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  padding: 14px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 15px !important;
  font-family: var(--font-sans) !important;
  transition: border-color 0.3s ease !important;
  -webkit-appearance: none;
  appearance: none;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea.input-text:focus,
.woocommerce-checkout select:focus {
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--accent-soft) !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  height: 48px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection__rendered {
  line-height: 48px !important;
  color: var(--text) !important;
  padding-left: 18px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection__arrow {
  height: 48px !important;
}

/* Order review */
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.woocommerce-checkout-review-order-table th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.woocommerce-checkout-review-order-table .product-name {
  color: var(--text);
  font-family: var(--font-serif);
}

.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  font-family: var(--font-serif);
  color: var(--text);
}

/* Payment methods */
.wc_payment_methods {
  margin-top: 24px;
}

.wc_payment_method {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 8px;
  background: var(--surface);
  transition: border-color 0.3s ease;
}

.wc_payment_method:hover { border-color: var(--border-hover); }

.wc_payment_method label {
  font-size: 14px !important;
  color: var(--text) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.payment_box {
  padding: 12px 0 0 !important;
  background: transparent !important;
  font-size: 13px;
  color: var(--text-muted);
}

.payment_box::before { display: none !important; }

/* Place order button */
#place_order {
  width: 100% !important;
  margin-top: 24px !important;
  padding: 18px 36px !important;
  font-size: 14px !important;
}

/* Checkout headings */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════ */
/* MOOD CARDS V2 — Asymmetric Editorial                       */
/* ═══════════════════════════════════════════════════════════ */

/* Mood Grid — Simple & Reliable */
.mood-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .mood-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* ADD TO CART FORM                                           */
/* ═══════════════════════════════════════════════════════════ */

.woocommerce-variation-add-to-cart,
.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0 !important;
}

.woocommerce-variation-price {
  margin-bottom: 16px;
}

.woocommerce-variation-availability {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE TOUCH AREAS                                     */
/* ═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  /* Larger touch targets */
  .btn {
    padding: 16px 36px;
    min-height: 48px;
  }

  /* Mood cards use inline styles */

  /* Better spacing */
  .section-head { margin-bottom: 32px; }
  .section-head-flex { margin-bottom: 32px; }

  /* Product cards */
  .p-card .p-name { font-size: 15px; }

  /* Journal cards */
  .j-card .j-title { font-size: 17px; }

  /* Breathing room */
  .py-xl { padding-top: 64px; padding-bottom: 64px; }
  .pb-xl { padding-bottom: 64px; }

  /* Smaller hero text */
  .hero-content .t-display { font-size: clamp(32px, 10vw, 48px); }

  /* Footer */
  .site-footer { padding: 56px 0 24px; }

  /* Page hero */
  .page-hero { min-height: 45vh; }

  /* Drawer link sizes */
  .drawer-section-toggle,
  .drawer-link {
    font-size: 18px;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* SEARCH                                                     */
/* ═══════════════════════════════════════════════════════════ */

.header-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.header-search-toggle:hover { color: var(--text); }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(248, 246, 241, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.search-overlay--open { opacity: 1; visibility: visible; }

.search-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.search-close:hover { color: var(--text); }

.search-content { width: 100%; max-width: 640px; }

.search-form {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 20px;
  border-bottom: 2px solid var(--text);
  margin-bottom: 40px;
}

.search-form svg { color: var(--text-light); flex-shrink: 0; }

.search-input {
  flex: 1;
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}

.search-input::placeholder { color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════ */
/* ACCESSIBILITY                                              */
/* ═══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .drawer-menu {
    transition: none;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════ */
/* UTILITY CLASSES                                            */
/* ═══════════════════════════════════════════════════════════ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Legacy nav compatibility */
.site-nav { display: none; }

@media (min-width: 768px) {
  .site-nav {
    display: block;
  }
}


/* ═══════════════════════════════════════════════════════════ */
/* ABOUT PAGE — Editorial Brand Philosophy                    */
/* ═══════════════════════════════════════════════════════════ */

/* Hero */
.about-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.about-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 246, 241, 0.1) 0%,
    rgba(248, 246, 241, 0.05) 40%,
    rgba(248, 246, 241, 0.55) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 640px;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  text-wrap: balance;
}

.about-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Sections */
.about-section {
  padding: 96px 0;
}

@media (min-width: 768px) {
  .about-section {
    padding: 144px 0;
  }
}

.about-section--light {
  background: var(--bg);
}

.about-section--warm {
  background: var(--bg-warm);
}

/* Label */
.about-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Heading */
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}

.about-heading--center {
  text-align: center;
}

/* Prose */
.about-prose {
  margin-top: 24px;
}

.about-prose p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-prose--center {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Narrow container */
.about-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .about-narrow {
    padding: 0;
  }
}

/* Asymmetric Layout */
.about-asymmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-asymmetric {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    padding: 0 56px;
  }
}

@media (min-width: 1024px) {
  .about-asymmetric {
    gap: 120px;
  }
}

.about-asymmetric--reverse {
  direction: rtl;
}

.about-asymmetric--reverse > * {
  direction: ltr;
}

@media (min-width: 768px) {
  .about-asymmetric--reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about-asymmetric-image {
  position: relative;
}

.about-asymmetric-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-asymmetric-image--offset {
  margin-top: 0;
}

@media (min-width: 768px) {
  .about-asymmetric-image--offset {
    margin-top: 48px;
  }
}

.about-asymmetric-text--padded {
  padding-right: 0;
}

@media (min-width: 768px) {
  .about-asymmetric-text--padded {
    padding-right: 32px;
  }
}

/* Approach Grid */
.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}

@media (min-width: 640px) {
  .about-approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .about-approach-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.about-approach-item {
  padding: 32px 28px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-approach-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-approach-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-approach-item h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.about-approach-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Image Break */
.about-image-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.about-image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.about-image-break-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 24px;
}

.about-image-break blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: #F8F6F1;
  text-align: center;
  max-width: 560px;
  text-wrap: balance;
}

/* Independence Grid */
.about-independence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .about-independence {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.about-independence-item {
  position: relative;
}

.about-independence-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.about-independence-item h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.about-independence-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* CTA */
.about-cta {
  text-align: center;
}

.about-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

@media (min-width: 480px) {
  .about-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* TEA MOOD PAGE — Editorial Atmosphere                       */
/* ═══════════════════════════════════════════════════════════ */

/* Hero */
.mood-hero {
  position: relative;
  height: 75vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mood-hero-bg {
  position: absolute;
  inset: 0;
}

.mood-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.mood-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 246, 241, 0.05) 0%,
    rgba(248, 246, 241, 0.15) 50%,
    rgba(248, 246, 241, 0.6) 100%
  );
}

.mood-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 640px;
}

.mood-hero-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.7);
  margin-bottom: 16px;
}

.mood-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}

/* Poetic Intro */
.mood-intro {
  background: var(--bg);
  padding: 96px 24px;
}

@media (min-width: 768px) {
  .mood-intro {
    padding: 144px 56px;
  }
}

.mood-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.mood-poem {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  text-wrap: pretty;
}

.mood-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
}

/* Section Head */
.mood-section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* Tea Cards on Mood Page */
.mood-teas {
  background: var(--bg-warm);
  padding: 96px 0;
}

@media (min-width: 768px) {
  .mood-teas {
    padding: 144px 0;
  }
}

.mood-tea-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mood-tea-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mood-tea-card .p-img {
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

/* Brewing Suggestion */
.mood-brewing {
  background: var(--bg);
  padding: 96px 24px;
}

@media (min-width: 768px) {
  .mood-brewing {
    padding: 144px 56px;
  }
}

.mood-brewing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.mood-brewing-text {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-top: 24px;
}

.mood-brewing-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.mood-brewing-detail-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.mood-brewing-detail-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text);
}

/* Journal */
.mood-journal {
  background: var(--bg);
  padding: 96px 0;
}

@media (min-width: 768px) {
  .mood-journal {
    padding: 144px 0;
  }
}

/* Other Moods */
.mood-others {
  background: var(--bg-warm);
  padding: 96px 0;
}

@media (min-width: 768px) {
  .mood-others {
    padding: 144px 0;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* EDITORIAL TYPOGRAPHY UPGRADES                              */
/* ═══════════════════════════════════════════════════════════ */

/* Larger body text for editorial feel */
.about-prose p,
.mood-desc,
.mood-brewing-text {
  letter-spacing: 0.005em;
}

/* Hero title refinements */
.t-display {
  text-wrap: balance;
}

.t-headline {
  text-wrap: balance;
}

/* Better link underlines on About */
.about-prose a {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.about-prose a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════ */
/* FAQ — Minimal Editorial                                     */
/* ═══════════════════════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.4s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 560px;
  text-wrap: pretty;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.faq-answer a:hover {
  border-bottom-color: var(--accent);
}

@media (min-width: 768px) {
  .faq-item {
    padding: 40px 0;
  }
  .faq-question {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* PRODUCT INTERNAL LINKS — Editorial Cross-Reference          */
/* ═══════════════════════════════════════════════════════════ */

.product-links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.product-links-heading {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  display: block;
}

.product-links-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product-links-list a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.product-links-list a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════ */
/* MOOD INTERNAL LINKS — Content Cross-Reference               */
/* ═══════════════════════════════════════════════════════════ */

.mood-crossref {
  background: var(--bg);
  padding: 80px 0;
}

.mood-crossref-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mood-crossref-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.mood-crossref-item {
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mood-crossref-item:hover {
  transform: translateY(-2px);
}

.mood-crossref-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.mood-crossref-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.mood-crossref-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════ */
/* HERO CTA — Dual Button                                      */
/* ═══════════════════════════════════════════════════════════ */

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  background: transparent;
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--text-light);
  color: var(--text);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════ */
/* NEWSLETTER FORM — Minimal Editorial                         */
/* ═══════════════════════════════════════════════════════════ */

.tp-newsletter-form {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tp-newsletter-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
}

.tp-newsletter-input:focus {
  border-color: var(--accent);
}

.tp-newsletter-input::placeholder {
  color: var(--text-muted);
}

.tp-newsletter-btn {
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.tp-newsletter-btn:hover {
  background: #8B7324;
  transform: translateY(-1px);
}

.tp-newsletter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.tp-newsletter-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════ */
/* FOOTER — Editorial Brand Closing                            */
/* ═══════════════════════════════════════════════════════════ */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 80px 0 60px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
    gap: 48px;
    padding: 100px 0 64px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    gap: 64px;
  }
}

/* Brand column */
.footer-brand-col .footer-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer-brand-col .footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 220px;
}

/* Navigation columns */
.footer-nav-col .footer-heading,
.footer-contact-col .footer-heading,
.footer-newsletter-col .footer-heading {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-nav-col .footer-links a,
.footer-contact-col .footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 2.2;
  transition: color 0.3s ease;
  display: block;
}

.footer-nav-col .footer-links a:hover,
.footer-contact-col .footer-links a:hover {
  color: var(--accent);
}

/* Bottom bar */
/* Social Links */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.footer-social a svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  color: var(--text);
}

.footer-social a:hover svg {
  opacity: 1;
}

.footer-social-sep {
  color: var(--text-light);
  font-size: 10px;
  user-select: none;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.footer-policies {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-policies a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-policies a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════ */
/* BREWING RITUAL — Editorial Tea Experience                   */
/* ═══════════════════════════════════════════════════════════ */

.brewing-ritual {
  background: var(--bg-deep);
  padding: 120px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .brewing-ritual {
    padding: 160px 0;
  }
}

.brewing-ritual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .brewing-ritual-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }
}

@media (min-width: 1024px) {
  .brewing-ritual-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
  }
}

/* Image — offset to the left */
.brewing-ritual-image {
  position: relative;
}

@media (min-width: 768px) {
  .brewing-ritual-image {
    margin-left: -40px;
  }
}

@media (min-width: 1280px) {
  .brewing-ritual-image {
    margin-left: -56px;
  }
}

.brewing-ritual-image a {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.brewing-ritual-image a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 41, 38, 0.08) 0%,
    transparent 50%,
    rgba(45, 41, 38, 0.04) 100%
  );
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.brewing-ritual-image a:hover::after {
  opacity: 0.5;
}

.brewing-ritual-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.brewing-ritual-image a:hover img {
  transform: scale(1.03);
}

/* Text */
.brewing-ritual-text {
  padding: 0;
}

@media (min-width: 768px) {
  .brewing-ritual-text {
    padding-right: 24px;
    padding-left: 16px;
  }
}

@media (min-width: 1024px) {
  .brewing-ritual-text {
    padding-right: 48px;
    padding-left: 32px;
  }
}

.brewing-ritual-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
  text-wrap: balance;
}

.brewing-ritual-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 360px;
  text-wrap: pretty;
}

.brewing-ritual-btn {
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.brewing-ritual-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-1px);
}

/* Vertical accent line before text */
.brewing-ritual-text::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 28px;
  opacity: 0.3;
}

/* Mobile: image-first, stacked */
@media (max-width: 767px) {
  .brewing-ritual {
    padding: 80px 0;
  }

  .brewing-ritual-grid {
    gap: 36px;
  }

  .brewing-ritual-image {
    margin: 0 -24px;
  }

  .brewing-ritual-image img {
    aspect-ratio: 4/3;
    border-radius: 0;
  }

  .brewing-ritual-image a {
    border-radius: 0;
  }

  .brewing-ritual-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .brewing-ritual-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }
}
