/* =========================================
   AURA MODEST FASHION - STYLES
   ========================================= */

:root {
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --gold-dark: #9a7040;
  --dark: #0d0a08;
  --dark-2: #000000;
  --dark-3: #251e16;
  --mid: #3d3229;
  --cream: #faf6f0;
  --cream-2: #f0ebe2;
  --text: #2a231a;
  --text-light: #6b5f52;
  --text-muted: #9e9080;
  --white: #ffffff;
  --success: #5a9a72;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* TYPOGRAPHY */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* CONTAINER */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: var(--cream);
  color: var(--text);
  border-color: var(--text);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--cream);
  color: var(--gold-dark);
  border-color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

.btn-full {
  width: 100%;
  border-radius: var(--radius);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--dark);
}

.logo-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-btn,
.cart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  transition: all var(--transition);
}

.navbar .btn {
  transition: all var(--transition);
}

.nav-order-btn {
  padding: 0.5rem 1rem !important;
  font-size: 0.8rem !important;
  margin-right: 0.5rem;
}

.nav-whatsapp-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  background: transparent;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
}

.nav-whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
  transform: translateY(-2px);
}

.nav-instagram-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E1306C;
  background: transparent;
  border: 1px solid rgba(225, 48, 108, 0.3);
  transition: all var(--transition);
}

.nav-instagram-btn:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: #E1306C;
  transform: translateY(-2px);
}

.mobile-only {
  display: none;
}

/* Transparent state at the top */
.navbar:not(.scrolled) .btn-primary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar:not(.scrolled) .btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.navbar.scrolled .search-btn,
.navbar.scrolled .cart-btn {
  color: var(--text);
}

.search-btn:hover,
.cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .search-btn:hover,
.navbar.scrolled .cart-btn:hover {
  background: var(--cream-2);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.cart-count.visible {
  opacity: 1;
}

.navbar.scrolled .menu-btn span,
.navbar.nav-open .menu-btn span {
  background: var(--text);
}

.navbar.nav-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
.navbar.nav-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar.nav-open .nav-logo {
  color: var(--dark);
}

.navbar.nav-open .search-btn,
.navbar.nav-open .nav-whatsapp-btn,
.navbar.nav-open .nav-instagram-btn {
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.1);
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 10, 8, 0.9);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-container {
  width: 100%;
  max-width: 600px;
  padding: 0 2rem;
  position: relative;
  display: flex;
  align-items: center;
}

.search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gold);
  padding: 1rem 3rem 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  outline: none;
}

.search-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-close {
  position: absolute;
  right: 2rem;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.search-close:hover {
  opacity: 1;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(13, 10, 8, 0.78) 0%,
      rgba(13, 10, 8, 0.45) 60%,
      rgba(13, 10, 8, 0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 5rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.75rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-slider-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 3rem;
  z-index: 4;
  position: relative;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}

/* ANNOUNCEMENT */
.announcement {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  overflow: hidden;
}

.announcement p {
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(30%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ===================== CATEGORIES ===================== */
.categories-section {
  padding: 6rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card.large {
  min-height: 500px;
}

.category-img-wrap {
  position: absolute;
  inset: 0;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.category-img-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-gold {
  background: linear-gradient(135deg, #2a1f0e, #5a3d1a, #9a7040);
}

.category-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-light);
}

.placeholder-icon {
  font-size: 2.5rem;
}

.category-placeholder span:last-child {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
}

.category-info {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.5rem 0.75rem;
}

.category-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.category-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.category-count {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.category-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 1.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  transition: all var(--transition);
  width: fit-content;
}

.category-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ===================== FEATURE BANNER ===================== */
.feature-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.feature-banner::before {
  content: '✦';
  position: absolute;
  font-size: 25rem;
  color: rgba(201, 169, 110, 0.04);
  right: -5rem;
  top: -5rem;
  line-height: 1;
  font-family: var(--font-serif);
}

.feature-banner-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.feature-text {
  flex: 1;
}

.feature-tag {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.feature-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 20s linear infinite;
}

.badge-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  line-height: 1;
}

.badge-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===================== PRODUCTS ===================== */
.products-section {
  padding: 6rem 0;
}

.filter-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--cream-2);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.filter-tab:hover {
  background: var(--cream);
  color: var(--text);
  border-color: var(--gold);
}

.filter-tab.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  animation: fadeInUp 0.5s ease both;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-2);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 18px;
  left: -32px;
  width: 130px;
  text-align: center;
  transform: rotate(-45deg);
  background: var(--dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.35rem 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  pointer-events: none;
}

.product-badge.sale {
  background: #c0392b;
}

.product-badge.new {
  background: var(--success);
}

.product-badge.bestseller {
  background: var(--gold-dark);
}

.product-badge.sold-out {
  background: #e74c3c;
}

.product-badge.limited-stock {
  background: #e67e22;
}

.product-badge.coming-soon {
  background: #0984e3;
}

.product-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(60px);
  transition: transform var(--transition);
}

.product-card:hover .product-actions {
  transform: translateX(0);
}

.action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.action-btn:hover {
  background: var(--dark);
  color: var(--white);
}

.product-info {
  padding: 1.25rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.product-colors {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}

.color-dot:hover {
  border-color: var(--gold);
  transform: scale(1.2);
}

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

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-current {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 38px;
  height: 38px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.1);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.stars-small {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: -0.02em;
}

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

.load-more-wrap {
  text-align: center;
}

/* PLACEHOLDER PRODUCT IMAGES */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--text-muted);
  gap: 0.5rem;
  background: var(--cream-2);
}

