/**
 * ORONEWLIFE - Estilos Customizados para Integração
 */

/* ========================================
   BLOG SOCIAL SHARE ICONS
   ======================================== */
.blog-social-media-wrap .single-social-link div {
  font-family: var(--_fonts---fa-brands);
  font-size: 1rem;
}
#share-facebook div::before { content: '\f39e'; }
#share-twitter div::before { content: '\f099'; }
#share-linkedin div::before { content: '\f0e1'; }
#share-whatsapp div::before { content: '\f232'; color: white; }
#share-instagram div::before { content: '\f16d'; color: white; }

#share-whatsapp:hover,
#share-instagram:hover {
  transform: translate(0, -0.3125rem);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bg-light {
  background: #f8f8f8;
}

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
}

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

.section-title-wrapper.align-left {
  text-align: left;
}

/* ========================================
   HERO PRODUCT (MEDICINE BOX) - RESPONSIVIDADE
   ======================================== */
.medicine-box-wrap {
  pointer-events: none;
}

.medicine-box {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 1440px) {
  .medicine-box {
    max-width: 18rem;
  }
}

@media screen and (max-width: 1200px) {
  .medicine-box {
    max-width: 14rem;
  }
}

@media screen and (max-width: 991px) {
  .medicine-box {
    max-width: 12rem;
  }
  
  .medicine-box-wrap {
    height: 70vh;
  }
}

@media screen and (max-width: 767px) {
  .medicine-box {
    max-width: 10rem;
  }
  
  .medicine-box-wrap {
    height: 60vh;
  }
}

@media screen and (max-width: 479px) {
  .medicine-box {
    max-width: 8rem;
  }
  
  .medicine-box-wrap {
    height: 50vh;
    display: none;
  }
}

/* ========================================
   OCULTAR SEÇÃO INGREDIENTS
   ======================================== */
.ingredients-flex-wrap {
  display: none !important;
}

.section.ingredients .ingredients-button-wrap {
  display: none !important;
}

/* ========================================
   MAPA DE CONSULTORES - HOME PAGE (Leaflet)
   ======================================== */
.consultant-map-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.consultant-map-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #EEEEEE 0%, rgba(159, 201, 243, 0.15) 50%, rgba(240, 125, 234, 0.1) 100%);
  box-shadow: 0 10px 40px rgba(164, 96, 237, 0.15);
}

/* Leaflet Map Styles */
#consultants-map {
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

#consultants-map .leaflet-tile-pane {
  z-index: 1;
}

#consultants-map .leaflet-control-container {
  z-index: 5;
}

/* Fix Leaflet tile rendering */
.leaflet-container {
  background: #e8f4f8;
}

.leaflet-tile {
  filter: none;
}

@media (max-width: 768px) {
  .consultant-map-container {
    height: 350px;
  }
  
  .consultant-map-section {
    padding: 50px 0;
  }
}

/* ========================================
   NOVA PALETA DE CORES - ORONEWLIFE 2025
   ======================================== */
