/* =====================================================
   COTTONFLARE EMBROIDERY — Premium CSS v2
   ===================================================== */

/* ---- FONTS & RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #F8F5F2;
  color: #2B2B2B;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: none; font-family: inherit; }

/* ---- DESIGN TOKENS ---- */
:root {
  --beige:        #F8F5F2;
  --beige-mid:    #EFE7E1;
  --beige-dark:   #E0D5CC;
  --peach:        #E6B8A2;
  --peach-light:  #F5E4DB;
  --peach-dark:   #C98B72;
  --gold:         #D4A373;
  --gold-light:   #EDD9BE;
  --gold-dark:    #B8864A;
  --text:         #2B2B2B;
  --text-mid:     #4A4440;
  --text-light:   #6D6D6D;
  --white:        #ffffff;
  --shadow-soft:   0 2px 16px rgba(43,35,28,.07);
  --shadow-medium: 0 8px 32px rgba(43,35,28,.12);
  --shadow-strong: 0 20px 56px rgba(43,35,28,.18);
  --shadow-gold:   0 4px 20px rgba(212,163,115,.3);
  --radius:    18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ======================== BLOB CANVAS ======================== */
#blobCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .55;
}

/* ======================== CUSTOM CURSOR ======================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--peach-dark);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s ease, height .2s ease, background .2s ease;
  mix-blend-mode: multiply;
}
.cursor-trail {
  width: 34px; height: 34px;
  border: 1.5px solid var(--peach);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .15s ease, height .15s ease, opacity .3s ease;
  opacity: .45;
}
.cursor.hovering  { width: 22px; height: 22px; background: var(--gold); }
.cursor-trail.hovering { width: 52px; height: 52px; border-color: var(--gold); opacity: .28; }

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 500; }
em { font-style: italic; color: var(--peach-dark); }

/* ======================== UTILITY ======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.section { padding: 7rem 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: .8rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; }

/* ======================== BUTTONS ======================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: linear-gradient(135deg, #2B2B2B 0%, #3d3530 100%);
  color: var(--white); padding: .95rem 2.1rem;
  border-radius: 3rem; font-size: .95rem; font-weight: 500; border: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(43,35,28,.22);
  cursor: none; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,163,115,.18), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 32px rgba(43,35,28,.28); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(-1px) scale(1); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  color: var(--text);
  padding: .95rem 2.1rem; border-radius: 3rem; font-size: .95rem; font-weight: 500;
  border: 1.5px solid var(--beige-dark); transition: var(--transition); cursor: none;
}
.btn-ghost:hover { background: var(--white); border-color: var(--text-light); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* ======================== SCROLL ANIMATIONS ======================== */
[data-animate] { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
[data-animate="fade-right"] { transform: translateX(-44px); }
[data-animate="fade-left"]  { transform: translateX(44px); }
[data-animate="fade-in"]    { transform: none; }
[data-animate].visible      { opacity: 1; transform: none; }

/* ======================== HEADER ======================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,245,242,.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--beige-dark);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-soft); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icon { font-size: 1.75rem; color: var(--peach-dark); }
.logo-text { display: flex; flex-direction: column; }
.logo-brand { font-family: 'Dancing Script', cursive; font-size: 1.45rem; line-height: 1; color: var(--text); font-weight: 700; }
.logo-sub   { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .88rem; font-weight: 500; color: var(--text-mid);
  position: relative; transition: var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn-whatsapp.header-wa {
  display: flex; align-items: center; gap: .4rem;
  background: #25d366; color: white; padding: .5rem 1rem;
  border-radius: 2rem; font-size: .82rem; font-weight: 600; transition: var(--transition);
}
.btn-whatsapp.header-wa svg { width: 16px; height: 16px; }
.btn-whatsapp.header-wa:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,211,102,.35); }
.cart-btn {
  position: relative; background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1.5px solid var(--beige-dark);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-btn:hover { background: var(--white); box-shadow: var(--shadow-soft); transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--peach-dark); color: white; font-size: .65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%; display: none; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #F8F5F2 0%, #EFE7E1 100%);
}

/* Subtle fabric texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/linen.png");
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .5rem;
}

.hero-title { color: var(--text); margin-bottom: 1.5rem; line-height: 1.1; }
.hero-subtitle { color: var(--text-mid); font-size: 1.15rem; line-height: 1.6; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-size: .85rem; color: var(--text-light); font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-img-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4/5;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-img-split {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
  transform: scale(1);
}

.hero-visual:hover .hero-img-split {
  transform: scale(1.1);
}

.hero-visual:hover .hero-img-inner {
  transform: translateY(-8px) rotate(1deg);
}

.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}

.scroll-dot {
  width: 6px; height: 6px; background: var(--peach-dark); border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: .35; }
}

/* ======================== CATEGORIES ======================== */
.categories { background: var(--beige); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.category-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); cursor: none;
  transition: var(--transition); border: 1px solid var(--beige-dark);
}
.category-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-light);
}
.category-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.category-img-wrap img { transition: transform .55s ease; }
.category-card:hover .category-img-wrap img { transform: scale(1.09); }
.category-overlay {
  position: absolute; inset: 0;
  background: rgba(43,35,28,.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.category-overlay span { color: white; font-size: 1rem; font-weight: 600; letter-spacing: .08em; }
.category-card:hover .category-overlay { opacity: 1; }
.category-info { padding: 1.3rem; }
.category-info h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.category-info p { color: var(--text-light); font-size: .87rem; margin-bottom: .75rem; }
.category-price {
  font-size: .8rem; font-weight: 600; color: var(--gold-dark);
  background: var(--peach-light); padding: .25rem .8rem; border-radius: 2rem;
  display: inline-block;
}

/* ======================== BEST SELLERS ======================== */
.bestsellers { background: var(--beige-mid); }
.filter-tabs { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-tab {
  background: rgba(255,255,255,.75); backdrop-filter: blur(8px);
  border: 1.5px solid var(--beige-dark); color: var(--text-mid);
  padding: .5rem 1.25rem; border-radius: 2rem; font-size: .875rem; font-weight: 500;
  transition: var(--transition); cursor: none;
}
.filter-tab:hover { background: var(--white); border-color: var(--gold); color: var(--text); }
.filter-tab.active { background: var(--text); color: white; border-color: var(--text); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--beige-dark);
  transition: all .4s cubic-bezier(.4,0,.2,1); cursor: pointer;
  animation: fadeInUp .5s ease both;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-9px) scale(1.03);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold-light);
}
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-card:hover .product-img-wrap img { transform: scale(1.12); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--text); color: white; font-size: .68rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: 2rem; letter-spacing: .06em;
}
.product-badge.bestseller { background: var(--peach-dark); }
.product-badge.limited    { background: #a0572c; }
.product-badge.new        { background: var(--gold-dark); }
.product-badge.premium    { background: linear-gradient(135deg, #b8864a, #d4a373); }
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: none;
  transform: scale(0); opacity: 0;
}
.product-card:hover .product-wishlist { transform: scale(1); opacity: 1; }
.product-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(43,35,28,.88); color: white; border: none;
  padding: .9rem; font-size: .875rem; font-weight: 600;
  transform: translateY(100%); transition: var(--transition); cursor: none;
  backdrop-filter: blur(8px);
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-info { padding: 1.3rem; }
.product-category-tag { font-size: .7rem; color: var(--gold-dark); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .4rem; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: .35rem; }
.product-tagline { color: var(--text-light); font-size: .84rem; margin-bottom: .85rem; line-height: 1.55; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.12rem; font-weight: 700; color: var(--text); }
.product-price span { font-size: .78rem; font-weight: 400; color: var(--text-light); text-decoration: line-through; margin-left: .4rem; }
.product-stars { font-size: .84rem; color: var(--gold); }

/* ======================== HOW IT WORKS ======================== */
.how-it-works { background: var(--beige); }
.steps-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-top: 1rem;
}
.step-card {
  text-align: center; padding: 2.5rem 1.25rem;
  background: rgba(255,255,255,.6); border-radius: var(--radius);
  border: 1px solid var(--beige-dark); margin: .25rem;
  backdrop-filter: blur(8px); transition: var(--transition);
}
.step-card:hover { background: var(--white); box-shadow: var(--shadow-medium); transform: translateY(-4px); }
.step-connector {
  width: 60px; display: flex; align-items: flex-start; justify-content: center;
  padding-top: 3rem;
}
.step-connector::before {
  content: ''; display: block; width: 40px; height: 1px;
  margin-top: 1.8rem;
  background: linear-gradient(90deg, var(--peach-light), var(--gold-light));
}
.step-number {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300;
  color: var(--beige-dark); line-height: 1; margin-bottom: .5rem;
}
.step-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.step-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.step-card p { color: var(--text-light); font-size: .9rem; line-height: 1.65; }

/* ======================== STORY ======================== */
.story { background: var(--beige-mid); }
.story-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.story-image-wrap { position: relative; }
.story-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); aspect-ratio: 1; object-fit: cover; transition: var(--transition); }
.story-image-wrap:hover .story-img { transform: scale(1.01); }
.story-badge {
  position: absolute; bottom: 2rem; right: -2rem;
  background: var(--white); border-radius: var(--radius); padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-medium); text-align: center;
  border: 1px solid var(--gold-light);
}
.story-badge-number { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--text); line-height: 1; }
.story-badge-label  { display: block; font-size: .78rem; color: var(--text-light); font-weight: 500; margin-top: .3rem; }
.story-content { padding: 1rem 0; }
.story-content .section-title { text-align: left; margin-bottom: 1.5rem; }
.story-text { color: var(--text-mid); line-height: 1.82; margin-bottom: 1.2rem; font-size: .95rem; }
.story-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.story-value {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,.65); backdrop-filter: blur(10px);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft); border: 1px solid var(--beige-dark);
  transition: var(--transition);
}
.story-value:hover { background: var(--white); box-shadow: var(--shadow-medium); transform: translateX(4px); }
.story-value-icon { font-size: 1.5rem; flex-shrink: 0; }
.story-value strong { display: block; margin-bottom: .2rem; font-size: .95rem; }
.story-value p { color: var(--text-light); font-size: .85rem; }

