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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
}

/* ========================================
HEADER TRANSPARENTE - SOLUCIÓN COMPLETA
======================================== */

/* Header en la parte superior (transparente con texto blanco) */
.site-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

/* Cuando hace scroll - Header fijo con fondo blanco */
.site-header--absolute.top-header-fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ========================================
TEXTO DEL NAVBAR
======================================== */

/* Texto blanco cuando está en la parte superior */
.site-header--absolute .nav-link,
.site-header--absolute .navbar-nav .nav-item>a,
.site-header--absolute .contact-header-btn,
.site-header--absolute .btn-header-lang {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

/* Hover en estado transparente */
.site-header--absolute .nav-link:hover,
.site-header--absolute .navbar-nav .nav-item>a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Texto oscuro cuando hace scroll (con fondo blanco) */
.site-header--absolute.top-header-fixed .nav-link,
.site-header--absolute.top-header-fixed .navbar-nav .nav-item>a,
.site-header--absolute.top-header-fixed .contact-header-btn,
.site-header--absolute.top-header-fixed .btn-header-lang {
  color: #2d3748 !important;
}

/* Hover en estado con scroll */
.site-header--absolute.top-header-fixed .nav-link:hover,
.site-header--absolute.top-header-fixed .navbar-nav .nav-item>a:hover {
  color: #667eea !important;
}

/* ========================================
ICONOS DEL HEADER
======================================== */

/* Iconos blancos en estado transparente */
.site-header--absolute .feather,
.site-header--absolute .fas,
.site-header--absolute .fal {
  color: #ffffff;
  transition: color 0.3s ease;
}

/* Iconos oscuros cuando hace scroll */
.site-header--absolute.top-header-fixed .feather,
.site-header--absolute.top-header-fixed .fas,
.site-header--absolute.top-header-fixed .fal {
  color: #2d3748;
}

/* ========================================
BOTONES DEL HEADER
======================================== */

/* Botón de Login en estado transparente */
.site-header--absolute .client-login-header-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.site-header--absolute .client-login-header-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Botón de Login cuando hace scroll */
.site-header--absolute.top-header-fixed .client-login-header-btn {
  background: #667eea;
  border: 2px solid #667eea;
  color: #ffffff !important;
}

.site-header--absolute.top-header-fixed .client-login-header-btn:hover {
  background: #5568d3;
  border-color: #5568d3;
}

/* ========================================
CARRITO DE COMPRAS
======================================== */

/* Carrito en estado transparente */
.site-header--absolute .shoping-cart-btn-header {
  color: #ffffff;
  transition: all 0.3s ease;
}

.site-header--absolute .shoping-cart-number {
  background: #ffffff;
  color: #667eea;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* Carrito cuando hace scroll */
.site-header--absolute.top-header-fixed .shoping-cart-btn-header {
  color: #2d3748;
}

.site-header--absolute.top-header-fixed .shoping-cart-number {
  background: #667eea;
  color: #ffffff;
}

/* ========================================
DROPDOWN DE IDIOMA
======================================== */

/* Contenedor del dropdown */
.site-header--absolute .header-lang {
  display: flex;
  align-items: center;
}

/* Selector de idioma en estado transparente */
.site-header--absolute .btn-header-lang {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
  text-decoration: none;
}

.site-header--absolute .btn-header-lang:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* Selector de idioma cuando hace scroll */
.site-header--absolute.top-header-fixed .btn-header-lang {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
}

.site-header--absolute.top-header-fixed .btn-header-lang:hover {
  background: #edf2f7;
}

/* Texto dentro del selector de idioma */
.site-header--absolute .btn-header-lang span,
.site-header--absolute .btn-header-lang small {
  line-height: 1;
  vertical-align: middle;
}

/* Icono de globo */
.site-header--absolute .btn-header-lang .icon-globe {
  font-size: 16px;
  line-height: 1;
}

/* ========================================
HAMBURGER MENU (MOBILE)
======================================== */

/* Hamburger blanco en estado transparente */
.site-header--absolute .hamburger-icon .feather {
  color: #ffffff;
}

/* Hamburger oscuro cuando hace scroll */
.site-header--absolute.top-header-fixed .hamburger-icon .feather {
  color: #2d3748;
}

/* ========================================
LOGO
======================================== */

/* Si tienes logo con versión oscura/clara */

@media (max-width: 768px) {
  .site-header--absolute .light-version-logo.scroll {
    display: none !important;
  }

  .top-header-fixed .light-version-logo {
    display: none !important;
  }
  
  .site-header--absolute .dark-version-logo {
    display: none !important;
  }
}

/* ========================================
DROPDOWN MENU
======================================== */

/* Dropdown siempre con fondo blanco */
.site-header--absolute .dropdown-menu {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.site-header--absolute .dropdown-item {
  color: #2d3748;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

/* Dropdown menu items */
.coodiv-menu-dropdown .drop-menu-item {
  transition: all 0.3s ease;
}

.coodiv-menu-dropdown .drop-menu-item:hover {
  background: rgba(15, 15, 15, 0.15);
}

/* Links dentro del dropdown */
.coodiv-menu-dropdown .drop-menu-item a {
  display: block;
  transition: all 0.3s ease;
  color: #2d3748;
}

.coodiv-menu-dropdown .drop-menu-item:hover a {
  padding-left: 26px; /* 20px + 6px de desplazamiento */
  color: #667eea;
}

/* Alternativa más suave */
.coodiv-menu-dropdown .drop-menu-item a {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #2d3748;
  position: relative;
}

.coodiv-menu-dropdown .drop-menu-item:hover a {
  transform: translateX(6px);
  color: #667eea;
}

/* Opcional: Icono decorativo que aparece */
.coodiv-menu-dropdown .drop-menu-item a::before {
  content: '→';
  position: absolute;
  left: 8px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #667eea;
}

.coodiv-menu-dropdown .drop-menu-item:hover a::before {
  opacity: 1;
  left: 12px;
}

/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 991px) {

  /* Mobile menu con fondo */
  .site-header--absolute .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  /* Texto oscuro en mobile menu */
  .site-header--absolute .navbar-collapse .nav-link,
  .site-header--absolute .navbar-collapse .navbar-nav .nav-item>a {
    color: #2d3748 !important;
  }
}

/* ========================================
ANIMACIONES ADICIONALES
======================================== */

/* Smooth scroll para el header */
html {
  scroll-behavior: smooth;
}

/* Efecto de aparición del header */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-header--absolute.top-header-fixed {
  animation: slideDown 0.3s ease-out;
}

/* ========================================
SEPARADOR VISUAL (opcional)
======================================== */

/* Línea sutil debajo del header cuando hace scroll */
.site-header--absolute.top-header-fixed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* Hero Container */
.hero-area-header-banner-image {
  position: relative;
  background: linear-gradient(135deg, rgb(16 7 100) 0%, rgb(56 8 247 / 53%) 100%);
  overflow: hidden;
}

@media(min-width: 768px){
  .light-version-logo{
  display: none!important;
}
.light-version-logo.scroll{
  display: block!important;
}
.top-header-fixed .light-version-logo.scroll{
  display: none!important;
}
.top-header-fixed .light-version-logo{
  display: block!important;
}
}

/* Overlay oscuro mejorado */
.hero-area-header-banner-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(16 7 100) 0%, rgb(56 8 247 / 53%) 100%);
  z-index: 1;
}

/* Patrón de fondo animado */


@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Partículas flotantes */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.5;
  animation: float 20s infinite ease-in-out;
  filter: grayscale(1);
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 6%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 20%;
  right: 51%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  bottom: 62%;
  left: 26%;
  animation-delay: 4s;
}

