/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --receiteria-red: #FF4436;
  --receiteria-red-dark: #E53935;
  --receiteria-orange: #FF9800;
  --receiteria-green: #43A047;
  --whatsapp-green: #25D366;
  --text-primary: #5D4037;
  --text-secondary: #8D6E63;
  --text-tertiary: #A1887F;
  --bg-light: #FAF5F0;
  --bg-white: #FFFAF7;
  --bg-white-transparent: rgba(255, 250, 247, 0.95);
  --bg-cream: #F5EDE4;
  --border-light: #E7DDD3;
  --border-red-light: rgba(255, 68, 54, 0.2);
  --shadow-sm: 0 2px 4px rgba(93,64,55,0.06);
  --shadow-md: 0 4px 12px rgba(93,64,55,0.08);
  --shadow-lg: 0 8px 24px rgba(93,64,55,0.12);
  --shadow-xl: 0 12px 32px rgba(93,64,55,0.16);
  --shadow-wa-sm: 0 4px 14px rgba(37, 211, 102, 0.4);
  --shadow-wa-md: 0 4px 20px rgba(37, 211, 102, 0.6);
  --shadow-wa-lg: 0 8px 20px rgba(37, 211, 102, 0.5);
  --shadow-orange-sm: 0 4px 14px rgba(255, 152, 0, 0.4);
  --shadow-orange-lg: 0 8px 20px rgba(255, 152, 0, 0.5);
  --overlay-dark: rgba(93, 64, 55, 0.5);
  --shine-light: rgba(255, 255, 255, 0.1);
  --shine-bright: rgba(255, 255, 255, 0.6);
  --drop-shadow-brown: drop-shadow(0 10px 25px rgba(93,64,55,0.2));
  --color-transparent: transparent;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent variant content flicker on page load */
.variant-content {
  opacity: 0;
  transition: opacity 0.15s ease-in;
}

body.variant-ready .variant-content {
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--receiteria-red);
  margin-bottom: 2rem;
}

.logo-img {
  width: 200px;
  height: auto;
}

.headline {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .headline {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .headline {
    font-size: 3.5rem;
  }
}

.subheadline {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .subheadline {
    font-size: 1.375rem;
  }
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--bg-white);
  background: var(--whatsapp-green);
  border: none;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-wa-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2s ease-in-out infinite;
}

/* Efeito de onda/reflexo animado continuamente */
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    var(--color-transparent) 0%, 
    var(--shine-light) 25%, 
    var(--shine-bright) 50%, 
    var(--shine-light) 75%, 
    var(--color-transparent) 100%
  );
  transform: skewX(-20deg);
  animation: shine-wave 2.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shine-wave {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

body[data-variant="b"] .cta-button {
  background: var(--receiteria-orange);
  box-shadow: var(--shadow-orange-sm);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-wa-lg);
  background: var(--whatsapp-green);
  filter: brightness(1.1);
}

body[data-variant="b"] .cta-button:hover {
  background: var(--receiteria-orange);
  filter: brightness(1.1);
  box-shadow: var(--shadow-orange-lg);
}

.cta-button:active {
  transform: translateY(-1px) scale(1);
}

.cta-button:focus-visible {
  outline: 3px solid var(--whatsapp-green);
  outline-offset: 2px;
}

/* Animação de pulso sutil */
@keyframes cta-pulse {
  0%, 100% {
    box-shadow: var(--shadow-wa-sm);
  }
  50% {
    box-shadow: var(--shadow-wa-md);
  }
}

@media (min-width: 768px) {
  .cta-button {
    min-height: 4rem;
    font-size: 1.25rem;
    padding: 0 2.5rem;
  }
}

.cta-large {
  min-height: 4rem;
  padding: 0 3rem;
}

@media (min-width: 768px) {
  .cta-large {
    min-height: 4.5rem;
  }
}

.trust-line {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 1rem;
}

/* Live Indicator */
.live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem auto 0;
  max-width: fit-content;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--receiteria-green);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.live-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--receiteria-green);
  border-radius: 50%;
  animation: ripple 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.live-text {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 400;
}

.live-text strong {
  font-weight: 700;
  color: var(--receiteria-red);
}

/* WhatsApp Preview Section */
.whatsapp-preview-section {
  background: var(--bg-white);
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.preview-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .preview-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .preview-content h2 {
    text-align: center;
  }
  
  .preview-content .cta-button {
    width: 100%;
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .preview-content h2 {
    font-size: 2.25rem;
  }
}

.preview-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .preview-description {
    text-align: center;
  }
}

.preview-benefits {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

@media (max-width: 767px) {
  .preview-benefits {
    display: inline-block;
    text-align: left;
  }
}

.preview-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.preview-benefits svg {
  flex-shrink: 0;
}

.preview-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  filter: var(--drop-shadow-brown);
}