/* ======================== TRUST STRIP ======================== */
.trust-strip { background: #1e1a14; padding: 2.5rem 0; }
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.trust-item { display: flex; align-items: center; gap: 1rem; flex: 1 1 175px; }
.trust-icon { font-size: 1.8rem; }
.trust-item strong { display: block; color: white; font-size: .88rem; margin-bottom: .2rem; }
.trust-item p { color: rgba(255,255,255,.5); font-size: .78rem; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ======================== TESTIMONIALS ======================== */
.testimonials { background: var(--beige); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,.75); backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-soft); border: 1px solid var(--beige-dark);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); background: var(--white); }
.testimonial-card.featured { background: #1e1a14; border-color: #1e1a14; }
.testimonial-card.featured:hover { background: #2a2419; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }
.testimonial-card.featured .stars { color: var(--gold-light); }
.testimonial-text { line-height: 1.75; font-size: .92rem; color: var(--text-mid); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,.78); }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-light), var(--beige-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
  color: var(--peach-dark); flex-shrink: 0;
}
.testimonial-card.featured .testimonial-avatar { background: rgba(255,255,255,.12); color: white; }
.testimonial-author strong { display: block; font-size: .9rem; color: var(--text); }
.testimonial-card.featured .testimonial-author strong { color: white; }
.testimonial-author span { font-size: .78rem; color: var(--text-light); }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,.45); }

