/* ==============================================================================
   CASSULINHA CABELOS - E-COMMERCE DESIGN SYSTEM (INSPIRED BY OUZZALACE)
   Cores Oficiais: Magenta/Pink (#e540c4, #d946ef, #c026d3), Dark Luxury & White
   ============================================================================== */

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

:root {
  /* Cassulinha Cabelos Core Colors */
  --primary: #e540c4;
  --primary-hover: #c026d3;
  --primary-dark: #a21caf;
  --primary-light: rgba(229, 64, 196, 0.08);
  --primary-glow: rgba(229, 64, 196, 0.25);
  --accent: #f43f5e;
  --accent-gold: #f59e0b;
  --gradient-brand: linear-gradient(135deg, #e540c4 0%, #ec4899 50%, #8b5cf6 100%);
  --gradient-dark: linear-gradient(180deg, #18181b 0%, #09090b 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

  /* Neutrals & Surfaces */
  --bg-page: #fdfdfd;
  --bg-card: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-dark: #0f172a;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #f1f5f9;
  --border-subtle: #e2e8f0;

  /* Status */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Shadows & Radius */
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --radius-full: 9999px;

  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 14px 30px -4px rgba(229, 64, 196, 0.16), 0 6px 12px -2px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(229, 64, 196, 0.35);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* Containers */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  flex: 1;
  padding: 10px 0 40px 0;
}

/* ==============================================================================
   ANNOUNCEMENT MARQUEE BAR
   ============================================================================== */
.announcement-bar {
  background: var(--gradient-brand);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 101;
  box-shadow: 0 2px 10px rgba(229, 64, 196, 0.25);
}

.announcement-bar .marquee-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-bar .info-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-bar .info-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.announcement-bar .info-links a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ==============================================================================
   MAIN HEADER (ESTILO OUZZALACE)
   ============================================================================== */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
  transition: transform 0.3s ease;
}

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

.brand-logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 580px;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  background: var(--bg-subtle);
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  padding: 12px 46px 12px 48px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text-main);
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow), var(--shadow-card);
}

.search-icon-left {
  position: absolute;
  left: 18px;
  color: var(--primary);
  font-size: 1.25rem;
  pointer-events: none;
}

.search-clear-btn {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: none;
  font-size: 1.1rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.store-selector-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.store-selector {
  appearance: none;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 10px 36px 10px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-body);
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.store-selector:focus, .store-selector:hover {
  border-color: var(--primary);
  background: #ffffff;
}

.store-selector-icon {
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-main);
  font-size: 1.25rem;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  position: relative;
}

.header-icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-glow);
  transform: translateY(-2px);
}

.cart-toggle-btn {
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(229, 64, 196, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cart-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 64, 196, 0.45);
}

.cart-badge {
  background: #ffffff;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* ==============================================================================
   CATEGORY STORY HIGHLIGHTS (INSTAGRAM / OUZZALACE STYLE)
   ============================================================================== */
.story-highlights-section {
  padding: 20px 0 10px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.story-highlights-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 10px 14px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.story-highlights-scroll::-webkit-scrollbar {
  display: none;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 0.2s ease;
}

.story-item:hover {
  transform: translateY(-4px);
}

.story-ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(229, 64, 196, 0.2);
  transition: all 0.3s ease;
}

.story-item.active .story-ring {
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px var(--primary);
  transform: scale(1.05);
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.story-item:hover .story-avatar img {
  transform: scale(1.1);
}

.story-icon-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdf2f8 0%, #fae8ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
}

.story-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  max-width: 82px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.story-item.active .story-label {
  color: var(--primary);
}

/* Category Chips Bar */
.categories-chips-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0 4px 0;
  scrollbar-width: none;
}

.categories-chips-bar::-webkit-scrollbar {
  display: none;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.category-chip:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-glow);
}

.category-chip.active {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(229, 64, 196, 0.3);
}

/* ==============================================================================
   HERO BANNERS CAROUSEL (GRANDES & IMPACTANTES)
   ============================================================================== */
.hero-banner-section {
  padding: 20px 0;
}

.banner-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #0f172a;
  min-height: 280px;
}

.banner-slide {
  display: none;
  position: relative;
  width: 100%;
}

