/* ============================================================
   MAYA MADE CO. — Design System & Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --strawberry: #D4625A;
  --strawberry-light: #E8887F;
  --strawberry-dark: #B84840;
  --cream: #FFF5EB;
  --cream-dark: #F5E6D6;
  --sage: #7D9B76;
  --sage-light: #A3BF9C;
  --seed-gold: #D4A853;
  --seed-gold-light: #E5C97A;
  --charcoal: #2D2926;
  --charcoal-light: #4A4542;
  --white: #FFFFFF;

  /* Pop Accent Colors */
  --lavender: #C6A4E0;
  --lavender-light: #DFC8F0;
  --bubblegum: #F2A7C3;
  --bubblegum-light: #F8C9DB;
  --sky: #87CEEB;
  --sky-light: #B0E0F6;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 41, 38, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 41, 38, 0.12);
  --shadow-hover: 0 12px 48px rgba(45, 41, 38, 0.16);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  /* Visible pastel color washes across the page */
  background-image:
    radial-gradient(ellipse 800px 600px at 10% 5%, rgba(242, 167, 195, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 700px 500px at 90% 20%, rgba(198, 164, 224, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 600px 600px at 50% 50%, rgba(135, 206, 235, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 800px 500px at 20% 80%, rgba(242, 167, 195, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 75% 70%, rgba(198, 164, 224, 0.10) 0%, transparent 70%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

/* --- Confetti Sprinkle Background --- */
.seed-pattern {
  position: relative;
  overflow: hidden;
}

.seed-pattern::before {
  content: '';
  position: absolute;
  top: -5%;
  left: -5%;
  right: -5%;
  bottom: -5%;
  background-image: url('../images/confetti-pattern.svg');
  background-size: 600px 600px;
  background-repeat: repeat;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  animation: confettiFloat 30s ease-in-out infinite;
}

@keyframes confettiFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(6px, -8px) rotate(0.3deg); }
  50% { transform: translate(-4px, 10px) rotate(-0.2deg); }
  75% { transform: translate(8px, 4px) rotate(0.2deg); }
}

.seed-pattern > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
  background: rgba(255, 245, 235, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 12px rgba(45, 41, 38, 0.08);
  padding: var(--space-sm) 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: var(--charcoal);
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--charcoal-light);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--strawberry);
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--charcoal);
}

/* Cart Button */
.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__cart:hover {
  background: rgba(212, 98, 90, 0.1);
  color: var(--strawberry);
}

.nav__cart-icon {
  width: 20px;
  height: 20px;
}

.nav__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--strawberry);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: calc(var(--space-5xl) + 40px) var(--space-xl) var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.hero__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero__bg-dots {
  display: none;
}

@keyframes seedDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(8px, -6px) rotate(0.5deg); }
  50% { transform: translate(-5px, 10px) rotate(-0.3deg); }
  75% { transform: translate(10px, 4px) rotate(0.3deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
}

.hero__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.3s both;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Gradient border ring around hero image */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: conic-gradient(
    from 0deg,
    var(--lavender),
    var(--bubblegum),
    var(--strawberry),
    var(--seed-gold),
    var(--sage),
    var(--sky),
    var(--lavender)
  );
  z-index: -1;
  animation: ringRotate 12s linear infinite;
  opacity: 0.75;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.hero__image-wrap:hover .hero__image {
  transform: scale(1.04);
}

.hero__logo {
  margin-bottom: var(--space-xl);
  animation: fadeUp 1s var(--ease-out) both;
}

.hero__logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.hero__logo-text span {
  display: block;
}

.hero__logo-text .co-dot {
  color: var(--strawberry);
  display: inline;
}

.hero__seed-icon {
  display: none;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--charcoal-light);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-spring);
}

.btn--primary {
  background: linear-gradient(135deg, var(--strawberry) 0%, var(--bubblegum) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 98, 90, 0.3);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--strawberry) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 167, 195, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn--secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 41, 38, 0.2);
}

.btn--cart {
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--lavender-light) 100%);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(242, 167, 195, 0.3);
  letter-spacing: 0.03em;
}

.btn--cart:hover {
  background: linear-gradient(135deg, var(--strawberry) 0%, var(--bubblegum) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 167, 195, 0.35);
}

.btn--sm {
  font-size: 0.8rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
}

/* ============================================================
   CATEGORY BADGES
   ============================================================ */
.categories {
  padding: var(--space-4xl) 0;
  text-align: center;
}

.categories__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-2xl);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.category-card {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-spring);
  cursor: pointer;
  text-decoration: none;
}

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

.category-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.category-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.category-card__desc {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-top: var(--space-xs);
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured {
  padding: var(--space-4xl) 0 var(--space-5xl);
  position: relative;
}



.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  font-size: 1rem;
  color: var(--charcoal-light);
  font-weight: 400;
}

.section-header__line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--strawberry), var(--bubblegum), var(--lavender), var(--sky));
  border-radius: 2px;
  margin: var(--space-md) auto 0;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(242, 167, 195, 0.12);
  transition: all var(--duration-normal) var(--ease-spring);
  border: 1px solid rgba(242, 167, 195, 0.15);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(242, 167, 195, 0.22);
  border-color: rgba(242, 167, 195, 0.35);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.product-card__badge--crochet {
  background: rgba(248, 201, 219, 0.75);
  color: #8B3A5E;
}

.product-card__badge--rug {
  background: rgba(163, 191, 156, 0.65);
  color: #3D5A36;
}

.product-card__badge--art {
  background: rgba(223, 200, 240, 0.70);
  color: #5A3D7A;
}

.product-card__body {
  padding: var(--space-lg);
}