/* ======================== INSTAGRAM ======================== */
.instagram-section { background: var(--beige-mid); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.ig-tile {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: none;
  background-image: var(--bg); background-size: cover; background-position: center;
  transition: var(--transition);
  border: 1px solid var(--beige-dark);
}
.ig-tile:hover { transform: scale(1.04); box-shadow: var(--shadow-medium); z-index: 2; border-color: var(--gold-light); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(43,35,28,.48); opacity: 0; transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
}
.ig-overlay-icon { font-size: 1.4rem; transform: translateY(8px); transition: transform .3s ease; }
.ig-tile:hover .ig-overlay-icon { transform: translateY(0); }
.ig-overlay span { color: white; font-size: .82rem; font-weight: 600; }
.ig-tile:hover .ig-overlay { opacity: 1; }
.instagram-cta { text-align: center; }
.btn-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.btn-ig:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(253,29,29,.3); }

/* ======================== FOOTER ======================== */
.footer { background: #1a1712; color: rgba(255,255,255,.72); padding: 5rem 0 0; position: relative; z-index: 1; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem 4rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-logo .logo-brand { color: white; }
.footer-logo .logo-icon { color: var(--peach); }
.footer-tagline { font-size: .88rem; margin: 1.2rem 0 1.5rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: 1px solid rgba(255,255,255,.1);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--peach-dark); border-color: var(--peach-dark); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500;
  color: white; margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .87rem; transition: var(--transition); }