.banner-slide.active {
  display: block;
  animation: fadeInSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInSlide {
  from { opacity: 0; transform: scale(1.01); }
  to { opacity: 1; transform: scale(1); }
}

.banner-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .banner-img {
    height: 260px;
  }
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 45px 36px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 60%, rgba(15, 23, 42, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  color: #ffffff;
}

.banner-overlay h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  line-height: 1.15;
}

.banner-overlay p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  max-width: 650px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.banner-btn {
  margin-top: 12px;
  background: var(--gradient-brand);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(229, 64, 196, 0.45);
  transition: all 0.2s ease;
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 64, 196, 0.65);
}

@media (max-width: 768px) {
  .banner-overlay {
    padding: 24px 18px;
  }
  .banner-overlay h2 {
    font-size: 1.6rem;
  }
  .banner-overlay p {
    font-size: 0.9rem;
  }
}

/* ==============================================================================
   DUAL LARGE BANNERS (BANNERS GRANDES 50/50 ESTILO OUZZALACE)
   ============================================================================== */
.dual-banners-section {
  padding: 10px 0 30px 0;
}

.dual-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dual-banner-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.dual-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dual-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.2) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #ffffff;
}

.dual-banner-tag {
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 8px;
}

.dual-banner-overlay h3 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}

.dual-banner-overlay p {
  color: #cbd5e1;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.dual-banner-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.dual-banner-card:hover .dual-banner-btn {
  color: var(--primary);
  gap: 10px;
}

@media (max-width: 768px) {
  .dual-banners-grid {
    grid-template-columns: 1fr;
  }
  .dual-banner-card {
    height: 240px;
  }
}

/* ==============================================================================
   FULL WIDTH PROMO BANNER (BANNER GIGANTE INTERMEDIÁRIO)
   ============================================================================== */
.big-promo-banner-section {
  padding: 20px 0 40px 0;
}

.big-promo-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 300px;
  background: #0f172a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
}

.big-promo-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 0.6s ease;
}

.big-promo-banner:hover img {
  transform: scale(1.04);
}

.big-promo-content {
  position: relative;
  z-index: 2;
  padding: 40px 50px;
  max-width: 640px;
  color: #ffffff;
}

.big-promo-content .kicker {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 6px;
}

.big-promo-content h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

.big-promo-content p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .big-promo-banner {
    height: auto;
    padding: 30px 20px;
  }
  .big-promo-content {
    padding: 0;
  }
  .big-promo-content h2 {
    font-size: 1.6rem;
  }
}

/* ==============================================================================
   VIDEO REELS & TRANSFORMAÇÕES (ESTILO OUZZALACE / INSTAGRAM REELS)
   ============================================================================== */
.video-reels-section {
  padding: 30px 0 50px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 30px 0;
}

.video-reels-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  background: #0f172a;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:hover .reel-video {
  transform: scale(1.05);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.1) 50%, rgba(0,0,0,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: #ffffff;
}

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

.reel-live-badge {
  background: rgba(229, 64, 196, 0.85);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.reel-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  align-self: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.reel-card:hover .reel-play-btn {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.15);
}

.reel-bottom h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.25;
}

.reel-product-tag {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  transition: background 0.2s ease;
}

.reel-card:hover .reel-product-tag {
  background: rgba(229, 64, 196, 0.9);
  border-color: transparent;
}

@media (max-width: 992px) {
  .video-reels-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .video-reels-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ==============================================================================
   VIDEO PLAYER MODAL
   ============================================================================== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  max-width: 440px;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  background: #000000;
}

.video-modal-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 10;
}

/* ==============================================================================
   TRUST / VALUE PROPOSITION BAR (OUZZALACE BENEFÍCIOS)
   ============================================================================== */
.trust-strip-section {
  padding: 10px 0 24px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fdf2f8 0%, #fae8ff 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.76rem;
  color: var(--text-muted);
}

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

@media (max-width: 576px) {
  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ==============================================================================
   SECTION HEADERS
   ============================================================================== */
.section-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 30px 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border-color);
}

