/* ============================================================
   CURVYA — Main Stylesheet
   Palette: Blush #F4C5C5 | Mauve #8B4B6B | Cream #FDF6F0 |
            Dusty Pink #E8A5B5 | Charcoal #2D2D2D | Gold #C9956A
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blush:     #F4C5C5;
  --mauve:     #8B4B6B;
  --mauve-dark:#6B3555;
  --cream:     #FDF6F0;
  --dusty:     #E8A5B5;
  --charcoal:  #2D2D2D;
  --gold:      #C9956A;
  --light-pink:#FBE8EF;
  --mid-pink:  #F2D0DB;
  --text:      #3A2A2A;
  --text-light:#8A7070;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-script:  'Dancing Script', cursive;
  --ff-body:    'Lato', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --shadow:     0 4px 24px rgba(139,75,107,0.10);
  --shadow-md:  0 8px 40px rgba(139,75,107,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,197,197,0.35);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--mauve);
  display: flex; align-items: center; gap: 6px;
}
.logo-leaf { font-size: 1.1rem; }

.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1.5px; background: var(--mauve);
  transition: right 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--mauve); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--mauve); border-radius: 2px; transition: 0.3s;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: var(--mauve);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(139,75,107,0.25);
}
.btn-primary:hover {
  background: var(--mauve-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,75,107,0.35);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: var(--mauve);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--mauve);
  transition: background 0.25s, color 0.25s;
}
.btn-ghost:hover { background: var(--mauve); color: #fff; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  padding: 100px 5% 60px;
  display: flex; align-items: center; gap: 60px;
  background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 55%, #F2D0DB 100%);
  position: relative; overflow: hidden;
}

/* Floating petals */
.hero-petals { position: absolute; inset: 0; pointer-events: none; }
.petal {
  position: absolute;
  border-radius: 60% 40% 60% 40%;
  opacity: 0.18;
  animation: floatPetal 12s ease-in-out infinite;
}
.p1 { width:80px; height:50px; background:var(--mauve); top:12%; left:8%; animation-delay:0s; }
.p2 { width:50px; height:32px; background:var(--dusty); top:20%; right:20%; animation-delay:2s; }
.p3 { width:65px; height:40px; background:var(--gold); top:55%; left:5%; animation-delay:4s; }
.p4 { width:90px; height:55px; background:var(--blush); top:70%; right:8%; animation-delay:1s; }
.p5 { width:45px; height:28px; background:var(--mauve); bottom:20%; left:40%; animation-delay:3s; }
.p6 { width:70px; height:45px; background:var(--dusty); top:35%; right:40%; animation-delay:5s; }

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(8deg); }
}

.hero-content {
  flex: 1;
  max-width: 560px;
  animation: fadeSlideUp 0.9s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.hero-title em {
  color: var(--mauve);
  font-style: italic;
}

.hero-script {
  font-family: var(--ff-script);
  font-size: 1.5rem;
  color: var(--mauve);
  margin-bottom: 18px;
  animation: fadeSlideUp 0.9s ease 0.2s both;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 0.4s both;
}

.hero-visual {
  flex: 1;
  position: relative;
  max-width: 500px;
  animation: fadeSlideUp 0.9s ease 0.5s both;
}

.hero-badge {
  position: absolute; top: -20px; right: -10px; z-index: 5;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--mauve);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  animation: rotateSlow 18s linear infinite;
}
.badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-card-stack {
  display: flex; flex-direction: column; gap: 16px;
}

.hcard {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244,197,197,0.5);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hcard:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.hcard2 { margin-left: 24px; }
.hcard3 { margin-left: 48px; }

.hcard-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.hcard-name {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 4px;
}
.hcard-desc {
  font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px;
}

.swatch-row { display: flex; gap: 6px; }
.sw {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: transform 0.2s;
}
.sw:hover { transform: scale(1.3); }

/* ===================== WHY STRIP ===================== */
.why-strip {
  background: var(--mauve);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  padding: 18px 5%;
}
.why-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 28px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.why-icon { font-size: 1.1rem; }
.why-divider {
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.3);
}

/* ===================== SECTION COMMONS ===================== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 12px;
}
.section-sub {
  font-size: 0.95rem; color: var(--text-light); max-width: 500px; margin: 0 auto;
  line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 44px; }

/* ===================== COLLECTIONS PREVIEW ===================== */
.collections-preview {
  padding: 80px 5%;
  background: var(--cream);
}

.coll-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  min-height: 420px;
}

.coll-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: block;
  transition: transform 0.35s;
}
.coll-card:hover { transform: scale(1.025); }