.footer-links a:hover { color: var(--peach-light); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25d366; color: white; padding: .7rem 1.25rem;
  border-radius: 2rem; font-size: .875rem; font-weight: 600;
  transition: var(--transition); margin-bottom: .5rem;
}
.footer-wa-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.footer-note { font-size: .84rem; color: rgba(255,255,255,.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 1.75rem 2rem;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
  font-size: .78rem; color: rgba(255,255,255,.28);
}

/* ======================== MODAL ======================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(43,35,28,.72); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--beige); border-radius: var(--radius-lg);
  width: 100%; max-width: 920px; max-height: 92vh;
  overflow-y: auto; position: relative;
  transform: translateY(28px) scale(.97); transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--beige-dark);
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 10;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border: 1px solid var(--beige-dark); width: 38px; height: 38px;
  border-radius: 50%; font-size: .9rem; cursor: none; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--text); color: white; transform: rotate(90deg); }
.modal-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }

/* ---- MODAL GALLERY (image-overlay preview) ---- */
.modal-gallery {
  background: white;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.modal-img-wrap {
  width: 100%; height: 100%;
}
.modal-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

.modal-badge-scarcity {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--text); color: white; font-size: .68rem; font-weight: 700;
  padding: .35rem 1rem; border-radius: 2rem;
  z-index: 6; letter-spacing: .05em;
}
.modal-thumbs {
  display: flex; gap: .75rem; padding: 1rem;
  overflow-x: auto; scrollbar-width: none;
}
.modal-thumb {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  overflow: hidden; border: 1.5px solid var(--beige-dark);
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.modal-thumb.active { border-color: var(--gold); transform: scale(1.05); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---- MODAL DETAILS ---- */
.modal-details { padding: 2.5rem; overflow-y: auto; }
.modal-category { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .5rem; }
.modal-title { font-size: 1.75rem; margin-bottom: .5rem; }
.modal-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.modal-stars span { color: var(--text-light); font-size: .85rem; margin-left: .25rem; }
.modal-price { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.modal-description { color: var(--text-mid); font-size: .9rem; line-height: 1.72; margin-bottom: 1.5rem; }

/* ---- OPTION GROUPS & SWATCHES ---- */
.modal-options { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.option-group { display: flex; flex-direction: column; gap: .75rem; }
.option-title { font-size: .88rem; font-weight: 700; color: var(--text); }

.swatches { display: flex; flex-wrap: wrap; gap: .6rem; }
.swatch {
  padding: .5rem 1rem; border-radius: 2rem;
  border: 1.5px solid var(--beige-dark); font-size: .84rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
}
.swatch:hover { border-color: var(--gold-light); }
.swatch.active { background: var(--text); color: white; border-color: var(--text); }

.swatch-color {
  width: 34px; height: 34px; padding: 0; border-radius: 50%;
  border: 2px solid white; box-shadow: 0 0 0 1px var(--beige-dark);
}
.swatch-color.active { box-shadow: 0 0 0 2px var(--gold); transform: scale(1.1); }

/* ---- QUANTITY SELECTOR ---- */
.qty-selector {
  display: inline-flex; align-items: center;
  background: white; border: 1.5px solid var(--beige-dark);
  border-radius: 3rem; padding: .25rem; width: fit-content;
}
.qty-selector button {
  width: 32px; height: 32px; border: none; background: none;
  font-size: 1.2rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.qty-selector button:hover { background: var(--beige-mid); }
.qty-selector input {
  width: 40px; text-align: center; border: none; appearance: none;
  font-weight: 700; font-size: .95rem; background: none; outline: none;
}

.custom-input {
  width: 100%; padding: 1.1rem 1.4rem; border-radius: var(--radius-sm); border: 1.5px solid var(--beige-dark);
  font-size: 1.15rem; background: var(--white); transition: var(--transition); outline: none;
  font-family: 'Inter', sans-serif;
}
.custom-input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,163,115,.12); }

.helper-text { font-size: .88rem; color: var(--text-mid); margin-top: .75rem; font-style: italic; opacity: .85; }
.input-error-msg { font-size: .82rem; color: #d63031; font-weight: 600; margin-top: .75rem; text-align: center; }

.modal-meta { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; opacity: .7; }
.meta-item { font-size: .82rem; color: var(--text-light); display: flex; gap: .5rem; align-items: center; }
.modal-actions {
  display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem;
  position: sticky; bottom: -1.5rem; background: var(--beige);
  padding: 1rem 0; border-top: 1px solid var(--beige-dark);
  margin-top: auto;
}
.btn-primary.glow {
  width: 100%; padding: 1.25rem; font-size: 1.1rem; justify-content: center;
  box-shadow: 0 10px 30px rgba(43,35,28,.15);
}

/* ---- FILE UPLOAD ---- */
.file-upload-wrap { position: relative; }
.file-input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2;
}
.file-label {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.1rem; border: 1.5px dashed var(--gold-light);
  border-radius: var(--radius-sm); background: white;
  transition: var(--transition); pointer-events: none;
}
.file-upload-wrap:hover .file-label { border-color: var(--gold); background: var(--beige-mid); }
.file-label span { font-size: 1.2rem; }
.file-label em { font-style: normal; font-size: .88rem; color: var(--text-light); }

.btn-primary.glow {
  box-shadow: 0 4px 20px rgba(43,35,28,.3), 0 0 0 0 rgba(212,163,115,.4);
  animation: buttonGlow 2s infinite;
}
@keyframes buttonGlow {
  0% { box-shadow: 0 4px 20px rgba(43,35,28,.3), 0 0 0 0 rgba(212,163,115,0.4); }
  70% { box-shadow: 0 4px 20px rgba(43,35,28,.3), 0 0 0 10px rgba(212,163,115,0); }
  100% { box-shadow: 0 4px 20px rgba(43,35,28,.3), 0 0 0 0 rgba(212,163,115,0.4); }
}

.made-with-love { text-align: center; font-size: .84rem; color: var(--text-light); }

/* ======================== CART SIDEBAR ======================== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(43,35,28,.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1600;
  width: 390px; max-width: 100vw;
  background: var(--beige); box-shadow: var(--shadow-strong);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-bottom: 1px solid var(--beige-dark); flex-shrink: 0;
}
.cart-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }
.cart-close { background: none; border: none; font-size: 1.2rem; color: var(--text-light); cursor: none; transition: var(--transition); }
.cart-close:hover { color: var(--text); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty { display: flex; flex-direction: column; align-items: center; gap: .75rem; padding: 3rem 0; color: var(--text-light); text-align: center; }
.cart-empty span { font-size: 2.5rem; }
.cart-empty p { font-size: 1rem; font-weight: 500; }
.cart-empty small { font-size: .84rem; }
.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--beige-dark);
}
.cart-item-img { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .92rem; font-weight: 600; margin-bottom: .25rem; }
.cart-item-custom { font-size: .78rem; color: var(--peach-dark); margin-bottom: .25rem; font-style: italic; }
.cart-item-price { font-size: .9rem; font-weight: 700; }
.cart-item-remove { background: none; border: none; color: var(--text-light); font-size: 1rem; cursor: none; align-self: flex-start; transition: var(--transition); }
.cart-item-remove:hover { color: var(--text); }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--beige-dark); flex-shrink: 0; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-weight: 700; font-size: 1.1rem; }
.btn-checkout { width: 100%; justify-content: center; margin-bottom: .75rem; }
.cart-note { text-align: center; font-size: .78rem; color: var(--text-light); }

/* ======================== FLOATING WA ======================== */
.floating-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1400;
  display: flex; align-items: center; gap: .8rem;
  background: #25d366; color: white; padding: 1.1rem 1.6rem;
  border-radius: 4rem; text-decoration: none;
  box-shadow: 0 10px 40px rgba(37,211,102,.4);
  transition: var(--transition);
}
.floating-wa svg { width: 24px; height: 24px; }
.floating-wa-label { font-weight: 600; font-size: .95rem; }
.floating-wa:hover { transform: scale(1.06) translateY(-4px); box-shadow: 0 15px 50px rgba(37,211,102,.55); }

/* Double Pulse Animation */
.floating-wa.pulse {
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

/* ======================== MOBILE STICKY CTA ======================== */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1300;
  background: var(--white); border-top: 1px solid var(--beige-dark);
  padding: 1rem 1.5rem; gap: .75rem;
  box-shadow: 0 -4px 20px rgba(43,35,28,.12);
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  .sticky-mobile-cta .btn-primary { flex: 1; justify-content: center; }
}

/* Footer Contact Block */
.footer-contact-block {
  margin-top: 1.2rem;
  background: rgba(43,35,28,.04);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--beige-dark);
}
.footer-contact-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: .75rem;
}
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25d366; color: white; padding: .7rem 1.2rem;
  border-radius: 2rem; font-size: .88rem; font-weight: 600;
  transition: var(--transition);
}
.footer-wa-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37,211,102,.3); }

