/* 
 * ZARGUL - Soft Claymorphism (3D Tactile Design) Stylesheet
 * Custom Vanilla CSS with harmonious pastel palettes, smooth transitions, and premium layouts.
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Color Palette (Harmonious Pastels) */
  --bg-app: #f9f6f0;               /* Cream background */
  
  --pastel-pink: #ffeef2;          /* Soft Pink */
  --pastel-lavender: #f3eeff;      /* Soft Lavender */
  --pastel-cream: #fff9e6;         /* Soft Cream */
  --pastel-beige: #f5eedc;         /* Gentle Beige */
  --pastel-white: #ffffff;         /* Pure white (tactile clay base) */
  --pastel-green: #eefbee;         /* Success/Accent Green */
  
  /* Text colors */
  --color-text-dark: #3a3238;      /* Deep brownish-gray for contrast and premium warmth */
  --color-text-muted: #756a72;     /* Muted gray-brown */
  --color-accent: #f08ea7;         /* Warm coral/pink for highlights */
  --brand-purple: #5c3c67;         /* Deep plum/purple for brand accents */
  
  /* Font Families */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Claymorphism Shadow Configurations */
  /* White Clay */
  --clay-white-bg: #ffffff;
  --clay-white-border: rgba(255, 255, 255, 0.9);
  --clay-white-shadow: 
    12px 16px 32px rgba(185, 170, 180, 0.15),
    -8px -8px 20px rgba(255, 255, 255, 0.9),
    inset -10px -10px 20px rgba(185, 170, 180, 0.15),
    inset 10px 10px 20px rgba(255, 255, 255, 0.9);

  /* Pink Clay */
  --clay-pink-bg: #ffeef2;
  --clay-pink-border: rgba(255, 255, 255, 0.85);
  --clay-pink-shadow: 
    12px 16px 32px rgba(220, 180, 190, 0.2),
    -8px -8px 20px rgba(255, 255, 255, 0.9),
    inset -10px -10px 20px rgba(220, 160, 175, 0.2),
    inset 10px 10px 20px rgba(255, 255, 255, 0.9);

  /* Lavender Clay */
  --clay-lavender-bg: #f3eeff;
  --clay-lavender-border: rgba(255, 255, 255, 0.85);
  --clay-lavender-shadow: 
    12px 16px 32px rgba(200, 190, 220, 0.2),
    -8px -8px 20px rgba(255, 255, 255, 0.9),
    inset -10px -10px 20px rgba(180, 165, 210, 0.2),
    inset 10px 10px 20px rgba(255, 255, 255, 0.9);

  /* Beige Clay */
  --clay-beige-bg: #f5eedc;
  --clay-beige-border: rgba(255, 255, 255, 0.85);
  --clay-beige-shadow: 
    12px 16px 32px rgba(200, 190, 170, 0.2),
    -8px -8px 20px rgba(255, 255, 255, 0.9),
    inset -10px -10px 20px rgba(180, 165, 140, 0.22),
    inset 10px 10px 20px rgba(255, 255, 255, 0.9);

  /* Cream Clay */
  --clay-cream-bg: #fff9e6;
  --clay-cream-border: rgba(255, 255, 255, 0.9);
  --clay-cream-shadow: 
    12px 16px 32px rgba(210, 200, 175, 0.2),
    -8px -8px 20px rgba(255, 255, 255, 0.9),
    inset -10px -10px 20px rgba(200, 180, 140, 0.18),
    inset 10px 10px 20px rgba(255, 255, 255, 0.9);

  /* Highlight/Coral Clay for Buttons */
  --clay-accent-bg: #f08ea7;
  --clay-accent-border: rgba(255, 255, 255, 0.5);
  --clay-accent-shadow: 
    8px 12px 24px rgba(240, 142, 167, 0.25),
    -6px -6px 16px rgba(255, 255, 255, 0.9),
    inset -8px -8px 16px rgba(180, 80, 100, 0.25),
    inset 8px 8px 16px rgba(255, 255, 255, 0.4);

  /* Transition timings */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-tactile: transform 0.1s ease, box-shadow 0.1s ease;
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-app);
  color: var(--color-text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

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

/* --- CLAYMORPHISM UTILITY CLASSES --- */
.clay-card {
  border-radius: 28px;
  transition: var(--transition-smooth);
}

.clay-card.white {
  background-color: var(--clay-white-bg);
  border: 4px solid var(--clay-white-border);
  box-shadow: var(--clay-white-shadow);
}

.clay-card.pink {
  background-color: var(--clay-pink-bg);
  border: 4px solid var(--clay-pink-border);
  box-shadow: var(--clay-pink-shadow);
}

.clay-card.lavender {
  background-color: var(--clay-lavender-bg);
  border: 4px solid var(--clay-lavender-border);
  box-shadow: var(--clay-lavender-shadow);
}

.clay-card.beige {
  background-color: var(--clay-beige-bg);
  border: 4px solid var(--clay-beige-border);
  box-shadow: var(--clay-beige-shadow);
}

.clay-card.cream {
  background-color: var(--clay-cream-bg);
  border: 4px solid var(--clay-cream-border);
  box-shadow: var(--clay-cream-shadow);
}

/* Tactile Buttons */
.clay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 20px;
  transition: var(--transition-tactile);
  text-align: center;
}