.floating-icon:nth-child(4) {
  bottom: 15%;
  right: 2%;
  animation-delay: 6s;
}
.floating-icon:nth-child(5) {
  bottom: 40%;
  left: 80%;
  animation-delay: 6s;
}
.floating-icon:nth-child(6) {
  bottom: 25%;
  right: 40%;
  animation-delay: 6s;
}
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  50% {
    transform: translateY(0px) rotate(0deg);
  }

  75% {
    transform: translateY(20px) rotate(-5deg);
  }
}

.h-100vh{
  height: 100vh;
}
/* Content Container */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
}

/* Título principal mejorado */
.coodiv-cloud-hero-title {
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coodiv-cloud-hero-title span {
  display: block;
  animation: slideInLeft 1s ease-out;
}

.coodiv-cloud-hero-title .sub-text {
  background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 10px;
}

.coodiv-cloud-hero-title .sub-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff, transparent);
  animation: lineExpand 1.5s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineExpand {
  from {
    width: 0;
  }

  to {
    width: 100px;
  }
}

/* Subtítulo */
h4.coodiv-text-8 {
  font-size: 0.95rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

/* Descripción */
.hero-content p.coodiv-text-8 {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out 0.6s backwards;
  max-width: 600px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botones mejorados */
.hero-btns {
  animation: fadeIn 1s ease-out 0.9s backwards;
}

.btn-purple {
  background: #ffffff;
  color: #667eea;
  border: none;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-purple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #5568d3;
}

.btn-purple:hover::before {
  width: 300px;
  height: 300px;
}

/* Texto secundario */
.hero-btns p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.hero-btns .alert-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.hero-btns .alert-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* Imagen hero mejorada */
.hero-image-container {
  position: relative;
  animation: fadeInRight 1.2s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-container img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Efectos de glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 991px) {
  .coodiv-cloud-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-content-wrapper {
    padding: 80px 0 60px;
    text-align: center;
  }

  .coodiv-cloud-hero-title .sub-text::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-content p.coodiv-text-8 {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .btn-purple {
    padding: 15px 35px;
    font-size: 1rem;
  }

  h4.coodiv-text-8 {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .coodiv-cloud-hero-title span.sub-text:before {
    display: none;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: '↓';
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.contenedor-slider .slider .logos {

  margin: 15px;
}

body.using-emyui-cart-aws .order-form-menu-scroller .nav .nav-link.active{
  color: #673de6!important;
  border-bottom: 3px solid #673de6!important;
}


.view-invoice-page-sidebar-actions .download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 24px;
    background: linear-gradient(135deg, #834ce4 0%, #925fe9 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(119, 47, 214, 0.3);
}

.view-invoice-page-sidebar-actions .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(122, 53, 248, 0.4);
}

.view-invoice-page-sidebar-actions .download-btn i {
    font-size: 32px;
    padding: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown.user-dropdown-header .account.dropdown .nav-link{
  color: #ffffff;
}

.woot-widget-bubble {
  background: #1f93ff;
  border-radius: 100px;
  border-width: 0px;
  bottom: 80px!important;

}

.register-area-box-checkout {
  border: 1px solid #63f3ab; 
  padding: 50px 20px 20px;
  border-radius: 15px;
  margin-bottom: 65px;
  background: #f1fff4; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
}

.checkout-page-account-select {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 16px rgba(0, 0, 0, 0.05);
  padding: 20px;
  background: #FFFFFF; 
  cursor: pointer;
}

button#btnCompleteOrder {
  padding: 2rem 3rem;
  border-radius: 50px !important;
  width: 80%;
  background-color: #68d585; 
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

button#btnCompleteOrder:hover {
  background-color: #5bbd76; 
  box-shadow: 0 6px 15px rgba(104, 213, 133, 0.4); 
  transform: translateY(-2px); 
}
#order-standard_cart .field-icon i {
  color: #161616;
}

/* --- 1. ESTILOS BASE DEL SWITCH (WRAPPER) --- */
/* 1. Contenedor Principal: Lo hacemos redondo y quitamos bordes toscos */
.bootstrap-switch {
  border-radius: 30px !important;
  border: 1px solid #dcdcdc !important; /* Borde gris suave */
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Sombra interna para profundidad */
  margin-bottom: 5px; /* Pequeño espaciado si hay varios */
}

/* 2. Aseguramos que el contenedor interno respete la redondez */
.bootstrap-switch .bootstrap-switch-container {
  border-radius: 30px !important;
}

/* 3. Estilo del botón "SI" (ON) - Verde moderno */
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {
  background-color: #10b981 !important; /* Verde esmeralda vibrante */
  color: white !important;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  border-top-left-radius: 28px !important;
  border-bottom-left-radius: 28px !important;
}

/* 4. Estilo del botón "NO" (OFF) - Gris neutro */
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-secondary {
  background-color: #f3f4f6 !important; /* Gris muy claro */
  color: #6b7280 !important; /* Texto gris oscuro para contraste */
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  border-top-right-radius: 28px !important;
  border-bottom-right-radius: 28px !important;
}

/* 5. El separador central (opcional, lo hacemos blanco limpio) */
.bootstrap-switch .bootstrap-switch-label {
  background-color: #ffffff !important;
  box-shadow: -1px 0 2px rgba(0,0,0,0.05); /* Separación visual sutil */
}

/* 6. Efecto al pasar el mouse por encima (Hover) */
.bootstrap-switch:hover {
  border-color: #10b981 !important; /* El borde cambia al color activo */
  cursor: pointer;
}