/** Shopify CDN: Minification failed

Line 255:53 Unexpected ";"
Line 754:0 Unexpected "}"

**/
/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sage: #7A8C72;
  --sage-light: #9BAF93;
  --sage-dark: #4E6147;
  --beige: #F2EDE4;
  --beige-dark: #E0D8CC;
  --wood: #A67C52;
  --wood-dark: #7A5C38;
  --cream: #FAF8F4;
  --bark: #3D2B1F;
  --bark-light: #5C4033;
  --white: #FFFFFF;
  --text-main: #2A2218;
  --text-muted: #8A7B6E;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--sage-dark); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, background .3s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--sage); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--sage-dark);
  height: 40px; overflow: hidden;
  display: flex; align-items: center;
}
.announcement-track {
  display: flex; gap: 0;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}
.announcement-item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 40px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.announcement-item span { color: var(--beige-dark); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(220,215,205,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--beige-dark);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 52px;
  opacity: 0; animation: fadeDown .8s .2s ease forwards;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--bark); letter-spacing: .04em;
  text-decoration: none;
}
.nav-logo em { color: var(--sage-dark); font-style: italic; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bark);
  text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--bark); }
.nav-actions { display: flex; gap: 20px; align-items: center; }
.nav-btn {
  background: var(--sage-dark); color: var(--white);
  border: none; padding: 10px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: none; transition: background .3s, transform .2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-btn:hover { background: var(--sage); transform: translateY(-1px); }
.nav-cart-count {
  background: var(--wood); color: var(--white);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: .65rem; display: inline-flex;
  align-items: center; justify-content: center;
  margin-left: 6px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--beige);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(122,140,114,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(166,124,82,.08) 0%, transparent 55%);
}
.hero-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  pointer-events: none; opacity: .6;
  animation: grainShift 8s steps(10) infinite;
}
@keyframes grainShift {
  0%,100%{transform:translate(0,0)} 20%{transform:translate(-2%,3%)}
  40%{transform:translate(3%,-2%)} 60%{transform:translate(-1%,4%)} 80%{transform:translate(2%,-3%)}
}
.hero-leaf {
  position: absolute; font-size: 8rem; opacity: .04;
  animation: leafDrift ease-in-out infinite;
  pointer-events: none; user-select: none;
}
.hero-leaf:nth-child(1) { top: 10%; left: 5%; animation-duration: 12s; }
.hero-leaf:nth-child(2) { top: 60%; right: 8%; font-size: 6rem; animation-duration: 9s; animation-delay: -3s; }
.hero-leaf:nth-child(3) { bottom: 15%; left: 40%; font-size: 5rem; animation-duration: 14s; animation-delay: -6s; }
@keyframes leafDrift {
  0%,100%{transform:rotate(0deg) scale(1)} 33%{transform:rotate(8deg) scale(1.05)} 66%{transform:rotate(-5deg) scale(.95)}
}

.hero-inner {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  width: 100%; max-width: 1300px;
  margin: 0 auto; padding: 120px 60px 80px;
}
.hero-text .tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(122,140,114,.12); border: 1px solid rgba(122,140,114,.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s .6s ease forwards;
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 700; line-height: .95;
  letter-spacing: -.01em; margin-bottom: 28px;
}
.hero-text h1 .line { display: block; overflow: hidden; }
.hero-text h1 .line span {
  display: block; opacity: 0; transform: translateY(105%);
  animation: slideUp .9s ease forwards;
}
.hero-text h1 .line:nth-child(1) span { animation-delay: .8s; }
.hero-text h1 .line:nth-child(2) span { animation-delay: .95s; }
.hero-text h1 .line:nth-child(3) span { animation-delay: 1.1s; }
.hero-text h1 .italic { font-style: italic; color: #ffffff; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.hero-text h1 .outline {
  -webkit-text-stroke: 2px #ffffff; color: transparent;
}
.hero-text p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.75;
  max-width: 400px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .8s 1.3s ease forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s 1.5s ease forwards;
}
.btn-fill {
  background: var(--sage-dark); color: var(--white);
  padding: 14px 36px; border: none;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  position: relative; overflow: hidden; transition: transform .3s;
  display: inline-flex; align-items: center;
}
.btn-fill::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform .5s ease;
}
.btn-fill:hover::after { transform: translateX(110%) skewX(-15deg); }
.btn-fill:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--bark);
  padding: 14px 36px;
  border: 1.5px solid var(--beige-dark);
  font-family: 'Outfit', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: none; transition: border-color .3s, color .3s, transform .3s;
  display: inline-flex; align-items: center;
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage-dark); transform: translateY(-2px); }

