
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  
  --primary: #c6d400;
  --secondary: #e8ecb8;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #fff;
  --dark: #161616;
  
  
  --brand-primary: #5e584c; 
  --brand-secondary: #c6d400;
  
  --info-primary: #1aa9dc; 
  --info-secondary: #e4f7ff;
  
  --success-primary: #03a751;
  --success-secondary: #dafeeb;
  
  --danger-primary: #de3730;
  --danger-secondary: #ffeeec;
  
  --warning-primary: #b88600;
  --warning-secondary: #ffeed6;
  
  --custom-primary: #7f67be; 
  --custom-secondary: #eaddff;
  
  
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  
  
  --font-family-sans-serif: "Arial", sans-serif;
  --font-family-monospace: "Arial", sans-serif;

  
  --bg-color: #f5f5f5;
  --text-color: #333333;
  --text-muted: #666666;
  --border-color: #e0e0e0;
  --container-width: 1200px;
  --card-radius: 8px;
  --transition-speed: 0.3s;
}


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

body {
  font-family: var(--font-family-sans-serif);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select {
  font-family: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}


.text-center { text-align: center; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.flex-column { flex-direction: column; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.w-100 { width: 100%; }


.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  height: 380px;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: var(--white);
  border: none;
  font-size: 36px;
  line-height: 1;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  transition: background 0.2s;
}
.hero-prev { left: 12px; }
.hero-next { right: 12px; }
.hero-prev:hover, .hero-next:hover { background: rgba(0,0,0,0.6); }

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  padding: 0;
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.25);
}


.drivers-bar {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
}

.drivers-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.driver-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-right: 1px solid var(--border-color);
}

.driver-item:last-child {
  border-right: none;
}

.driver-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.driver-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.driver-text strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-dark);
}

.driver-text span {
  font-size: 11px;
  color: var(--gray);
}


.banners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px auto;
}

.banner-item {
  border-radius: 8px;
  overflow: hidden;
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.banner-item:hover img {
  transform: scale(1.02);
}


.full-banner {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
}

.full-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}