.product-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--charcoal);
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero {
  padding: calc(var(--space-5xl) + 60px) 0 var(--space-3xl);
  text-align: center;
}

.shop-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.shop-hero__subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-top: var(--space-sm);
}

/* Filter Tabs */
.filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(242, 167, 195, 0.3);
  color: var(--charcoal-light);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all var(--duration-fast) var(--ease-out);
}

.filter-btn:hover {
  border-color: var(--bubblegum);
  color: var(--charcoal);
  background: rgba(248, 201, 219, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--lavender-light) 100%);
  border-color: transparent;
  color: var(--charcoal);
  box-shadow: 0 4px 15px rgba(242, 167, 195, 0.25);
}

.shop-products {
  padding-bottom: var(--space-5xl);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: calc(var(--space-5xl) + 60px) 0 var(--space-3xl);
  text-align: center;
}

.about-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.about-content {
  padding-bottom: var(--space-5xl);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  text-align: center;
  color: var(--charcoal-light);
  padding: var(--space-xl);
}

.about-image-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.about-text {
  max-width: 520px;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-lg);
  line-height: 1.85;
}

.about-text .highlight {
  color: var(--strawberry);
  font-weight: 600;
}

.about-values {
  margin-top: var(--space-2xl);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  text-align: left;
}

.about-value {
  padding: var(--space-lg) 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.about-value__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: var(--space-md);
  margin-top: var(--space-md);
}

.about-value__dot--strawberry { background: var(--strawberry); }
.about-value__dot--sage { background: var(--sage); }
.about-value__dot--gold { background: var(--seed-gold); }

.about-value__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.about-value__desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* ============================================================
   BRAND STORY STRIP
/* ============================================================
   BRAND STORY STRIP
   ============================================================ */
.brand-strip {
  padding: var(--space-4xl) 0 var(--space-5xl);
  text-align: center;
  background: transparent;
  color: var(--charcoal);
  position: relative;
}

.brand-strip::before,
.brand-strip::after {
  display: none;
}

.brand-strip__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: var(--charcoal);
  /* Creative card styling */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-2xl) var(--space-3xl);
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(242, 167, 195, 0.3);
  box-shadow:
    0 8px 32px rgba(242, 167, 195, 0.12),
    0 2px 8px rgba(198, 164, 224, 0.08);
}

.brand-strip__text .accent {
  background: linear-gradient(135deg, var(--strawberry) 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-transition {
  display: none;
}

.footer {
  background: linear-gradient(180deg, #3A3330 0%, #2D2926 100%);
  color: var(--cream);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--strawberry), var(--bubblegum), var(--lavender), var(--sky)) 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: rgba(255, 245, 235, 0.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: var(--bubblegum-light);
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 245, 235, 0.6);
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 245, 235, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 245, 235, 0.4);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 245, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 245, 235, 0.6);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer__social-link[aria-label="Instagram"]:hover {
  border-color: var(--lavender);
  background: linear-gradient(135deg, var(--lavender) 0%, var(--bubblegum) 100%);
}

.footer__social-link[aria-label="TikTok"]:hover {
  border-color: var(--bubblegum);
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--strawberry) 100%);
}

.footer__social-link[aria-label="Pinterest"]:hover {
  border-color: var(--strawberry);
  background: linear-gradient(135deg, var(--strawberry) 0%, var(--seed-gold) 100%);
}

/* ============================================================
   HERO DECORATIVE BLOBS
   ============================================================ */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0;
  animation: blobFadeIn 2s var(--ease-out) 0.8s both;
}

@keyframes blobFadeIn {
  to { opacity: 1; }
}

.hero__blob--lavender {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--lavender-light) 0%, transparent 70%);
  top: 5%;
  right: 10%;
  opacity: 0;
  animation: blobFadeIn 2s var(--ease-out) 0.8s both, blobFloat1 20s ease-in-out infinite 2s;
}

.hero__blob--bubblegum {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--bubblegum-light) 0%, transparent 70%);
  bottom: 15%;
  left: 5%;
  opacity: 0;
  animation: blobFadeIn 2s var(--ease-out) 1.2s both, blobFloat2 18s ease-in-out infinite 2.5s;
}

.hero__blob--sky {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--sky-light) 0%, transparent 70%);
  top: 40%;
  right: 35%;
  opacity: 0;
  animation: blobFadeIn 2s var(--ease-out) 1.5s both, blobFloat3 22s ease-in-out infinite 3s;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -15px); }
  66% { transform: translate(-10px, 20px); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-15px, 10px); }
  66% { transform: translate(20px, -5px); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(10px, 15px); }
  66% { transform: translate(-20px, -10px); }
}

/* ============================================================
   INSTAGRAM CTA BUTTON
   ============================================================ */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 40%, #8134AF 70%, #515BD4 100%);
  box-shadow: 0 4px 18px rgba(221, 42, 123, 0.3);
  transition: all var(--duration-normal) var(--ease-spring);
  margin-top: var(--space-lg);
  text-decoration: none;
}

.instagram-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(221, 42, 123, 0.45);
  filter: brightness(1.08);
}

.instagram-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .hero__split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: right var(--duration-normal) var(--ease-out);
    z-index: 999;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .hero__split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__image-wrap {
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }

  .hero__logo-text {
    font-size: clamp(2.5rem, 14vw, 5rem);
  }

  .about-text {
    max-width: 100%;
  }

  .categories__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .hero__cta-group {
    flex-direction: column;
  }
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 41, 38, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.nav__overlay.open {
  display: block;
  opacity: 1;
}

/* ============================================================
   SNIPCART OVERRIDES (match brand)
   ============================================================ */
.snipcart-modal__container {
  z-index: 10000 !important;
}