/* hero visual */
.hero-visual {
  position: relative; opacity: 0;
  animation: fadeIn 1.2s 1s ease forwards;
}
.hero-visual-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.hv-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 10px 10px;
  box-shadow: 0 2px 20px rgba(61,43,31,.06);
  transition: transform .3s, box-shadow .3s;
  cursor: none;
}
.hv-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(61,43,31,.1); }
.hv-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.hv-card:nth-child(2) { grid-column: 2; grid-row: 1 / 3; background: rgba(78,97,71,0.2); backdrop-filter: blur(10px); }
.hv-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.hv-icon { font-size: 1.3rem; margin-bottom: 6px; }
.hv-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--bark); margin-bottom: 4px;
}
.hv-card:nth-child(2) .hv-label { color: #1d1c1cf4; }
.hv-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--bark);
  line-height: 1;
}
.hv-card:nth-child(2) .hv-value { color: #1d1c1cf4; }; font-size: 1.2rem; }
.hv-sub { font-size: .75rem; color: var(--bark); margin-top: 4px; }
.hv-card:nth-child(2) .hv-sub { color: #1d1c1cf4; }
.hv-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(122,140,114,.15); border-radius: 100px;
  padding: 4px 10px; font-size: .65rem; font-weight: 600;
  color: var(--sage-dark); letter-spacing: .08em; margin-top: 10px;
}
.hv-card:nth-child(2) .hv-pill { background: rgba(255,255,255,.15); color: #465f4bff; }
.hero-badge {
  position: absolute; bottom: -10px; right: -10px;
  width: 90px; height: 90px;
  background: var(--wood); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(166,124,82,.4);
  animation: badgePop 1s 1.8s ease both;
}
@keyframes badgePop {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  70% { transform: scale(1.1) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white); line-height: 1;
}
.hero-badge-txt { font-size: .55rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; }

/* ── KEYFRAMES ── */
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideUp { from { opacity:0; transform:translateY(105%); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION BASE ── */
.section {
  padding: 100px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.section-header { margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sage-dark);
  margin-bottom: 16px;
}
.section-tag::before {
  content: ''; display: inline-block;
  width: 24px; height: 1.5px; background: var(--sage-dark);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.05;
  color: var(--bark);
}
.section-title em { font-style: italic; color: var(--sage-dark); }
.section-sub { font-size: .95rem; color: var(--text-muted); margin-top: 12px; line-height: 1.7; max-width: 480px; }

/* ── CATEGORY GRID ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: 20px; padding: 36px 24px;
  text-align: center; cursor: none;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; color: var(--text-main);
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,43,31,.1); }
.cat-card.featured { background: var(--sage-dark); color: var(--white); grid-column: span 2; flex-direction: row; gap: 24px; text-align: left; align-items: center; padding: 40px 48px; }
.cat-icon { font-size: 2.4rem; margin-bottom: 16px; }
.cat-card.featured .cat-icon { font-size: 3.5rem; margin-bottom: 0; }
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 6px;
}
.cat-card.featured .cat-name { font-size: 1.6rem; color: var(--white); }
.cat-count { font-size: .72rem; color: var(--text-muted); letter-spacing: .08em; }
.cat-card.featured .cat-count { color: rgba(255,255,255,.6); }
.cat-arrow {
  font-size: 1.2rem; margin-top: 16px; color: var(--sage);
  transition: transform .3s;
}
.cat-card:hover .cat-arrow { transform: translateX(4px); }
.cat-card.featured .cat-arrow { color: rgba(255,255,255,.7); margin-top: 0; margin-left: auto; }

/* ── FEATURES BAR ── */
.features-bar {
 background: rgba(155,175,147,0.15);
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
  padding: 20px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 32px;
  border-right: 1px solid var(--beige-dark);
}
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.feature-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--bark); margin-bottom: 2px;
}
.feature-sub { font-size: .72rem; color: var(--text-muted); }

/* ── PRODUCTS ── */
.products-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; cursor: none;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(61,43,31,.1); }
.product-img {
  height: 200px; background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.product-actions {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.product-action-btn {
  width: 36px; height: 36px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; box-shadow: 0 2px 8px rgba(61,43,31,.12);
  transition: transform .2s;
}
.product-action-btn:hover { transform: scale(1.1); }
.product-body { padding: 20px; }
.product-category {
  font-size: .65rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: 6px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--bark);
  margin-bottom: 12px;
}
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price {
  font-size: .95rem; font-weight: 600; color: var(--text-main);
}
.product-rating { display: flex; align-items: center; gap: 4px; font-size: .75rem; color: var(--text-muted); }
.stars { color: #F5A623; font-size: .75rem; }
.view-all-link {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage-dark);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: gap .3s;
}
.view-all-link:hover { gap: 14px; }

/* ── PROMO BANNER ── */
.banner {
  margin: 0; padding: 80px 100px;
  background: var(--sage-dark);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.banner-bg-text {
  position: absolute; font-family: 'Cormorant Garamond', serif;
  font-size: 18vw; font-weight: 700; color: rgba(255,255,255,.03);
  letter-spacing: -.05em; pointer-events: none;
  top: 50%; transform: translateY(-50%); white-space: nowrap;
}
.banner-tag {
  display: inline-block; background: rgba(255,255,255,.15);
  padding: 4px 14px; border-radius: 100px;
  font-size: .65rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  margin-bottom: 20px;
}
.banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 20px;
}
.banner-title em { font-style: italic; color: var(--sage-light); }
.banner-body { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 36px; max-width: 400px; }
.btn-light {
  background: var(--white); color: var(--sage-dark);
  padding: 14px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: none; display: inline-flex; align-items: center;
  transition: transform .3s, box-shadow .3s;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.banner-visual {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .banner { grid-template-columns: 1fr; padding: 60px 40px; }
  .banner-visual { grid-template-columns: 1fr 1fr; margin-top: 32px; }
}
.banner-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: 16px; padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
}
.banner-card-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.banner-card-title { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.banner-card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--beige); padding: 100px 60px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.testi-card {
  background: var(--white); border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 2px 20px rgba(61,43,31,.05);
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; line-height: .7; color: var(--sage-light);
  margin-bottom: 16px;
}
.testi-text { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.testi-footer { display: flex; align-items: center; gap: 14px; }
.testi-avatar { font-size: 2rem; }
.testi-name { font-weight: 600; font-size: .85rem; color: var(--bark); }
.testi-sub { font-size: .72rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-top: 2px; }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--bark);
  padding: 80px 100px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 60px;
}
.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-top: 12px;
}
.newsletter-title em { font-style: italic; color: var(--sage-light); }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 480px; }
.newsletter-input {
  flex: 1; padding: 16px 24px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-right: none;
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: .9rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { border-color: var(--sage-light); }
.newsletter-submit {
  background: var(--sage-dark); color: var(--white);
  border: none; padding: 16px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: none; transition: background .3s;
}
.newsletter-submit:hover { background: var(--sage); }

/* ── FOOTER ── */
footer {
  background: var(--bark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding: 80px 100px 60px;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-logo em { color: var(--sage-light); font-style: italic; }
.footer-brand-text { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); text-decoration: none;
  font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  transition: border-color .3s, color .3s;
}
.social-btn:hover { border-color: var(--sage-light); color: var(--sage-light); }
.footer-col h4 {
  font-size: .72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .3s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 100px; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-badges { display: flex; gap: 10px; }
.badge {
  padding: 4px 12px; border: 1px solid rgba(255,255,255,.12);
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}

/* ── COLLECTION PAGE ── */
.collection-hero {
  background: var(--beige);
  padding: 80px 60px 60px;
  text-align: center;
}
.collection-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 60px;
  max-width: 1300px; margin: 0 auto;
}

/* ── PRODUCT PAGE ── */
.product-page {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; padding: 80px 60px;
  max-width: 1300px; margin: 0 auto;
}
.product-page-img {
  background: var(--beige); border-radius: 20px;
  min-height: 500px; display: flex; align-items: center;
  justify-content: center; font-size: 8rem;
}
.product-page-body {}
.product-page-category {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: 12px;
}
.product-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--bark);
  line-height: 1.05; margin-bottom: 16px;
}
.product-page-price {
  font-size: 1.5rem; font-weight: 600; color: var(--text-main);
  margin-bottom: 24px;
}
.product-page-desc { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.add-to-cart-btn {
  width: 100%; padding: 18px;
  background: var(--sage-dark); color: var(--white);
  border: none; font-family: 'Outfit', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: none; transition: background .3s, transform .2s;
}
.add-to-cart-btn:hover { background: var(--sage); transform: translateY(-2px); }

/* ── CART ── */
.cart-page { max-width: 900px; margin: 60px auto; padding: 0 60px; }
.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--bark);
  margin-bottom: 48px;
}
.cart-item {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid var(--beige-dark);
}
.cart-item-img {
  width: 80px; height: 80px; background: var(--beige);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 2rem;
}
.checkout-btn {
  width: 100%; padding: 18px; margin-top: 32px;
  background: var(--sage-dark); color: var(--white);
  border: none; font-family: 'Outfit', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  cursor: none; transition: background .3s;
}
.checkout-btn:hover { background: var(--sage); }