.clay-btn.accent {
  background-color: var(--clay-accent-bg);
  color: #ffffff;
  border: 3px solid var(--clay-accent-border);
  box-shadow: var(--clay-accent-shadow);
}

.clay-btn.accent:hover {
  transform: translateY(-2px);
  box-shadow: 
    10px 14px 28px rgba(240, 142, 167, 0.35),
    -6px -6px 16px rgba(255, 255, 255, 0.9),
    inset -6px -6px 12px rgba(180, 80, 100, 0.2),
    inset 6px 6px 12px rgba(255, 255, 255, 0.5);
}

.clay-btn.accent:active {
  transform: translateY(1px);
  box-shadow: 
    4px 6px 12px rgba(240, 142, 167, 0.2),
    -3px -3px 8px rgba(255, 255, 255, 0.9),
    inset -10px -10px 20px rgba(180, 80, 100, 0.35),
    inset 10px 10px 20px rgba(255, 255, 255, 0.3);
}

.clay-btn.secondary {
  background-color: var(--clay-white-bg);
  color: var(--color-text-dark);
  border: 3px solid var(--clay-white-border);
  box-shadow: var(--clay-white-shadow);
}

.clay-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 
    14px 18px 36px rgba(185, 170, 180, 0.2),
    -8px -8px 20px rgba(255, 255, 255, 0.95),
    inset -8px -8px 16px rgba(185, 170, 180, 0.1),
    inset 8px 8px 16px rgba(255, 255, 255, 0.95);
}

.clay-btn.secondary:active {
  transform: translateY(1px);
  box-shadow: 
    6px 8px 16px rgba(185, 170, 180, 0.1),
    -4px -4px 10px rgba(255, 255, 255, 0.9),
    inset -14px -14px 24px rgba(185, 170, 180, 0.22),
    inset 14px 14px 24px rgba(255, 255, 255, 0.8);
}

.clay-btn.whatsapp {
  background-color: #e3ffd9;
  color: #1e6c06;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 
    8px 12px 24px rgba(100, 200, 100, 0.15),
    -6px -6px 16px rgba(255, 255, 255, 0.9),
    inset -8px -8px 16px rgba(100, 170, 100, 0.15),
    inset 8px 8px 16px rgba(255, 255, 255, 0.5);
}

.clay-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 
    10px 14px 28px rgba(100, 200, 100, 0.22),
    -6px -6px 16px rgba(255, 255, 255, 0.9),
    inset -6px -6px 12px rgba(100, 170, 100, 0.1),
    inset 6px 6px 12px rgba(255, 255, 255, 0.6);
}

.clay-btn.whatsapp:active {
  transform: translateY(1px);
  box-shadow: 
    4px 6px 12px rgba(100, 200, 100, 0.1),
    -3px -3px 8px rgba(255, 255, 255, 0.9),
    inset -10px -10px 20px rgba(100, 170, 100, 0.25),
    inset 10px 10px 20px rgba(255, 255, 255, 0.4);
}

/* Clay Inputs */
.clay-input {
  background-color: var(--clay-white-bg);
  border: 3px solid var(--clay-white-border);
  border-radius: 18px;
  padding: 12px 20px;
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  box-shadow: inset 4px 4px 10px rgba(185, 170, 180, 0.15), inset -4px -4px 10px rgba(255, 255, 255, 0.9);
  transition: var(--transition-smooth);
}

