@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --linda-pink: #d81b60;
  --linda-pink-hover: #b0124a;
  --linda-gold: #c5a059;
  --linda-gold-light: #f5eee2;
  --linda-cream-bg: #f4f4f4;
  --linda-card-bg: #ffffff;
  --flex-dark: #1f1f1f;
  --flex-border: #e2e2e2;
  --flex-text: #222222;
  --flex-muted: #666666;
  --badge-green: #25d366;
  --badge-purple: #8e24aa;
  --radius-card: 4px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--linda-cream-bg);
  color: var(--flex-text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ==========================================
   LINDA STORE CUSTOM LOGO EMBLEM
   ========================================== */
.linda-logo-emblem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.linda-logo-circle {
  width: 48px;
  height: 48px;
  background: var(--flex-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  box-shadow: 0 4px 14px rgba(18, 18, 18, 0.25);
  border: 1px solid var(--linda-gold);
  flex-shrink: 0;
}

.linda-logo-text-linda {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  line-height: 1;
  margin-top: 3px;
}

.linda-logo-badge-store {
  background: var(--linda-pink);
  color: #ffffff;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 1px 4px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-top: 1px;
}

.linda-logo-text-full {
  display: flex;
  flex-direction: column;
}

.linda-brand-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--flex-dark);
  line-height: 1.1;
  white-space: nowrap;
}

.linda-brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--linda-pink);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ==========================================
   1. STORE SUB-HEADER
   ========================================== */
.store-sub-header {
  background: #ffffff;
  border-bottom: 1px solid var(--flex-border);
  font-size: 0.8rem;
  color: var(--flex-muted);
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.store-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ==========================================
   2. MAIN STORE HEADER & NAVBAR
   ========================================== */
.store-main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--flex-border);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.header-left-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--flex-dark);
  padding: 4px;
}

.store-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.store-nav-item {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--flex-dark);
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.store-nav-item:hover, .store-nav-item.active {
  color: var(--linda-pink);
}

.store-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--linda-pink);
}

.store-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.search-container {
  position: relative;
}

.search-input-box {
  display: flex;
  align-items: center;
  background: var(--linda-cream-bg);
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid var(--flex-border);
  width: 180px;
  transition: var(--transition);
}

.search-input-box:focus-within {
  border-color: var(--linda-pink);
  background: #ffffff;
  width: 220px;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.1);
}

.search-input-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.82rem;
  width: 100%;
  font-family: inherit;
  color: var(--flex-dark);
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  border: 1px solid var(--flex-border);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  margin-top: 8px;
}

.search-results-dropdown.active {
  display: flex;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: var(--linda-cream-bg);
}

.search-result-thumb {
  width: 44px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
}

.search-result-info {
  display: flex;
  flex-direction: column;
}

.search-result-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--flex-dark);
}

.search-result-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--linda-pink);
}

.action-icon-btn {
  position: relative;
  font-size: 1.25rem;
  color: var(--flex-dark);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.action-icon-btn:hover {
  transform: scale(1.1);
  color: var(--linda-pink);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--linda-pink);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE DRAWER OVERLAY */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 3500;
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 10px 0 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: var(--transition);
}

.mobile-drawer-overlay.active .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--flex-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--linda-cream-bg);
}

.mobile-drawer-close {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--flex-muted);
}

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

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-list li {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--flex-dark);
  padding: 12px;
  border-radius: 8px;
  background: var(--linda-cream-bg);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-list li:hover {
  background: var(--linda-pink);
  color: #ffffff;
}

/* ==========================================
   3. HERO SLIDER BANNER WITH SMOOTH ANIMATION
   ========================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 680px;
  aspect-ratio: 16 / 8;
  background-color: #0f0f0f;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--linda-gold);
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  cursor: pointer;
  will-change: opacity, transform;
}

@keyframes slideRightToLeft {
  0% {
    opacity: 0.2;
    transform: translateX(60px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideLeftToRight {
  0% {
    opacity: 0.2;
    transform: translateX(-60px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-slide-animating-next {
  animation: slideRightToLeft 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide-animating-prev {
  animation: slideLeftToRight 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  border: none;
}

.slider-arrow-btn:hover {
  background: var(--linda-pink);
  color: #ffffff;
}

.slider-arrow-left { left: 16px; }
.slider-arrow-right { right: 16px; }

.slider-dots-container {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
}

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

.dot-btn.active {
  background: var(--linda-pink);
  width: 24px;
  border-radius: 10px;
}

/* ==========================================
   4. SUB-HEADER VALUE BADGES ROW
   ========================================== */
.value-badges-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--flex-border);
  padding: 16px 24px;
}

.value-badges-flex {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--flex-dark);
}

.value-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================
   5. CATEGORY CIRCLE BUBBLES
   ========================================== */