.footer-tel-link {
  display: flex; align-items: center; gap: .6rem;
  margin-top: .85rem; color: var(--text-mid);
  font-size: .9rem; font-weight: 500;
  transition: var(--transition);
  padding: .5rem 0;
}
.footer-tel-link:hover { color: var(--gold-dark); transform: translateX(4px); }

.mobile-nav-cta {
  display: none; width: 100%; margin-top: 2rem;
}
@media (max-width: 768px) {
  .mobile-nav-cta { display: block; }
}

/* ---- RESPONSIVE ---- */
/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
  .hero-content { margin: 0 auto; max-width: 600px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 450px; margin: 0 auto; }
  
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 768px) {
  /* Header & Menu */
  .header { height: 70px; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 85%; height: 100vh;
    background: rgba(248, 245, 242, 0.96); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 3rem; gap: 1.5rem; z-index: 1500;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  }
  .nav.open { right: 0; }
  .nav-link { font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; width: 100%; border-bottom: 1px solid var(--beige-dark); padding-bottom: .8rem; }
  
  .hamburger { display: flex; z-index: 1600; }
  
  /* Hero Section */
  .hero { padding-top: 120px; padding-bottom: 80px; }
  .hero-title { font-size: 2.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  
  /* Section Spacing */
  .section { padding: 4.5rem 0; }
  .section-header { margin-bottom: 2.5rem; padding: 0 .5rem; }
  .section-title { font-size: 1.85rem; line-height: 1.25; }
  
  /* Products & Grids */
  .products-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .product-card { padding-bottom: .5rem; }
  
  /* How It Works (Stacking) */
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-connector { display: none; }
  .step-card { padding: 2rem 1.5rem; }
  
  /* Story Section */
  .story-inner { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
  .story-image-wrap { order: 2; margin-top: 1rem; }
  .story-content { order: 1; }
  .story-content .section-title { text-align: center; }
  .story-values { text-align: left; }
  .story-badge { right: 1rem; bottom: -1rem; transform: scale(.9); }
  
  /* Trust Strip */
  .trust-strip-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .trust-item { flex: 1 1 auto; width: 100%; }
  .trust-divider { display: none; }
  
  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  
  /* Instagram Grid */
  .instagram-grid { grid-template-columns: repeat(2, 1fr); padding: 0 .5rem; }
  
  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-links, .footer-contact { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-contact-block { margin-left: auto; margin-right: auto; max-width: 300px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .5rem; }
  
  /* Modal Mobile Optimization */
  .modal { width: 95%; max-height: 92vh; border-radius: var(--radius); }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-gallery { border-radius: var(--radius) var(--radius) 0 0; }
  .modal-details { padding: 1.75rem 1.5rem 2.5rem; }
  .modal-title { font-size: 1.6rem; margin-bottom: .75rem; }
  .modal-description { font-size: .88rem; margin-bottom: 2rem; }
  
  .custom-input { padding: 1.25rem; font-size: 1.2rem; }
  .helper-text { font-size: .85rem; margin-bottom: 1rem; }
  
  .modal-actions {
    position: sticky; bottom: -2.5rem; background: var(--beige);
    padding: 1.25rem 0; border-top: 1px solid var(--beige-dark);
    margin-top: 2rem;
  }
  .btn-primary.glow { padding: 1.4rem; font-size: 1.15rem; }
  .btn-ghost { display: none; } /* Hide add to cart on mobile for pure conversion flow */
  
  /* Floating elements */
  .floating-wa { bottom: 1.5rem; right: 1.5rem; width: 52px; height: 52px; padding: 0; border-radius: 50%; }
  .floating-wa-label { display: none; }
  
  /* Cursor */
  body { cursor: default !important; }
  .cursor, .cursor-trail { display: none !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .filter-tabs { gap: .5rem; overflow-x: auto; justify-content: flex-start; padding: .5rem; margin: 0 -.5rem 1.5rem; scrollbar-width: none; }
  .filter-tab { flex-shrink: 0; white-space: nowrap; padding: .5rem 1rem; font-size: .82rem; }
  .nav { width: 100%; padding: 2rem; }
}

