:root {
  --cream: #fbf6ec;
  --cream-2: #f5ecd9;
  --soft: #fffaf1;
  --brown: #3c2419;
  --brown-2: #6d513e;
  --brown-3: #9b7c62;
  --rose: #ffadc5;
  --rose-2: #ffd2df;
  --peach: #ffd7aa;
  --mint: #a8d4b2;
  --text: #2b1d16;
  --muted: #7e6a58;
  --line: rgba(60, 36, 25, 0.13);
  --shadow: 0 22px 60px rgba(61, 36, 22, 0.12);
  --shadow-soft: 0 12px 32px rgba(61, 36, 22, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 999px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; }
img { max-width: 100%; display: block; }
::selection { background: var(--rose); color: var(--brown); }

.site-header {
  position: fixed;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1540px, calc(100% - 70px));
  z-index: 1000;
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  align-items: center;
  gap: 20px;
  transition: 0.25s ease;
}
.site-header.scrolled {
  top: 14px;
  width: min(1420px, calc(100% - 40px));
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--brown); }
.brand-mark {
  width: 54px; height: 54px; border-radius: 18px;
  background: var(--rose);
  display: grid; place-items: center;
  font-weight: 900; font-size: 25px;
  box-shadow: 0 15px 35px rgba(114, 47, 62, 0.16);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 25px; letter-spacing: -0.06em; }
.brand-copy em { font-family: 'Pacifico', cursive; font-size: 13px; color: var(--brown-3); transform: rotate(-5deg); margin-left: 7px; }
.main-nav {
  justify-self: center;
  background: rgba(255, 249, 240, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  min-height: 67px;
  border-radius: 999px;
  padding: 0 35px;
  display: flex;
  align-items: center;
  gap: 35px;
  box-shadow: 0 18px 45px rgba(55, 32, 20, 0.10);
}
.main-nav a { font-weight: 800; color: rgba(60, 36, 25, 0.72); transition: 0.2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--brown); transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.icon-btn {
  width: 54px; height: 54px; border-radius: 18px;
  background: rgba(255, 249, 240, 0.95);
  display: grid; place-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--brown);
  box-shadow: 0 14px 32px rgba(55, 32, 20, 0.12);
  position: relative;
  transition: 0.2s ease;
}
.icon-btn:hover { transform: translateY(-3px); background: white; }
.cart-btn { background: var(--brown); color: white; }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  min-width: 28px; height: 28px; padding: 0 7px;
  border-radius: 999px; background: var(--rose); color: var(--brown);
  font-size: 14px; display: grid; place-items: center;
  border: 2px solid var(--cream);
}
.mobile-menu-btn { display: none; width: 52px; height: 52px; border-radius: 18px; background: white; box-shadow: var(--shadow-soft); }