.category-circles-section {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}

.category-circles-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  scroll-snap-align: center;
  flex-shrink: 0;
}

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

.cat-circle-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--linda-pink);
  box-shadow: 0 6px 16px rgba(216, 27, 96, 0.2);
}

.cat-circle-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--flex-dark);
  text-align: center;
}

/* ==========================================
   6. FEATURED CAROUSEL ("VITRINE COM BANNER" - UNCLIPPED OVERLAY ARROWS)
   ========================================== */
.featured-carousel-row {
  max-width: 1280px;
  margin: 50px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  position: relative;
  overflow: visible;
}

.featured-left-banner-vertical {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #252525;
  height: 100%;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--flex-border);
  flex-shrink: 0;
}

.featured-left-banner-vertical:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.featured-banner-vertical-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.featured-banner-vertical-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.pill-recurso-exclusivo {
  align-self: flex-start;
  border: 1px solid #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

.vitrine-title-box {
  margin-top: 60px;
}

.vitrine-main-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.vitrine-sub-heading {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 14px;
  color: #ffffff;
}

.featured-products-carousel-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

#featuredCarouselGrid::-webkit-scrollbar {
  display: none;
}


.vitrine-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff !important;
  color: var(--flex-dark) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid var(--flex-border) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
  transition: var(--transition);
}

.vitrine-arrow-btn:hover {
  background: var(--linda-pink) !important;
  color: #ffffff !important;
  border-color: var(--linda-pink) !important;
}

.vitrine-arrow-left {
  left: 290px;
}

.vitrine-arrow-right {
  right: 14px;
}

/* ==========================================
   7. PRODUCT CARDS (EXACT NUVEMSHOP FLEX STYLING)
   ========================================== */
.section-container {
  max-width: 1280px;
  margin: 60px auto;
  padding: 0 24px;
}

.section-header-title {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 36px;
  color: var(--flex-dark);
}

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

.product-card-flex {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid var(--flex-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card-flex:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-photo-box {
  position: relative;
  width: 100%;
  height: 380px;
  background: #f0f0f0;
  overflow: hidden;
}

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

/* Top Badges */
.badge-discount-purple {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--badge-purple);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 5;
}

.badge-sale-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff9800;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 3px;
  z-index: 5;
}

/* Floating Color Dots */
.floating-swatch-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 5;
}

.swatch-dot-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
}

.swatch-more-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #555555;
}

/* Card Body Content */
.product-card-content {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.flex-product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--flex-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.size-circles-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.size-circle-pill {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #444444;
  background: #ffffff;
}

.pricing-stack-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
}

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

.current-price-bold {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--flex-dark);
}

.pix-price-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #333333;
}

.installments-card-text {
  font-size: 0.78rem;
  color: #555555;
}

/* Dual Action Buttons */
.flex-card-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.btn-flex-comprar {
  width: 100%;
  background: var(--flex-dark);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
}

.btn-flex-comprar:hover {
  background: #000000;
}

.btn-flex-whatsapp {
  width: 100%;
  background: #ffffff;
  color: #25d366;
  border: 1px solid #25d366;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn-flex-whatsapp:hover {
  background: #e8f5e9;
}

/* Size Pills */
.pill-item {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid var(--flex-border);
  background: #ffffff;
  color: var(--flex-dark);
  cursor: pointer;
  transition: var(--transition);
}

.pill-item:hover {
  border-color: var(--linda-pink);
  background: var(--linda-pink);
  color: #ffffff;
}

/* ==========================================
   8. QUICK VIEW MODAL & TOAST NOTIFICATION
   ========================================== */
.quick-view-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 4000;
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: var(--transition);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quick-view-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.quick-view-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.quick-view-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #555555;
  z-index: 10;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-view-media {
  height: 420px;
  background: #0f0f0f;
}

.quick-view-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-view-details {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-view-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.quick-view-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--linda-pink);
}

.quick-view-sizes {
  display: flex;
  gap: 8px;
}

.quick-size-btn {
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--flex-border);
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
}

.quick-size-btn.active {
  border-color: var(--linda-pink);
  background: var(--linda-pink);
  color: #ffffff;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--flex-dark);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-left: 4px solid var(--linda-pink);
  z-index: 5000;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

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

/* ==========================================
   9. NUMBERED STORY CARDS (1, 2, 3, 4)
   ========================================== */
.numbered-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 50px 0;
}

.number-card-item {
  background: #ffffff;
  border: 1px solid var(--flex-border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.big-number-title {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--linda-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.story-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--flex-dark);
  margin-bottom: 8px;
}

.story-card-desc {
  font-size: 0.85rem;
  color: var(--flex-muted);
}

/* ==========================================
   10. CATEGORY TRIO BANNERS
   ========================================== */
.category-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
}

