/* =====================================================
   Laboratorio Creciendo Juntos – Hoja de estilos
   Objetivo: modernizar home.php (hero, productos, categorias)
   ===================================================== */

:root{
  --primary: #274F9B;
  --secondary: #41A22E;
  --accent: #e74c3c;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --light: #f3f4f6;
  --border: #e6e7ea;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 18px rgba(16,24,40,.06);
  --shadow-md: 0 10px 30px rgba(16,24,40,.08);
  --transition: all .22s cubic-bezier(.2,.8,.2,1);
}

/* Reset / base */
*{box-sizing:border-box}
html,body{height:100%}
body{font-family:Inter,Segoe UI,Arial,sans-serif;color:var(--text);background:var(--white);font-size:16px;line-height:1.5}
img{max-width:100%;display:block}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1200px;margin:0 auto;padding:0 16px}

/* Header compacto */
.clean-header{position:sticky;top:0;z-index:1000;background:var(--white);border-bottom:1px solid var(--border);box-shadow:var(--shadow-sm)}
.clean-header .container{padding:14px 16px;display:flex;align-items:center;justify-content:space-between}
.navbar-brand-clean{display:inline-flex;align-items:center;gap:.6rem;font-weight:800;font-size:18px;color:var(--primary)}
.navbar-brand-clean img{height:44px}
.navbar-nav-clean{display:flex;gap:.5rem;align-items:center}
.nav-link-clean{padding:.45rem .75rem;border-radius:8px;color:var(--text);font-weight:600}
.nav-link-clean:hover{background:var(--light);color:var(--primary)}
.whatsapp-btn{background:#25d366;color:#fff;padding:.45rem .75rem;border-radius:8px;font-weight:700}

/* Hero */
.hero-section{background:linear-gradient(135deg,var(--primary),var(--secondary));color:#fff;padding:56px 0}
.hero-section .row{align-items:center}
.hero-title{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;margin-bottom:.6rem}
.hero-subtitle{font-size:1.05rem;opacity:.95;margin-bottom:1.1rem}
.hero-cta{display:inline-block;background:#fff;color:var(--primary);padding:.85rem 1.25rem;border-radius:999px;font-weight:800;box-shadow:var(--shadow-md)}
.hero-cta:hover{transform:translateY(-3px)}

/* Section general */
.section-modern{padding:48px 0}
.section-title{text-align:center;font-weight:800;font-size:clamp(1.3rem,3vw,1.8rem);margin-bottom:.35rem}
.section-subtitle{text-align:center;color:var(--muted);max-width:720px;margin:0 auto 1.6rem}

/* Product grid optimizado para pocos productos */
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media(max-width:992px){.product-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:576px){.product-grid{grid-template-columns:1fr}}

.product-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;box-shadow:var(--shadow-sm);transition:var(--transition)}
.product-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-md)}
.product-image{width:100%;aspect-ratio:4/3;object-fit:cover;background:var(--light);border-bottom:1px solid var(--border)}
.product-content{padding:16px;display:flex;flex-direction:column;gap:.55rem;flex:1}
.product-title{font-size:1.02rem;font-weight:700;margin:0}
.product-description{color:var(--muted);font-size:.95rem;flex:1}
.price{display:flex;align-items:baseline;gap:.6rem}
.price-current{color:var(--secondary);font-weight:800;font-size:1.1rem}
.price-old{text-decoration:line-through;color:var(--muted);font-size:.95rem}
.product-btn{background:var(--primary);color:#fff;padding:.65rem 1rem;border-radius:8px;text-align:center;font-weight:700}
.product-btn:hover{background:var(--secondary)}
.discount-badge{position:absolute;top:12px;left:12px;background:var(--accent);color:#fff;padding:6px 8px;border-radius:6px;font-weight:800;font-size:.8rem}

/* Features */
.features-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media(max-width:992px){.features-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:576px){.features-grid{grid-template-columns:1fr}}
.feature-item{background:var(--white);border:1px solid var(--border);padding:18px;border-radius:12px;text-align:center;box-shadow:var(--shadow-sm)}
.feature-icon{width:56px;height:56px;margin:0 auto 8px;border-radius:50%;display:grid;place-items:center;background:var(--light);font-size:1.3rem;color:var(--primary)}
.feature-title{font-weight:800;margin-bottom:6px}
.feature-description{color:var(--muted);font-size:.95rem}

/* Footer */
.footer-modern{background:#0b1220;color:#cbd5e1;padding:28px 0;}
.footer-content{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
@media(max-width:768px){.footer-content{grid-template-columns:1fr}}
.footer-bottom{text-align:center;color:#94a3b8;padding-top:12px;border-top:1px solid rgba(255,255,255,.04)}

/* Footer particles styles (matches app/Views/particles/footer.php) */
.footer-pattern{padding:28px 0 0}
.footer-top{padding-bottom:22px}
.footer-section{color:var(--white)}
.footer-logo img{max-height:72px}
.footer-description{color:rgba(255,255,255,0.85);max-width:360px}
.social-links{margin-top:8px}
.social-title{font-weight:800;color:var(--white);margin-bottom:8px}
.social-icons{display:flex;gap:8px}
.social-icon{display:inline-grid;place-items:center;width:40px;height:40px;border-radius:8px;background:rgba(255,255,255,0.06);color:#fff}
.social-icon i{font-size:18px}

.footer-title{font-weight:800;color:var(--white);margin-bottom:10px}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:8px}
.footer-links li a{color:rgba(255,255,255,0.9);text-decoration:none}
.footer-links li a:hover{text-decoration:underline;color:var(--secondary)}

.contact-info{display:flex;flex-direction:column;gap:10px}
.contact-item{display:flex;gap:10px;align-items:flex-start;color:rgba(255,255,255,0.95)}
.contact-item i{font-size:18px;color:var(--secondary);min-width:28px}
.contact-item a{color:rgba(255,255,255,0.95);text-decoration:none}
.contact-item a:hover{text-decoration:underline}

.newsletter-section{border-top:1px solid rgba(255,255,255,0.03);padding-top:18px;margin-top:18px}
.newsletter-title{font-size:1.15rem;color:var(--white);margin-bottom:6px}
.newsletter-subtitle{color:rgba(255,255,255,0.85);margin-bottom:0}
.newsletter-form .input-group{display:flex;gap:8px;max-width:520px}
.newsletter-form .form-control{flex:1;padding:.7rem;border-radius:8px;border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.03);color:#fff}
.btn-primary-modern{background:var(--secondary);border:none;color:#fff;padding:.6rem .9rem;border-radius:10px;display:inline-flex;align-items:center;gap:.5rem}
.btn-primary-modern:hover{background:#2f9b28}

.footer-bottom{padding-top:14px;border-top:1px solid rgba(255,255,255,0.03);color:rgba(255,255,255,0.7)}
.payment-methods{display:flex;align-items:center;justify-content:flex-end;gap:12px}
.payment-text{color:rgba(255,255,255,0.8);margin-right:8px}
.payment-icons{display:flex;gap:8px;align-items:center}
.payment-icon{height:28px;opacity:.95}

/* WhatsApp float button */
.whatsapp-float{position:fixed;right:18px;bottom:80px;z-index:1200}
.whatsapp-float .whatsapp-btn{display:flex;align-items:center;gap:8px;background:linear-gradient(90deg,#25d366,#1ebe5b);color:#fff;padding:12px 14px;border-radius:999px;box-shadow:var(--shadow-md);text-decoration:none}
.whatsapp-float .whatsapp-btn .whatsapp-text{display:inline-block}
@media(max-width:576px){.whatsapp-float{right:14px;bottom:70px}.whatsapp-float .whatsapp-text{display:none}}

/* Back to top */
.back-to-top{position:fixed;right:18px;bottom:18px;width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:rgba(11,18,32,0.9);color:#fff;border:none;cursor:pointer;opacity:0;pointer-events:none;transition:all .22s}
.back-to-top.show{opacity:1;pointer-events:auto;transform:translateY(-6px)}
.back-to-top i{font-size:18px}

/* Header moderno */
.site-header{background:transparent}
.header-top{background:transparent;border-bottom:1px solid rgba(0,0,0,0.04)}
.header-top .text-muted{color:rgba(15,23,42,0.7)}
.header-main{background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.98));box-shadow:0 6px 18px rgba(15,23,42,0.06);border-bottom:1px solid var(--border)}
.header-main .brand img{height:56px}
.logo-wrap .btn-menu{background:transparent;border:1px solid rgba(0,0,0,0.06);padding:10px;border-radius:10px}
.icon-btn{display:inline-grid;place-items:center;width:44px;height:44px;border-radius:10px;background:transparent;border:none;color:var(--text)}
.search-wrap .search-input{border-radius:999px 0 0 999px;border:1px solid var(--border);padding:.6rem .9rem}
.search-wrap .btn-search{background:var(--primary);color:#fff;border-radius:0 999px 999px 0;border:none;padding:.5rem .9rem}
.header-actions .cart-btn{position:relative;background:transparent;border:none;color:var(--text)}
.cart-badge{position:absolute;top:-6px;right:-6px;background:var(--accent);color:#fff;border-radius:999px;padding:2px 6px;font-size:12px}

/* Offcanvas personalizado */
.offcanvas-custom{z-index:1200}
.offcanvas-custom .offcanvas-backdrop{position:fixed;inset:0;background:rgba(0,0,0,0.45)}
.offcanvas-custom .offcanvas-body{position:fixed;left:0;top:0;bottom:0;width:320px;background:var(--primary);color:#fff;padding:18px;display:flex;flex-direction:column}
.offcanvas-custom .btn-close-white{background:transparent;border:1px solid rgba(255,255,255,0.12);color:#fff;border-radius:8px}
.offcanvas-nav ul{padding:0;margin:0}
.offcanvas-nav li a{color:#fff;padding:12px 8px;display:block;border-radius:8px}
.offcanvas-nav li a:hover{background:rgba(255,255,255,0.06)}
.offcanvas-footer .social-icon{width:40px;height:40px;display:grid;place-items:center}

@media(max-width:768px){
  .search-wrap{display:none}
  .header-main .brand img{height:46px}
}

/* Header expandido y llamativo */
.site-header-expanded{background:linear-gradient(180deg, #ffffff, #f8fafc);box-shadow:0 8px 30px rgba(15,23,42,0.06)}
.header-topbar{background:linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.0));border-bottom:1px solid rgba(0,0,0,0.04)}
.header-main-expanded{background:transparent}
.brand-logo{height:84px}
.main-nav .nav-list{list-style:none;padding:0;margin:0}

.main-nav .nav-item {display:inline-block;border-radius:10px;font-weight:800;color:var(--primary);background:transparent}
.main-nav .nav-item:hover{background:linear-gradient(90deg, rgba(39,79,155,0.08), rgba(65,162,46,0.06));transform:translateY(-2px)}
.search-form-large .search-input-lg{border-radius:999px 0 0 999px;padding:16px 18px;font-size:1.05rem;border:1px solid var(--border)}
.search-form-large .search-btn{border-radius:0 999px 999px 0;padding:16px 22px}
.actions .btn-lg{padding:10px 18px;font-weight:800}

/* Mobile behavior: hide large nav and show mobile menu */
@media(max-width:992px){
  .main-nav{display:none}
  .center-search{display:none}
  .brand-logo{height:56px}
}



/* Utilities */
.text-primary{color:var(--primary)!important}
.text-muted{color:var(--muted)!important}
.bg-light-modern{background:var(--light)!important}
.rounded{border-radius:8px}
.mt-3{margin-top:12px}.mt-4{margin-top:18px}.mb-3{margin-bottom:12px}
.text-center{text-align:center}
.d-flex{display:flex}
.justify-content-between{justify-content:space-between}
.align-items-center{align-items:center}

/* End */
._rsi-quantity-offers-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
._rsi-quantity-offers-new-price {
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}
._rsi-build-block ._rsi-modal-checkout-lines {
  border-top: 0;
  padding: 8px 12px 5px;
  background-color: #ebebeb;
  border-radius: 6px;
}
._rsi-modal-checkout-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
._rsi-modal-checkout-line-value {
  font-size: 1.50em;
  font-weight: 700;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
}
._rsi-quantity-offers>.active {
  background: #c8ff87;
}

/* =====================================================
   TIENDAS - Diseño Moderno y Mejorado
   ===================================================== */

/* Header de tiendas */
.stores-header-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #28a745 100%);
  color: white;
  padding: 60px 0 40px;
  margin-top: -20px;
  margin-bottom: 40px;
}

.stores-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.stores-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
  max-width: 600px;
}

.stores-stats {
  font-size: 0.95rem;
}

/* Filtros y búsqueda para tiendas */
.stores-filters-section {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  margin-bottom: 40px;
}

.stores-filters {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* Cards de tiendas modernas */
.store-card-modern {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.store-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
}

.store-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.store-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.store-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-card-modern:hover .store-image {
  transform: scale(1.05);
}

.store-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(40, 167, 69, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.store-card-modern:hover .store-overlay {
  opacity: 1;
}

.store-status {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.store-status .badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.store-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.store-category {
  margin-bottom: 8px;
}

.store-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text);
}

.store-title a {
  color: inherit;
}

.store-location {
  margin-bottom: 16px;
}

.store-info {
  margin-bottom: 16px;
}

.info-item {
  text-align: center;
  padding: 8px;
  background: var(--light);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.info-item:hover {
  background: #e8f5e8;
  transform: translateY(-2px);
}

.info-item i {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.store-actions {
  margin-top: auto;
}

.get-directions-btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.get-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Vista de lista para tiendas */
.stores-list-view .store-card-modern {
  flex-direction: row;
  height: auto;
  max-height: 200px;
}

.stores-list-view .store-image-container {
  flex: 0 0 200px;
  aspect-ratio: 1;
}

.stores-list-view .store-content {
  flex: 1;
  padding: 24px;
}

.stores-list-view .store-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Responsive para tiendas */
@media (max-width: 768px) {
  .stores-header-section {
    padding: 40px 0 30px;
    text-align: center;
  }

  .stores-filters {
    padding: 20px;
  }

  .stores-filters-section {
    padding: 20px 0;
  }

  .store-card-modern {
    margin-bottom: 20px;
  }

  .pagination-container {
    padding: 20px;
  }

  .pagination-container .row {
    text-align: center;
  }

  .pagination-container .col-md-6:first-child {
    margin-bottom: 16px;
  }

  .stores-list-view .store-card-modern {
    flex-direction: column;
    max-height: none;
  }

  .stores-list-view .store-image-container {
    flex: none;
    aspect-ratio: 4/3;
  }

  .store-actions .row {
    --bs-gutter-x: 0.5rem;
  }

  .store-actions .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 576px) {
  .stores-title {
    font-size: 2rem;
  }

  .store-content {
    padding: 16px;
  }

  .store-title {
    font-size: 1rem;
  }

  .store-info .row {
    --bs-gutter-x: 0.25rem;
  }
}

/* Animaciones para tiendas */
.store-card-modern {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.store-card-modern:nth-child(1) { animation-delay: 0.1s; }
.store-card-modern:nth-child(2) { animation-delay: 0.2s; }
.store-card-modern:nth-child(3) { animation-delay: 0.3s; }
.store-card-modern:nth-child(4) { animation-delay: 0.4s; }
.store-card-modern:nth-child(5) { animation-delay: 0.5s; }
.store-card-modern:nth-child(6) { animation-delay: 0.6s; }
.store-card-modern:nth-child(7) { animation-delay: 0.7s; }
.store-card-modern:nth-child(8) { animation-delay: 0.8s; }
.store-card-modern:nth-child(9) { animation-delay: 0.9s; }

/* Header de productos */
.products-header-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px 0 40px;
  margin-top: -20px;
  margin-bottom: 40px;
}

.products-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.products-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
  max-width: 600px;
}

.products-stats {
  font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: white;
}

/* Filtros y búsqueda */
.products-filters-section {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  margin-bottom: 40px;
}

.products-filters {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.search-box .input-group {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.search-box .form-control {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.search-box .form-control:focus {
  box-shadow: none;
}

.search-box .input-group-text {
  background: white;
  border: none;
  color: var(--muted);
}

/* Cards de productos modernas */
.product-card-modern {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(39, 79, 155, 0.15);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(39, 79, 155, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
  opacity: 1;
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.discount-badge .badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text);
}

.product-title a {
  color: inherit;
}

.product-rating {
  margin-bottom: 12px;
}

.stars {
  font-size: 0.9rem;
}

.stars i {
  margin-right: 2px;
}

.product-price {
  margin-bottom: 16px;
}

.price-current {
  font-size: 1.25rem;
  color: var(--primary);
}

.price-old {
  font-size: 0.9rem;
  color: var(--muted);
}

.product-actions {
  margin-top: auto;
}

.add-to-cart-btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 79, 155, 0.3);
}

/* Estado vacío */
.empty-state {
  padding: 60px 20px;
}

.empty-state i {
  opacity: 0.5;
}

/* Paginación mejorada */
.pagination-container {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.pagination {
  margin-bottom: 0;
}

.page-link {
  color: var(--primary);
  border-color: var(--border);
  border-radius: 8px !important;
  margin: 0 2px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.page-link:hover {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 79, 155, 0.3);
}

.page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(39, 79, 155, 0.3);
}

.page-item.disabled .page-link {
  color: var(--muted);
  background: transparent;
  border-color: var(--border);
}

/* Vista de lista */
.products-list-view .product-card-modern {
  flex-direction: row;
  height: auto;
  max-height: 200px;
}

.products-list-view .product-image-container {
  flex: 0 0 200px;
  aspect-ratio: 1;
}

.products-list-view .product-content {
  flex: 1;
  padding: 24px;
}

.products-list-view .product-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .products-header-section {
    padding: 40px 0 30px;
    text-align: center;
  }

  .products-filters {
    padding: 20px;
  }

  .products-filters-section {
    padding: 20px 0;
  }

  .product-card-modern {
    margin-bottom: 20px;
  }

  .pagination-container {
    padding: 20px;
  }

  .pagination-container .row {
    text-align: center;
  }

  .pagination-container .col-md-6:first-child {
    margin-bottom: 16px;
  }

  .products-list-view .product-card-modern {
    flex-direction: column;
    max-height: none;
  }

  .products-list-view .product-image-container {
    flex: none;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 576px) {
  .products-title {
    font-size: 2rem;
  }

  .product-content {
    padding: 16px;
  }

  .product-title {
    font-size: 1rem;
  }

  .price-current {
    font-size: 1.1rem;
  }
}

/* Animaciones de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card-modern {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.product-card-modern:nth-child(1) { animation-delay: 0.1s; }
.product-card-modern:nth-child(2) { animation-delay: 0.2s; }
.product-card-modern:nth-child(3) { animation-delay: 0.3s; }
.product-card-modern:nth-child(4) { animation-delay: 0.4s; }
.product-card-modern:nth-child(5) { animation-delay: 0.5s; }
.product-card-modern:nth-child(6) { animation-delay: 0.6s; }
.product-card-modern:nth-child(7) { animation-delay: 0.7s; }
.product-card-modern:nth-child(8) { animation-delay: 0.8s; }
.product-card-modern:nth-child(9) { animation-delay: 0.9s; }

/* Animaciones adicionales */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Loading states */
.loading-overlay {
  position: absolute;
  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: 10;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--light);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Efectos hover mejorados */
.product-card-modern {
  position: relative;
}

.product-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(39, 79, 155, 0.05), rgba(65, 162, 46, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  z-index: -1;
}

.product-card-modern:hover::before {
  opacity: 1;
}

/* Botones con efectos */
.btn-modern {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
  width: 300px;
  height: 300px;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 1rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.skeleton-title {
  height: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  width: 80%;
}

.skeleton-image {
  height: 200px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Tooltips personalizados */
.tooltip-modern {
  position: relative;
  display: inline-block;
}

.tooltip-modern .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: var(--text);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 8px 12px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.875rem;
}

.tooltip-modern:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-modern .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--text) transparent transparent transparent;
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .product-card-modern:hover {
    transform: none;
  }

  .product-overlay {
    opacity: 1;
    background: rgba(39, 79, 155, 0.8);
  }

  .products-filters {
    margin: 0 -15px;
    border-radius: 0;
  }
}

/* Print styles */
@media print {
  .products-filters,
  .product-actions,
  .pagination-container {
    display: none !important;
  }

  .product-card-modern {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
@keyframes rotate {
    20% {
        filter: 
            drop-shadow(-10px 0px 10px var(--colorA))
    }
	40% {
        filter: 
            drop-shadow(-10px 0 20px var(--colorC))
    }
	60% {
        filter: 
            drop-shadow(0 -10px 30px var(--colorB))
    }
	80% {
        filter:
            drop-shadow(-10px -10px 35px var(--colorD));
    }
	100% {
        filter:
            drop-shadow(-10px -10px 250px var(--colorE));
    }
}

.form-control:not(select) {padding: 0.7rem 0.5rem;}
select.form-control {height: 52px;padding-left: 0.5rem;}
.form-control::placeholder {color: #b3b3b3;font-weight: lighter;font-size: 1.0rem;}
.form-control:focus {box-shadow: none;}

/*Hola aqui error 404*/
.cover-background {
    position: relative !important;
    background-size: cover !important;
    overflow: hidden !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.error-page {
    background-color: #19a461;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(234,234,235,0.2);
    padding: 80px 20px;
}
.text-center {
    text-align: center!important;
}
.error-page h1 {
    font-size: 200px;
    line-height: 1;
    font-weight: 600;
}
span.old-price {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  width: 130px;
  margin-right: 30px;
  text-align: center;
}
span.new-price {
  animation: blinker 0.9s infinite;
  font-size: 32px;
  font-weight: 600;
}
span.old-price::before, span.old-price::after {
  background-color: #e6e6e6;
  content: '';
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 0px;
  right: 0px;
  width: 100%;
  height: 2px;
}
span.old-price::before {
  transform: rotate(25deg);
}
span.old-price::after {
  transform: rotate(-25deg);
}

span.new-price {
  animation: blinker 0.9s infinite;
  font-size: 32px;
  font-weight: 600;
}
@keyframes blinker {
  40% {
    opacity: .3;
  }
}
/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@-moz-keyframes zoom {
  from {
    -moz-transform: scale(1, 1);
  }

  to {
    -moz-transform: scale(1.2, 1.2);
  }
}

@-o-keyframes zoom {
  from {
    -o-transform: scale(1, 1);
  }

  to {
    -o-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.2, 1.2);
  }
}
.active > .slider-thumb {
  -webkit-animation: zoom 10s;
  animation: zoom 10s;
}

.shape-fill-blanco {
  fill: #ffffff;
}
.shape-fill-white {
  fill: #edfcff;
}
.shape-fill-primary {
  fill: #233d94;
}
/*fotter llamadas*/
.subscribe-one__inner-content {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #41a22e;
  padding: 20px;
  border-radius: 50px;
  border-top-left-radius: 0;
  z-index: 1;
}

.subscribe-one__left {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -7px;
}

.subscribe-one__left .icon {
  position: relative;
  display: inline-block;
  top: 4px;
}

.subscribe-one__left .icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--ogenix-white);
}

.subscribe-one__title-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.subscribe-one__tagline {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #edfcff;
  font-family: var(--ogenix-font-two);
}

.subscribe-one__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 32px;
  color: #edfcff;
}

.subscribe-one__right {
  position: relative;
  display: block;
  margin-left: 5px;
}

.sowertec-social-icon {
  font-size: var(--icon-size,25px);
  width: calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));
  height: calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*formatos de espacio grande*/
/* monir */
.pb-30{
    padding-bottom: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pr-50 {
    padding-right: 50px;
}
.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}
.m-pb-70{
    padding-bottom: 70px;
}
.m-pt-70{
    padding-top: 70px;
}
.m-pt-275{
    padding-top: 275px;
}
.m-pb-90{
    padding-bottom: 90px;
}
.m-pb-110{
    padding-bottom: 110px;
}
.m-mt-110{
    margin-top: 110px;
}
.m-mt-100{
    margin-top: 100px;
}
.m-mt-120{
    margin-top: 120px;
}
.m-mt-50{
    margin-top: 50px;
}
.m-mt-60{
    margin-top: 60px;
}
.m-mt-40{
    margin-top: 40px;
}
.m-mb-30{
    margin-bottom: 30px;
}
.m-pb-200{
    padding-bottom: 200px;
}
.m-pb-180{
    padding-bottom: 180px;
}
.m-pb-190{
    padding-bottom: 190px;
}
.m-pb-120{
    padding-bottom: 120px;
}
.m-pb-130{
    padding-bottom: 130px;
}
.m-pt-130{
    padding-top: 130px;
}
.m-pt-135{
    padding-top: 135px;
}
.m-pb-135{
    padding-bottom: 135px;
}
.m-pt-140{
    padding-top: 140px;
}
.m-pb-140{
    padding-bottom: 140px;
}
.m-mb-40{
    margin-bottom: 40px ;
}

h2,
.h2{
    font-size: 40px;
    font-weight: 600;
}

h1{
    font-size: 55px;
}
p {
    font-size: 16px;
}
h3{
    font-size: 30px;
}
h4{
    font-size: 24px;
}
h5{
    font-size: 20px;
    line-height: 26px;
}
/*type-1*/
.intro-area.type-1
 .media i {
    font-size: 24px;
}
.department-tab-pill {
    margin-right: 50px;
}

.department-tab-pill .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #7c8295;
    background: #ffffff;
    border-radius: 0px;
    padding: 15px 10px 15px 30px;
    position: relative;
    z-index: 20;
    margin-bottom: 2px;
}
.intro-area.type-1 .text-Underline::before {
    background: #1447ea;
}

.department-tab-pill .nav-link.active {
    background: transparent;
    color: #fff;
}

.department-tab-pill .nav-link span {
    display: inline-block;
    padding-left: 25px;
}

.department-tab-pill .nav-link::after {
    content: "";
    position: absolute;
    background: rgba(35,61,148,1);
    background: -moz-linear-gradient(left, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 98%, rgba(63,98,217,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(35,61,148,1)), color-stop(98%, rgba(63,98,217,1)), color-stop(100%, rgba(63,98,217,1)));
    background: -webkit-linear-gradient(left, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 98%, rgba(63,98,217,1) 100%);
    background: -o-linear-gradient(left, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 98%, rgba(63,98,217,1) 100%);
    background: -ms-linear-gradient(left, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 98%, rgba(63,98,217,1) 100%);
    background: linear-gradient(to right, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 98%, rgba(63,98,217,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1446ea', endColorstr='#03dcec', GradientType=1 );
    height: 100%;
    width: calc(100% + 23px);
    left: 0;
    top: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.department-tab-pill .nav-link:last-child {
    border-bottom: none;
}

.department-tab-pill .nav-link.active::after {
    visibility: visible;
    opacity: 1;
}
.intro-area.type-1 .intro-overlay{
    background-position: 0% 0% !important;
}
.intro-area.type-1 .overlay{
    background: rgba(15,121,235,1);
    background: -moz-linear-gradient(45deg, rgba(15,121,235,1) 0%, rgba(8,179,236,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(15,121,235,1)), color-stop(100%, rgba(8,179,236,1)));
    background: -webkit-linear-gradient(45deg, rgba(15,121,235,1) 0%, rgba(8,179,236,1) 100%);
    background: -o-linear-gradient(45deg, rgba(15,121,235,1) 0%, rgba(8,179,236,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(15,121,235,1) 0%, rgba(8,179,236,1) 100%);
    background: linear-gradient(45deg, rgb(0 24 51) 0%, rgb(37 64 154) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f79eb', endColorstr='#08b3ec', GradientType=1 );
    opacity: .80;
    z-index: 1;

}
.intro-overlay {
    background: url(assets/images/intro-bg.jpg) no-repeat;
    background-size: cover;
    z-index: 0;
}

.intro-area.type-1 .overlay,
.intro-overlay{
    position: absolute;
    width: calc(50% - 256px);
    left: 0;
    height: 100%;
}
.department-tab-pill > *{
    z-index: 9;
    position: relative;

}

.medim-btn {
    display: inline-block;
    padding: 12px 40px;
    box-shadow: none;
    font-size: 17px;
    letter-spacing: 1.2px;
}

.medim-btn:focus {
    outline: none;
    box-shadow: none;
}
.banenr.type-3 .btn-bordered-white {
    border: 1px solid #fff;
    margin-right: 25px;
}
.white-btn {
    z-index: 9;
    border-radius: 50px;
}

.white-btn::before {
    content: "";
    position: absolute;
    left: -2px;
    width: calc(100% + 4px);
    top: -2px;
    height: calc(100% + 4px);
    box-shadow: inset 0px 0px 0px 50px #fff;
    border-radius: 50px;
    -webkit-transform: scale3d(0.9, 0.9, 1);
    transform: scale3d(0.9, 0.9, 1);
    -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3;
    transition: box-shadow 0.3s, transform 0.3s;
    z-index: -1;
}

.white-btn:hover::before {
    box-shadow: inset 0px 0px 0px 2px #fff;
}

.white-btn:hover {
    color: #fff;
}

.grad-bg--1{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1447ea+0,03deec+100 */
    background: #1447ea; /* Old browsers */
    background: -moz-linear-gradient(45deg,  #1447ea 0%, #03deec 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  #1447ea 0%,#03deec 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  #1447ea 0%,#03deec 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1447ea', endColorstr='#03deec',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.grad-bg--2{
    background: rgba(35,61,148,1);
    background: -moz-linear-gradient(left, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(35,61,148,1)), color-stop(88%, rgba(63,98,217,1)), color-stop(100%, rgba(63,98,217,1)));
    background: -webkit-linear-gradient(left, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -o-linear-gradient(left, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -ms-linear-gradient(left, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: linear-gradient(to right, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1446ea', endColorstr='#03dcec', GradientType=1 );
}
.grad-bg--3{
    position: relative;
    overflow: hidden;
    z-index: 20;
}
.grad-bg--3::after{
    content: "";
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    background: -moz-linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(35,61,148,1)), color-stop(88%, rgba(63,98,217,1)), color-stop(100%, rgba(63,98,217,1)));
    background: -webkit-linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -o-linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1446ea', endColorstr='#03dcec', GradientType=1 );
    border-radius: 50px;
    top: -1px;
    left: -1px;
    z-index: -1;
    transition: all .30s linear;

}

.grad-bg--3::before{
    content: "";
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    background: rgba(63,98,217,1);
    background: -moz-linear-gradient(45deg, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 12%, rgba(35,61,148,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(63,98,217,1)), color-stop(12%, rgba(63,98,217,1)), color-stop(100%, rgba(35,61,148,1)));
    background: -webkit-linear-gradient(45deg, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 12%, rgba(35,61,148,1) 100%);
    background: -o-linear-gradient(45deg, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 12%, rgba(35,61,148,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 12%, rgba(35,61,148,1) 100%);
    background: linear-gradient(45deg, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 12%, rgba(35,61,148,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03dcec', endColorstr='#1446ea', GradientType=1 );
    border-radius: 50px;
    top: -1px;
    left: -1px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all .30s linear;
}
.grad-bg--3:hover::before{
    visibility: visible;
    opacity: 1;
}
.grad-bg--3:hover::after{
    visibility: hidden;
    opacity: 0;
}

.grad-bg--4{
    background: rgba(63,98,217,1);
    background: -moz-linear-gradient(top, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(63,98,217,1)), color-stop(2%, rgba(63,98,217,1)), color-stop(100%, rgba(35,61,148,1)));
    background: -webkit-linear-gradient(top, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    background: -o-linear-gradient(top, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    background: -ms-linear-gradient(top, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    background: linear-gradient(to bottom, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03dcec', endColorstr='#1446ea', GradientType=0 );
}
.grad-bg--5{
    background: rgba(35,61,148,1);
    background: -moz-linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(35,61,148,1)), color-stop(88%, rgba(63,98,217,1)), color-stop(100%, rgba(63,98,217,1)));
    background: -webkit-linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -o-linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    background: linear-gradient(45deg, rgba(35,61,148,1) 0%, rgba(63,98,217,1) 88%, rgba(63,98,217,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1446ea', endColorstr='#03dcec', GradientType=1 );
}
.grad-bg-top-btm-1{
    background: rgba(63,98,217,1);
    background: -moz-linear-gradient(top, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(63,98,217,1)), color-stop(2%, rgba(63,98,217,1)), color-stop(100%, rgba(35,61,148,1)));
    background: -webkit-linear-gradient(top, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    background: -o-linear-gradient(top, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    background: -ms-linear-gradient(top, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    background: linear-gradient(to bottom, rgba(63,98,217,1) 0%, rgba(63,98,217,1) 2%, rgba(35,61,148,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03dcec', endColorstr='#1446ea', GradientType=0 );
}
@media (max-width: 768px) {
      .float-button {
        position: fixed;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
      }
    }




    
.box{
    position: relative;
    margin: auto;    
    --colorA: #1fee5d9c;
	--colorB: #dbdbdbbf;
	--colorC: #07ff83;
	--colorD: #ffffffa3;
	--colorE: #ffffff1a;
	animation: rotate 0.7s infinite ease-out;
  box-shadow: 10px 10px 42px 0 rgb(255, 255, 255);
  border-radius: 35px !important;
  border: solid 1px #ffffff;
	
}
.w-80{
  max-width: 80px;
}
._rsi-quantity-offers-offer-container {
  border: 1px solid silver;
  padding: 11px;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}
._rsi-quantity-offers-offer-container:hover {
  background: silver;
}
._rsi-quantity-offers-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
._rsi-quantity-offers-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
._rsi-quantity-offers-new-price {
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}
._rsi-build-block ._rsi-modal-checkout-lines {
  border-top: 0;
  padding: 8px 12px 5px;
  background-color: #ebebeb;
  border-radius: 6px;
}
._rsi-modal-checkout-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
._rsi-modal-checkout-line-value {
  font-size: 1.50em;
  font-weight: 700;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
}
._rsi-quantity-offers>.active {
  background: #c8ff87;
}

/* =====================================================
   HEADER SIMPLE Y FUNCIONAL
   ===================================================== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.main-header .top-bar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 14px;
}

.main-header .social-links a {
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
    padding: 4px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.main-header .social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.main-header .main-bar {
    background: var(--white);
    padding: 16px 0;
}

.main-header .logo-link {
    display: inline-block;
    transition: var(--transition);
}

.main-header .logo-link:hover {
    transform: scale(1.05);
}

.main-header .logo-img {
    height: 50px;
    width: auto;
}

.main-header .main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.main-header .nav-link {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.main-header .nav-link:hover {
    background: var(--light);
    color: var(--primary);
}

.main-header .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.main-header .header-actions .btn {
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.main-header .header-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.main-header .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    margin-top: 8px;
}

.main-header .dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.main-header .dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
}

/* Menú Móvil Simple */
.main-header .offcanvas {
    width: 280px;
}

.main-header .offcanvas-header {
    border-bottom: 1px solid var(--border);
}

.main-header .offcanvas-body .nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 12px 0;
    border-radius: 6px;
    margin-bottom: 4px;
    transition: var(--transition);
}

.main-header .offcanvas-body .nav-link:hover,
.main-header .offcanvas-body .nav-link.active {
    background: var(--light);
    color: var(--primary);
}

.main-header .user-info-mobile {
    background: var(--light);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.main-header .user-info-mobile .d-flex {
    margin-bottom: 16px;
}

/* =====================================================
   PRODUCT PAGE - Estilos Específicos con Prefijo
   ===================================================== */

/* Hero Section del Producto */
.product-page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.product-page-hero-bg {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
}

.product-page-hero-content {
    position: relative;
    z-index: 2;
}

.product-page-hero-text {
    max-width: 600px;
}

.product-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-page-status {
    margin-bottom: 1rem;
}

.product-page-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-page-status-badge.available {
    background: rgba(65, 164, 46, 0.9);
    color: white;
}

.product-page-status-badge.unavailable {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

/* Contenido Principal */
.product-page-content {
    padding: 40px 0;
}

.product-page-image-container {
    margin-bottom: 2rem;
}

.product-page-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.product-page-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-page-image-wrapper:hover .product-page-main-image {
    transform: scale(1.05);
}

/* Información del Producto */
.product-page-info-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-page-price-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.product-page-price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-page-price-prefix {
    color: var(--muted);
    font-size: 1rem;
}

.product-page-price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.product-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-page-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-page-meta-item i {
    color: var(--primary);
}

.product-page-category-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.product-page-category-link:hover {
    text-decoration: underline;
}

/* Botón CTA Principal */
.product-page-cta-section {
    margin-bottom: 2rem;
}

.product-page-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(39, 79, 155, 0.3);
    position: relative;
    overflow: hidden;
}

.product-page-cta-button::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;
}

.product-page-cta-button:hover::before {
    left: 100%;
}

.product-page-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 79, 155, 0.4);
}

.product-page-cta-icon {
    font-size: 1.5rem;
}

.product-page-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-page-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-page-cta-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* Contacto Directo */
.product-page-contact-section {
    margin-bottom: 2rem;
}

.product-page-contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-page-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-page-contact-btn.phone-btn {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.product-page-contact-btn.phone-btn:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.product-page-contact-btn.whatsapp-btn {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.product-page-contact-btn.whatsapp-btn:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Métodos de Entrega */
.product-page-delivery-section {
    margin-bottom: 2rem;
}

.product-page-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-page-section-title i {
    color: var(--primary);
}

.product-page-delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.product-page-delivery-option {
    background: var(--light);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.product-page-delivery-option:hover {
    background: #e8f5e8;
    transform: translateY(-2px);
}

.product-page-delivery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-page-delivery-info {
    flex: 1;
}

.product-page-delivery-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.product-page-delivery-status {
    font-size: 0.875rem;
    font-weight: 500;
}

.product-page-delivery-status.available {
    color: var(--secondary);
}

.product-page-delivery-status.unavailable {
    color: var(--muted);
}

/* Características y Video */
.product-page-features {
    background: var(--light);
    padding: 40px 0;
}

.product-page-features-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-page-features-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-page-features-title i {
    color: var(--primary);
}

.product-page-features-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 2rem;
}

.product-page-video-section {
    margin-top: 2rem;
}

.product-page-video-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-page-video-title i {
    color: var(--primary);
}

.product-page-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

.product-page-video-iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Información Detallada con Tabs */
.product-page-details {
    padding: 40px 0;
}

.product-page-details-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-page-details-tabs {
    padding: 2rem;
}

.product-page-details-tabs .nav-tabs {
    border: none;
    margin-bottom: 2rem;
    justify-content: center;
    gap: 0.5rem;
}

.product-page-details-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.product-page-details-tabs .nav-link:hover {
    background: var(--light);
    color: var(--primary);
}

.product-page-details-tabs .nav-link.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(39, 79, 155, 0.3);
}

.product-page-tab-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    padding: 1rem 0;
}

/* Compartir Producto */
.product-page-share {
    background: var(--light);
    padding: 40px 0;
}

.product-page-share-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-page-share-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-page-share-title i {
    color: var(--primary);
}

.product-page-share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-page-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 120px;
    justify-content: center;
}

.product-page-share-btn.facebook-btn {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.product-page-share-btn.facebook-btn:hover {
    background: #166fe5;
    border-color: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.product-page-share-btn.twitter-btn {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.product-page-share-btn.twitter-btn:hover {
    background: #1a91da;
    border-color: #1a91da;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.product-page-share-btn.whatsapp-btn {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.product-page-share-btn.whatsapp-btn:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.product-page-share-btn img {
    width: 20px;
    height: 20px;
}

.product-page-share-btn span {
    font-size: 0.9rem;
}

/* Productos Relacionados */
.product-page-related {
    padding: 40px 0;
}

.product-page-related-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-page-related-title i {
    color: var(--primary);
}

.product-page-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-page-related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-page-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-page-related-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-page-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-page-related-card:hover .product-page-related-image img {
    transform: scale(1.05);
}

.product-page-related-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-page-related-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.product-page-related-description {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

.product-page-related-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-page-related-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.product-page-related-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.product-page-related-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 79, 155, 0.3);
}

/* Botón Flotante */
.product-page-floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-page-floating-cta.visible {
    opacity: 1;
    visibility: visible;
}

.product-page-floating-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(39, 79, 155, 0.3);
    position: relative;
    overflow: hidden;
}

.product-page-floating-cta-btn::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;
}

.product-page-floating-cta-btn:hover::before {
    left: 100%;
}

.product-page-floating-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 79, 155, 0.4);
}

.product-page-floating-icon {
    font-size: 1.25rem;
}

.product-page-floating-text {
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .product-page-hero-bg {
        min-height: 300px;
    }

    .product-page-title {
        font-size: 2rem;
    }

    .product-page-price-main {
        font-size: 2rem;
    }

    .product-page-info-container {
        padding: 1.5rem;
    }

    .product-page-contact-buttons {
        flex-direction: column;
    }

    .product-page-delivery-options {
        grid-template-columns: 1fr;
    }

    .product-page-details-tabs {
        padding: 1.5rem;
    }

    .product-page-details-tabs .nav-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .product-page-share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .product-page-related-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .product-page-floating-cta {
        bottom: 15px;
        right: 15px;
    }

    .product-page-floating-cta-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .product-page-floating-text {
        display: none;
    }
}

@media (max-width: 576px) {
    .product-page-hero-bg {
        min-height: 250px;
    }

    .product-page-title {
        font-size: 1.75rem;
    }

    .product-page-price-main {
        font-size: 1.75rem;
    }

    .product-page-cta-button {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .product-page-cta-text {
        align-items: center;
    }

    .product-page-related-grid {
        grid-template-columns: 1fr;
    }

    .product-page-video-iframe {
        height: 250px;
    }
}

/* Animaciones */
@keyframes productPageFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-page-related-card {
    animation: productPageFadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.product-page-related-card:nth-child(1) { animation-delay: 0.1s; }
.product-page-related-card:nth-child(2) { animation-delay: 0.2s; }
.product-page-related-card:nth-child(3) { animation-delay: 0.3s; }
.product-page-related-card:nth-child(4) { animation-delay: 0.4s; }
.product-page-related-card:nth-child(5) { animation-delay: 0.5s; }
.product-page-related-card:nth-child(6) { animation-delay: 0.6s; }