.page { min-height: 100vh; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section.compact { padding: 62px 0; }
.eyebrow {
  margin: 0 0 7px;
  font-family: 'Pacifico', cursive;
  color: var(--mint);
  font-size: 18px;
  transform: rotate(-3deg);
}
.eyebrow.pink { color: #fc879f; }
.section-title { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.07em; line-height: 0.95; margin: 0; }
.section-subtitle { color: var(--muted); max-width: 600px; margin: 12px auto 0; line-height: 1.7; }
.center { text-align: center; }
.section-head { margin-bottom: 34px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  font-weight: 900; transition: 0.2s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-light { background: white; color: var(--brown); box-shadow: var(--shadow-soft); }
.btn-dark { background: var(--brown); color: white; box-shadow: 0 14px 30px rgba(60, 36, 25, 0.18); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.45); color: white; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); }
.btn-outline { border: 1px solid var(--line); color: var(--brown); background: rgba(255,255,255,0.52); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #8a5839;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,16,12,.08) 0%, rgba(51,27,15,.25) 54%, rgba(251,246,236,0.94) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.01);
}
.hero::after {
  content: '';
  position: absolute; inset: auto 0 0;
  height: 230px;
  background: linear-gradient(180deg, transparent, var(--cream));
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: white;
  padding: 130px 20px 80px;
  width: min(1060px, 100%);
}
.hero h1 {
  margin: 0;
  font-size: clamp(70px, 11vw, 170px);
  letter-spacing: -0.08em;
  line-height: 0.72;
  font-weight: 900;
  text-shadow: 0 20px 65px rgba(0,0,0,.16);
}
.hero .script {
  display: block;
  font-family: 'Pacifico', cursive;
  color: #ffe5ad;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-top: 35px;
  transform: rotate(-2deg);
}
.hero p { font-size: clamp(18px, 2.2vw, 28px); font-weight: 700; margin: 46px 0 45px; }
.hero-ctas { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.hero-ctas .btn { min-height: 76px; padding: 0 48px; font-size: 20px; }

.categories-wrap { margin-top: -24px; position: relative; z-index: 3; }
.category-header { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.category-row { display: grid; grid-template-columns: repeat(9, 1fr); gap: 14px; }
.category-card { text-align: center; transition: 0.2s ease; }
.category-card:hover { transform: translateY(-6px); }
.category-img { height: 78px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); background: #e9d9c6; }
.category-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.35s ease; }
.category-card:hover img { transform: scale(1.08); }
.category-card span { display: block; margin-top: 8px; font-size: 12px; font-weight: 800; }
.arrow-pair { display: flex; gap: 8px; }
.arrow-pair button, .round-arrow {
  width: 28px; height: 28px; border-radius: 999px; background: #ffe9c0; color: var(--brown); display: grid; place-items: center; font-weight: 900;
}

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: white; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-media { height: 230px; position: relative; background: #eddfd0; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: 0.35s ease; }
.product-card:hover .product-media img { transform: scale(1.07); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: #ffe2a9; border-radius: 999px; padding: 7px 10px;
  text-transform: uppercase; font-size: 10px; font-weight: 900; color: var(--brown);
}
.badge.pink { background: #ffb6c9; }
.badge.green { background: #cde9c6; }
.wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 999px; background: rgba(255,255,255,0.88);
  display: grid; place-items: center; font-size: 18px; font-weight: 900;
}
.product-info { padding: 17px; }
.product-info h3 { margin: 0 0 8px; font-size: 16px; letter-spacing: -0.035em; line-height: 1.16; }
.rating { display: flex; align-items: center; gap: 6px; color: #f4a429; font-size: 12px; font-weight: 800; }
.rating span { color: var(--muted); }
.price-line { display: flex; align-items: center; gap: 7px; margin-top: 10px; }
.price { font-weight: 900; }
.old-price { text-decoration: line-through; color: var(--muted); font-size: 13px; }
.card-actions { display: flex; gap: 8px; margin-top: 14px; }
.card-actions .btn { min-height: 38px; padding: 0 14px; font-size: 12px; flex: 1; }
.view-more { margin-top: 34px; text-align: center; }
.view-more .btn { min-height: 45px; font-size: 13px; }

.dream-section { background: #fff4df; }
.dream-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.dream-copy h2 { font-size: clamp(44px, 5vw, 72px); line-height: 0.91; letter-spacing: -0.08em; margin: 0 0 22px; }
.dream-copy h2 span { display: block; color: #fc909c; font-family: 'Pacifico', cursive; font-weight: 400; letter-spacing: -0.04em; transform: rotate(-2deg); }
.dream-copy p { color: var(--muted); line-height: 1.8; max-width: 450px; }
.dream-actions { display: flex; gap: 12px; margin: 28px 0 42px; }
.stat-row { border-top: 1px solid var(--line); padding-top: 28px; display: flex; gap: 42px; }
.stat strong { display: block; font-size: 23px; letter-spacing: -0.06em; }
.stat span { font-size: 12px; color: var(--muted); font-weight: 700; }
.dream-visual { position: relative; }
.dream-visual img { width: 100%; border-radius: 26px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.float-card {
  position: absolute; left: -25px; bottom: 30px; width: 205px; border-radius: 18px;
  padding: 14px; background: rgba(255,255,255,0.9); box-shadow: var(--shadow-soft); backdrop-filter: blur(16px);
}
.float-card strong { display: block; font-size: 13px; margin-bottom: 4px; }
.float-card p { margin: 0; font-size: 11px; color: var(--muted); line-height: 1.5; }
.float-card .dot { width: 20px; height: 20px; border-radius: 999px; background: var(--mint); display: inline-grid; place-items: center; margin-right: 6px; }

.offers { background: var(--brown); color: white; overflow: hidden; }
.offers .section-title { color: white; }
.offers .section-subtitle { color: rgba(255,255,255,0.68); margin-left: 0; }
.offer-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 30px; }
.offer-scroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 20px; overflow-x: auto; padding: 4px 0 22px; scroll-snap-type: x mandatory; }
.offer-scroll .product-card { min-width: 240px; scroll-snap-align: start; }
.offer-scroll::-webkit-scrollbar { height: 8px; }
.offer-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); border-radius: 999px; }

.gallery-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; grid-auto-rows: 210px; gap: 16px; }
.gallery-item { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); position: relative; background: #e8dac8; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.45s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after { content: attr(data-title); position: absolute; left: 14px; bottom: 14px; color: white; font-weight: 900; opacity: 0; transform: translateY(8px); transition: 0.2s ease; text-shadow: 0 5px 18px rgba(0,0,0,.28); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.community { background: #fffaf3; }
.community-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.mini-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-gallery img { height: 145px; width: 100%; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-soft); }
.review-card { background: white; border-radius: 28px; padding: 36px; box-shadow: 0 28px 75px rgba(255, 173, 197, .25); position: relative; }
.quote-mark { position: absolute; right: 32px; top: 18px; color: #f7cad6; font-size: 60px; font-weight: 900; }
.review-card p { line-height: 1.75; color: var(--brown-2); margin: 16px 0 26px; }
.reviewer { display: flex; align-items: center; gap: 13px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--rose); display: grid; place-items: center; font-weight: 900; }
.reviewer strong { display: block; }
.reviewer span { color: var(--muted); font-size: 13px; }
.dots { display: flex; gap: 6px; margin-top: 20px; }
.dots span { width: 15px; height: 5px; border-radius: 999px; background: #f4c8d3; }
.dots span:first-child { width: 35px; background: #fb92ad; }

.footer { background: #efe4d6; padding: 64px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 42px; }
.footer p, .footer a { color: var(--muted); line-height: 1.7; font-size: 14px; }
.footer h4 { margin: 0 0 17px; }
.footer a { display: block; margin: 8px 0; }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.socials a { width: 32px; height: 32px; border-radius: 50%; background: white; display: grid; place-items: center; margin: 0; color: var(--brown); font-weight: 900; }
.newsletter-mini { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-mini input { border: 0; border-radius: 999px; padding: 0 18px; min-height: 42px; width: 100%; outline: none; }
.newsletter-mini button { border-radius: 999px; min-height: 42px; padding: 0 18px; background: var(--brown); color: white; font-weight: 900; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 42px; padding-top: 20px; display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }

.page-hero { padding: 155px 0 62px; background: #fff4df; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: -90px; top: 70px; width: 320px; height: 320px; background: radial-gradient(var(--rose-2), transparent 68%); opacity: .8; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.92fr; gap: 48px; align-items: center; }
.page-hero h1 { font-size: clamp(46px, 6vw, 86px); letter-spacing: -0.08em; line-height: 0.92; margin: 0 0 16px; }
.page-hero p { color: var(--muted); line-height: 1.8; max-width: 600px; }
.page-hero img { border-radius: 28px; height: 370px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filters { position: sticky; top: 110px; background: white; border-radius: 24px; padding: 22px; box-shadow: var(--shadow-soft); }
.filter-group { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 18px; }
.filter-group:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.filter-group h3 { margin: 0 0 12px; font-size: 15px; }
.check-list { display: grid; gap: 10px; }
.check-list label { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 700; font-size: 14px; }
.shop-tools { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 14px; }
.shop-tools input, .shop-tools select, .checkout-form input, .checkout-form textarea, .checkout-form select {
  min-height: 48px; border: 1px solid var(--line); border-radius: 14px; padding: 0 16px; background: white; outline: none;
}
.shop-tools input { width: min(360px, 100%); }

.product-detail { padding-top: 145px; }
.detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; }
.gallery-main { border-radius: 32px; overflow: hidden; height: 580px; background: white; box-shadow: var(--shadow); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.thumb-row button { border-radius: 16px; overflow: hidden; height: 110px; background: white; box-shadow: var(--shadow-soft); padding: 0; }
.thumb-row img { width: 100%; height: 100%; object-fit: cover; }
.detail-copy h1 { font-size: clamp(38px, 5vw, 68px); line-height: .95; letter-spacing: -0.08em; margin: 0 0 14px; }
.detail-copy .price-line { font-size: 26px; margin: 22px 0; }
.detail-copy p { color: var(--muted); line-height: 1.8; }
.option-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 26px; }
.option-chip { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 11px 16px; font-weight: 800; }
.option-chip.active { background: var(--brown); color: white; }
.qty-add { display: flex; gap: 12px; margin: 28px 0; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: white; overflow: hidden; }
.qty button { width: 46px; height: 52px; background: transparent; font-weight: 900; }
.qty span { width: 42px; text-align: center; font-weight: 900; }
.accordion { border-top: 1px solid var(--line); margin-top: 28px; }
.accordion details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.accordion summary { font-weight: 900; cursor: pointer; }

.cart-page, .checkout-page { padding-top: 145px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 34px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; background: white; border-radius: 22px; padding: 14px; box-shadow: var(--shadow-soft); margin-bottom: 14px; }
.cart-item img { width: 110px; height: 110px; object-fit: cover; border-radius: 18px; }
.cart-item h3 { margin: 4px 0 8px; }
.cart-item p { color: var(--muted); margin: 0; }
.cart-price { text-align: right; font-weight: 900; }
.summary-card { background: white; border-radius: 26px; padding: 26px; box-shadow: var(--shadow); position: sticky; top: 115px; }
.summary-row { display: flex; justify-content: space-between; margin: 14px 0; color: var(--muted); }
.summary-row.total { border-top: 1px solid var(--line); padding-top: 18px; font-size: 23px; color: var(--brown); font-weight: 900; }
.empty-state { text-align: center; background: white; border-radius: 28px; padding: 60px 20px; box-shadow: var(--shadow-soft); }

.checkout-layout { display: grid; grid-template-columns: 1fr 390px; gap: 34px; }
.checkout-form { background: white; border-radius: 28px; padding: 28px; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 8px; margin-bottom: 14px; }
.form-field label { font-size: 13px; font-weight: 900; color: var(--brown-2); }
.form-field.full { grid-column: 1/-1; }
.checkout-form textarea { min-height: 112px; padding-top: 14px; resize: vertical; }

.blog-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 20px; }
.blog-card { border-radius: 26px; overflow: hidden; background: white; box-shadow: var(--shadow-soft); transition: .22s ease; }
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.blog-card.featured { grid-row: span 2; }
.blog-card img { height: 235px; width: 100%; object-fit: cover; }
.blog-card.featured img { height: 430px; }
.blog-card .copy { padding: 22px; }
.blog-meta { display: flex; gap: 12px; color: #fc879f; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.blog-card h3 { font-size: 25px; line-height: 1.04; letter-spacing: -0.06em; margin: 12px 0; }
.blog-card.featured h3 { font-size: 37px; }
.blog-card p { color: var(--muted); line-height: 1.7; }
.article { padding-top: 140px; }
.article-hero { text-align: center; width: min(900px, calc(100% - 40px)); margin: 0 auto; }
.article-hero h1 { font-size: clamp(42px, 7vw, 84px); letter-spacing: -0.08em; line-height: .95; margin: 14px 0 20px; }
.article-hero p { color: var(--muted); line-height: 1.8; font-size: 18px; }
.article-cover { width: min(1100px, calc(100% - 40px)); margin: 44px auto; height: 520px; border-radius: 32px; object-fit: cover; box-shadow: var(--shadow); }
.article-body { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding-bottom: 70px; }
.article-body h2 { font-size: 34px; letter-spacing: -0.05em; margin-top: 42px; }
.article-body p, .article-body li { color: var(--brown-2); line-height: 1.9; font-size: 18px; }
.article-callout { background: #fff0f6; border-left: 5px solid var(--rose); border-radius: 20px; padding: 24px; margin: 34px 0; }

.about-story { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: center; }
.about-story img { border-radius: 32px; height: 550px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { background: white; border-radius: 24px; padding: 28px; box-shadow: var(--shadow-soft); }
.value-card .icon { font-size: 34px; margin-bottom: 14px; }
.value-card p { color: var(--muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { background: white; border-radius: 26px; padding: 18px; box-shadow: var(--shadow-soft); }
.team-card img { height: 300px; width: 100%; object-fit: cover; border-radius: 20px; }
.team-card h3 { margin-bottom: 4px; }
.team-card p { color: var(--muted); margin-top: 0; }

.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.collection-card { min-height: 390px; border-radius: 28px; overflow: hidden; position: relative; box-shadow: var(--shadow-soft); transition: 0.25s ease; background: var(--cream-2); }
.collection-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(44,25,17,.72)); }
.collection-card .content { position: absolute; left: 24px; right: 24px; bottom: 24px; color: white; z-index: 1; }
.collection-card h3 { font-size: 32px; letter-spacing: -0.06em; margin: 0; }
.collection-card p { color: rgba(255,255,255,.8); line-height: 1.6; }

.search-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(37,21,14,.35); backdrop-filter: blur(10px); display: none; place-items: center; padding: 20px; }
.search-modal.open { display: grid; }
.search-panel { width: min(680px, 100%); background: var(--cream); border-radius: 32px; padding: 36px; box-shadow: var(--shadow); position: relative; }
.modal-close { position: absolute; right: 22px; top: 18px; width: 40px; height: 40px; border-radius: 50%; background: white; font-size: 26px; }
.search-panel h2 { font-size: 42px; letter-spacing: -0.07em; margin: 0 0 20px; }
.search-form { display: flex; gap: 12px; }
.search-form input { flex: 1; min-height: 58px; border: 1px solid var(--line); border-radius: 999px; padding: 0 22px; outline: none; }
.quick-searches { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 17px; }
.quick-searches button { border-radius: 999px; background: white; padding: 10px 14px; font-weight: 800; color: var(--brown-2); }
.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 18px); background: var(--brown); color: white; padding: 15px 20px; border-radius: 999px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .25s ease; z-index: 2500; font-weight: 800; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 220px 1fr 230px; width: calc(100% - 32px); }
  .main-nav { gap: 20px; padding: 0 24px; }
  .header-actions .icon-btn:nth-child(2), .header-actions .icon-btn:nth-child(3) { display: none; }
  .category-row { grid-template-columns: repeat(5, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid, .collections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto auto; top: 14px; }
  .main-nav {
    position: fixed; left: 16px; right: 16px; top: 82px; display: none; flex-direction: column; border-radius: 24px; padding: 20px; gap: 16px; min-height: auto;
  }
  .main-nav.open { display: flex; }
  .mobile-menu-btn { display: grid; place-items: center; order: 2; }
  .header-actions { order: 3; }
  .brand-copy strong { font-size: 18px; }
  .brand-mark, .icon-btn, .mobile-menu-btn { width: 48px; height: 48px; border-radius: 16px; }
  .header-actions .icon-btn:not(.cart-btn) { display: none; }
  .hero h1 { font-size: 78px; }
  .hero .script { font-size: 58px; margin-top: 28px; }
  .hero p { font-size: 18px; }
  .hero-ctas .btn { min-height: 58px; padding: 0 26px; font-size: 16px; }
  .category-row { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-media { height: 185px; }
  .dream-grid, .community-grid, .page-hero-grid, .detail-grid, .cart-layout, .checkout-layout, .about-story, .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .stat-row { flex-wrap: wrap; gap: 22px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding-top: 120px; }
  .blog-grid, .collections-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .blog-card.featured img, .blog-card img { height: 260px; }
  .article-cover { height: 340px; }
}

@media (max-width: 520px) {
  .site-header { width: calc(100% - 24px); }
  .brand-copy { display: none; }
  .hero { min-height: 850px; }
  .hero h1 { font-size: 64px; }
  .hero .script { font-size: 50px; }
  .section { padding: 66px 0; }
  .container { width: calc(100% - 26px); }
  .category-row { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .product-media { height: 265px; }
  .dream-actions, .hero-ctas, .shop-tools, .search-form, .qty-add { flex-direction: column; align-items: stretch; }
  .float-card { left: 14px; bottom: 14px; width: calc(100% - 28px); }
  .offer-head { flex-direction: column; align-items: start; gap: 18px; }
  .gallery-grid, .mini-gallery, .form-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cart-item { grid-template-columns: 88px 1fr; }
  .cart-item img { width: 88px; height: 88px; }
  .cart-price { grid-column: 1/-1; text-align: left; }
  .gallery-main { height: 390px; }
  .thumb-row { grid-template-columns: repeat(2, 1fr); }
}

/* WordPress integration */
body.admin-bar .site-header { top: 58px; }
body.admin-bar .site-header.scrolled { top: 42px; }
.main-nav .primary-menu { display:flex; align-items:center; gap:35px; list-style:none; margin:0; padding:0; }
.main-nav .primary-menu li { margin:0; padding:0; }
.main-nav .primary-menu a { font-weight:800; color:var(--muted); }
.main-nav .primary-menu a:hover,
.main-nav .primary-menu .current-menu-item > a { color:var(--brown); }
.custom-logo-link img { max-height:64px; width:auto; }
.wp-content { font-size:17px; line-height:1.8; color:var(--muted); }
.wp-content h1,.wp-content h2,.wp-content h3,.wp-content h4 { color:var(--brown); letter-spacing:-0.04em; line-height:1.1; }
.wp-content h2 { font-size:clamp(30px,4vw,54px); }
.wp-content p { margin: 0 0 1.3em; }
.wp-content a { color:var(--brown); font-weight:800; text-decoration:underline; text-decoration-thickness:2px; text-underline-offset:4px; }
.wp-content img { border-radius:24px; box-shadow:var(--shadow-soft); }
.post-password-form input[type="password"], .search-form input, .wp-content input, .wp-content textarea, .wp-content select { border:1px solid var(--line); border-radius:999px; padding:14px 18px; background:#fff; color:var(--brown); }
.navigation.pagination { margin-top:38px; display:flex; justify-content:center; }
.nav-links { display:flex; gap:10px; flex-wrap:wrap; }
.page-numbers { padding:12px 16px; border-radius:999px; background:#fff; color:var(--brown); font-weight:900; box-shadow:var(--shadow-soft); }
.page-numbers.current { background:var(--brown); color:#fff; }
.screen-reader-text { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }
.product-category { font-size:12px; color:var(--muted); font-weight:800; margin-top:-4px; }
.quick-searches a { border:1px solid var(--line); background:#fffaf2; color:var(--brown); border-radius:999px; padding:9px 12px; font-weight:900; }

/* WooCommerce */
.woocommerce-shell .woocommerce-notices-wrapper { margin-bottom:20px; }
.woo-container .woocommerce-result-count,
.woo-container .woocommerce-ordering { margin-bottom:24px; color:var(--muted); font-weight:800; }
.woocommerce ul.products { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px; margin:0; padding:0; }
.woocommerce ul.products li.product { width:auto !important; float:none !important; margin:0 !important; background:#fff; border-radius:22px; overflow:hidden; box-shadow:var(--shadow-soft); padding:0 0 18px !important; }
.woocommerce ul.products li.product a img { width:100%; aspect-ratio:1/1; object-fit:cover; margin:0 0 14px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding:0 16px; color:var(--brown); font-size:16px; line-height:1.2; min-height:40px; }
.woocommerce ul.products li.product .price { display:block; padding:0 16px; color:var(--brown); font-weight:900; font-size:18px; }
.woocommerce ul.products li.product .button { margin:12px 16px 0; border-radius:999px; background:var(--brown); color:#fff; font-weight:900; padding:12px 16px; display:inline-flex; }
.woocommerce span.onsale { background:var(--rose) !important; color:var(--brown) !important; min-width:auto; min-height:auto; line-height:1; border-radius:999px; padding:10px 12px; font-weight:900; }
.woocommerce div.product { background:#fffaf2; border-radius:34px; padding:32px; box-shadow:var(--shadow-soft); }
.woocommerce div.product div.images img { border-radius:28px; }
.woocommerce div.product .product_title { font-size:clamp(36px,5vw,76px); line-height:.96; letter-spacing:-0.07em; color:var(--brown); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color:var(--brown); font-weight:900; font-size:30px; }
.woocommerce div.product form.cart .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit { background:var(--brown) !important; color:#fff !important; border-radius:999px !important; padding:14px 22px !important; font-weight:900 !important; }
.woocommerce .quantity .qty { border:1px solid var(--line); border-radius:999px; padding:12px; background:#fff; }
.woocommerce-tabs, .related.products, .upsells.products { margin-top:48px; }
.woocommerce table.shop_table { border:1px solid var(--line); border-radius:24px; overflow:hidden; background:#fff; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding:18px; }
.woocommerce-cart .cart-collaterals .cart_totals, .woocommerce-checkout-review-order, .woocommerce-checkout form.checkout { background:#fff; border-radius:24px; padding:24px; box-shadow:var(--shadow-soft); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { border:1px solid var(--line); border-radius:16px; padding:14px; background:#fffaf2; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color:var(--rose); background:#fffaf2; border-radius:18px; box-shadow:var(--shadow-soft); }
.woocommerce-message::before, .woocommerce-info::before { color:var(--brown); }

@media (max-width: 980px) {
  .main-nav .primary-menu { flex-direction:column; gap:0; width:100%; }
  .main-nav .primary-menu li { width:100%; }
  .woocommerce ul.products { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  body.admin-bar .site-header { top: 58px; }
  .woocommerce ul.products { grid-template-columns:1fr; }
  .woocommerce div.product { padding:18px; border-radius:24px; }
}