.trio-banner-card {
  position: relative;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--flex-dark);
  display: block;
  cursor: pointer;
  transition: var(--transition);
}

.trio-banner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(216, 27, 96, 0.2);
}

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

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

.trio-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trio-banner-title {
  color: #ffffff;
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ==========================================
   11. PROMO SHIPPING BANNER
   ========================================== */
.promo-shipping-banner {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 60px;
  margin: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--flex-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: var(--transition);
}

.promo-shipping-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(216, 27, 96, 0.12);
  border-color: var(--linda-pink);
}

.promo-shipping-title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--flex-dark);
  max-width: 550px;
}

.promo-shipping-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--linda-pink);
}

/* ==========================================
   12. FAQ ACCORDION
   ========================================== */
.faq-item {
  border: 1px solid var(--flex-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  padding: 18px 24px;
  background: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 0.92rem;
  color: var(--flex-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--linda-pink);
}

/* ==========================================
   13. BACK TO TOP & NEWSLETTER BAR
   ========================================== */
.newsletter-bar-dark {
  background: var(--flex-dark);
  color: #ffffff;
  padding: 48px 24px;
  text-align: center;
  border-top: 3px solid var(--linda-pink);
}

.btn-back-top {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 20px auto 0;
}

.newsletter-form-inline input {
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  flex-grow: 1;
}

.newsletter-form-inline button {
  background: var(--linda-pink);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form-inline button:hover {
  background: var(--linda-pink-hover);
}

/* ==========================================
   14. CART DRAWER & FOOTER
   ========================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: var(--transition);
}

.cart-drawer-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition);
}

.cart-drawer-overlay.active .cart-drawer-panel {
  transform: translateX(0);
}

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

.cart-drawer-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.cart-drawer-close {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--flex-muted);
}

.free-shipping-progress {
  background: #fdf0f4;
  padding: 14px 24px;
  font-size: 0.85rem;
  color: var(--linda-pink);
  font-weight: 600;
  border-bottom: 1px solid var(--flex-border);
}

.progress-bar-bg {
  height: 6px;
  background: #f8c8d8;
  border-radius: 10px;
  margin-top: 8px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--linda-pink);
  width: 0%;
  border-radius: 10px;
  transition: width 0.4s ease;
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.cart-item-thumb {
  width: 70px;
  height: 85px;
  object-fit: cover;
  border-radius: 6px;
}

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

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--linda-pink);
  margin-bottom: 8px;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid var(--flex-border);
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--flex-border);
  background: var(--linda-cream-bg);
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.btn-checkout {
  width: 100%;
  background: var(--linda-pink);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-checkout:hover {
  background: var(--linda-pink-hover);
}

.cookie-floating-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--flex-dark);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 8px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  border-left: 4px solid var(--linda-pink);
}

.btn-accept-cookie {
  background: #ffffff;
  color: var(--flex-dark);
  border: none;
  padding: 8px 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
}

.whatsapp-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1);
}

.store-footer {
  background: var(--flex-dark);
  color: #cccccc;
  padding: 60px 40px 30px;
  font-size: 0.88rem;
}

.footer-grid-4 {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

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

.footer-bottom-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

/* ==========================================
   15. ADVANCED MOBILE RESPONSIVE DESIGN SYSTEM
   ========================================== */

@media (max-width: 1024px) {
  .store-main-header {
    padding: 12px 20px;
  }
  .store-nav-links {
    gap: 16px;
  }
  .store-nav-item {
    font-size: 0.78rem;
  }
  .featured-carousel-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    margin: 36px auto;
  }
  .featured-left-banner-vertical {
    min-height: 240px;
    height: 240px;
    padding: 24px 20px;
  }
  .vitrine-title-box {
    margin-top: 20px;
  }
  .vitrine-main-heading {
    font-size: 1.8rem;
  }
  .vitrine-sub-heading {
    font-size: 0.9rem;
    margin-top: 6px;
  }
  .vitrine-arrow-left {
    left: 10px;
  }
  .vitrine-arrow-right {
    right: 10px;
  }
}

@media (max-width: 992px) {
  .store-sub-header {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  .desktop-only {
    display: none !important;
  }
  .store-main-header {
    padding: 10px 16px;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .store-nav-links {
    display: none !important;
  }
  .linda-logo-circle {
    width: 42px;
    height: 42px;
  }
  .linda-logo-text-linda {
    font-size: 0.8rem;
  }
  .linda-brand-title {
    font-size: 1.05rem;
  }
  .linda-brand-subtitle {
    font-size: 0.55rem;
  }
  .search-input-box {
    width: 130px;
    padding: 6px 12px;
  }
  .search-input-box:focus-within {
    width: 170px;
  }
  .search-results-dropdown {
    width: 280px;
    right: -40px;
  }
}

@media (max-width: 768px) {
  /* Hero Slider Banner */
  .hero-slider-section {
    height: 320px;
    max-height: 340px;
    aspect-ratio: auto;
  }
  .hero-slide-bg {
    object-fit: cover;
  }
  .slider-arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .slider-arrow-left { left: 8px; }
  .slider-arrow-right { right: 8px; }
  .slider-dots-container { bottom: 8px; }

  /* Value Badges Bar */
  .value-badges-bar {
    padding: 12px 16px;
  }
  .value-badges-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    font-size: 0.75rem;
    text-align: center;
  }
  .value-badge-item {
    justify-content: center;
  }

  /* Category Circles */
  .category-circles-section {
    margin: 28px auto;
    padding: 0 16px;
  }
  .category-circles-grid {
    gap: 16px;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  .cat-circle-avatar {
    width: 70px;
    height: 70px;
  }
  .cat-circle-title {
    font-size: 0.78rem;
  }

  /* Vitrine Carousel */
  #featuredCarouselGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .vitrine-arrow-btn {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .vitrine-arrow-left {
    left: 4px;
  }
  .vitrine-arrow-right {
    right: 4px;
  }

  /* General Section Container & Grid */
  .section-container {
    margin: 36px auto;
    padding: 0 14px;
  }
  .section-header-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card-flex {
    border-radius: 6px;
  }
  .product-photo-box {
    height: 230px;
  }
  .badge-discount-purple {
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    padding: 2px 6px;
  }
  .badge-sale-icon {
    top: 8px;
    left: 8px;
    font-size: 0.6rem;
    padding: 2px 5px;
  }
  .floating-swatch-dots {
    bottom: 8px;
    padding: 3px 8px;
    gap: 4px;
  }
  .swatch-dot-circle {
    width: 11px;
    height: 11px;
  }
  .swatch-more-tag {
    font-size: 0.62rem;
  }
  .product-card-content {
    padding: 12px 10px;
  }
  .flex-product-title {
    font-size: 0.88rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .size-circles-row {
    gap: 4px;
    margin-bottom: 8px;
  }
  .size-circle-pill {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
  }
  .pricing-stack-box {
    margin-bottom: 10px;
    gap: 2px;
  }
  .old-price-line {
    font-size: 0.75rem;
  }
  .current-price-bold {
    font-size: 1rem;
  }
  .pix-price-text {
    font-size: 0.72rem;
  }
  .installments-card-text {
    font-size: 0.7rem;
  }
  .flex-card-actions {
    gap: 6px;
  }
  .btn-flex-comprar {
    font-size: 0.75rem;
    padding: 9px 6px;
    gap: 4px;
  }
  .btn-flex-whatsapp {
    font-size: 0.72rem;
    padding: 8px 4px;
    gap: 4px;
  }

  /* Numbered Cards & Trio Banners */
  .numbered-story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 30px 0;
  }
  .number-card-item {
    padding: 18px 10px;
  }
  .big-number-title {
    font-size: 2.4rem;
    margin-bottom: 4px;
  }
  .story-card-title {
    font-size: 0.88rem;
  }
  .story-card-desc {
    font-size: 0.75rem;
  }
  .category-trio-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 30px 0;
  }
  .trio-banner-card {
    height: 180px;
  }
  .trio-banner-title {
    font-size: 1.6rem;
  }

  /* Promo Shipping Banner */
  .promo-shipping-banner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 28px 18px;
    margin: 36px 0;
  }
  .promo-shipping-title {
    font-size: 1.3rem;
  }
  .promo-shipping-amount {
    font-size: 1.6rem;
  }

  /* Quick View Modal */
  .quick-view-overlay {
    padding: 12px;
  }
  .quick-view-modal {
    max-height: 85vh;
    overflow-y: auto;
  }
  .quick-view-grid {
    grid-template-columns: 1fr;
  }
  .quick-view-media {
    height: 260px;
  }
  .quick-view-details {
    padding: 20px 16px;
  }

  /* Footer */
  .store-footer {
    padding: 40px 20px 24px;
  }
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Floating UI Elements */
  .whatsapp-floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 18px;
    right: 18px;
  }
  .cookie-floating-bar {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-slider-section {
    height: 240px;
  }
  .linda-brand-subtitle {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .product-photo-box {
    height: 190px;
  }
  .flex-product-title {
    font-size: 0.8rem;
  }
  .current-price-bold {
    font-size: 0.92rem;
  }
  .btn-flex-comprar, .btn-flex-whatsapp {
    font-size: 0.68rem;
    padding: 7px 2px;
  }
  .newsletter-form-inline {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form-inline input, .newsletter-form-inline button {
    width: 100%;
  }
}