:root {
  /* Cores Primárias */
  --oro-pink: #F07DEA;
  --oro-purple: #A460ED;
  --oro-blue: #9FC9F3;
  --oro-light: #EEEEEE;
  
  /* Gradientes */
  --oro-gradient-primary: linear-gradient(135deg, #F07DEA 0%, #A460ED 100%);
  --oro-gradient-secondary: linear-gradient(135deg, #A460ED 0%, #9FC9F3 100%);
  --oro-gradient-accent: linear-gradient(135deg, #F07DEA 0%, #9FC9F3 100%);
  --oro-gradient-text: linear-gradient(90deg, #F07DEA 0%, #A460ED 50%, #9FC9F3 100%);
  
  /* Cores de Texto */
  --oro-text-dark: #2D2D2D;
  --oro-text-medium: #555555;
  --oro-text-light: #888888;
  
  /* Sobrescrever variáveis do Webflow */
  --primary-colors--green: #A460ED;
  --primary-colors--yellow: #F07DEA;
  --primary-colors--gray: #EEEEEE;
}

/* ========================================
   ESTILOS GLOBAIS - NOVA PALETA
   ======================================== */

/* Texto com Gradiente */
.oro-text-gradient {
  background: var(--oro-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Títulos de Seção com Gradiente */
.section-title,
h1.section-title,
h2.section-title {
  background: linear-gradient(90deg, #A460ED 0%, #F07DEA 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.section-title-italic {
  -webkit-text-fill-color: #F07DEA !important;
}

/* Botões Principais */
.btn-primary,
.w-button,
.button,
.nav-menu-button {
  background: var(--oro-gradient-primary) !important;
  border: none !important;
  color: white !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(164, 96, 237, 0.3) !important;
}

.btn-primary:hover,
.w-button:hover,
.button:hover,
.nav-menu-button:hover {
  background: var(--oro-gradient-secondary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(164, 96, 237, 0.4) !important;
}

/* Links e Textos Interativos */
a.nav-link,
.nav-link,
.footer-link {
  color: var(--oro-text-dark) !important;
  transition: color 0.3s ease !important;
}

a.nav-link:hover,
.nav-link:hover,
.footer-link:hover {
  color: var(--oro-purple) !important;
}

/* Badges e Tags */
.badge,
.tag,
.product-badge {
  background: var(--oro-gradient-primary) !important;
  color: white !important;
}

/* Cards com Hover Elegante */
.product-card,
.article-card,
.card {
  transition: all 0.3s ease !important;
  border: 1px solid rgba(164, 96, 237, 0.1) !important;
}

.product-card:hover,
.article-card:hover,
.card:hover {
  border-color: rgba(164, 96, 237, 0.3) !important;
  box-shadow: 0 10px 40px rgba(164, 96, 237, 0.15) !important;
}

/* Hero Section Background */
.hero-section,
.section.hero {
  background: linear-gradient(135deg, #EEEEEE 0%, rgba(159, 201, 243, 0.1) 50%, rgba(240, 125, 234, 0.05) 100%) !important;
}

/* Inputs e Forms */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
  border: 1px solid #ddd !important;
  transition: all 0.3s ease !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--oro-purple) !important;
  box-shadow: 0 0 0 3px rgba(164, 96, 237, 0.15) !important;
  outline: none !important;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--oro-light);
}

::-webkit-scrollbar-thumb {
  background: var(--oro-gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--oro-gradient-secondary);
}

/* Selection */
::selection {
  background: rgba(164, 96, 237, 0.3);
  color: var(--oro-text-dark);
}

/* Arista Pro Font */
@font-face {
  font-family: 'Arista Pro';
  src: url('../fonts/Arista-Pro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.main-logo-text {
  font-family: 'Arista Pro', 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 22px;
  background: var(--oro-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

/* Navbar - Botão Entrar com cores rosa/azul */
.navbar .primary-button-inner {
  background: var(--oro-gradient-primary) !important;
  box-shadow: 0 4px 15px rgba(164, 96, 237, 0.25);
  transition: all 0.3s ease;
}

.navbar .primary-button-inner:hover {
  box-shadow: 0 8px 25px rgba(164, 96, 237, 0.4);
  transform: translateY(-2px);
}

.navbar .primary-button-hover-bg {
  background: var(--oro-purple) !important;
}

.navbar .primary-button-text,
.navbar .primary-button-text-absolute {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

/* Ícone do carrinho na navbar com cor roxa */
.navbar .nav-cart-icon {
  stroke: var(--oro-purple);
  transition: stroke 0.3s ease;
}

.navbar .nav-cart-button:hover .nav-cart-icon {
  stroke: var(--oro-pink);
}

.navbar .cart-badge {
  background: var(--oro-gradient-primary);
  color: #FFFFFF;
}

/* Corrigir overflow que corta a imagem do produto em todos os níveis e breakpoints */
.section.benefit,
.section.benefit.inner,
.benefit-content-wrap,
.benefit-section-wrap,
.benefit-hand-wrap,
.benefit-circle-wrap,
.benefit-circle-inner,
.benefit-circle-wrap::before,
.benefit-circle-inner::before {
  overflow: visible !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

/* Seção de benefícios - Ajuste de posicionamento do produto na mão */
/* O Webflow original usa inset: -24% auto auto 18% mas isso causa deslocamento */
/* Ajustamos para posicionar o produto mais para cima e centralizado na mão */
.benefit-medicine-box:not(.responsive) {
  inset: -65% auto auto 20% !important;
}

/* Aumentar imagem de fundo da seção de benefícios (flor de lótus) */
.benefit-bg-image {
  transform: scale(1.15);
  transform-origin: center center;
}

/* Garantir que os overrides funcionem em todos os breakpoints */
@media screen and (max-width: 991px) {
  .section.benefit,
  .section.benefit.inner,
  .benefit-content-wrap,
  .benefit-section-wrap,
  .benefit-hand-wrap,
  .benefit-circle-wrap,
  .benefit-circle-inner {
    overflow: visible !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
}

@media screen and (max-width: 767px) {
  .section.benefit,
  .section.benefit.inner,
  .benefit-content-wrap,
  .benefit-section-wrap,
  .benefit-hand-wrap,
  .benefit-circle-wrap,
  .benefit-circle-inner {
    overflow: visible !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
}

@media screen and (max-width: 479px) {
  .section.benefit,
  .section.benefit.inner,
  .benefit-content-wrap,
  .benefit-section-wrap,
  .benefit-hand-wrap,
  .benefit-circle-wrap,
  .benefit-circle-inner {
    overflow: visible !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
}

/* ========================================
   PARALLAX CLAMPER - MEDICINE BOX
   ======================================== */
/* Quando o sentinela da seção benefit é atingido, clamp a animação */
.medicine-box-wrap.parallax-clamped .medicine-box {
  animation-play-state: paused !important;
}

/* Manter transform atual quando clampado */
.medicine-box-wrap.parallax-clamped .medicine-box-iner {
  animation-play-state: paused !important;
}


/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  min-width: 300px;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 8px;
  background: #1a1a1a;
  color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.toast-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

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

/* Global Loader */
#global-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.modal-container {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.modal-overlay.show .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #1a1a1a;
}

.modal-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #1a1a1a;
}

/* Auth Form Styles */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.form-group input {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.form-button {
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

.form-button.primary {
  background: #1a1a1a;
  color: white;
}

.form-button.primary:hover {
  background: #333;
  transform: translateY(-1px);
}

.form-links {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.form-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.form-links a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

/* Captcha Form Styles */
.captcha-group {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.captcha-group label {
  font-weight: 600;
  color: #1a5a1a;
  font-size: 15px;
}

.captcha-input-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}

.captcha-input-wrap input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

.captcha-input-wrap input:focus {
  outline: none;
  border-color: #1a5a1a;
  box-shadow: 0 0 0 3px rgba(26, 90, 26, 0.1);
}

.captcha-refresh-btn {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-refresh-btn:hover {
  background: #c8e6c9;
  transform: rotate(180deg);
}

/* Product Card Styles */
.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
  min-height: 280px;
}

.product-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  transition: transform 0.3s;
}

/* Shop Page Product Grid Improvements */
.section.products .product-image-wrap {
  height: auto !important;
  min-height: 300px;
  padding: 20px;
  background: transparent;
}

.section.products .product-image {
  max-height: 300px;
  object-fit: contain;
}

.single-product-wrap .product-image-wrap {
  overflow: visible;
  height: auto !important;
  min-height: 250px;
}

.single-product-wrap .product-image {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}

.product-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.add-to-cart-btn {
  width: 100%;
  padding: 14px;
  background: #1a1a1a;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.add-to-cart-btn:hover {
  background: #333;
}

/* Cart Item Styles */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.cart-item-price {
  font-size: 14px;
  color: #666;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #f5f5f5;
  border-color: #1a1a1a;
}

.qty-value {
  font-size: 14px;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #ef4444;
}

/* Blog Card Styles */
.blog-card {
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  opacity: 1;
}

.blog-image.loaded {
  opacity: 1;
}

.featured-blog-image {
  transition: transform 0.3s;
  opacity: 1;
}

.featured-blog-image.loaded {
  opacity: 1;
}

/* Blog banner - background definido via SSR inline style */

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0;
  color: #1a1a1a;
  line-height: 1.4;
}

.blog-post-title {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #111 !important;
  letter-spacing: -0.01em;
  margin: 8px 0 6px;
}

.blog-post-title-wrap:hover .blog-post-title {
  color: #183506 !important;
}

.blog-post-title.featured {
  color: #fff !important;
}

.blog-post-title-wrap:hover .blog-post-title.featured {
  color: #fff !important;
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  margin: 0 0 14px 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #183506;
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
}

.blog-read-more:hover {
  border-bottom-color: #183506;
  gap: 8px;
  color: #183506;
}

.blog-read-more-arrow {
  display: inline-block;
  transition: transform 0.2s;
  font-size: 15px;
}

.blog-read-more:hover .blog-read-more-arrow {
  transform: translateX(3px);
}

.blog-date {
  font-size: 12px;
  color: #999;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Home Products Grid - Centralizado */
.product-collection-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-grid-wrap {
  justify-content: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 8px 0;
  display: none;
}

.user-menu:hover .user-menu-dropdown {
  display: block;
}

.user-menu-item {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background 0.2s;
}

.user-menu-item:hover {
  background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-container {
    padding: 24px;
    margin: 16px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .toast {
    left: 20px;
    right: 20px;
    max-width: none;
    min-width: auto;
  }
}

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

/* Payment Methods */
.payment-methods-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-method {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-method:hover {
  border-color: #999;
}

.payment-method.selected {
  border-color: #1a1a1a;
  background: #f8f8f8;
}

.payment-method input[type="radio"] {
  display: none;
}

.payment-icon {
  flex-shrink: 0;
}

.payment-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.card-element-container {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-top: 16px;
}

#card-element {
  padding: 12px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.card-errors {
  color: #ef4444;
  font-size: 13px;
  margin-top: 8px;
}

/* Shipping Options */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.shipping-option:hover {
  border-color: #999;
}

.shipping-option.selected {
  border-color: #1a1a1a;
  background: #f8f8f8;
}

.shipping-option input[type="radio"] {
  display: none;
}

.shipping-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shipping-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.shipping-time {
  font-size: 12px;
  color: #666;
}

.shipping-price {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Checkout Summary */
.checkout-summary {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.checkout-item {
  display: flex;
  gap: 12px;
}

.checkout-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.checkout-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #1a1a1a;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.checkout-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.checkout-item-price {
  font-size: 14px;
  color: #666;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}

.checkout-line.discount {
  color: #22c55e;
}

.checkout-line.total {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.checkout-coupon {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.checkout-coupon input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
}

.checkout-coupon input:focus {
  outline: none;
  border-color: #1a1a1a;
}

.coupon-btn {
  padding: 12px 20px;
  background: white;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.coupon-btn:hover {
  background: #1a1a1a;
  color: white;
}

.checkout-submit-btn {
  width: 100%;
  cursor: pointer;
}

/* PIX Modal */
.pix-content {
  text-align: center;
}

.pix-qrcode {
  margin: 20px 0;
}

.pix-qrcode img {
  max-width: 200px;
  border-radius: 8px;
}

.pix-info {
  text-align: center;
}

.pix-code-container {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.pix-code-container input {
  flex: 1;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 12px;
  font-family: monospace;
}

.copy-pix-btn {
  padding: 12px 20px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.copy-pix-btn:hover {
  background: #333;
}

.pix-timer {
  font-size: 12px;
  color: #666;
  margin-top: 12px;
}

/* Order Confirmation */
.order-confirmation-content {
  text-align: center;
  padding: 40px 20px;
}

.order-success-icon {
  margin-bottom: 24px;
}

.order-success-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.order-number {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

.order-details {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.order-detail-row:last-child {
  border-bottom: none;
}

.order-status {
  font-weight: 600;
}

.order-status.paid {
  color: #22c55e;
}

.order-status.pending {
  color: #f59e0b;
}

.order-status.shipped {
  color: #3b82f6;
}

.order-actions {
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-methods {
    flex-direction: column;
  }
  
  .payment-method {
    min-width: auto;
  }
  
  .checkout-coupon {
    flex-direction: column;
  }
}

/* ========================================
   SHOP PAGE - Product Cards Enhanced
   ======================================== */

/* Product Badges Container - posicionado no canto superior esquerdo */
.product-badges-container {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 10;
}

/* Manter single-product-wrap com posição relativa */
.single-product-wrap {
  position: relative !important;
  overflow: visible !important;
}

/* Individual Badge Styles */
.product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.product-badge-new {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  animation: pulse-badge 2s infinite;
}

.product-badge-featured {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.product-badge-discount {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 6px 0;
  font-size: 13px;
}

.product-stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 14px;
}

.product-reviews {
  color: #6b7280;
  font-size: 12px;
}

/* Original Price (strikethrough) */
.product-original-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 12px;
  margin-right: 6px;
}

/* Stock Warning */
.product-stock-warning {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin: 6px 0;
  text-align: center;
  animation: pulse-stock 1.5s infinite;
}

@keyframes pulse-stock {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Enhanced Product Card */
.product-content-wrap {
  position: relative;
}

/* Product details wrap - center all content */
.product-details-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Product name centered */
.product-name-wrap {
  display: block;
  text-align: center;
  width: 100%;
}

/* Efeito de brilho para produtos em destaque */
.product-name-featured {
  background: linear-gradient(
    90deg,
    #A460ED 0%,
    #A460ED 40%,
    #ffd700 50%,
    #A460ED 60%,
    #A460ED 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 3s infinite linear;
}

@keyframes shine-text {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* Ensure info text styling */
.product-info-text {
  color: #A460ED;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-badges {
    top: 8px;
    left: 8px;
  }
  
  .product-badge {
    padding: 3px 8px;
    font-size: 10px;
  }
  
  .product-rating {
    flex-wrap: wrap;
  }
  
  .product-stars {
    font-size: 12px;
  }
}

/* =========================================
   ACCOUNT PAGE STYLES
   ========================================= */

.account-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.account-header {
  margin-bottom: 40px;
}

.account-title {
  font-size: 32px;
  font-weight: 700;
  color: #A460ED;
  margin-bottom: 10px;
}

.account-subtitle {
  color: #6A7166;
  font-size: 16px;
}

.account-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.account-card .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #A460ED;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-card .card-title svg {
  width: 24px;
  height: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.info-label {
  font-size: 12px;
  color: #6A7166;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.info-value {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.account-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nav-tab {
  padding: 12px 24px;
  background: #f2f2f2;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-tab:hover,
.nav-tab.active,
.nav-tab.w--current {
  background: #A460ED;
  color: white;
}

.edit-btn {
  background: #A460ED;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.edit-btn:hover {
  background: #0f2504;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f2f2f2;
  border-top-color: #A460ED;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.not-logged-in {
  text-align: center;
  padding: 60px 20px;
}

.not-logged-in h2 {
  color: #A460ED;
  margin-bottom: 15px;
}

.not-logged-in p {
  color: #6A7166;
  margin-bottom: 25px;
}

.login-link {
  display: inline-block;
  background: #A460ED;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.login-link:hover {
  background: #0f2504;
}

/* =========================================
   ORDERS PAGE STYLES
   ========================================= */

.orders-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.order-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--oro-purple);
}

.order-status {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.order-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.order-status.processing {
  background: #dbeafe;
  color: #1e40af;
}

.order-status.shipped {
  background: #d1fae5;
  color: #065f46;
}

.order-status.delivered {
  background: #dcfce7;
  color: #166534;
}

.order-status.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.order-date {
  color: #6A7166;
  font-size: 14px;
}

.order-items {
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.order-item-name {
  color: #333;
}

.order-item-qty {
  color: #6A7166;
}

.order-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  margin-top: 15px;
  font-weight: 600;
  font-size: 16px;
}

.empty-orders {
  text-align: center;
  padding: 60px 20px;
}

.empty-orders h3 {
  color: var(--oro-purple);
  margin-bottom: 10px;
}

.empty-orders p {
  color: #6A7166;
  margin-bottom: 20px;
}

.shop-link {
  display: inline-block;
  background: var(--oro-gradient-primary);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.shop-link:hover {
  background: var(--oro-gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(164, 96, 237, 0.3);
}

/* ========================================
   AUTH MODAL - Login/Cadastro Moderno
   ======================================== */

.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.auth-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.auth-modal-container {
  background: linear-gradient(145deg, #ffffff 0%, rgba(159, 201, 243, 0.05) 100%);
  border-radius: 16px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(164, 96, 237, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-modal-optional {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}

.auth-modal-overlay.show .auth-modal-container {
  transform: scale(1) translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.auth-modal-close:hover {
  background: #e5e7eb;
  color: #1a1a1a;
  transform: rotate(90deg);
}

/* Tabs */
.auth-modal-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  background: #f3f4f6;
  padding: 6px;
  border-radius: 12px;
}

.auth-modal-tab {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-modal-tab:hover:not(.active) {
  color: var(--oro-purple);
  background: rgba(164, 96, 237, 0.08);
}

.auth-modal-tab.active {
  background: var(--oro-gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(240, 125, 234, 0.35);
}

/* Content */
.auth-modal-content {
  display: none;
}

.auth-modal-content.active {
  display: block;
  animation: authModalFadeIn 0.3s ease;
}

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

.auth-modal-title {
  font-size: 26px;
  font-weight: 700;
  background: var(--oro-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px 0;
  text-align: center;
}

.auth-modal-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 24px 0;
  text-align: center;
}

/* Form */
.auth-modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-modal-field label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.auth-modal-field input {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.2s ease;
  background: white;
}

.auth-modal-field input:focus {
  outline: none;
  border-color: var(--oro-purple);
  box-shadow: 0 0 0 4px rgba(164, 96, 237, 0.15);
}

.auth-modal-field input::placeholder {
  color: #9ca3af;
}

/* Captcha */
.auth-modal-captcha {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(135deg, rgba(159, 201, 243, 0.15) 0%, rgba(164, 96, 237, 0.1) 100%);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(164, 96, 237, 0.2);
}

.auth-modal-captcha label {
  font-size: 14px;
  font-weight: 600;
  color: var(--oro-purple);
}

.auth-modal-captcha #captcha-question {
  font-weight: 700;
  color: var(--oro-pink);
}

.auth-modal-captcha input {
  padding: 12px 14px;
  border: 2px solid rgba(164, 96, 237, 0.3);
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: all 0.2s ease;
}

.auth-modal-captcha input:focus {
  outline: none;
  border-color: var(--oro-purple);
  box-shadow: 0 0 0 3px rgba(164, 96, 237, 0.2);
}

/* Honeypot - Oculto */
.auth-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/* Submit Button */
.auth-modal-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--oro-gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.auth-modal-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.auth-modal-submit:hover::before {
  left: 100%;
}

.auth-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 125, 234, 0.45);
}

.auth-modal-submit:active {
  transform: translateY(0);
}

.auth-modal-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.auth-modal-submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Links */
.auth-modal-links {
  text-align: center;
  margin-top: 20px;
}

.auth-modal-link {
  color: var(--oro-purple);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-modal-link:hover {
  color: var(--oro-pink);
  text-decoration: underline;
}

/* Terms */
.auth-modal-terms {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

.auth-modal-terms a {
  color: var(--oro-purple);
  font-weight: 500;
  text-decoration: none;
}

.auth-modal-terms a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  .auth-modal-container {
    padding: 28px 20px;
    margin: 10px;
    border-radius: 16px;
  }
  
  .auth-modal-title {
    font-size: 22px;
  }
  
  .auth-modal-tabs {
    margin-bottom: 20px;
  }
  
  .auth-modal-tab {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .auth-modal-field input,
  .auth-modal-captcha input {
    padding: 12px 14px;
    font-size: 16px;
  }
  
  .auth-modal-submit {
    padding: 14px 20px;
  }
}

/* =====================================================
   CART ICON & MODAL STYLES
   ===================================================== */

/* Navbar Cart Icon */
.nav-cart-wrap {
  display: flex !important;
  align-items: center;
  margin-right: 16px;
  position: relative;
  z-index: 100;
}

.navbar-right-wrap .nav-cart-wrap {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.nav-cart-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--oro-purple);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-cart-button:hover {
  background: rgba(164, 96, 237, 0.1);
  transform: scale(1.05);
}

.nav-cart-icon {
  width: 22px;
  height: 22px;
  stroke: var(--oro-purple);
  transition: stroke 0.2s ease;
}

.nav-cart-button:hover .nav-cart-icon {
  stroke: var(--oro-pink);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--oro-gradient-primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(164, 96, 237, 0.4);
  transition: transform 0.2s ease;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

.cart-badge.cart-badge-animate {
  animation: cartBadgePop 0.3s ease;
}

@keyframes cartBadgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Cart Modal Overlay */
.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Cart Modal Container */
.cart-modal-container {
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cart-modal-overlay.show .cart-modal-container {
  transform: translateX(0);
}

/* Cart Modal Close Button */
.cart-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.cart-modal-close:hover {
  background: #e5e7eb;
  color: var(--oro-purple);
}

/* Cart Modal Title */
.cart-modal-title {
  padding: 24px 24px 16px;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  background: var(--oro-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 1px solid #e5e7eb;
}

/* Cart Modal Items Container */
.cart-modal-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

/* Cart Item */
.cart-modal-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cart-modal-item:last-child {
  border-bottom: none;
}

.cart-modal-item-image {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
  flex-shrink: 0;
}

.cart-modal-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.cart-modal-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--oro-text-dark);
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-modal-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--oro-purple);
}

.cart-modal-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-modal-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.cart-modal-qty-btn:hover {
  border-color: var(--oro-purple);
  background: rgba(164, 96, 237, 0.1);
  color: var(--oro-purple);
}

.cart-modal-qty-value {
  font-size: 14px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
  color: var(--oro-purple);
}

.cart-modal-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.cart-modal-item-remove:hover {
  color: #ef4444;
}

.cart-modal-item-remove svg {
  width: 18px;
  height: 18px;
}

/* Cart Empty State */
.cart-modal-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.cart-empty-icon {
  stroke: #d1d5db;
  margin-bottom: 20px;
}

.cart-empty-text {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 20px;
}

.cart-empty-link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--oro-gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cart-empty-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(164, 96, 237, 0.4);
}

/* Cart Modal Footer */
.cart-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  background: #fafafa;
}

.cart-modal-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  color: #374151;
}

.cart-modal-subtotal-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--oro-purple);
}

.cart-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-modal-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.cart-modal-btn-primary {
  background: var(--oro-gradient-primary);
  color: white;
}

.cart-modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(164, 96, 237, 0.4);
}

.cart-modal-btn-secondary {
  background: white;
  color: var(--oro-purple);
  border: 2px solid var(--oro-purple);
}

.cart-modal-btn-secondary:hover {
  background: rgba(164, 96, 237, 0.1);
}

/* Cart Modal Responsive */
@media (max-width: 480px) {
  .cart-modal-container {
    max-width: 100%;
  }
  
  .cart-modal-title {
    font-size: 20px;
    padding: 20px 20px 14px;
  }
  
  .cart-modal-items {
    padding: 12px 16px;
  }
  
  .cart-modal-footer {
    padding: 16px;
  }
  
  .nav-cart-wrap {
    margin-right: 8px;
  }
  
  .nav-cart-button {
    width: 40px;
    height: 40px;
  }
}

/* Shop Page Buttons Row */
.product-buttons-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.product-buttons-row .product-button {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-buttons-row .product-button-flex {
  justify-content: center;
  width: 100%;
}

/* Shop Page Add to Cart Button - Circular */
.shop-add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  background: var(--oro-gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.shop-add-to-cart-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(164, 96, 237, 0.4);
  filter: brightness(1.05);
}

.shop-add-to-cart-btn:active {
  transform: scale(0.95);
}

.shop-add-to-cart-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Added to cart feedback animation */
.shop-add-to-cart-btn.added {
  background: linear-gradient(135deg, #059669, #10b981);
}

.shop-add-to-cart-btn.added svg {
  display: none;
}

.shop-add-to-cart-btn.added::after {
  content: '✓';
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .shop-add-to-cart-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  
  .shop-add-to-cart-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Favorite Button Styles */
.shop-favorite-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 5;
}

.shop-favorite-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.shop-favorite-btn svg {
  width: 20px;
  height: 20px;
  stroke: #999;
  fill: transparent;
  transition: all 0.2s ease;
}

.shop-favorite-btn.active svg {
  stroke: #e53935;
  fill: #e53935;
}

.shop-favorite-btn:hover svg {
  stroke: #e53935;
}

/* ========================================
 * PRODUCT DETAIL PAGE STYLES
 * ======================================== */
.product-detail-hero {
  padding: 40px 0 20px;
}

.product-detail-hero .product-single-banner {
  background-image: linear-gradient(#f6fbe2 50%, #fefefc00 80%), url('../images/Preview-Banner-Bg.jpg');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}

.product-detail-hero .product-single-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail-hero .plan-single-image-wrap {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.product-detail-hero .plan-single-image {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.product-single-name-wrap {
  margin-bottom: 24px;
}

.product-detail-hero .inner-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-current-price {
  font-size: 2rem;
  font-weight: 700;
  color: #A460ED;
}

.product-original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.product-discount-badge {
  background: linear-gradient(135deg, #e53935, #c62828);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-rating-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.product-stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.product-rating-count {
  color: #666;
  font-size: 0.9rem;
}

.product-description-container {
  position: relative;
}

.product-description-container .inner-banner-details {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.product-description-container.expanded .inner-banner-details {
  max-height: none;
}

.product-see-more-btn {
  background: none;
  border: none;
  color: #A460ED;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-see-more-btn:hover {
  text-decoration: underline;
}

.product-actions-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.product-buy-btn {
  flex: 1;
  padding: 16px 32px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #A460ED, #F07DEA) !important;
  border: none !important;
  color: white !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 53, 6, 0.3);
}

.product-favorite-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.product-favorite-btn:hover {
  border-color: #e53935;
  background: #fff5f5;
}

.product-favorite-btn svg {
  width: 24px;
  height: 24px;
  stroke: #999;
  fill: transparent;
  transition: all 0.2s ease;
}

.product-favorite-btn.active svg {
  stroke: #e53935;
  fill: #e53935;
}

.product-favorite-btn:hover svg {
  stroke: #e53935;
}

/* Product Info Section */
.product-info-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.product-info-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.product-full-description .section-title-wrapper,
.product-certificates .section-title-wrapper,
.product-reviews-section .section-title-wrapper {
  margin-bottom: 24px;
}

.product-description-content {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  line-height: 1.8;
  color: #444;
  font-size: 1rem;
}

.product-description-content p {
  margin-bottom: 16px;
}

.product-description-content ul,
.product-description-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.product-description-content li {
  margin-bottom: 8px;
}

/* Certificates Grid */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.certificate-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.certificate-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.certificate-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #A460ED, #F07DEA);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.certificate-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.certificate-text h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.certificate-text p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Reviews Section */
.reviews-summary {
  background: white;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.reviews-average {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-score {
  font-size: 3rem;
  font-weight: 700;
  color: #A460ED;
}

.reviews-stars {
  color: #ffc107;
  font-size: 1.5rem;
}

.reviews-total {
  color: #666;
  font-size: 0.95rem;
}

.write-review-btn {
  background: linear-gradient(135deg, #A460ED, #F07DEA);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.write-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 53, 6, 0.25);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 600;
  color: #1a1a1a;
}

.review-date {
  color: #999;
  font-size: 0.85rem;
}

.review-rating {
  color: #ffc107;
  margin-bottom: 8px;
}

.review-content {
  color: #555;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-detail-hero .product-single-banner {
    padding: 2rem 1rem;
  }
  
  .product-detail-hero .product-single-flex {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .product-gallery-main {
    min-height: 280px;
    padding: 20px;
  }
  
  .product-gallery-main img {
    max-height: 240px;
  }
  
  .product-gallery-thumb {
    width: 60px;
    height: 60px;
  }
  
  .product-detail-hero .inner-banner-title {
    font-size: 1.6rem;
  }
  
  .product-current-price {
    font-size: 1.5rem;
  }
  
  .review-star-input .star-input {
    font-size: 2rem;
  }
  
  .review-form-actions {
    flex-direction: column;
  }
  
  .reviews-summary {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .reviews-average {
    flex-direction: column;
    gap: 8px;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
 * ORDER CONFIRMATION PAGE STYLES
 * ======================================== */
.order-confirmation-section {
  padding: 60px 0;
  min-height: 60vh;
}
.order-confirmation-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.order-confirmation-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.order-success-icon {
  margin-bottom: 24px;
}
.order-success-icon svg {
  width: 80px;
  height: 80px;
}
.order-success-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.order-number {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}
.order-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  text-align: left;
}
@media (max-width: 600px) {
  .order-details-grid {
    grid-template-columns: 1fr;
  }
}
.order-detail-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
}
.order-detail-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.order-detail-card p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
  line-height: 1.5;
}
.order-items-section {
  margin-top: 32px;
  text-align: left;
  width: 100%;
}
.order-items-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}
.order-item {
  display: flex !important;
  align-items: center !important;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  position: static !important;
  float: none !important;
}
.order-item-image {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 16px;
  background: #eee;
  position: static !important;
  float: none !important;
}
.order-item-info {
  flex: 1;
  min-width: 0;
}
.order-item-name {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
  word-wrap: break-word;
}
.order-item-qty {
  font-size: 13px;
  color: #666;
}
.order-item-price {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  margin-left: 16px;
  position: static !important;
  float: none !important;
}
.order-summary-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  text-align: left;
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.order-summary-row.total {
  font-size: 18px;
  font-weight: 600;
  border-top: 2px solid #333;
  margin-top: 12px;
  padding-top: 16px;
}
.order-status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.order-status-badge.pending { background: #fef3c7; color: #92400e; }
.order-status-badge.pending_payment { background: #fef3c7; color: #92400e; }
.order-status-badge.paid { background: #d1fae5; color: #065f46; }
.order-status-badge.processing { background: #dbeafe; color: #1e40af; }
.order-status-badge.shipped { background: #e0e7ff; color: #3730a3; }
.order-status-badge.delivered { background: #d1fae5; color: #065f46; }
.order-status-badge.cancelled { background: #fee2e2; color: #991b1b; }
.order-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.order-loading {
  text-align: center;
  padding: 60px 20px;
}
.order-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #22c55e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Botão secundário para order confirmation */
.order-actions .secondary-btn {
  background: #333 !important;
}
.order-actions .secondary-btn:hover {
  background: #444 !important;
}

/* ========================================
   CORREÇÕES ORONEWLIFE - DEC 2025
   ======================================== */

/* Botão "Quero ser Consultor" com texto branco */
.primary-button-text,
.primary-button-text-absolute {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

/* Footer Copyright Centralizado */
.footer-bottom {
  text-align: center !important;
}

.footer-bottom-flex {
  justify-content: center !important;
  text-align: center !important;
}

.footer-copyright {
  text-align: center !important;
  width: 100%;
}

/* Future Section - Fonte e Espaçamento Reduzidos */
.future-section-wrap {
  padding: 40px 0 !important;
}

.future-section-wrap .section-title {
  font-size: 2rem !important;
  margin-bottom: 15px !important;
}

.future-section-wrap .section-details {
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

.future-card-title {
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.future-card-three-title {
  font-size: 1.5rem !important;
  line-height: 1.3 !important;
}

/* Formulário CTA/Newsletter - Integração com Backend */
.cta-form-wrap {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.cta-form-field {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
}

.cta-form-field::placeholder {
  color: rgba(255,255,255,0.7);
}

.cta-form-button {
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--oro-gradient-primary) !important;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(164, 96, 237, 0.4);
}

/* ========================================
   ABOUT PAGE - CARROSSEL E TIMELINE
   ======================================== */

/* Carrossel de Imagens do Banner About */
.about-banner-carousel {
  position: relative;
  overflow: hidden;
}

.about-carousel-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.about-carousel-slide.active {
  opacity: 1;
}

.about-carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(164, 96, 237, 0.65) 0%, rgba(240, 125, 234, 0.55) 100%);
  z-index: 1;
}

.about-banner-carousel .inner-banner-content,
.about-banner-carousel .stat-summery-grid {
  position: relative;
  z-index: 2;
}

.about-carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.about-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.about-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Layout da Seção Nossa Jornada */
.journey-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

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

/* Container de Imagens na Lateral Esquerda */
.journey-images-container {
  position: sticky;
  top: 100px;
}

.journey-image-stack {
  position: relative;
  height: 450px;
}

.journey-image {
  position: absolute;
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(164, 96, 237, 0.2);
  transition: all 0.4s ease;
}

.journey-image-1 {
  top: 0;
  left: 0;
  z-index: 3;
}

.journey-image-2 {
  top: 80px;
  left: 40px;
  z-index: 2;
}

.journey-image-3 {
  top: 160px;
  left: 20px;
  z-index: 1;
}

.journey-image:hover {
  transform: scale(1.05);
  z-index: 10 !important;
  box-shadow: 0 20px 50px rgba(164, 96, 237, 0.3);
}

@media (max-width: 992px) {
  .journey-images-container {
    position: relative;
    top: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .journey-image-stack {
    display: flex;
    gap: 15px;
    height: auto;
  }
  
  .journey-image {
    position: relative;
    width: 140px;
    height: 100px;
    top: auto !important;
    left: auto !important;
  }
}

/* Conteúdo da Jornada */
.journey-content {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

/* Timeline Horizontal */
.timeline-horizontal-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.timeline-horizontal-wrapper:active,
.timeline-horizontal-wrapper.dragging {
  cursor: grabbing;
}

/* Timeline fade wrapper - fixed fades on edges while content scrolls */
.timeline-fade-wrapper {
  position: relative;
}

.timeline-fade-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, white 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

.timeline-fade-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to left, white 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

.timeline-horizontal-wrapper::-webkit-scrollbar {
  height: 6px;
}

.timeline-horizontal-wrapper::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.timeline-horizontal-wrapper::-webkit-scrollbar-thumb {
  background: var(--oro-gradient-primary);
  border-radius: 3px;
}

.timeline-horizontal-scroll {
  position: relative;
  display: inline-flex;
  min-width: max-content;
  padding-bottom: 20px;
  padding-right: 50px;
}

.timeline-horizontal-line {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F07DEA 0%, #A460ED 50%, #9FC9F3 100%);
  border-radius: 2px;
}

.timeline-horizontal-items {
  display: flex;
  gap: 40px;
  position: relative;
  padding-left: 20px;
}

.timeline-h-item {
  flex: 0 0 220px;
  text-align: center;
  padding-top: 30px;
}

.timeline-h-dot {
  width: 36px;
  height: 36px;
  background: url('/images/logo-icon.png') center/contain no-repeat;
  background-color: white;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(164, 96, 237, 0.3);
  margin-top: 15px;
}

.timeline-h-year {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--oro-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.timeline-h-content {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(164, 96, 237, 0.1);
  transition: all 0.3s ease;
}

.timeline-h-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(164, 96, 237, 0.15);
  border-color: rgba(164, 96, 237, 0.3);
}

.timeline-h-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--oro-purple);
  margin-bottom: 8px;
}

.timeline-h-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-h-item {
    flex: 0 0 180px;
  }
  
  .timeline-h-content {
    padding: 15px;
  }
  
  .timeline-h-year {
    font-size: 1.25rem;
  }
}

/* ========================================
   PRODUCT GALLERY STYLES
   ======================================== */

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-gallery-main {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  cursor: zoom-in;
}

.product-gallery-main img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-gallery-main:hover img {
  transform: scale(1.02);
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: white;
  padding: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-gallery-thumb:hover {
  border-color: var(--primary-colors--green, #A460ED);
}

.product-gallery-thumb.active {
  border-color: var(--primary-colors--green, #A460ED);
  box-shadow: 0 4px 12px rgba(24, 53, 6, 0.2);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Review Form Styles */
.review-form-container {
  margin: 24px 0;
}

.review-form-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.review-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.review-star-input {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.review-star-input .star-input {
  font-size: 2.5rem;
  color: #ddd;
  cursor: pointer;
  transition: all 0.15s ease;
}

.review-star-input .star-input:hover,
.review-star-input .star-input.hover {
  color: #ffc107;
  transform: scale(1.1);
}

.review-star-input .star-input.active {
  color: #ffc107;
}

.review-rating-text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.review-form-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.review-cancel-btn {
  padding: 12px 28px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
}

.review-cancel-btn:hover {
  border-color: #ccc;
  background: #f5f5f5;
}

.review-submit-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #A460ED, #F07DEA);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.review-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.review-submit-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 53, 6, 0.25);
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.review-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A460ED, #F07DEA);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.review-user-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1rem;
}

.review-date {
  color: #999;
  font-size: 0.85rem;
}

.review-rating {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.no-reviews-message {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 1rem;
}

/* Product Image Section */
.product-detail-image-section {
  position: sticky;
  top: 100px;
}

.product-detail-image-wrap {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.product-detail-main-image {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-detail-main-image:hover {
  transform: scale(1.05);
}

/* Product Info Section */
.product-detail-info-section {
  padding: 20px 0;
}

.product-category-badge {
  display: inline-block;
  background: var(--oro-gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-rating-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars .star {
  color: #ddd;
  font-size: 1.2rem;
}

.rating-stars .star.filled {
  color: #ffc107;
}

.rating-count {
  color: #666;
  font-size: 0.9rem;
}

.rating-link {
  color: var(--primary-colors--green);
  font-size: 0.9rem;
  text-decoration: underline;
}

.product-detail-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-price-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.product-price-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-colors--green);
}

.product-price-original {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
}

.product-discount-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Product Actions */
.product-actions-section {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: #333;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #e0e0e0;
}

.qty-input {
  width: 50px;
  height: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.product-add-form {
  flex: 1;
}

.btn-add-to-cart-enhanced {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--oro-gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(24, 53, 6, 0.3);
}

.btn-add-to-cart-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 53, 6, 0.4);
}

.cart-icon {
  width: 22px;
  height: 22px;
}

/* Trust Badges */
.product-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 0.95rem;
}

.trust-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(1000%) hue-rotate(75deg);
}

/* Product Description Section */
.product-description-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.product-description-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}

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

.product-description-text {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.product-description-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.product-features-list {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.features-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--primary-colors--green);
  border-radius: 10px;
  filter: brightness(0) invert(1);
}

.features-list li strong {
  display: block;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.features-list li span {
  font-size: 0.9rem;
  color: #777;
}

/* Reviews Section */
.product-reviews-section {
  padding: 80px 0;
  background: white;
}

.reviews-container {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-average {
  text-align: center;
}

.average-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-colors--green);
  display: block;
}

.average-stars {
  color: #ffc107;
  font-size: 1.3rem;
  margin: 8px 0;
}

.total-reviews {
  color: #777;
  font-size: 0.9rem;
}

.btn-write-review {
  padding: 14px 28px;
  background: var(--oro-gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-write-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 53, 6, 0.3);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Review Modal */
.review-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.review-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.review-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
}

.review-modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.rating-input {
  margin-bottom: 20px;
}

.rating-input label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.star-rating-input {
  display: flex;
  gap: 8px;
}

.star-input {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.star-input.active,
.star-input:hover {
  color: #ffc107;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-colors--green);
}

.btn-submit-review {
  width: 100%;
  padding: 14px;
  background: var(--oro-gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

/* Video Section */
.product-video-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.product-video-section .section-title {
  color: white;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
  position: relative;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.video-placeholder:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  font-size: 1rem;
}

.video-wrapper iframe {
  width: 100%;
  height: 500px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .product-detail-title {
    font-size: 1.8rem;
  }
  
  .product-price-current {
    font-size: 1.6rem;
  }
  
  .product-actions-section {
    flex-direction: column;
  }
  
  .quantity-selector {
    justify-content: center;
  }
  
  .product-detail-image-section {
    position: static;
  }
  
  .video-wrapper iframe {
    height: 300px;
  }
}

/* ========================================
   PÁGINA 404 - NÃO ENCONTRADO
   ======================================== */
.inner-banner._404-banner {
  background: linear-gradient(135deg, #f6fbe2 0%, #e8f5d6 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

._404-content-wrap {
  text-align: center;
  opacity: 1 !important;
}

._404-image {
  max-width: 500px;
  width: 100%;
  margin-bottom: 32px;
}

._404-details {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.primary-button._404-btn {
  background: linear-gradient(135deg, #A460ED 0%, #F07DEA 100%) !important;
  color: white !important;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.primary-button._404-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(24, 53, 6, 0.3);
}

.primary-button._404-btn .primary-button-text,
.primary-button._404-btn .primary-button-text-absolute {
  color: white !important;
}

@media (max-width: 768px) {
  ._404-image {
    max-width: 300px;
  }
  
  ._404-details {
    font-size: 16px;
    padding: 0 20px;
  }
}

/* ========================================
   SEJA CONSULTOR PAGE
   ======================================== */
.consultor-banner-wrap {
  background: url('/images/consultor-banner.png') center/cover no-repeat;
  border-radius: 2rem;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.consultor-banner-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 53, 6, 0.85) 0%, rgba(45, 90, 15, 0.75) 50%, rgba(24, 53, 6, 0.85) 100%);
}
.consultor-banner-wrap .inner-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: consultorFadeIn 0.8s ease forwards;
}
@keyframes consultorFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.consultor-banner-wrap .inner-banner-details {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.path-section {
  padding: 80px 0;
  background: #f8f8f8;
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.path-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.6);
  opacity: 0;
  transform: translateY(20px);
  animation: consultorFadeIn 0.6s ease forwards;
}
.path-card:nth-child(1) {
  animation-delay: 0.1s;
}
.path-card:nth-child(2) {
  animation-delay: 0.2s;
}
.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.path-card.afiliado,
.path-card.consultor {
  border-top: none;
}
.path-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.path-card.afiliado .path-badge {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: white;
}
.path-card.consultor .path-badge {
  background: linear-gradient(135deg, #A460ED, #F07DEA);
  color: white;
}
.path-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.path-card .tagline {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.commission-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8f8f8;
  padding: 1.25rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
.commission-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #A460ED;
}
.commission-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #444;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}
.benefits-list li:last-child {
  border-bottom: none;
}
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}
.path-card .path-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.path-card.afiliado .path-button {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: white;
}
.path-card.consultor .path-button {
  background: linear-gradient(135deg, #A460ED, #F07DEA);
  color: white;
}
.path-button:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.target-section {
  padding: 80px 0;
  background: white;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.target-card {
  text-align: center;
}
.target-card h4 {
  font-size: 1.25rem;
  color: #A460ED;
  margin-bottom: 1rem;
  font-weight: 600;
}
.target-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.target-list li {
  padding: 0.5rem 0;
  color: #666;
  font-size: 0.95rem;
}
.journey-section-consultor {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}
.journey-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.journey-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.journey-option {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.journey-option h5 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.journey-option p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.journey-option a {
  color: #A460ED;
  font-weight: 600;
  text-decoration: none;
}
.journey-option a:hover {
  text-decoration: underline;
}
.cta-consultor-section {
  background: #f8f8f8;
}
.cta-consultor-wrap {
  background: linear-gradient(135deg, #A460ED 0%, #F07DEA 50%, #A460ED 100%);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-consultor-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/Ingredients-Bg.png') center/cover no-repeat;
  opacity: 0.1;
}
.cta-consultor-wrap h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.cta-consultor-wrap p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-consultor-wrap .primary-button {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.requirements-section {
  padding: 60px 0;
  background: #fff;
}
.requirements-content {
  max-width: 800px;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 1rem;
  padding: 2.5rem;
}
.requirements-content h4 {
  color: #A460ED;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #444;
  font-size: 0.95rem;
}
.requirements-list li::before {
  content: '◆';
  color: #A460ED;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .path-grid,
  .target-grid,
  .journey-options {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .consultor-banner-wrap {
    padding: 3rem 1.5rem;
  }
  .consultor-banner-wrap .inner-banner-title {
    font-size: 2.5rem;
  }
  .path-card {
    padding: 2rem;
  }
  .cta-consultor-wrap {
    padding: 3rem 1.5rem;
  }
  .cta-consultor-wrap h2 {
    font-size: 2rem;
  }
}

/* ========================================
   LANGUAGE SELECTOR / TRANSLATOR
   ======================================== */
.lang-selector-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 8px;
  z-index: 1001;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid rgba(26, 58, 26, 0.15);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s ease;
  color: #1a3a1a;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.lang-selector-btn:hover {
  background: rgba(26, 58, 26, 0.06);
  border-color: rgba(26, 58, 26, 0.3);
}

.lang-selector-btn .lang-flag {
  font-size: 20px;
  line-height: 1;
}

.lang-selector-btn .lang-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
  color: #666;
}

.lang-selector-btn.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 9999;
  overflow: hidden;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 14px;
  color: #333;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.lang-dropdown-item:hover {
  background: rgba(26, 58, 26, 0.06);
}

.lang-dropdown-item.active {
  background: rgba(26, 58, 26, 0.08);
  font-weight: 600;
  color: #183506;
}

.lang-dropdown-item .lang-item-flag {
  font-size: 20px;
  line-height: 1;
}

.lang-dropdown-item .lang-item-name {
  flex: 1;
}

.lang-dropdown-item .lang-item-check {
  font-size: 14px;
  color: #183506;
}

.lang-translating-indicator {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #183506;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  align-items: center;
  gap: 8px;
}

.lang-translating-indicator.visible {
  display: flex;
}

.lang-translating-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lang-spin 0.6s linear infinite;
}

@keyframes lang-spin {
  to { transform: rotate(360deg); }
}

@media screen and (max-width: 767px) {
  .lang-selector-wrap {
    margin-left: 4px;
  }
  .lang-selector-btn {
    padding: 5px 8px;
  }
  .lang-selector-btn .lang-arrow {
    display: none;
  }
  .lang-dropdown {
    right: -10px;
    min-width: 160px;
  }
}

.banner-bottom-detail-title {
  color: var(--primary-colors--green) !important;
}

.banner-bottom-details {
  color: var(--primary-colors--green) !important;
  opacity: 0.8;
}

.future-card-three-content-wrap {
  min-height: 30% !important;
  padding: 1.5rem 1.5rem !important;
}