.clay-input:focus {
  box-shadow: 
    inset 2px 2px 5px rgba(185, 170, 180, 0.2), 
    inset -2px -2px 5px rgba(255, 255, 255, 0.9),
    0 0 0 3px rgba(240, 142, 167, 0.25);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 5%;
  background-color: rgba(249, 246, 240, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 5%;
  box-shadow: 0 10px 30px rgba(58, 50, 56, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.logo-link:hover {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--color-text-dark);
  position: relative;
  padding: 8px 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Clay Action Buttons */
.clay-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--clay-white-bg);
  border: 3px solid var(--clay-white-border);
  box-shadow: var(--clay-white-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transition: var(--transition-tactile);
  position: relative;
}

.clay-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    10px 12px 24px rgba(185, 170, 180, 0.2),
    -6px -6px 16px rgba(255, 255, 255, 0.95),
    inset -6px -6px 12px rgba(185, 170, 180, 0.1),
    inset 6px 6px 12px rgba(255, 255, 255, 0.95);
}

.clay-icon-btn:active {
  transform: translateY(1px);
  box-shadow: 
    4px 6px 12px rgba(185, 170, 180, 0.1),
    -3px -3px 8px rgba(255, 255, 255, 0.9),
    inset -10px -10px 16px rgba(185, 170, 180, 0.2),
    inset 10px 10px 16px rgba(255, 255, 255, 0.8);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 2px 4px 8px rgba(240, 142, 167, 0.3);
}

.menu-toggle {
  display: none;
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 60px 5% 100px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--color-accent);
  position: relative;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-clay-backdrop {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-app);
  box-shadow: inset 4px 4px 10px rgba(0,0,0,0.05), inset -4px -4px 10px rgba(255,255,255,0.9);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Floating badges inside hero */
.floating-badge {
  position: absolute;
  padding: 16px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.fb-1 {
  bottom: 30px;
  left: -20px;
}

.fb-2 {
  top: 40px;
  right: -20px;
}

.fb-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pastel-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: inset -3px -3px 7px rgba(220, 160, 175, 0.25), inset 3px 3px 7px #fff;
}

.fb-details h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.fb-details p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* --- VALUE PROPOSITION SECTION --- */
.values-section {
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  padding: 35px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --- CATEGORIES SECTION --- */
.categories-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  background-color: var(--bg-app);
  box-shadow: inset 4px 4px 10px rgba(0,0,0,0.04), inset -4px -4px 10px rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: var(--transition-smooth);
}

.category-card:hover .category-image {
  transform: scale(1.05);
}

.category-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.category-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.category-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.category-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  font-size: 1.1rem;
}

/* --- FEATURED PRODUCTS --- */
.products-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background-color: transparent;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.filter-btn.active {
  background-color: var(--clay-white-bg);
  border: 3px solid var(--clay-white-border);
  box-shadow: var(--clay-white-shadow);
  color: var(--color-text-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
}

.product-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  padding: 6px 14px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product-badge.sale {
  background-color: #ffdce3;
  color: #c93b58;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: inset -3px -3px 6px rgba(220, 160, 175, 0.25), inset 3px 3px 6px #fff;
}

.product-badge.new {
  background-color: #e3ffd9;
  color: #277e0c;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: inset -3px -3px 6px rgba(100, 180, 100, 0.2), inset 3px 3px 6px #fff;
}

.product-image-container {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--bg-app);
  box-shadow: inset 4px 4px 10px rgba(0,0,0,0.04), inset -4px -4px 10px rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: var(--transition-smooth);
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e5a93b;
}

.product-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text-dark);
  display: flex;
  flex-direction: column;
}

.product-price-original {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-weight: 400;
}

.add-to-cart-btn {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clay-white-bg);
  border: 2px solid var(--clay-white-border);
  box-shadow: var(--clay-white-shadow);
  color: var(--color-text-dark);
  transition: var(--transition-tactile);
}

.add-to-cart-btn:hover {
  background-color: var(--clay-accent-bg);
  color: #fff;
  border-color: var(--clay-accent-border);
  box-shadow: var(--clay-accent-shadow);
}