@media (max-width: 767px) {
  .preview-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Social Proof Bar */
.social-proof-bar {
  background: var(--bg-cream);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.proof-item svg {
  color: var(--receiteria-red);
}

@media (min-width: 768px) {
  .proof-item {
    font-size: 1rem;
  }
}

/* Why Join Section */
.why-join-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.why-join-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .why-join-section h2 {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--receiteria-red), var(--receiteria-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-red-light);
}

.feature-card:hover::before {
  opacity: 1;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
  border-radius: 1rem;
  color: var(--receiteria-red);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--receiteria-red) 0%, var(--receiteria-red-dark) 100%);
  color: var(--bg-white);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Products Carousel Section */
.products-carousel-section {
  padding: 5rem 0;
  background: var(--bg-cream);
}

.products-carousel-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .products-carousel-section h2 {
    font-size: 2.75rem;
  }
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.carousel-container {
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.5rem;
}

.carousel-item {
  flex: 0 0 100%;
}

@media (min-width: 640px) {
  .carousel-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.product-card-carousel {
  background: var(--bg-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

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

.product-image-carousel {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg-cream);
}

.product-image-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.product-info-carousel {
  padding: 1.25rem;
}

.product-info-carousel .product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  min-height: 2.8rem;
}

.product-info-carousel .product-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--text-primary);
}

.carousel-btn:hover {
  background: var(--receiteria-red);
  color: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

@media (max-width: 640px) {
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  .carousel-wrapper {
    padding: 0 2.5rem;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--receiteria-red);
  width: 28px;
  border-radius: 5px;
}

/* Recent Finds Section */
.recent-finds-section {
  padding: 4rem 0;
  background: var(--bg-cream);
}

.recent-finds-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .recent-finds-section h2 {
    font-size: 2.5rem;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.2s ease;
  position: relative;
}

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

.discount-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--receiteria-green);
  color: var(--bg-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  z-index: 1;
}

.product-image {
  aspect-ratio: 1;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info {
  padding: 0.75rem;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  min-height: 2.6em;
}

.product-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.current-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--receiteria-red);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .testimonials-section h2 {
    font-size: 2.75rem;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.quote-icon {
  color: var(--receiteria-red);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-cream);
  flex-shrink: 0;
}

.author-avatar svg {
  width: 100%;
  height: 100%;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-date {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Urgency Bar */
.urgency-bar {
  background: var(--receiteria-orange);
  color: var(--bg-white);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .faq-section h2 {
    font-size: 2.5rem;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.faq-question:focus-visible {
  outline: 2px solid var(--receiteria-red);
  outline-offset: 2px;
}

.faq-question .chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-top: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
  padding: 5rem 0;
  background: var(--bg-cream);
  text-align: center;
  color: var(--text-primary);
}

.final-cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .final-cta-section h2 {
    font-size: 2.5rem;
  }
}

.final-cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-white);
  color: var(--text-secondary);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid var(--border-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--receiteria-red);
}

/* Sticky Mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white-transparent);
  backdrop-filter: blur(8px);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}

.sticky-cta.visible {
  display: block;
}

.cta-sticky-button {
  width: 100%;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none !important;
  }
}

/* Exit Intent Modal */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.exit-modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.exit-modal-content {
  position: relative;
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exit-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-tertiary);
  padding: 0.25rem;
}

.exit-modal-close:hover {
  color: var(--text-primary);
}

.exit-modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.exit-modal-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Special Offer Modal (Timed) */
.special-offer-modal {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.special-offer-modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.special-offer-modal-content {
  position: relative;
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease;
}

.special-offer-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-tertiary);
  font-size: 1.5rem;
  padding: 0.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.special-offer-modal-close:hover {
  color: var(--text-primary);
}

.special-offer-modal-body {
  text-align: center;
}

.special-offer-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.special-offer-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.special-offer-product {
  background: var(--bg-bege);
  border: 2px solid var(--border-primary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.special-offer-product-image {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-offer-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-offer-product-info {
  width: 100%;
  text-align: center;
}

.special-offer-product-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.special-offer-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.special-offer-old-price {
  font-size: 1rem;
  color: var(--text-tertiary);
}

.special-offer-new-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.special-offer-savings {
  font-size: 0.875rem;
  color: var(--accent-secondary);
  font-weight: 600;
}

.special-offer-cta-button {
  width: 100%;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .special-offer-modal {
    padding: 0.5rem;
    align-items: flex-start;
  }

  .special-offer-modal-content {
    padding: 1.25rem;
    max-height: calc(100vh - 1rem);
    overflow-y: auto;
    margin-top: 0.5rem;
  }

  .special-offer-heading {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .special-offer-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .special-offer-product {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .special-offer-product-image {
    max-width: 150px;
  }

  .special-offer-product-name {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .special-offer-new-price {
    font-size: 1.5rem;
  }

  .special-offer-old-price {
    font-size: 0.875rem;
  }

  .special-offer-savings {
    font-size: 0.75rem;
  }

  .special-offer-cta-button {
    margin-top: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
