/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --royal-blue: #0A3D91;
  --royal-blue-light: #1557C0;
  --royal-blue-dark: #062354;
  --orange: #FF6A00;
  --orange-hover: #E05D00;
  --white: #FFFFFF;
  --light-gray: #FFFFFF;
  --dark-gray: #1E293B;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --yellow-accent: #FFD700;
  --yellow-accent-light: #FFF9D0;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-gray);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--royal-blue-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-yellow {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header & Logo */
.header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  padding: 12px 16px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wrapper img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

/* Urgency Countdown Top Bar */
.countdown-bar {
  background: linear-gradient(135deg, var(--orange), #FF4500);
  color: var(--white);
  text-align: center;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 99;
  position: relative;
}

.timer-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
}

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
  text-align: center;
  width: 100%;
}

@media(min-width: 600px) {
  .btn {
    width: auto;
  }
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn-secondary:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

/* Hero Section */
.hero {
  background: radial-gradient(circle at 10% 20%, rgba(10, 61, 145, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
  padding: 40px 16px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  background: var(--yellow-accent-light);
  color: #8A6D00;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid var(--yellow-accent);
  animation: pulse-yellow 2s infinite ease-in-out;
}

.hero-title {
  font-size: 2.2rem;
  color: var(--royal-blue);
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-subtitle span {
  display: block;
  font-weight: 800;
  color: var(--orange);
  font-size: 1.7rem;
  margin-top: 8px;
}

.hero-urgency {
  background: rgba(10, 61, 145, 0.05);
  border: 1px dashed var(--royal-blue);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 30px;
  width: 100%;
}

.hero-urgency p {
  font-weight: 600;
  color: var(--royal-blue-dark);
}

.hero-coupon {
  margin-top: 8px;
  font-size: 1.1rem;
}

.hero-coupon span {
  background: var(--white);
  border: 2px dashed var(--orange);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--orange);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media(min-width: 600px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

/* Floating Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  cursor: pointer;
  font-size: 2rem;
}

/* Trust Section */
.trust {
  padding: 50px 16px;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  font-size: 1.8rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 10px auto 0;
  border-radius: 2px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.trust-card {
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue-light);
}

.trust-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--royal-blue-dark);
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Why Buy Section */
.why-buy {
  padding: 60px 16px;
  background-color: var(--light-gray);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

@media(min-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
}

.why-check {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.why-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Product Catalog Section */
.catalog {
  padding: 60px 16px;
  background-color: var(--white);
}

.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--light-gray);
  border: 1px solid rgba(10, 61, 145, 0.1);
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--royal-blue);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media(min-width: 480px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.catalog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 61, 145, 0.15);
}

.product-image-container {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  background: var(--white);
  overflow: hidden;
}

/* Skeleton Loading State */
.product-image-container.loading {
  background: linear-gradient(90deg, #F8F9FA 25%, #E9ECEF 50%, #F8F9FA 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.product-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  filter: brightness(1.03) contrast(1.02); /* Boost brightness slightly to improve visibility */
  opacity: 0; /* Hide initially while loading */
}

.product-image-container img.loaded {
  opacity: 1; /* Fade in when loaded */
}

.catalog-card:hover .product-image-container img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-id-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 61, 145, 0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--royal-blue-dark);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-grow: 1;
  white-space: pre-line;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.current-price {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--orange);
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-card-whatsapp {
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  background: #25D366;
  color: var(--white);
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  width: 100%;
}

.btn-card-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

/* Bestseller Section */
.bestseller {
  padding: 60px 16px;
  background-color: var(--light-gray);
  overflow: hidden;
}

.bestseller-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.bestseller-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  padding: 10px 0;
}

.bestseller-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.bestseller-slide {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media(min-width: 768px) {
  .bestseller-slide {
    flex: 0 0 320px;
  }
}

.bestseller-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.nav-btn {
  background: var(--white);
  border: 1px solid rgba(10, 61, 145, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--royal-blue);
}

.nav-btn:hover {
  background: var(--royal-blue);
  color: var(--white);
}

/* Social Proof */
.social-proof {
  padding: 60px 16px;
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
  color: var(--white);
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 16px;
  max-width: 1000px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.counter-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow-accent);
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Offer Banner Section */
.offer-banner {
  padding: 60px 16px;
  background-color: var(--white);
}

.offer-card {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF0CC 100%);
  border: 2px solid var(--yellow-accent);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.offer-card h2 {
  color: var(--orange);
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-deal {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--royal-blue-dark);
  margin-bottom: 20px;
}

.offer-deal span {
  color: var(--orange);
}

.offer-coupon-code {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.offer-coupon-code code {
  background: var(--white);
  border: 2px dashed var(--orange);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 800;
  color: var(--orange);
  display: inline-block;
  margin-top: 6px;
}

/* FAQ Section */
.faq {
  padding: 60px 16px;
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--royal-blue-dark);
  user-select: none;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--orange);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
  max-height: 200px; /* arbitrary height to slide down */
  padding: 16px 24px;
  border-color: rgba(10, 61, 145, 0.05);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Final Conversion Section */
.final-conv {
  padding: 80px 16px;
  background: radial-gradient(circle at 50% 50%, var(--royal-blue-light) 0%, var(--royal-blue-dark) 100%);
  color: var(--white);
  text-align: center;
}

.final-conv h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.final-conv p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.final-conv-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: var(--radius-md);
  max-width: 500px;
  margin: 0 auto 30px;
}

.final-conv-card h3 {
  color: var(--yellow-accent);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Footer styling */
.footer {
  background: #0B132B;
  color: var(--white);
  padding: 60px 16px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-map-btn {
  margin-top: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
}

.social-icon:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* 8-Second Lead Capture Popup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 3px solid var(--royal-blue);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--light-gray);
  color: var(--text-main);
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--royal-blue);
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--royal-blue-dark);
}

.form-group input {
  padding: 12px;
  border: 2px solid rgba(10, 61, 145, 0.15);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-main);
}

.form-group input:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 145, 0.1);
}

.form-submit-btn {
  background: var(--orange);
  color: var(--white);
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.form-submit-btn:hover {
  background: var(--orange-hover);
}

/* Product Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: lightboxFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-modal.leaving {
  animation: lightboxFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes lightboxFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 24px 64px rgba(0, 0, 0, 0.15);
  z-index: 10001;
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  animation: lightboxContentIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.05s;
}

@keyframes lightboxContentIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-modal.leaving .lightbox-content {
  animation: lightboxContentOut 0.25s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes lightboxContentOut {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(0.95); opacity: 0; }
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.08);
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10002;
}

.lightbox-close:hover {
  background: rgba(15, 23, 42, 0.15);
  transform: rotate(90deg);
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lightbox-body {
    grid-template-columns: 1.1fr 1fr;
  }
}

.lightbox-image-section {
  position: relative;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .lightbox-image-section {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.lightbox-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  background: white;
}

.lightbox-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
}

.lightbox-zoom-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.lightbox-info-section {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-id {
  font-size: 0.8rem;
  background: rgba(10, 61, 145, 0.1);
  color: var(--royal-blue-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.lightbox-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--royal-blue-dark);
}

.lightbox-category-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lightbox-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  white-space: pre-line;
}

.lightbox-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.lightbox-current-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}

.lightbox-original-price {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.lightbox-whatsapp-btn {
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.lightbox-whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Ensure cursor matches image click pointer in card */
.product-image-container {
  cursor: pointer;
}