.section-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-kicker {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.section-main-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-count-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

/* ==============================================================================
   PRODUCT CARD (INSPIRED BY OUZZALACE / JUDGE.ME)
   ============================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-subtle);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 64, 196, 0.3);
  box-shadow: var(--shadow-hover);
}

/* Product Card Media Container */
.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Proporção 1:1 perfeita */
  background: #fbfbfb;
  overflow: hidden;
  cursor: pointer;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Badges */
.product-badge-group {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge-tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-promo {
  background: var(--gradient-brand);
  color: #ffffff;
}

.badge-best {
  background: #18181b;
  color: #fbbf24;
}

.badge-stock {
  background: #10b981;
  color: #ffffff;
}

/* Quick Action Overlay */
.product-quick-actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-view-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

/* Product Info */
.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 8px;
  background: #ffffff;
}

.product-cat {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.product-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.product-title:hover {
  color: var(--primary);
}

/* Reviews / Stars Rating (Judge.me Style) */
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
}

.rating-stars {
  color: #fbbf24;
  display: flex;
  gap: 1px;
}

.rating-count {
  color: var(--text-muted);
  font-weight: 500;
}

/* Price Box */
.product-price-box {
  margin-top: 4px;
}

.price-original {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

.price-current-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.price-installments {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-pix-highlight {
  font-size: 0.74rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 2px;
}

/* Buy Button */
.btn-buy-card {
  width: 100%;
  margin-top: 8px;
  background: var(--bg-subtle);
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .btn-buy-card {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(229, 64, 196, 0.3);
}

.btn-buy-card:active {
  transform: scale(0.98);
}

/* ==============================================================================
   FEATURED COLLECTIONS BANNERS GRID
   ============================================================================== */
.collections-grid-section {
  padding: 10px 0 30px 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}

.collection-overlay h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.collection-overlay span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

/* ==============================================================================
   CUSTOMER TESTIMONIALS (PROVA SOCIAL ESTILO OUZZALACE)
   ============================================================================== */
.testimonials-section {
  padding: 40px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 40px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.testimonial-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
}

.testimonial-user h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-verified {
  font-size: 0.72rem;
  color: var(--success);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

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

/* ==============================================================================
   NEWSLETTER VIP STRIP
   ============================================================================== */
.newsletter-section {
  padding: 40px 0;
}

.newsletter-card {
  background: var(--gradient-dark);
  color: #ffffff;
  padding: 40px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(229, 64, 196, 0.4) 0%, rgba(229, 64, 196, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-content h3 {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.newsletter-content p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  color: #ffffff;
  outline: none;
  font-size: 0.9rem;
}

.newsletter-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 64, 196, 0.4);
}

@media (max-width: 768px) {
  .newsletter-card {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

/* ==============================================================================
   CHECKOUT, FORMS & ORDER TRACKING
   ============================================================================== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

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

.checkout-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-subtle);
}

.checkout-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.option-radio-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-radio-card:hover, .option-radio-card.active {
  border-color: var(--primary);
  background: #fdf2f8;
}

.order-summary-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-card);
}

.btn-checkout {
  width: 100%;
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(229, 64, 196, 0.35);
  transition: all 0.2s ease;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 64, 196, 0.5);
}

/* ==============================================================================
   LUXURY E-COMMERCE FOOTER
   ============================================================================== */
.app-footer-luxury {
  background: #09090b;
  color: #e4e4e7;
  padding: 60px 0 20px 0;
  border-top: 1px solid #27272a;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col p {
  color: #a1a1aa;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #a1a1aa;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #18181b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid #27272a;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Payment & Security Badges */
.footer-trust-badges {
  padding-top: 30px;
  border-top: 1px solid #18181b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.payment-methods-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-pill {
  background: #18181b;
  color: #a1a1aa;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #27272a;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.security-seals {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #18181b;
  text-align: center;
  font-size: 0.8rem;
  color: #71717a;
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-trust-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================================================================
   FLOATING WHATSAPP BUTTON (ESTILO GLOW)
   ============================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulseGlow 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==============================================================================
   CART DRAWER & OVERLAY
   ============================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #ffffff;
  z-index: 1001;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer-close {
  background: var(--bg-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.cart-drawer-close:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.cart-drawer-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border-color);
}

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

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-subtle);
  border-radius: var(--radius-full);
  padding: 2px 6px;
  border: 1px solid var(--border-color);
}

.cart-qty-btn {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-subtle);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.cart-subtotal-row span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.cart-subtotal-row strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.cart-checkout-btn {
  width: 100%;
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(229, 64, 196, 0.35);
  transition: all 0.2s ease;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 64, 196, 0.5);
}

/* ==============================================================================
   TOAST NOTIFICATION
   ============================================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 2000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

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

/* ==============================================================================
   PRODUCT MODAL (QUICK VIEW)
   ============================================================================== */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-content {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
}

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