.cat-thumb {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.cat-icon {
  font-size: 20px;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}


.footer-banner-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-banner-lock {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-banner-inner strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.footer-banner-inner span {
  font-size: 13px;
  opacity: 0.8;
}


.header-top-bar {
  display: flex;
  height: 5px;
  width: 100%;
  overflow: hidden;
}
.header-top-bar .bar-red    { background-color: #de3730; flex: 1; }
.header-top-bar .bar-orange { background-color: #b88600; flex: 1; }
.header-top-bar .bar-yellow { background-color: #ffc107; flex: 1; }
.header-top-bar .bar-green  { background-color: #03a751; flex: 1; }
.header-top-bar .bar-blue   { background-color: #1aa9dc; flex: 1; }
.header-top-bar .bar-purple { background-color: #7f67be; flex: 1; }


.main-header {
  background-color: var(--brand-primary); 
  color: var(--white);
  padding: 12px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container .logo-header {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-ingresar {
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  transition: background-color 0.2s;
}

.link-ingresar:hover {
  background-color: rgba(255,255,255,0.12);
  text-decoration: none;
}


.header-search-container {
  flex: 1;
  max-width: 440px;
  position: relative;
  margin: 0 20px;
}

.header-search-input {
  width: 100%;
  padding: 9px 42px 9px 16px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  background: #fff;
  color: #333;
}

.header-search-input::placeholder { color: #aaa; }

.header-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  background: var(--info-primary);
  border: none;
  border-radius: 0 4px 4px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.header-search-btn:hover { background: #158ebc; }


.btn-beneficios {
  background: var(--info-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}
.btn-beneficios:hover { background: #158ebc; }


.nav-link {
  font-size: 13px;
  color: var(--gray-dark);
  font-weight: 500;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--info-primary);
  border-bottom-color: var(--info-primary);
}


.nav-link--right {
  margin-left: auto;
  color: var(--gray-dark);
  font-weight: 600;
}


.nav-search-bar {
  background-color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 12px;
}


.category-menu {
  position: relative;
  flex-shrink: 0;
}

.category-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-dark);
  white-space: nowrap;
  transition: border-color 0.2s;
}

.category-toggle:hover {
  border-color: var(--info-primary);
  color: var(--info-primary);
}

.category-toggle span {
  font-size: 10px;
  color: var(--gray);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  min-width: 260px;
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid #f3f3f3;
  color: var(--text-color);
  font-size: 13px;
  transition: background-color 0.15s;
}

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

.dropdown-item:hover {
  background-color: var(--info-secondary);
  color: var(--info-primary);
}


.search-container {
  flex-grow: 1;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 9px 44px 9px 18px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  outline: none;
  font-size: 14px;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input::placeholder {
  color: var(--gray);
}

.search-input:focus {
  border-color: var(--info-primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(26,169,220,0.15);
}

.search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--info-primary);
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}


.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-primary);
}

.section-title h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-dark);
  letter-spacing: -0.01em;
}

.ver-todo {
  color: var(--info-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.ver-todo:hover {
  border-color: var(--info-primary);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}


.product-card {
  background-color: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 12px;
  transition: box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.11);
  transform: translateY(-2px);
}


.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--custom-primary);
  color: var(--white);
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 700;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 2;
  line-height: 1.6;
}


.product-image {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin: 18px 0 10px;  
  transition: opacity 0.2s;
}

.product-card:hover .product-image {
  opacity: 0.92;
}


.product-price-old {
  font-size: 11px;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 2px;
  min-height: 16px; 
}


.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}

.product-price-new {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.product-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--success-primary);
  background-color: var(--success-secondary);
  padding: 2px 5px;
  border-radius: 3px;
}


.product-installments {
  font-size: 11px;
  color: var(--success-primary);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}


.product-shipping {
  font-size: 11px;
  font-weight: 700;
  color: var(--success-primary);
  margin-bottom: 6px;
  min-height: 16px;
}


.product-name {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 4px;
  flex-grow: 1;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.product-vendor {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

.product-vendor strong {
  color: var(--info-primary);
  font-weight: 600;
}


.product-legal {
  font-size: 9px;
  color: #aaaaaa;
  margin-top: 3px;
  line-height: 1.2;
}


.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

.btn-primary {
  background-color: var(--info-primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #158ebc; 
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--info-primary);
  color: var(--info-primary);
}

.btn-outline:hover {
  background-color: var(--info-secondary);
}

.btn-block {
  display: block;
  width: 100%;
}


.btn-login {
  background-color: var(--custom-primary);
  color: var(--white);
  padding: 12px;
  border-radius: 4px;
  font-weight: bold;
  width: 100%;
  margin-top: 15px;
}

.btn-login:hover {
  background-color: #6a56a0; 
}


.newsletter-strip {
  background-color: #eeeeee; 
  padding: 0;
  margin-top: 0;
  border-top: none;
}

.newsletter-inner {
  display: flex;
  align-items: stretch;
  min-height: 180px;
  overflow: hidden;
}

.newsletter-img {
  width: 320px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.newsletter-content {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.newsletter-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--gray-dark);
  line-height: 1.35;
  max-width: 480px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  background: var(--white);
}

.newsletter-form input:focus {
  border-color: var(--info-primary);
}

.newsletter-form button {
  padding: 10px 24px;
  background-color: #b0b0b0;
  color: var(--white);
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background-color: var(--info-primary);
}


.main-footer {
  background-color: var(--brand-primary); 
  color: var(--white);
  padding: 36px 0 0;
  font-size: 13px;
}


.footer-top-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 1fr 1fr 220px;
  gap: 24px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s;
}

.social-icon:hover {
  background-color: var(--info-primary);
}


.footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--white);
}


.footer-oficial-box {
  background-color: #e8a020; 
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-oficial-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-oficial-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-oficial-header strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 3px;
}

.footer-oficial-header span {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
}

.btn-arrepentimiento {
  background-color: var(--info-primary);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
  display: block;
}

.btn-arrepentimiento:hover {
  background-color: #158ebc;
}


.footer-legal-text {
  padding: 20px 0 28px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.footer-legal-text p {
  margin-bottom: 10px;
}


.footer-derechos {
  color: var(--brand-secondary) !important; 
  font-weight: 600;
  margin-top: 6px;
}


.login-page {
  background-color: var(--white);
}

.login-container {
  display: flex;
  min-height: calc(100vh - 100px); 
}

.login-left {
  flex: 1;
  background-color: var(--bg-color); 
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-right {
  width: 450px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-box {
  width: 100%;
}

.login-header-link {
  color: var(--custom-primary);
  font-size: 13px;
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

.login-header-link:hover {
  text-decoration: underline;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  background-color: var(--white);
}

.form-control:focus {
  border-color: var(--custom-primary);
  outline: none;
}

.form-control-icon-right {
  position: relative;
}

.form-control-icon-right input {
  padding-right: 35px;
}

.form-control-icon-right .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  cursor: pointer;
}

.security-tips {
  text-align: center;
  margin-top: 20px;
}

.security-tips a {
  color: var(--custom-primary);
  font-size: 12px;
}


.breadcrumb {
  display: flex;
  gap: 5px;
  font-size: 12px;
  color: var(--gray);
  padding: 15px 0;
}

.breadcrumb a {
  color: var(--gray-dark);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
}

.product-left-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-right-col {
  position: relative;
  height: 100%;
}

.elite-sticky-box {
  position: sticky;
  top: 30px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-gallery-main {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-gallery-dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--custom-primary);
  transform: scale(1.2);
}

.elite-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-dark);
}
.trust-badge-item strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 2px;
}
.trust-badge-item p {
  margin: 0;
  font-size: 12px;
  color: var(--gray);
}

.ficha-tecnica {
  
}

.ficha-tecnica h3 {
  font-size: 18px;
  color: var(--gray-dark);
  margin-bottom: 15px;
}

.ficha-table {
  width: 100%;
  border-collapse: collapse;
}

.ficha-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
}

.ficha-table tr:nth-child(odd) {
  background-color: var(--bg-color);
}

.ficha-table td:first-child {
  font-weight: bold;
  width: 30%;
  color: var(--gray-dark);
}


.novedades-header {
  margin-bottom: 20px;
}

.novedades-header h1 {
  font-size: 20px;
  color: var(--gray-dark);
}

.novedades-count {
  font-size: 14px;
  color: var(--gray);
  margin-top: 5px;
}

.filter-bar {
  display: flex;
  background-color: var(--border-color);
  border-radius: var(--card-radius);
  margin-bottom: 20px;
  overflow: hidden;
}

.filter-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  background-color: transparent;
  font-weight: bold;
  color: var(--gray-dark);
  border-right: 1px solid var(--white);
}

.filter-btn:last-child {
  border-right: none;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.page-btn {
  padding: 8px 15px;
  border: 1px solid var(--info-primary);
  color: var(--info-primary);
  background-color: var(--white);
  border-radius: 4px;
}

.page-btn.active {
  background-color: var(--info-primary);
  color: var(--white);
}




.cabal-incentive-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(127, 103, 190, 0.1) 0%, rgba(26, 169, 220, 0.1) 100%);
  border: 1px solid rgba(127, 103, 190, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
  margin-right: auto;
}

.cabal-incentive-header:hover {
  background: linear-gradient(135deg, rgba(127, 103, 190, 0.2) 0%, rgba(26, 169, 220, 0.2) 100%);
  border-color: rgba(127, 103, 190, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(127, 103, 190, 0.15);
}

.cabal-icon {
  font-size: 14px;
}

.cabal-text {
  font-size: 12px;
  color: var(--brand-primary);
  font-weight: 500;
}

.cabal-text strong {
  color: var(--custom-primary);
  font-weight: 800;
}


.tooltip-wrapper {
  position: relative;
}

.tooltip-elite {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(127, 103, 190, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 11px;
  color: #333;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
}

.tooltip-elite::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(127, 103, 190, 0.2);
  border-left: 1px solid rgba(127, 103, 190, 0.2);
}

.tooltip-wrapper:hover .tooltip-elite {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


.elite-cabal-banner {
  background: linear-gradient(135deg, #fdfbf7 0%, #f4f0ff 100%);
  border: 1px solid #d4c4f3;
  border-left: 4px solid var(--custom-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(127, 103, 190, 0.08);
}

.elite-cabal-icon {
  font-size: 24px;
  line-height: 1;
}

.elite-cabal-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.elite-cabal-text strong {
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 800;
}

.elite-cabal-text span {
  font-size: 11px;
  color: #555;
  line-height: 1.3;
}


.elite-badge-cabal {
  background: linear-gradient(135deg, var(--custom-primary) 0%, #9b84d9 100%);
  box-shadow: 0 2px 6px rgba(127, 103, 190, 0.4);
  font-size: 10px;
  padding: 3px 8px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}


.elite-highlight {
  position: relative;
  display: inline-block;
  padding: 2px 6px;
  background: rgba(127, 103, 190, 0.1);
  border-radius: 4px;
  color: var(--custom-primary);
  font-weight: 700;
  border: 1px dashed rgba(127, 103, 190, 0.3);
}

.elite-product-highlight {
  font-size: 14px;
  color: var(--custom-primary);
  font-weight: 800;
  background: linear-gradient(to right, rgba(127, 103, 190, 0.1), transparent);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 4px;
  border-left: 3px solid var(--custom-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.elite-installment-detail {
  font-size: 12px;
  color: #666;
  margin-left: 12px;
}




.elite-cart-summary {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(127, 103, 190, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.elite-summary-title {
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--dark);
  font-weight: 800;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 12px;
}

.elite-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #555;
  font-size: 14px;
}

.elite-summary-discount {
  color: var(--success-primary);
  font-weight: 600;
}

.elite-summary-shipping {
  font-size: 13px;
}

.elite-summary-total {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px solid #f0f0f0;
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
}

.elite-btn-checkout {
  background: linear-gradient(135deg, var(--custom-primary) 0%, #6a56a0 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  border-radius: 8px;
  margin-top: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  display: block;
}

.elite-btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(127, 103, 190, 0.3);
  text-decoration: none;
}

.elite-summary-legal {
  margin-top: 20px;
  font-size: 11px;
  color: #888;
  text-align: center;
  background: #fcfaf7;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #f0ede6;
}


.elite-cart-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 20px;
  transition: background 0.2s;
}

.elite-cart-item:hover {
  background: #fafafa;
}

.elite-cart-img-box {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 5px;
  overflow: hidden;
}

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

.elite-cart-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.elite-cart-name {
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.4;
}

.elite-cart-cabal-tag {
  font-size: 11px;
  color: var(--custom-primary);
  background: rgba(127, 103, 190, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
  font-weight: 700;
}

.elite-cart-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.elite-qty-input {
  width: 65px;
  padding: 8px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.elite-qty-input:focus {
  border-color: var(--info-primary);
  box-shadow: 0 0 0 3px rgba(26, 169, 220, 0.15);
}

.elite-remove-btn {
  color: #ff4d4f;
  background: rgba(255, 77, 79, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.elite-remove-btn:hover {
  background: rgba(255, 77, 79, 0.2);
  transform: scale(1.1);
}

.elite-cart-price {
  width: 130px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.elite-price-old {
  font-size: 12px;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.elite-price-new {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}




.elite-toggle-container {
  display: flex;
  margin-bottom: 24px;
}

.elite-toggle {
  display: flex;
  background: #f0f0f0;
  border-radius: 30px;
  padding: 4px;
  position: relative;
  width: 100%;
}

.elite-toggle input[type="radio"] {
  display: none;
}

.elite-toggle label {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  border-radius: 26px;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 2;
}

.elite-toggle input[type="radio"]:checked + label {
  color: var(--custom-primary);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(127, 103, 190, 0.15);
}


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

.elite-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.elite-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--dark);
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.elite-input::placeholder {
  color: #bbb;
}

.elite-input:hover {
  border-color: #d0c2ee;
  background: var(--white);
}

.elite-input:focus {
  border-color: var(--custom-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(127, 103, 190, 0.15);
}

.elite-input-valid {
  border-color: var(--success-primary);
  background: var(--success-secondary);
}

.elite-input-invalid {
  border-color: var(--danger-primary);
  background: var(--danger-secondary);
}

.elite-input-invalid:focus {
  box-shadow: 0 0 0 4px rgba(222, 55, 48, 0.15);
}

.elite-error-msg {
  display: none;
  font-size: 12px;
  color: var(--danger-primary);
  margin-top: 6px;
  font-weight: 500;
  animation: eliteFadeIn 0.3s ease forwards;
}

@keyframes eliteFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}




.product-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
  padding: 8px;
  margin-bottom: 4px;
}

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


.card-input-wrapper {
  position: relative;
}

.card-input-wrapper .elite-input {
  padding-right: 58px; 
}

.card-brand-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card-brand-icon.visible {
  opacity: 1;
}

.card-brand-icon svg,
.card-brand-icon img {
  max-width: 100%;
  max-height: 100%;
}


.cabal-unlock-badge {
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(127, 103, 190, 0.12) 0%, rgba(26, 169, 220, 0.08) 100%);
  border: 1px solid rgba(127, 103, 190, 0.3);
  border-left: 4px solid var(--custom-primary);
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--custom-primary);
  font-weight: 700;
  animation: eliteFadeIn 0.4s ease forwards;
}

.cabal-unlock-badge.visible {
  display: flex;
}

.cabal-unlock-badge span {
  font-size: 18px;
}


.interest-notice {
  display: none;
  font-size: 11px;
  color: var(--warning-primary);
  margin-top: 6px;
  font-weight: 600;
  padding: 6px 10px;
  background: var(--warning-secondary);
  border-radius: 4px;
  border-left: 3px solid var(--warning-primary);
  animation: eliteFadeIn 0.3s ease forwards;
}

.interest-notice.visible {
  display: block;
}


.elite-btn-checkout {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.elite-btn-checkout.loading {
  pointer-events: none;
  opacity: 0.85;
  color: transparent !important;
}

.elite-btn-checkout.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

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


.guest-checkout-bar {
  background: linear-gradient(135deg, #fafafa, #f4f0ff);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.guest-checkout-bar p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

.guest-checkout-bar .guest-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-guest-login {
  font-size: 13px;
  font-weight: 700;
  color: var(--info-primary);
  padding: 8px 16px;
  border: 1.5px solid var(--info-primary);
  border-radius: 20px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-guest-login:hover {
  background: var(--info-primary);
  color: white;
}

.btn-guest-continue {
  font-size: 13px;
  font-weight: 700;
  color: var(--custom-primary);
  padding: 8px 16px;
  border: 1.5px solid var(--custom-primary);
  border-radius: 20px;
  transition: all 0.2s ease;
  cursor: pointer;
  background: none;
}

.btn-guest-continue:hover {
  background: var(--custom-primary);
  color: white;
}

.btn-guest-continue.active {
  background: var(--custom-primary);
  color: white;
}


.guest-optional .elite-label::after {
  content: ' (opcional)';
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
}


.checkout-summary-card {
  background: var(--white);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(127, 103, 190, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 20px;
}

.checkout-summary-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 12px;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
  color: #555;
}

.checkout-summary-row.total {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 2px solid #f0f0f0;
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
}

.checkout-summary-row.shipping {
  color: var(--success-primary);
  font-weight: 600;
  font-size: 13px;
}

.secure-badge {
  margin-top: 20px;
  text-align: center;
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #edf2f7;
}

.secure-badge p {
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
}


/* -- RESPONSIVE MOBILE -------------------------------------------------- */
@media (max-width: 768px) {
    .container { padding: 0 10px; }
    
    /* Header */
    .header-content { flex-direction: column; gap: 10px; padding: 10px 0; }
    .logo-header { height: 32px !important; }
    .header-search-container { width: 100% !important; order: 3; margin: 5px 0 !important; }
    .header-right { width: 100%; justify-content: space-between; order: 2; margin-bottom: 5px; }
    
    .nav-container { flex-wrap: wrap; gap: 8px; justify-content: space-between; }
    .cabal-incentive-header { display: none !important; }
    .nav-link--right { margin-left: 0; font-size: 14px; background: #f0f0f0; padding: 5px 12px; border-radius: 4px; }
    .category-toggle { padding: 6px 12px; font-size: 12px; }

    /* Hero */
    .hero-slider { height: 160px !important; }
    .hero-slide { background-size: cover; height: 160px !important; }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-bottom: 20px;
    }
    
    .product-card { padding: 8px; min-height: 320px; }
    .product-image { height: 120px !important; margin: 5px 0 !important; }
    .product-name { font-size: 11px !important; height: 3.5em; line-height: 1.2; }
    .product-price-new { font-size: 16px !important; }
    .product-installments { font-size: 10px !important; }
    .product-shipping { font-size: 10px !important; }

    /* Banners */
    .banners-row { grid-template-columns: 1fr !important; gap: 10px; }
    .banner-item img { border-radius: 8px; }

    /* Footer */
    .footer-top-row { grid-template-columns: 1fr !important; gap: 20px !important; text-align: center; }
    .footer-brand { align-items: center !important; margin-bottom: 15px; }
    .footer-oficial-box { margin: 0 auto; width: 100%; max-width: 320px; }
    .footer-column h4 { margin-bottom: 8px; font-size: 14px; }
    .footer-column ul li { margin-bottom: 5px; font-size: 12px; }
}