.coll-overlay {
  position: absolute; inset: 0;
  transition: opacity 0.35s;
  opacity: 0.55;
}
.coll-card:hover .coll-overlay { opacity: 0.7; }

.coll-everyday { background: linear-gradient(160deg, #E8B4C0 0%, #C4849A 100%); }
.coll-everyday .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgba(139,75,107,0.6) 100%); }

.coll-active { background: linear-gradient(160deg, #8BA3B8 0%, #2D3A4A 100%); }
.coll-active .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgba(30,50,70,0.7) 100%); }

.coll-style { background: linear-gradient(160deg, #D4A5C0 0%, #8B4B6B 100%); }
.coll-style .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgba(139,75,107,0.65) 100%); }

.coll-more { background: linear-gradient(160deg, #E8C9A0 0%, #C9956A 100%); }
.coll-more .coll-overlay { background: linear-gradient(180deg, transparent 30%, rgba(100,60,30,0.5) 100%); }

.coll-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  color: #fff;
}
.coll-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  opacity: 0.75; margin-bottom: 6px;
}
.coll-name {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600;
  line-height: 1.2; margin-bottom: 4px;
}
.coll-pieces {
  font-size: 0.78rem; opacity: 0.8; margin-bottom: 10px;
}
.coll-link {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  opacity: 0; transform: translateY(6px);
  display: inline-block; transition: opacity 0.3s, transform 0.3s;
}
.coll-card:hover .coll-link { opacity: 1; transform: translateY(0); }

/* ===================== FEATURED PRODUCTS ===================== */
.featured {
  padding: 80px 5%;
  background: var(--light-pink);
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prod-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.prod-img {
  height: 220px;
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 12px;
}
.pi-ease     { background: linear-gradient(145deg, #F4C5C5 0%, #E8A5A0 100%); }
.pi-grace    { background: linear-gradient(145deg, #D4B8C7 0%, #8B4B6B 100%); }
.pi-active   { background: linear-gradient(145deg, #8BA3B8 0%, #2D3A4A 100%); }
.pi-softlift { background: linear-gradient(145deg, #C4A882 0%, #8B5A3C 100%); }

.prod-badge {
  padding: 4px 12px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.9);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mauve);
}

.prod-info { padding: 18px 20px 20px; }
.prod-collection {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.prod-name {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 4px;
}
.prod-tagline {
  font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px;
}
.prod-cta {
  display: inline-block; margin-top: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mauve);
  border-bottom: 1.5px solid var(--mauve);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.prod-cta:hover { color: var(--mauve-dark); border-color: var(--mauve-dark); }

/* ===================== QUOTE BAND ===================== */
.quote-band {
  background: linear-gradient(135deg, var(--mauve) 0%, var(--mauve-dark) 100%);
  padding: 60px 5%;
  text-align: center;
}
.quote-inner { max-width: 700px; margin: 0 auto; }
.quote-script {
  font-family: var(--ff-script);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
  opacity: 0.95;
}
.quote-attr {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blush);
}

/* ===================== FEATURES GRID ===================== */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 72px 5%;
  background: var(--cream);
}
.feat-item {
  text-align: center;
  padding: 32px 28px;
  border-right: 1px solid rgba(244,197,197,0.5);
}
.feat-item:last-child { border-right: none; }
.feat-icon { font-size: 2rem; margin-bottom: 14px; }
.feat-item h4 {
  font-family: var(--ff-display); font-size: 1rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 8px;
}
.feat-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 64px 5% 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo {
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700;
  color: var(--blush); letter-spacing: 0.12em; margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5);
}
.footer-links-col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blush); margin-bottom: 16px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--blush); }

.footer-bottom {
  padding: 20px 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-script {
  font-family: var(--ff-script); font-size: 1.1rem;
  color: var(--blush) !important; opacity: 0.8;
}

/* ===================== SHOP PAGE ===================== */
.shop-hero {
  padding: 120px 5% 56px;
  background: linear-gradient(135deg, #FBE8EF 0%, #F2D0DB 100%);
  text-align: center;
}
.shop-hero h1 {
  font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 12px;
}
.shop-hero p { font-size: 1rem; color: var(--text-light); max-width: 480px; margin: 0 auto; }

.shop-filters {
  padding: 28px 5%;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--cream);
  border-bottom: 1px solid rgba(244,197,197,0.4);
}
.filter-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light); margin-right: 4px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(244,197,197,0.6);
  background: transparent;
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer; transition: 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--mauve); border-color: var(--mauve); color: #fff;
}