.product-img-placeholder span:last-child {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

/* ===================== PRODUCT GALLERY & MODAL ZOOM ===================== */
.product-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.product-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.product-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 5;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}

.modal-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.modal-arrow-left {
  left: 10px;
}

.modal-arrow-right {
  right: 10px;
}

.zoom-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.zoom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
  transform-origin: center center;
}

.zoom-image:hover {
  transform: scale(2);
}

/* ===================== WHY SECTION ===================== */
.why-section {
  padding: 6rem 0;
  background: var(--dark);
}

.why-section .section-tag {
  color: var(--gold);
}

.why-section .section-title {
  color: var(--white);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  padding: 6rem 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--gold);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

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

/* ===================== NEWSLETTER ===================== */
.newsletter-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.newsletter-section::before {
  content: '✦';
  position: absolute;
  right: -2rem;
  bottom: -4rem;
  font-size: 18rem;
  color: rgba(201, 169, 110, 0.05);
  font-family: var(--font-serif);
  line-height: 1;
  z-index: 1;
}

.newsletter-text {
  flex: 1;
  min-width: 220px;
}

.newsletter-text .section-tag {
  color: var(--gold);
}

.newsletter-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 260px;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark-2);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.payment-badge {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}



/* TOAST */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  z-index: 5000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  color: var(--success);
  font-weight: 700;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .product-modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-2);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--cream);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img-side {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.modal-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info-side {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.modal-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.size-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-btn {
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--cream-2);
  border-radius: 6px;
  font-size: 0.82rem;
  transition: all var(--transition);
  background: none;
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.modal-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

/* ===================== INSTAGRAM FEED ===================== */
.insta-section {
  padding: 5rem 0 2rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.insta-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-card:hover .insta-img {
  transform: scale(1.05);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 8, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  opacity: 0;
  transition: all var(--transition);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay span {
  color: var(--white);
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .categories-grid .category-card.large {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-order-btn {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-whatsapp-btn,
  .nav-instagram-btn,
  .search-btn,
  .cart-btn {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cream);
    padding: 6rem 2rem 2rem;
    z-index: 1500; /* Behind navbar and overlays */
    align-items: flex-start;
    gap: 1.5rem;
    overflow-y: auto;
  }

  .nav-links.open .nav-link {
    color: var(--text) !important;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .nav-links.open .nav-link:hover,
  .nav-links.open .nav-link.active {
    color: var(--gold-dark) !important;
  }

  .menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid .category-card.large {
    min-height: 320px;
  }

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

  .feature-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .feature-text p {
    margin: 0 auto 2rem;
  }

  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1rem;
    padding-right: 1.5rem;
    margin-right: -1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    width: 280px;
  }

  /* Why Grid Horizontal Scroll */
  .why-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1rem;
    padding-right: 1.5rem;
    margin-right: -1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .why-grid::-webkit-scrollbar {
    display: none;
  }

  .why-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    width: 280px;
  }

  /* Testimonials Grid Horizontal Scroll */
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1rem;
    padding-right: 1.5rem;
    margin-right: -1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    width: 300px;
  }

  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-img-side {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    aspect-ratio: 3/4;
  }

  .modal-info-side {
    padding: 1.5rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .modal-overlay {
    padding: 0.75rem;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}