.add-to-cart-btn:active {
  transform: translateY(1px);
}

/* --- BRAND STORY --- */
.story-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.story-container {
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.story-content {
  max-width: 650px;
}

.story-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.story-text {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.story-visual {
  display: flex;
  justify-content: center;
}

.story-clay-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 0.85;
  border-radius: 35px;
  padding: 16px;
}

.story-img-container {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 4px 4px 10px rgba(0,0,0,0.05), inset -4px -4px 10px rgba(255,255,255,0.9);
}

.story-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- FOOTER SECTION (Soft Claymorphism High-End Design) --- */
.high-end-footer {
  /* Warm cream-colored background with subtle diffused pastel pink/lavender gradients at the edges */
  background: 
    radial-gradient(circle at 10% 20%, #ffeef2 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, #f3eeff 0%, transparent 40%),
    #fcfaf6;
  padding: 80px 5% 40px;
  margin-top: 60px;
  border-top: 6px solid #ffffff;
  box-shadow: inset 0 12px 24px rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.footer-layout {
  max-width: 1400px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* Brand Info (Left) */
.brand-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #44352a; /* Sophisticated Dark Brown */
  letter-spacing: 2px;
  margin: 0;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Contact (Right) */
.contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-radius: 20px;
  width: 100%;
  max-width: 320px;
  transition: var(--transition-tactile);
}

.contact-row:hover {
  transform: translateY(-2px);
  box-shadow: 
    14px 18px 36px rgba(185, 170, 180, 0.2),
    -8px -8px 20px rgba(255, 255, 255, 0.95);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset -2px -2px 5px rgba(0,0,0,0.05), inset 2px 2px 5px #fff;
}

.contact-icon.whatsapp {
  background-color: #e3ffd9;
  color: #1e6c06;
}

.contact-icon.email {
  background-color: var(--pastel-pink);
  color: var(--color-accent);
}

.contact-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

/* Connect Shelf (Center) */
.connect-shelf-col {
  display: flex;
  justify-content: center;
}

.connect-shelf {
  width: 100%;
  max-width: 440px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  background: var(--clay-white-bg);
  border-radius: 30px;
  box-shadow: var(--clay-white-shadow);
  border: 4px solid var(--clay-white-border);
}

.shelf-header {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.spheres-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* Social Spheres Antigravity / Floating Effect */
.sphere-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  height: 64px;
}

.clay-sphere {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Default elevation height offset */
  transform: translateY(-8px);
}

.clay-sphere.facebook {
  background-color: #eef3ff;
  color: #3b5998;
  border: 3px solid #ffffff;
  box-shadow: 
    inset -6px -6px 12px rgba(59, 89, 152, 0.15),
    inset 6px 6px 12px rgba(255, 255, 255, 0.9);
}

.clay-sphere.instagram {
  background-color: #ffeff4;
  color: #e1306c;
  border: 3px solid #ffffff;
  box-shadow: 
    inset -6px -6px 12px rgba(225, 48, 108, 0.15),
    inset 6px 6px 12px rgba(255, 255, 255, 0.9);
}

.clay-sphere.tiktok {
  background-color: #f3f3f3;
  color: #010101;
  border: 3px solid #ffffff;
  box-shadow: 
    inset -6px -6px 12px rgba(0, 0, 0, 0.12),
    inset 6px 6px 12px rgba(255, 255, 255, 0.9);
}

/* Deep distinct drop shadows underneath spheres to emphasize the antigravity float */
.sphere-shadow {
  width: 38px;
  height: 9px;
  background: rgba(58, 50, 56, 0.22);
  border-radius: 50%;
  filter: blur(4px);
  position: absolute;
  bottom: 0px;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

/* Hover animations for Antigravity Bobbing and Rotation */
.connect-shelf .sphere-wrapper:hover .clay-sphere {
  animation: sphereBobRotate 3s ease-in-out infinite;
}

.connect-shelf .sphere-wrapper:hover .sphere-shadow {
  animation: shadowBob 3s ease-in-out infinite;
}

/* Contact 3D Claymorphism Icons styling */
.contact-icons-row {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.clay-sphere.whatsapp-3d {
  background-color: #e3ffd9;
  color: #1e6c06;
  border: 3px solid #ffffff;
  box-shadow: 
    inset -6px -6px 12px rgba(30, 108, 6, 0.18),
    inset 6px 6px 12px rgba(255, 255, 255, 0.95),
    4px 8px 16px rgba(30, 108, 6, 0.1);
}

.clay-sphere.email-3d {
  background-color: #ffeff4;
  color: var(--color-accent);
  border: 3px solid #ffffff;
  box-shadow: 
    inset -6px -6px 12px rgba(240, 142, 167, 0.18),
    inset 6px 6px 12px rgba(255, 255, 255, 0.95),
    4px 8px 16px rgba(240, 142, 167, 0.1);
}

.contact-icons-row .sphere-wrapper:hover .clay-sphere {
  transform: translateY(-12px) scale(1.05);
}

.contact-icons-row .sphere-wrapper:hover .sphere-shadow {
  transform: scale(0.8);
  opacity: 0.6;
}

@keyframes sphereBobRotate {
  0% {
    transform: translateY(-8px) rotate(0deg);
  }
  25% {
    transform: translateY(-13px) rotate(2deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  75% {
    transform: translateY(-13px) rotate(-2deg);
  }
  100% {
    transform: translateY(-8px) rotate(0deg);
  }
}

@keyframes shadowBob {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  25% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
  75% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Navigation Row */
.footer-navigation {
  max-width: 850px;
  margin: 40px auto 20px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.6);
}

.footer-navigation a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  transition: var(--transition-smooth);
}

.footer-navigation a:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

.footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 20px;
}

/* --- CART DRAWER --- */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(58, 50, 56, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 440px;
  max-width: calc(100vw - 40px);
  height: calc(100vh - 40px);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-overlay.open + .cart-drawer,
.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cart-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text-dark);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 24px;
  padding-right: 8px;
}

/* Scrollbar styling */
.cart-items::-webkit-scrollbar {
  width: 6px;
}
.cart-items::-webkit-scrollbar-track {
  background: transparent;
}
.cart-items::-webkit-scrollbar-thumb {
  background: var(--pastel-pink);
  border-radius: 3px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
  position: relative;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--bg-app);
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.05), inset -2px -2px 5px #fff;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clay-white-bg);
  border: 1.5px solid var(--clay-white-border);
  box-shadow: var(--clay-white-shadow);
  font-size: 0.75rem;
  color: var(--color-text-dark);
  font-weight: bold;
}

.qty-btn:active {
  transform: scale(0.9);
}

.cart-item-remove {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cart-item-remove:hover {
  color: var(--color-accent);
}

.cart-summary {
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.6);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.summary-row.total {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.empty-cart-message {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.toast {
  padding: 16px 20px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast.success {
  background-color: var(--pastel-green);
  color: #1e6c06;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    8px 12px 24px rgba(100, 200, 100, 0.1),
    inset -6px -6px 12px rgba(100, 170, 100, 0.1),
    inset 6px 6px 12px rgba(255, 255, 255, 0.7);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .story-container {
    grid-template-columns: 1fr;
    padding: 40px;
    text-align: center;
  }
  
  .story-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .story-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .story-visual {
    order: -1;
  }
  
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .contact-col {
    align-items: center;
  }
  .contact-icons-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 24px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--clay-white-bg);
    border-right: 4px solid var(--clay-white-border);
    box-shadow: var(--clay-white-shadow);
    flex-direction: column;
    padding: 100px 30px;
    align-items: flex-start;
    gap: 24px;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-navigation {
    gap: 16px 24px;
  }
  
  .floating-badge {
    display: none;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .hero-clay-backdrop {
    max-width: 100%;
  }

  .story-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .story-clay-frame {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
    right: 0;
    height: 100%;
    top: 0;
    max-width: 100%;
    border-radius: 0;
    border: none;
    transform: translateX(100%);
  }
  
  .cart-overlay.open + .cart-drawer,
  .cart-drawer.open {
    transform: translateX(0);
  }

  .floating-contact-container {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }
  
  .floating-contact-btn {
    width: 48px;
    height: 48px;
  }

  .story-container {
    padding: 24px 16px;
  }

  .story-title {
    font-size: 1.8rem;
  }

  .story-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* --- FOOTER MAP & PROMO BADGE STYLES --- */
.footer-map-section {
  max-width: 850px;
  margin: 40px auto 30px;
  text-align: center;
  padding: 0 15px;
}

.map-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.map-container {
  padding: 14px;
  background-color: var(--clay-white-bg);
  border: 4px solid var(--clay-white-border);
  box-shadow: var(--clay-white-shadow);
  border-radius: 28px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  border-radius: 18px;
}

.dev-promo-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* Cute Pink Claymorphic Dev Badge */
.dev-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 22px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #c93b58; /* Warm pink text */
  background-color: #ffdce3; /* Soft pink clay base background */
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 
    8px 12px 24px rgba(220, 160, 175, 0.2),
    -4px -4px 10px rgba(255, 255, 255, 0.9),
    inset -6px -6px 12px rgba(220, 130, 150, 0.22),
    inset 6px 6px 12px rgba(255, 255, 255, 0.85);
  transition: var(--transition-tactile);
}

.dev-promo-badge:hover {
  transform: translateY(-2px);
  color: #c93b58;
  box-shadow: 
    10px 14px 28px rgba(220, 160, 175, 0.28),
    -4px -4px 10px rgba(255, 255, 255, 0.9),
    inset -4px -4px 10px rgba(220, 130, 150, 0.15),
    inset 4px 4px 10px rgba(255, 255, 255, 0.9);
}

.dev-promo-badge:active {
  transform: translateY(1px);
  box-shadow: 
    4px 6px 12px rgba(220, 160, 175, 0.1),
    -2px -2px 6px rgba(255, 255, 255, 0.9),
    inset -8px -8px 16px rgba(220, 130, 150, 0.28),
    inset 8px 8px 16px rgba(255, 255, 255, 0.4);
}

/* --- FLOATING CONTACT BUTTONS --- */
.floating-contact-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2100;
}

.floating-contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-tactile);
  position: relative;
}

.floating-contact-btn svg {
  z-index: 2;
}

.floating-contact-btn.whatsapp {
  background-color: #25d366;
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 
    0 8px 24px rgba(37, 211, 102, 0.45),
    inset -6px -6px 12px rgba(0, 0, 0, 0.15),
    inset 6px 6px 12px rgba(255, 255, 255, 0.35);
}

.floating-contact-btn.whatsapp::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulseGlow 2s infinite;
  pointer-events: none;
}

.floating-contact-btn.email {
  background-color: var(--brand-purple, #5c3c67);
  color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 
    0 8px 24px rgba(92, 60, 103, 0.45),
    inset -6px -6px 12px rgba(0, 0, 0, 0.22),
    inset 6px 6px 12px rgba(255, 255, 255, 0.3);
}

.floating-contact-btn.email::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(92, 60, 103, 0.5);
  animation: pulseGlow 2s infinite;
  animation-delay: 1s;
  pointer-events: none;
}

.floating-contact-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset -4px -4px 8px rgba(0, 0, 0, 0.1),
    inset 4px 4px 8px rgba(255, 255, 255, 0.45);
}

.floating-contact-btn:active {
  transform: translateY(1px) scale(0.98);
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* --- BRAND LOGO IMAGE --- */
.brand-logo-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 
    4px 4px 10px rgba(185, 170, 180, 0.2),
    -4px -4px 10px rgba(255, 255, 255, 0.9),
    inset -4px -4px 10px rgba(185, 170, 180, 0.2),
    inset 4px 4px 10px rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: var(--transition-smooth);
}
.brand-logo-img:hover {
  transform: scale(1.06) rotate(5deg);
}

/* --- FEATURED BENEFITS SECTION --- */
.benefits-section {
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.benefit-card {
  padding: 35px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: inset -3px -3px 7px rgba(0,0,0,0.05), inset 3px 3px 7px rgba(255,255,255,0.6);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- REVIEWS / TESTIMONIALS SECTION --- */
.reviews-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 60px auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-purple);
  box-shadow: inset -2px -2px 5px rgba(0,0,0,0.05), inset 2px 2px 5px rgba(255,255,255,0.6);
  font-size: 1.1rem;
}

.user-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
}

.review-stars {
  display: flex;
  align-items: center;
}

.review-text {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  font-style: italic;
  line-height: 1.6;
}