/* ── PAGE (static pages) ── */
.page-content {
  max-width: 800px; margin: 80px auto; padding: 0 60px;
}
.page-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--bark);
  margin-bottom: 32px;
}
.page-content p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--bark);
  margin: 36px 0 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 80px 40px; }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-bar { grid-template-columns: repeat(2, 1fr); }
  .banner { padding: 60px 40px; grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; padding: 60px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 60px 40px; }
  .footer-bottom { padding: 24px 40px; }
  .site-header { padding: 0 24px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 60px 24px; }
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cat-card.featured { grid-column: span 1; }
  .features-bar { grid-template-columns: 1fr; padding: 32px 24px; gap: 20px; }
  .feature-item { border-right: none; padding: 0; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; padding: 24px; }
  .collection-grid { grid-template-columns: 1fr; padding: 24px; }
  .product-page { grid-template-columns: 1fr; padding: 40px 24px; }
  .cart-page { padding: 0 24px; }
  .page-content { padding: 0 24px; }
}
 .cat-card {
  border-radius: 20px;
  text-align: left; cursor: none;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; color: var(--text-main);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-end;
  min-height: 260px;
  padding: 24px;
  position: relative; overflow: hidden;
}
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 30%, rgba(0,0,0,0) 100%);
  z-index: 0;
}
.cat-card .cat-icon { display: none; }
.cat-card > div:not(.cat-card-overlay),
.cat-card .cat-arrow { position: relative; z-index: 1; }
.cat-card .cat-name { color: var(--white); }
.cat-card .cat-count { color: rgba(255,255,255,.7); }
.cat-card .cat-arrow { margin-top: 8px; color: rgba(255,255,255,.8); }
/* ── HERO VIDEO BG ── */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;  /* ← cambia aquí */
}
.hero-text .tag {
  color: #ffffff !important;
  -webkit-text-stroke: 0px;
  background: var(--sage-dark) !important;
  border-color: var(--sage-dark) !important;
}
}
.hero-text p {
  display: none !important;
}
/* ── PAYMENT ICONS ── */
.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.payment-icon {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.12);
  padding: 4px 10px;
}