.shop-section {
  padding: 56px 5% 72px;
}
.shop-section-title {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 6px;
  display: flex; align-items: center; gap: 12px;
}
.shop-section-title::after {
  content: ''; flex: 1; height: 1px; background: rgba(244,197,197,0.5);
}
.shop-section-sub {
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 32px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.shop-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.shop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.shop-card-img {
  height: 200px;
  position: relative;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 12px;
}
.shop-card-info { padding: 16px 18px 20px; }
.shop-card-coll {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 3px;
}
.shop-card-name {
  font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 4px;
}
.shop-card-desc {
  font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px;
  line-height: 1.5;
}

/* Colour gradient backgrounds for shop cards */
.bg-ease       { background: linear-gradient(150deg, #F4C5C5 0%, #E8A5A0 100%); }
.bg-everyday   { background: linear-gradient(150deg, #B8C5A8 0%, #7A9068 100%); }
.bg-essential  { background: linear-gradient(150deg, #D4B8C7 0%, #B090A0 100%); }
.bg-support    { background: linear-gradient(150deg, #C4A882 0%, #8B5A3C 100%); }
.bg-grace      { background: linear-gradient(150deg, #D0B0C0 0%, #8B4B6B 100%); }
.bg-luxe       { background: linear-gradient(150deg, #C8C0D8 0%, #8888AA 100%); }
.bg-active     { background: linear-gradient(150deg, #8BA3B8 0%, #2D3A4A 100%); }
.bg-move       { background: linear-gradient(150deg, #666 0%, #222 100%); }
.bg-softlift   { background: linear-gradient(150deg, #8B4B6B 0%, #5A2040 100%); }
.bg-cocktail   { background: linear-gradient(150deg, #2D2D2D 0%, #000 100%); }
.bg-shapewear  { background: linear-gradient(150deg, #2D2D2D 0%, #1A1A1A 100%); }
.bg-nightwear  { background: linear-gradient(150deg, #8888AA 0%, #555577 100%); }
.bg-activewear { background: linear-gradient(150deg, #8BA3B8 0%, #4A6A80 100%); }

/* ===================== ABOUT PAGE ===================== */
.about-hero {
  padding: 120px 5% 64px;
  background: linear-gradient(135deg, #FDF6F0 0%, #FBE8EF 100%);
  display: flex; align-items: center; gap: 64px;
}
.about-hero-text { flex: 1; }
.about-hero-text h1 {
  font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 16px; line-height: 1.2;
}
.about-hero-text h1 em { color: var(--mauve); font-style: italic; }
.about-hero-text p {
  font-size: 1rem; color: var(--text-light); line-height: 1.8; max-width: 440px;
}
.about-hero-visual {
  flex: 0 0 340px;
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--blush) 0%, var(--mauve) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-hero-quote {
  font-family: var(--ff-script); font-size: 2rem;
  color: #fff; text-align: center; padding: 30px; line-height: 1.5;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding: 72px 5%;
}
.about-block {
  padding: 48px 40px;
  border: 1px solid rgba(244,197,197,0.3);
}
.about-block:nth-child(1) { background: var(--light-pink); }
.about-block:nth-child(2) { background: #fff; }
.about-block-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.about-block-icon { font-size: 2.5rem; margin-bottom: 16px; }
.about-block h3 {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600;
  color: var(--mauve); margin-bottom: 14px;
}
.about-block p { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }

.about-values {
  padding: 72px 5%;
  background: var(--mauve);
  text-align: center;
}
.about-values .section-title { color: #fff; }
.about-values .section-eyebrow { color: var(--blush); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.val-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: #fff; text-align: center;
  transition: background 0.3s;
}
.val-card:hover { background: rgba(255,255,255,0.18); }
.val-icon { font-size: 2rem; margin-bottom: 12px; }
.val-card h4 { font-family: var(--ff-display); font-size: 1rem; margin-bottom: 8px; }
.val-card p { font-size: 0.82rem; opacity: 0.8; line-height: 1.6; }

/* ===================== MOBILE MENU ===================== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(253,246,240,0.97);
    flex-direction: column; align-items: center; gap: 0;
    padding: 16px 0;
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s;
    border-bottom: 1px solid rgba(244,197,197,0.3);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 0; font-size: 0.9rem; }
}

@media (max-width: 860px) {
  .hero { flex-direction: column; padding: 100px 5% 48px; text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-visual { max-width: 100%; }
  .hcard2, .hcard3 { margin-left: 0; }
  .coll-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
  .coll-card { min-height: 220px; }
  .product-row { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-item { border-right: none; border-bottom: 1px solid rgba(244,197,197,0.4); }
  .feat-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-divider { display: none; }
  .about-hero { flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .coll-grid { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}