﻿@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Great+Vibes&display=swap');

* {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}


body {
  font-size: 25px;
  line-height: 1.5; 
  color: #111;
}

/* =========================================================
   MODAL DE CHECKOUT
========================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  z-index: 10000;
}

.modal-overlay.open {
  display: block;
}

.modal-checkout {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  width: 90%;
  max-width: 500px;
  z-index: 10001;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-checkout.open {
  display: block;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.modal-header h2 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.close-modal {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
}

.close-modal:hover {
  color: #333;
}

.summary-items {
  padding: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.summary-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.summary-item-details {
  flex: 1;
}

.summary-item-details p {
  margin: 5px 0;
  font-size: 12px;
  color: #666;
}

.summary-item-name {
  font-weight: bold;
  color: #333 !important;
}

.summary-total {
  padding: 20px;
  background: #f8f8f8;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  text-align: right;
}

.summary-total p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.summary-total strong {
  font-size: 20px;
  color: #d81b60;
}

.modal-actions {
  display: flex;
  gap: 10px;
  padding: 20px;
}

.btn-secondary, .btn-primary {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: #e0e0e0;
  color: #333;
}

.btn-secondary:hover {
  background: #d0d0d0;
}

.btn-primary {
  background: #d81b60;
  color: white;
}

.btn-primary:hover {
  background: #c2185b;
}

/* =========================================================
   MODAL DE PAGO
========================================================== */
.modal-payment {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  z-index: 10001 !important;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-payment.open {
  display: block;
}

.payment-form {
  padding: 20px;
}

.form-section {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  font-size: 14px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: #d81b60;
  background: #fef5f9;
}

.payment-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.payment-option input[type="radio"]:checked + .payment-icon + .payment-name {
  color: #d81b60;
  font-weight: bold;
}

.payment-option input[type="radio"]:checked {
  accent-color: #d81b60;
}

.payment-icon {
  font-size: 24px;
}

.payment-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.payment-name {
  font-size: 13px;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #d81b60;
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.1);
}

.payment-summary {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
  border-left: 4px solid #d81b60;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: #666;
}

.summary-row span:last-child {
  font-weight: 600;
  color: #333;
}

.summary-total {
  border-top: 1px solid #ddd;
  padding-top: 8px;
  margin-top: 10px;
  font-size: 16px;
  color: #d81b60;
}

.summary-total span:last-child {
  color: #d81b60;
  font-weight: 700;
  font-size: 18px;
}

/* =========================================================
   MODAL QR
========================================================== */
.modal-qr {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 400px;
  z-index: 10001 !important;
  text-align: center;
}

.modal-qr.open {
  display: block;
}

.qr-container {
  padding: 30px 20px;
  background: #f8f8f8;
}

.qr-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.qr-instructions {
  padding: 20px;
  background: #fff9e6;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.qr-instructions p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

button,
.nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}


.offers {
    padding: 60px 0;
    background: #ffffff;
}



/*  new  OJO */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}



body {
    background-color: #ffffff;
    color: #222;
}

/* TOP BAR */
.top-bar {
    background: #f6f6f6;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    color: #666;
}

.top-bar p {
    margin: 0;
    font-weight: 700;
    color: #3e4658;
    position: relative;
    display: inline-block;
    animation: topBarPulse 2.8s ease-in-out infinite;
}

.top-bar p::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 24%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.78) 50%, transparent 100%);
    transform: skewX(-18deg);
    animation: topBarShine 3.6s linear infinite;
}

.top-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-links span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-links a {
    color: #d81b60;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

.top-links a:hover {
    text-decoration: underline;
}

@keyframes topBarPulse {
  0%, 100% { transform: translateY(0); opacity: 0.95; }
  50% { transform: translateY(-1px); opacity: 1; }
}

@keyframes topBarShine {
  0% { left: -32%; opacity: 0; }
  10% { opacity: 1; }
  55% { opacity: 1; }
  100% { left: 112%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .top-bar p {
    animation: none;
  }

  .top-bar p::after {
    animation: none;
    display: none;
  }
}



/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;

    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    border-bottom: 1px solid #ddd;
}


.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    min-width: 150px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.brand-logo-link {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.1vw, 56px);
    font-weight: 700;
    letter-spacing: 1.6px;
    line-height: 0.95;
    color: #2f2f2f;
    text-transform: uppercase;
}

.brand-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(34px, 3.4vw, 66px);
    line-height: 0.75;
    color: #d66a7f;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
    order: 2;
}

.nav-menu a {
    text-decoration: none;
    color: #222;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #d81b60;
}

.icons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    order: 3;
}

.menu-toggle {
  display: none !important;
}

.close-menu {
  display: none !important;
}

/* SEARCH BAR SECTION */
.search-offer-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.search-offer-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.search-offer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.search-bar input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    width: 280px;
}

.search-bar input:focus {
    outline: none;
    border-color: #d81b60;
    box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.1);
}

.search-bar input::placeholder {
    color: #999;
}

.search-bar button {
    padding: 12px 16px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover {
    background: #333;
    transform: scale(1.05);
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.offer-content h2 {
    margin: 0;
    color: #d81b60;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
}

/* SEARCH BAR INSIDE HEADER */
.search-bar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 400px;
    margin: 0 30px;
}

.search-bar-header input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.search-bar-header input:focus {
    outline: none;
    border-color: #d81b60;
    box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.1);
}

.search-bar-header input::placeholder {
    color: #999;
}

.search-bar-header button {
    padding: 10px 14px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar-header button:hover {
    background: #333;
    transform: scale(1.05);
}

/* SEARCH BAR */
.search-bar {
    display: flex;
}



/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%), url("img/hero-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TÃ­tulo principal */
.hero-content h1 {
    font-size: 64px; 
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* Texto descriptivo */
.hero-content p {
    font-size: 24px; 
    margin-bottom: 20px;
    font-weight: 500;
}


/* Texto destacado (descuento) */
.hero-content strong {
    display: block; 
    margin: 20px 0; 
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* BotÃ³n */
.btn {
    display: inline-block; 
    padding: 14px 32px; 
    border: none;
    background: #d81b60;
    color: white;
    text-decoration: none; 
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 27, 96, 0.3);
}


/* Efecto hover del botÃ³n */
.btn:hover {
    background: #000; 
    /* Fondo negro al pasar el mouse */

    color: #fff; 
    /* Texto blanco al pasar el mouse */
}


/* FLOATING PRODUCTS */
.float {
    position: absolute;
    width: 140px;
}

.product1 {
    bottom: 40px;
    left: 35%;
}

.product2 {
    bottom: 40px;
    right: 35%;
}




/* OFERTAS */
.offers {
    padding: 70px 40px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.offers h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #222;
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.offers h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d81b60;
    border-radius: 2px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* PRODUCT CARD */
.product-card {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(216, 27, 96, 0.15);
    transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    font-size: 24px;
    z-index: 3;
    transition: all 0.2s ease;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: none;
    padding: 0;
}

.wishlist:hover {
    transform: scale(1.15);
    color: #d81b60;
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.2);
}

.wishlist.active {
    color: #d81b60;
}

.stock {
    display: inline-block;
    color: white;
    font-size: 11px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.product-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 10px 15px 0 15px;
    text-align: center;
    min-height: 22px;
    visibility: hidden;
}

.product-card.has-managed-category h4 {
    visibility: visible;
}

.model {
    font-size: 12px;
    margin: 5px 15px;
    color: #666;
    text-align: center;
    min-height: 18px;
    visibility: hidden;
}

.product-card.has-managed-category .model {
    visibility: visible;
}

.category {
    font-size: 12px;
    color: #999;
    margin: 0 15px;
    text-align: center;
    display: block !important;
    min-height: 18px;
    visibility: hidden;
}

.product-card.has-managed-category .category {
    visibility: visible;
}

.published-category-group {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}

.published-category-group:last-child {
  margin-bottom: 0;
}

.published-category-title {
  margin: 0 0 14px;
  font-size: 30px;
  letter-spacing: 0.2px;
  color: #222;
  text-transform: capitalize;
}

.published-category-grid {
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

#dynamicCatalog .product-card {
  max-width: 290px;
  margin: 0 auto;
}

#dynamicCatalog .product-card h4 {
  font-size: 17px;
}

#dynamicCatalog .product-card .model {
  font-size: 14px;
}

#dynamicCatalog .product-card .category {
  font-size: 14px;
}

#dynamicCatalog .product-card .current {
  font-size: 24px;
}

#dynamicCatalog .product-card .old {
  font-size: 13px;
}

.price {
    margin-top: 15px;
    padding: 12px 15px 15px 15px;
    text-align: center;
}

.current {
    color: #d81b60;
    font-weight: 800;
    font-size: 20px;
    margin-right: 8px;
}

.old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}






/* MARCAS */
.brands {
    padding: 60px 40px;
    background: #ffffff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    align-items: center;
}



/* BRAND CARD   MARCASSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS*/
.brand-card {
    background: #f7f7f7;
    padding: 70px 30px;
    text-align: center;
}

.brand-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.brand-card img.linda-luna-logo {
    height: 170px;
}

.brand-card img.whispersleelp-logo {
    transform: rotate(0deg);
}


.brand-card a {
    display: inline-block;
    font-size: 14px;
    color: #000;
    text-decoration: underline;
}

.brand-card a:hover {
    font-weight: bold;
}

/* MARCAS */
.brands {
    padding: 60px 40px;
    background: #ffffff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    align-items: center;
}




/* FOOTER */
.footer {
    background: #f3f3f3;
    padding: 60px 0px 30px;
    font-size: 13px;
    color: #000;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #000;
    margin-bottom: 6px;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* FEEDBACK BOX */
.footer-feedback {
    border: 1px solid #bbb;
    padding: 15px;
    max-width: 220px;
}

.footer-feedback a {
    text-decoration: underline;
    color: #000;
}

/* MIDDLE LINKS */
.footer-middle {
    text-align: center;
    margin-bottom: 25px;
}

.footer-middle a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
}

.footer-middle a:hover {
    text-decoration: underline;
}

/* PAYMENTS */
.footer-payments {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-payments img {
    height: 26px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    font-size: 12px;
}

.footer-note {
    margin-top: 5px;
    color: #555;
}


.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}



.brands {
    padding: 60px 0;
    background: #ffffff;
}

/* ESTO ES DE MARCAS */
html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px;
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  display: block;
}

/* OVERLAY OSCURO */
.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* BOTÃ“N */
.btn-ver {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #c40000;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* ACTIVACIÃ“N CORRECTA */
.product-img:hover .btn-ver,
.product-img:hover::after {
  opacity: 1;
}
.sizes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.sizes span {
    border: 1px solid #ccc;
    padding: 8px 0;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.2s;
    user-select: none;
}

.sizes span:hover {
    border-color: #000;
}

/* ESTA ES LA CLAVE */
.sizes span.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ICONOS PEQUEÃ‘OS DE LA PARTE SUPERIOR */

.icons{
  display: flex;
  align-items: center;
  gap: 18px;
}

.icons .user-menu {
  margin-right: 8px;
}

.user-btn {
  gap: 6px;
  white-space: nowrap;
  width: auto;
  min-width: 34px;
  padding: 0 6px;
}

#userNameText {
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  display: inline-block;
}

/* BotÃ³n contenedor */
.icon-btn{
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

/* Imagen del Ã­cono */
.icon-img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}

.icon-btn:hover .icon-img{
  opacity: 1;
  transform: scale(1.05);
  transition: transform .15s ease, opacity .15s ease;
}

/* Badge del carrito (contador) */
.icon-badge{
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #b00000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}


.cart-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 9998;
}

.cart-overlay.open{
  opacity: 1;
  pointer-events: auto;
}

.cart-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9998;
}
.cart-overlay.open{
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}

.cart-drawer.open { 
  transform: translateX(0); 
}

.cart-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.cart-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.cart-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: #f0f0f0;
  color: #333;
}

.cart-items{
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.cart-item{
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #f9f9f9;
  margin-bottom: 12px;
  align-items: center;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cart-item img{
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-weight: 600;
  font-size: 13px;
  color: #333;
  line-height: 1.3;
}

.cart-item-info {
  font-size: 12px;
  color: #666;
}

.cart-item-price {
  font-weight: 700;
  font-size: 13px;
  color: #b00000;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  background: #ff4444;
  color: #fff;
}

.cart-footer {
  padding: 16px;
  border-top: 2px solid #f0f0f0;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.cart-total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #eee;
}

.cart-total-section span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

#cartTotal {
  font-size: 18px;
  color: #b00000;
  font-weight: 700;
}

.btn-checkout-cart {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-checkout-cart:hover {
  background: linear-gradient(135deg, #222 0%, #000 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.cart-item img{
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid #eee;
}
.cart-item-title{ font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.cart-item-meta{ font-size: 12px; color: #666; margin: 0 0 8px; }

.cart-item-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
 qty{
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
 qty button{
  width: 34px;
  height: 32px;
  border: none;
  background: #f7f7f7;
  cursor: pointer;
}
 qty span{
  width: 34px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.remove-item{
  border: none;
  background: transparent;
  color: #b00000;
  cursor: pointer;
  font-weight: 700;
}
.cart-footer{
  border-top: 1px solid #eee;
  padding: 14px 16px;
}
.cart-summary{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}
.cart-checkout{
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 800;
  border-radius: 6px;
}
.cart-empty{
  padding: 24px 10px;
  text-align: center;
  color: #666;
  font-size: 14px;
}


/* Flecha volver */
.back-home{
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999999;

  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 14px;
  border-radius: 20px;

  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.back-home:hover{
  background: #000;
  color: #fff;
  border-color: #000;
}


/* ===== BotÃ³n Finalizar compra (TU HTML usa id="cartCheckout") ===== */
#cartCheckout{
  width: 100%;
  padding: 14px 16px;

  background: #000;
  color: #fff;

  border: none;
  border-radius: 8px;

  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;

  cursor: pointer;
  transition: transform .08s ease, opacity .2s ease;
}

#cartCheckout:hover{
  opacity: .92;
}

#cartCheckout:active{
  transform: scale(.99);
}

/* Opcional: si quieres que el total + botÃ³n se vean alineados */
.cart-footer{
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.cart-footer{
  padding: 14px 16px;
  border-top: 1px solid #eee;
  background: #fff;
}





/* ===== BOTÃ“N WHATSAPP FLOTANTE ===== */
.whatsapp-float{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;

  background: transparent;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 9999;

  transition: transform .15s ease, box-shadow .15s ease;
}

.whatsapp-float:hover{
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.whatsapp-float img{
  width: 50px;
  height: 40px;
  object-fit: contain;
}
/* =================================
   MODO CELULAR COMPLETO
================================= */
@media (max-width: 768px) {

  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding: 12px;
  }

  /* HEADER */
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 12px;
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: block !important;
    order: 1;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    min-width: auto;
    flex-shrink: 0;
    margin: 0;
  }

  .logo {
    font-size: 14px;
    min-width: auto;
    flex: 1;
    text-align: center;
    order: 2;
    letter-spacing: 1px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    gap: 20px;
    box-shadow: 5px 0 20px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 9998;
    overflow-y: auto;
    margin: 0;
  }

  .icons {
    order: 3;
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }

  .icon-btn {
    width: 28px;
    height: 28px;
  }

  .icon-img {
    width: 16px;
    height: 16px;
  }

  .user-menu {
    position: relative;
  }

  .icon-btn span {
    display: none;
  }

  .user-btn span {
    display: inline-block !important;
  }

  /* MENU */
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  /* BUSCADOR */
  .search-bar-header {
    width: 100%;
    display: flex;
  }

  .search-bar-header input {
    width: 100%;
  }

  .brand-logo-link {
    gap: 5px;
  }

  .brand-main {
    font-size: clamp(24px, 7.5vw, 40px);
    letter-spacing: 1px;
  }

  .brand-script {
    font-size: clamp(28px, 8vw, 46px);
  }

  /* BANNER PRINCIPAL */
  .hero {
    width: 100%;
  }

  /* TEXTO LATERAL ROSA */
  .promo-side,
  .side-banner,
  .offer-text {
    position: static !important;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  /* IMÃGENES */
  img {
    max-width: 100%;
    height: auto;
  }

  /* PRODUCTOS */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    width: 100%;
  }

  /* SEARCH & OFFER */
  .search-offer-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
    flex: 1;
  }

  .offer-content {
    width: 100%;
  }

  .offer-content h2 {
    font-size: 16px;
  }

}
/* BOTÃ“N HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* BOTÃ“N X */
.close-menu {
  background: none;
  border: none;
  font-size: 26px;
  position: static;
  top: auto;
  right: auto;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 20px;
}

/* ===== MÃ“VIL ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    order: 3;
    z-index: 10000;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    gap: 20px;
    box-shadow: 5px 0 20px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 9998;
    overflow-y: auto;
    margin: 0;
  }

  .nav-menu.open {
    left: 0 !important;
    z-index: 10001;
  }

  .nav-menu.open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
  }

  .nav-menu a {
    font-size: 18px;
    text-decoration: none;
    color: black;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: block;
  }

  .nav-menu a:hover {
    color: #d81b60;
  }

}
/* ===== MENÃš NORMAL ===== */
.nav-desktop {
  display: flex;
}

/* ===== SOLO EN MÃ“VIL ===== */
@media (max-width: 768px) {

  .nav-desktop {
    display: none;   /* ðŸ”¥ Oculta menÃº horizontal */
  }

}

/* FOOTER REDESIGN - modelo columnas + legal */
.footer {
    background: #ececec;
    padding: 56px 0 28px;
    font-size: 12px;
    color: #3f3f3f;
}

.footer .container {
    max-width: 980px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 28px;
    align-items: start;
    margin-bottom: 34px;
}

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

.footer-column h4 {
    font-size: 12px;
    margin: 0 0 2px;
    font-weight: 700;
    color: #2f2f2f;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #4c4c4c;
    line-height: 1.35;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-feedback {
    border: 1px solid #c7c7c7;
    padding: 12px;
    max-width: 190px;
    background: #f3f3f3;
}

.footer-feedback p {
    margin: 0 0 8px;
    line-height: 1.35;
    color: #3f3f3f;
}

.footer-feedback a {
    text-decoration: underline;
    color: #3f3f3f;
}

.footer-middle {
    text-align: center;
    margin-bottom: 20px;
    color: #646464;
}

.footer-middle a {
    color: #646464;
    text-decoration: none;
    margin: 0 5px;
}

.footer-middle a:hover {
    text-decoration: underline;
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 16px;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #626262;
    line-height: 1.45;
}

.facebook-logo-link {
    display: inline-flex;
    width: fit-content;
}

.facebook-logo-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.facebook-logo-link:hover img {
    transform: scale(1.08);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  text-decoration: none;
}

.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

/* Search pill (modelo 6pm) */
.search-bar,
.search-bar-header {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f3f3f3;
  border: 1px solid #bcbcbc;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.search-bar {
  width: min(480px, 100%);
}

.search-bar-header {
  width: min(440px, 100%);
  max-width: 440px;
}

.search-bar input,
.search-bar-header input {
  flex: 1;
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #2f2f2f;
  box-shadow: none;
}

.search-bar input::placeholder,
.search-bar-header input::placeholder {
  color: #4a4a4a;
}

.search-bar input:focus,
.search-bar-header input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.search-pill-btn,
.search-bar button,
.search-bar-header button {
  border: none;
  background: transparent;
  padding: 8px 14px 8px 8px;
  margin: 0;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transform: none;
}

.search-pill-btn svg,
.search-bar button svg,
.search-bar-header button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.search-pill-btn:hover,
.search-bar button:hover,
.search-bar-header button:hover {
  color: #4f4f4f;
  background: transparent;
  transform: none;
}

@media (max-width: 768px) {
  .search-bar,
  .search-bar-header {
    width: 100%;
    max-width: none;
  }

  .search-bar input,
  .search-bar-header input {
    font-size: 14px;
  }
}

/* Aparicion sorpresa al hacer scroll en productos */
.product-card.scroll-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.97);
  filter: blur(2px);
  transition:
    opacity 0.55s ease,
    transform 0.6s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.product-card.scroll-reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .product-card.scroll-reveal,
  .product-card.scroll-reveal.reveal-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}




/* Favoritos drawer */
.favorites-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 9997;
}

.favorites-overlay.open {
  opacity: 1;
  visibility: visible;
}

.favorites-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: min(430px, 94vw);
  height: 100vh;
  background: #fff;
  z-index: 9998;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.22);
  transition: right 0.28s ease;
  display: flex;
  flex-direction: column;
}

.favorites-drawer.open {
  right: 0;
}

.favorites-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #ececec;
}

.favorites-header h3 {
  margin: 0;
  font-size: 19px;
}

.favorites-close {
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.favorites-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.favorites-empty {
  padding: 24px 12px;
  color: #666;
  text-align: center;
}

.favorites-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid #efefef;
  border-radius: 10px;
  margin-bottom: 10px;
}

.favorites-item img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
}

.favorites-item-brand {
  margin: 0 0 2px;
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
}

.favorites-item-name {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
}

.favorites-item-price {
  margin: 0 0 8px;
  font-size: 14px;
  color: #d81b60;
  font-weight: 700;
}

.favorites-item-actions {
  display: flex;
  gap: 8px;
}

.favorites-view,
.favorites-remove {
  border: none;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
}

.favorites-view {
  background: #111;
  color: #fff;
  text-decoration: none;
}

.favorites-remove {
  background: #f3f3f3;
  color: #333;
}

/* Final mobile priority overrides */
@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 6px; padding: 0 12px; }
  .top-links { width: 100%; justify-content: space-between; gap: 10px; }
  .header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; padding: 10px 12px; }
  .menu-toggle { display: inline-flex !important; order: 0; align-items: center; justify-content: center; width: 32px; height: 32px; }
  .close-menu {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #d8dce6;
    background: #fff;
    color: #1f2942;
    font-size: 22px;
    line-height: 1;
  }
  .logo { min-width: 0; width: 100%; text-align: center; overflow: hidden; }
  .brand-logo-link { justify-content: center; width: 100%; white-space: nowrap; }
  .icons { gap: 6px; margin-left: 0; }
  .icons .user-menu { margin-right: 0; }
  .user-btn { min-width: 28px; padding: 0; }
  .user-btn #userNameText { display: none !important; }
  .icon-btn { width: 30px; height: 30px; }
  .icon-img { width: 18px; height: 18px; }
  .search-offer-section .container { padding: 0 12px; }
  .search-offer-wrapper { gap: 12px; }
  .offer-content h2 { font-size: 24px; line-height: 1.25; text-wrap: balance; }
  .hero { height: 430px; }
  .hero-content h1 { font-size: clamp(46px, 15vw, 62px); line-height: 1.03; }
  .hero-content p { font-size: 18px; }
  .hero-content strong { font-size: 14px; }
}

@media (max-width: 480px) {
  .header {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 6px;
    padding: 8px 10px;
  }

  .menu-toggle {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .logo {
    text-align: left;
  }

  .brand-logo-link {
    justify-content: flex-start;
    gap: 4px;
  }

  .brand-main {
    font-size: clamp(28px, 8vw, 34px);
    letter-spacing: 1px;
  }

  .brand-script {
    display: none;
  }

  .icons {
    gap: 4px;
  }

  .icon-btn {
    width: 26px;
    height: 26px;
  }

  .icon-img {
    width: 15px;
    height: 15px;
  }

  .top-links { font-size: 11px; }
  .offer-content h2 { font-size: 21px; }
  .hero { height: 390px; }
  .hero-content h1 { font-size: clamp(42px, 14vw, 56px); }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .whatsapp-float img { width: 34px; height: 34px; }
}

/* =========================================================
   HOME REDESIGN (INDEX)
========================================================== */
.home-page {
  background:
    radial-gradient(1200px 500px at 105% -10%, rgba(255, 207, 223, 0.28) 0%, transparent 52%),
    radial-gradient(1000px 460px at -10% 16%, rgba(217, 235, 255, 0.34) 0%, transparent 55%),
    #f3f6fb;
}

.home-page .hero {
  background: #111826;
  border-radius: 24px;
  width: min(1320px, calc(100% - 48px));
  margin: 26px auto 0;
  box-shadow: 0 26px 60px -32px rgba(8, 20, 42, 0.55);
  overflow: hidden;
}

.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 12, 26, 0.28), rgba(216, 27, 96, 0.18));
  pointer-events: none;
}

.home-page .hero-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.home-page .hero-showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-page .hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

.home-page .hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.home-page .hero-slide-media {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #10192b;
  z-index: 0;
}

.home-page .hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-page .hero-slide-content {
  position: absolute;
  left: clamp(18px, 4vw, 44px);
  right: clamp(18px, 4vw, 44px);
  bottom: clamp(18px, 4vw, 36px);
  max-width: min(620px, 95%);
  color: #fff;
  display: grid;
  gap: 12px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(8, 16, 34, .72), rgba(55, 16, 50, .55));
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(2px);
}

.home-page .hero-slide-intro .hero-slide-media {
  background:
    linear-gradient(120deg, rgba(7, 18, 38, .45), rgba(216, 27, 96, .22)),
    url("img/Casacas Invierno Sesion-1.jpg") center center / cover no-repeat;
}

.home-page .hero-slide-intro .hero-slide-media img {
  display: none;
}

.home-page .hero-slide-intro .hero-slide-content {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  max-width: 780px;
  text-align: center;
  justify-items: center;
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

.home-page .hero-slide-intro .hero-slide-content h1 {
  font-size: clamp(46px, 8vw, 94px);
  line-height: .9;
}

.home-page .hero-slide-intro .hero-slide-subtitle {
  font-size: clamp(22px, 2.9vw, 34px);
}

.home-page .hero-slide-intro .hero-slide-meta {
  font-size: clamp(14px, 1.8vw, 20px);
}

.home-page .hero-slide-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .36);
}

.home-page .hero-slide-content h1 {
  font-size: clamp(34px, 5.8vw, 64px);
  line-height: .95;
  margin: 0;
  color: #fff;
}

.home-page .hero-slide-subtitle {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  color: rgba(255, 255, 255, .92);
}

.home-page .hero-slide-meta {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .78);
}

.home-page .hero-slide-price {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.home-page .hero-slide-price .current {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1;
  color: #ff2e79;
  font-weight: 800;
}

.home-page .hero-slide-price .old {
  color: rgba(255, 255, 255, .6);
  text-decoration: line-through;
  font-size: clamp(14px, 2vw, 22px);
}

.home-page .hero-slide-actions {
  margin-top: 4px;
}

.home-page .hero-slide-actions .btn {
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 15px;
  background: linear-gradient(95deg, #ef2f78 0%, #9a42f5 100%);
}

.home-page .hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(5, 12, 24, .35);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.home-page .hero-nav-prev { left: 12px; }
.home-page .hero-nav-next { right: 12px; }

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

.home-page .hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.home-page .hero-dot.is-active {
  width: 24px;
  background: #fff;
}

.home-page #dynamicCatalog.offers {
  background: transparent;
  border-top: none;
  padding-top: 54px;
}

.home-page #dynamicCatalog > .container {
  background: linear-gradient(170deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #e4ebf7;
  border-radius: 24px;
  box-shadow: 0 24px 54px -30px rgba(16, 30, 58, 0.38);
  padding: 38px 32px 34px;
}

.home-page #dynamicCatalog h2 {
  margin-bottom: 34px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #121d33;
}

.home-page #dynamicCatalog h2::after {
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2e79 0%, #9a42f5 100%);
}

.home-page .published-category-group {
  margin-bottom: 30px;
}

.home-page .published-category-title {
  margin-bottom: 16px;
  font-size: clamp(30px, 2.6vw, 46px);
  letter-spacing: -0.01em;
  color: #162442;
  text-transform: capitalize;
}

.home-page .published-category-grid {
  gap: 22px;
}

.home-page #dynamicCatalog .product-card {
  border: 1px solid #e8edf7;
  border-radius: 16px;
  box-shadow: 0 16px 34px -26px rgba(7, 24, 52, 0.45);
  padding-bottom: 12px;
}

.home-page #dynamicCatalog .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -26px rgba(16, 30, 58, 0.5);
}

.home-page #dynamicCatalog .product-img {
  padding: 12px 12px 0;
}

.home-page #dynamicCatalog .product-img img {
  border-radius: 12px;
  background: #f5f7fb;
}

.home-page #dynamicCatalog .wishlist {
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e8edf7;
}

.home-page #dynamicCatalog .product-card h4 {
  margin-top: 14px;
  font-size: 26px;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.home-page #dynamicCatalog .product-card .model {
  margin-top: 8px;
  color: #4f5c73;
  font-size: 16px;
}

.home-page #dynamicCatalog .product-card .category {
  margin-top: 4px;
  color: #7a8599;
  font-size: 15px;
}

.home-page #dynamicCatalog .price {
  margin-top: 8px;
}

.home-page #dynamicCatalog .current {
  font-size: 34px;
  letter-spacing: -0.02em;
  color: #e11663;
}

.home-page #dynamicCatalog .old {
  font-size: 14px;
}

.home-page .btn-ver {
  border-radius: 999px;
  background: linear-gradient(95deg, #ef2f78 0%, #ab204f 100%);
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .home-page .hero {
    width: calc(100% - 24px);
    margin-top: 16px;
    border-radius: 16px;
    height: 430px;
  }

  .home-page .hero-slide {
    padding: 0;
  }

  .home-page .hero-slide-media {
    min-height: 0;
  }

  .home-page .hero-slide-content {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: 100%;
    gap: 8px;
    padding: 12px;
  }

  .home-page .hero-slide-intro .hero-slide-content {
    top: auto;
    bottom: 14px;
    transform: none;
    padding: 8px 6px 6px;
    max-width: 100%;
  }

  .home-page .hero-slide-intro .hero-slide-content h1 {
    font-size: clamp(36px, 11vw, 58px);
  }

  .home-page .hero-slide-content h1 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .home-page .hero-slide-price .current {
    font-size: clamp(30px, 9vw, 44px);
  }

  .home-page .hero-nav {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .home-page .hero-dots {
    bottom: 10px;
  }

  .home-page #dynamicCatalog > .container {
    padding: 24px 14px;
    border-radius: 16px;
  }

  .home-page #dynamicCatalog h2 {
    font-size: clamp(26px, 8.7vw, 40px);
    margin-bottom: 24px;
  }

  .home-page .published-category-title {
    font-size: clamp(24px, 8vw, 34px);
  }

  .home-page #dynamicCatalog .current {
    font-size: 28px;
  }
}

/* Brands redesign for home */
.home-page .brands {
  padding: 56px 0 34px;
  background: transparent;
}

.home-page .brands > .container {
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e4ebf7;
  border-radius: 24px;
  box-shadow: 0 22px 48px -30px rgba(16, 30, 58, 0.34);
  padding: 34px 30px 30px;
}

.home-page .brands h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(34px, 3.8vw, 52px);
  color: #13213a;
  letter-spacing: -0.02em;
}

.home-page .brands-grid {
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.home-page .brand-card {
  border: 1px solid #e7edf8;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  padding: 34px 20px 24px;
  box-shadow: 0 14px 30px -26px rgba(12, 24, 46, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-page .brand-card:hover {
  transform: translateY(-6px);
  border-color: #d8e2f2;
  box-shadow: 0 20px 38px -24px rgba(18, 33, 60, 0.48);
}

.home-page .brand-card img {
  height: 106px;
  filter: saturate(1.04) contrast(1.02);
}

.home-page .brand-card a {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #202e48;
  text-decoration: none;
  border-bottom: 2px solid #f05c90;
  padding-bottom: 2px;
}

.home-page .brand-card a:hover {
  color: #de2f72;
}

@media (max-width: 768px) {
  .home-page .brands > .container {
    padding: 24px 14px;
    border-radius: 16px;
  }

  .home-page .brands h2 {
    font-size: clamp(26px, 8.4vw, 40px);
    margin-bottom: 16px;
  }

  .home-page .brands-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .brand-card {
    padding: 22px 12px 16px;
    border-radius: 12px;
  }

  .home-page .brand-card img {
    height: 78px;
  }

  .home-page .brand-card a {
    font-size: 12px;
  }
}

/* Mobile refinement V2 for home catalog */
@media (max-width: 768px) {
  .home-page #dynamicCatalog.offers {
    padding: 18px 0 8px;
  }

  .home-page #dynamicCatalog > .container {
    padding: 18px 10px 14px;
    border-radius: 14px;
  }

  .home-page #dynamicCatalog h2 {
    text-align: left;
    font-size: 42px;
    line-height: 0.92;
    margin-bottom: 14px;
  }

  .home-page #dynamicCatalog h2::after {
    left: 0;
    transform: none;
    width: 76px;
  }

  .home-page .published-category-title {
    font-size: 42px;
    margin: 0 0 8px;
    line-height: 0.95;
  }

  .home-page .published-category-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .home-page #dynamicCatalog .product-card {
    width: 100%;
    max-width: none;
    border-radius: 14px;
    padding-bottom: 8px;
  }

  .home-page #dynamicCatalog .product-img {
    padding: 8px 8px 0;
  }

  .home-page #dynamicCatalog .product-img img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 10px;
  }

  .home-page #dynamicCatalog .wishlist {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .home-page #dynamicCatalog .product-card h4 {
    font-size: 36px;
    margin-top: 10px;
  }

  .home-page #dynamicCatalog .product-card .model {
    font-size: 14px;
    margin-top: 4px;
  }

  .home-page #dynamicCatalog .product-card .category {
    font-size: 13px;
    margin-top: 2px;
  }

  .home-page #dynamicCatalog .current {
    font-size: 46px;
  }

  .home-page #dynamicCatalog .old {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .home-page #dynamicCatalog h2 {
    font-size: 36px;
  }

  .home-page .published-category-title {
    font-size: 34px;
  }

  .home-page #dynamicCatalog .product-card h4 {
    font-size: 30px;
  }

  .home-page #dynamicCatalog .current {
    font-size: 40px;
  }
}


/* =========================================================
   HERO RESET (VOLVER AL BANNER ORIGINAL)
========================================================== */
.home-page .hero {
  height: 600px;
  background:
    linear-gradient(135deg, rgba(216, 27, 96, 0.16) 0%, rgba(9, 14, 30, 0.26) 100%),
    url("img/hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .hero::after {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.16), rgba(216, 27, 96, 0.08));
}

.home-page .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.home-page .hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.home-page .hero-content p {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
}

.home-page .hero-content strong {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.6vw, 24px);
  letter-spacing: 0;
}

.home-page .hero-content .btn {
  border-radius: 8px;
  padding: 12px 30px;
  background: #e21872;
}

@media (max-width: 768px) {
  .home-page .hero {
    height: 390px;
  }

  .home-page .hero-content {
    width: calc(100% - 24px);
  }

  .home-page .hero-content h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .home-page .hero-content p {
    font-size: clamp(18px, 6vw, 28px);
  }

  .home-page .hero-content strong {
    font-size: 14px;
  }
}

/* =========================================================
   HOME BANNER + PRODUCT CAROUSEL
========================================================== */
.home-page .hero-content h1 {
  font-size: clamp(44px, 6.3vw, 84px);
}

.home-page .hero-content p {
  font-size: clamp(20px, 2.2vw, 30px);
}

.home-page .hero-content strong {
  font-size: clamp(13px, 1.1vw, 17px);
}

.home-products-carousel {
  padding: 22px 0 8px;
}

.home-products-carousel .container {
  background: linear-gradient(165deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #e4ebf7;
  border-radius: 18px;
  box-shadow: 0 20px 44px -34px rgba(16, 30, 58, 0.45);
  padding: 16px;
}

.home-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.home-carousel-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  color: #152441;
}

.home-carousel-controls {
  display: flex;
  gap: 8px;
}

.home-carousel-controls button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d8e3f4;
  background: #fff;
  color: #1a2a4d;
  font-size: 22px;
  cursor: pointer;
}

.home-carousel-viewport {
  overflow: hidden;
}

.home-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.home-carousel-card {
  border: 1px solid #e8edf7;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.home-carousel-image-link {
  display: block;
  aspect-ratio: 4 / 5;
  background: #f3f6fb;
}

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

.home-carousel-info {
  padding: 10px 10px 12px;
}

.home-carousel-info h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
}

.home-carousel-info p {
  margin: 6px 0;
  font-size: 13px;
  color: #55617a;
  min-height: 34px;
}

.home-carousel-info .price .current {
  color: #e11663;
  font-size: 30px;
  font-weight: 800;
}

.home-carousel-info .price .old {
  color: #8b93a3;
  text-decoration: line-through;
  font-size: 13px;
  margin-left: 8px;
}

@media (max-width: 980px) {
  .home-carousel-track {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .home-page .hero-content h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .home-page .hero-content p {
    font-size: clamp(16px, 5.3vw, 22px);
  }

  .home-page .hero-content strong {
    font-size: 12px;
  }

  .home-products-carousel {
    padding-top: 14px;
  }

  .home-products-carousel .container {
    padding: 12px;
    border-radius: 14px;
  }

  .home-carousel-track {
    grid-auto-columns: 100%;
    gap: 12px;
  }
}

/* =========================================================
   HOT SALE CAROUSEL (BAJO BANNER)
========================================================== */
.home-hot-sale {
  position: relative;
  width: min(1320px, calc(100% - 48px));
  margin: 14px auto 4px;
}

.home-hot-sale .hot-sale-container {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.home-hot-sale .hot-sale-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  transition: transform .35s ease;
  will-change: transform;
}

.home-hot-sale .hot-sale-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #f4f5f8;
  border: 1px solid #dfe6f2;
  min-height: 360px;
}

.home-hot-sale .hot-sale-image-link {
  display: block;
  height: 100%;
}

.home-hot-sale .hot-sale-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hot-sale .hot-sale-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #d9e3f0;
  border-radius: 8px;
  padding: 8px 10px;
}

.home-hot-sale .hot-sale-title {
  font-size: 13px;
  font-weight: 600;
  color: #2d3649;
  margin-bottom: 4px;
  line-height: 1.2;
}

.home-hot-sale .hot-sale-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.home-hot-sale .hot-sale-price .current {
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  color: #1787c8;
}

.home-hot-sale .hot-sale-price .old {
  font-size: 16px;
  color: #444f68;
  text-decoration: line-through;
}

.home-hot-sale .hot-sale-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #ff8c00;
}

.home-hot-sale .hot-sale-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.home-hot-sale .hot-sale-prev { left: -22px; }
.home-hot-sale .hot-sale-next { right: -22px; }

@media (max-width: 1080px) {
  .home-hot-sale .hot-sale-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

@media (max-width: 640px) {
  .home-hot-sale {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .home-hot-sale .hot-sale-track {
    grid-auto-columns: 100%;
    gap: 12px;
  }

  .home-hot-sale .hot-sale-card {
    min-height: 320px;
  }

  .home-hot-sale .hot-sale-price .current {
    font-size: 34px;
  }

  .home-hot-sale .hot-sale-nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .home-hot-sale .hot-sale-prev { left: -8px; }
  .home-hot-sale .hot-sale-next { right: -8px; }
}

/* Primer slide del hero: texto centrado + boton (estilo verano) */
.home-page .hero-slide-intro .hero-slide-media {
  background: none !important;
}

.home-page .hero-slide-intro .hero-slide-media img {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page .hero-slide-intro .hero-slide-content {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  justify-items: center;
  max-width: min(940px, calc(100% - 40px));
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

.home-page .hero-slide-intro .hero-slide-content h1 {
  font-size: clamp(54px, 8vw, 102px);
  line-height: .92;
}

.home-page .hero-slide-intro .hero-slide-subtitle {
  font-size: clamp(24px, 2.8vw, 40px);
}

.home-page .hero-slide-intro .hero-slide-meta {
  font-size: clamp(14px, 1.6vw, 22px);
}

@media (max-width: 768px) {
  .home-page .hero-slide-intro .hero-slide-content {
    left: 50%;
    right: auto;
    bottom: 18px;
    top: auto;
    transform: translateX(-50%);
    max-width: calc(100% - 24px);
  }

  .home-page .hero-slide-intro .hero-slide-content h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .home-page .hero-slide-intro .hero-slide-subtitle {
    font-size: clamp(18px, 5.8vw, 28px);
  }
}

/* =========================================================
   HERO REDESIGN REFINADO
========================================================== */
.home-page .hero {
  border-radius: 26px;
  overflow: hidden;
}

.home-page .hero::after {
  background: linear-gradient(110deg, rgba(8, 14, 32, 0.32), rgba(216, 27, 96, 0.12));
}

.home-page .hero-slide-content {
  left: clamp(22px, 3.2vw, 42px);
  right: auto;
  bottom: clamp(20px, 3vw, 34px);
  width: min(520px, calc(100% - 44px));
  padding: 20px 20px 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 23, 44, 0.78), rgba(61, 21, 58, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 42px -28px rgba(7, 14, 31, 0.9);
  backdrop-filter: blur(8px);
}

.home-page .hero-slide-label {
  font-size: 11px;
  letter-spacing: 0.07em;
  background: rgba(255, 255, 255, 0.2);
}

.home-page .hero-slide-content h1 {
  font-size: clamp(52px, 6.2vw, 78px);
  line-height: 0.9;
}

.home-page .hero-slide-subtitle {
  font-size: clamp(20px, 2vw, 34px);
}

.home-page .hero-slide-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.home-page .hero-slide-price {
  margin-top: 2px;
}

.home-page .hero-slide-price .current {
  font-size: clamp(48px, 6vw, 68px);
}

.home-page .hero-slide-actions .btn {
  padding: 11px 22px;
  font-size: 15px;
  background: linear-gradient(90deg, #ff2e79 0%, #8f4fff 100%);
  box-shadow: 0 12px 28px -16px rgba(255, 46, 121, 0.8);
}

.home-page .hero-nav {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(13, 18, 36, 0.42);
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.7);
}

.home-page .hero-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.home-page .hero-dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.55);
}

.home-page .hero-dot.is-active {
  width: 22px;
  background: #ffffff;
}

/* Intro slide mantiene texto centrado y limpio */
.home-page .hero-slide-intro .hero-slide-content {
  left: 50%;
  right: auto;
  width: min(940px, calc(100% - 40px));
  transform: translate(-50%, -50%);
  text-align: center;
  justify-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .hero-slide-intro .hero-slide-content h1 {
  font-size: clamp(56px, 8.2vw, 102px);
}

.home-page .hero-slide-intro .hero-slide-subtitle {
  font-size: clamp(22px, 3vw, 38px);
}

@media (max-width: 900px) {
  .home-page .hero-slide-content {
    width: min(460px, calc(100% - 24px));
    left: 12px;
    bottom: 14px;
    padding: 14px 14px 12px;
    border-radius: 14px;
  }

  .home-page .hero-slide-content h1 {
    font-size: clamp(40px, 9.2vw, 56px);
  }

  .home-page .hero-slide-subtitle {
    font-size: clamp(16px, 5vw, 24px);
  }

  .home-page .hero-slide-price .current {
    font-size: clamp(38px, 10vw, 52px);
  }

  .home-page .hero-slide-actions .btn {
    width: 100%;
    text-align: center;
  }

  .home-page .hero-slide-intro .hero-slide-content {
    left: 50%;
    width: calc(100% - 18px);
    transform: translateX(-50%);
    top: auto;
    bottom: 18px;
  }

  .home-page .hero-slide-intro .hero-slide-content h1 {
    font-size: clamp(44px, 11vw, 64px);
  }

  .home-page .hero-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

/* Ajuste de escala para imagenes de producto en hero */
.home-page .hero-slide[data-kind="product"] .hero-slide-media {
  background: radial-gradient(circle at center, rgba(255,255,255,.28) 0%, rgba(236,240,249,.6) 100%);
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media img {
  object-fit: contain;
  object-position: center center;
  transform: scale(0.86);
}

@media (max-width: 900px) {
  .home-page .hero-slide[data-kind="product"] .hero-slide-media img {
    transform: scale(0.92);
  }
}

/* Banner movil tipo tarjeta horizontal (foto izquierda + texto derecha) */
@media (max-width: 768px) {
  .home-page .hero {
    height: 186px;
    border-radius: 14px;
    width: calc(100% - 12px);
    margin-top: 10px;
  }

  .home-page .hero-showcase,
  .home-page .hero-showcase-track {
    height: 100%;
  }

  .home-page .hero-slide[data-kind="product"] {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 8px;
    padding: 8px;
    align-items: stretch;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media {
    position: relative;
    inset: auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #eef2fb;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 10px;
    border-radius: 10px;
    gap: 5px;
    background: linear-gradient(145deg, rgba(27, 18, 46, 0.92), rgba(56, 17, 62, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-label {
    font-size: 8px;
    padding: 3px 7px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content h1 {
    font-size: 17px;
    margin: 0;
    line-height: 1;
    letter-spacing: 0;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-subtitle {
    font-size: 10px;
    margin: 0;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-meta {
    font-size: 8px;
    margin: 0;
    opacity: 0.92;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-price {
    margin-top: 2px;
    gap: 5px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-price .current {
    font-size: 16px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-price .old {
    font-size: 9px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-actions .btn {
    width: auto;
    padding: 5px 10px;
    font-size: 9px;
    border-radius: 999px;
  }

  .home-page .hero-nav {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .home-page .hero-nav-prev { left: 6px; }
  .home-page .hero-nav-next { right: 6px; }

  .home-page .hero-dots {
    bottom: 6px;
    gap: 5px;
  }

  .home-page .hero-dot {
    width: 6px;
    height: 6px;
  }

  .home-page .hero-dot.is-active {
    width: 16px;
  }
}

/* =========================================================
   HERO FINAL FIX (DESKTOP + MOBILE)
========================================================== */
.home-page .hero {
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
}

.home-page .hero-showcase,
.home-page .hero-showcase-track {
  width: 100%;
  height: 100%;
}

.home-page .hero-slide {
  position: absolute;
  inset: 0;
}

/* Slides de producto: imagen de fondo limpia + card */
.home-page .hero-slide[data-kind="product"] .hero-slide-media {
  position: absolute;
  inset: 0;
  background: #111a2e !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media img {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-content {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(520px, calc(100% - 44px));
  max-width: min(520px, calc(100% - 44px));
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(18, 24, 44, 0.82), rgba(66, 22, 60, 0.66));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 22px 48px -30px rgba(0,0,0,.8);
  backdrop-filter: blur(6px);
}

.home-page .hero-slide[data-kind="product"] .hero-slide-content h1 {
  font-size: clamp(56px, 7vw, 82px);
  line-height: .9;
  margin: 0;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-subtitle {
  font-size: clamp(20px, 2.2vw, 34px);
}

.home-page .hero-slide[data-kind="product"] .hero-slide-price .current {
  font-size: clamp(52px, 6.4vw, 74px);
}

/* Slide intro: texto centrado, sin card */
.home-page .hero-slide-intro .hero-slide-media {
  background: none !important;
}

.home-page .hero-slide-intro .hero-slide-media img {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.home-page .hero-slide-intro .hero-slide-content {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(960px, calc(100% - 36px));
  max-width: min(960px, calc(100% - 36px));
  text-align: center;
  justify-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.home-page .hero-slide-intro .hero-slide-content h1 {
  font-size: clamp(58px, 8.4vw, 104px);
}

.home-page .hero-slide-intro .hero-slide-subtitle {
  font-size: clamp(24px, 3vw, 40px);
}

@media (max-width: 768px) {
  .home-page .hero {
    height: 188px;
    border-radius: 14px;
    width: calc(100% - 12px);
    margin-top: 8px;
  }

  .home-page .hero-slide[data-kind="product"] {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 8px;
    padding: 8px;
    align-items: stretch;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media {
    position: relative;
    inset: auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    background: #eff3fb !important;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media img {
    object-fit: cover !important;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 10px;
    border-radius: 10px;
    gap: 5px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content h1 {
    font-size: 17px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-subtitle { font-size: 10px; }
  .home-page .hero-slide[data-kind="product"] .hero-slide-meta { font-size: 8px; }
  .home-page .hero-slide[data-kind="product"] .hero-slide-price .current { font-size: 16px; }
  .home-page .hero-slide[data-kind="product"] .hero-slide-price .old { font-size: 9px; }
  .home-page .hero-slide[data-kind="product"] .hero-slide-actions .btn { font-size: 9px; padding: 5px 10px; }

  .home-page .hero-slide-intro .hero-slide-content {
    left: 50%;
    bottom: 10px;
    top: auto;
    transform: translateX(-50%);
    width: calc(100% - 16px);
  }

  .home-page .hero-slide-intro .hero-slide-content h1 { font-size: clamp(38px, 10.8vw, 60px); }
  .home-page .hero-slide-intro .hero-slide-subtitle { font-size: clamp(16px, 5.4vw, 26px); }
}

/* =========================================================
   HERO RESTORE (ESTILO BONITO ANTERIOR)
========================================================== */
.home-page .hero {
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
}

.home-page .hero-showcase,
.home-page .hero-showcase-track {
  width: 100%;
  height: 100%;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media {
  position: absolute;
  inset: 0;
  background: #111a2e !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media img {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(510px, calc(100% - 40px));
  max-width: min(510px, calc(100% - 40px));
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(20, 26, 48, .80), rgba(72, 26, 72, .62));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 42px -28px rgba(5, 10, 24, .8);
  backdrop-filter: blur(5px);
}

.home-page .hero-slide[data-kind="product"] .hero-slide-label {
  font-size: 11px;
  padding: 5px 12px;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-content h1 {
  font-size: clamp(54px, 6.8vw, 80px);
  line-height: .9;
  margin: 0;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-subtitle {
  font-size: clamp(20px, 2.1vw, 36px);
}

.home-page .hero-slide[data-kind="product"] .hero-slide-meta {
  font-size: 13px;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-price .current {
  font-size: clamp(56px, 6.4vw, 78px);
}

.home-page .hero-slide[data-kind="product"] .hero-slide-actions .btn {
  background: linear-gradient(95deg, #ff2e79 0%, #8f4fff 100%);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
}

.home-page .hero-nav {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(30, 35, 52, .42);
  color: #fff;
  box-shadow: 0 8px 18px -12px rgba(0,0,0,.7);
}

.home-page .hero-dots {
  bottom: 10px;
}

.home-page .hero-dot {
  width: 9px;
  height: 9px;
  background: rgba(255,255,255,.6);
}

.home-page .hero-dot.is-active {
  width: 20px;
  background: #fff;
}

/* Mantener intro limpio y centrado */
.home-page .hero-slide-intro .hero-slide-content {
  left: 50%;
  right: auto;
  width: min(940px, calc(100% - 36px));
  transform: translate(-50%, -50%);
  text-align: center;
  justify-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

@media (max-width: 768px) {
  .home-page .hero {
    height: 186px;
    border-radius: 14px;
    width: calc(100% - 12px);
    margin-top: 8px;
  }

  .home-page .hero-slide[data-kind="product"] {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 8px;
    padding: 8px;
    align-items: stretch;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media {
    position: relative;
    inset: auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 10px;
    border-radius: 10px;
    gap: 5px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content h1 { font-size: 17px; }
  .home-page .hero-slide[data-kind="product"] .hero-slide-subtitle { font-size: 10px; }
  .home-page .hero-slide[data-kind="product"] .hero-slide-meta { font-size: 8px; }
  .home-page .hero-slide[data-kind="product"] .hero-slide-price .current { font-size: 16px; }
  .home-page .hero-slide[data-kind="product"] .hero-slide-actions .btn { font-size: 9px; padding: 5px 10px; }
}

/* =========================================================
   PRODUCT HERO SLIDES REDESIGN (NO INTRO)
========================================================== */
.home-page .hero-slide[data-kind="product"] {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media {
  position: relative;
  inset: auto;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: radial-gradient(circle at 18% 14%, rgba(255,255,255,.25), rgba(234,238,248,.92));
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  transform: scale(0.96) !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-content {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  max-width: none;
  border-radius: 0;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(31, 19, 48, .90) 0%, rgba(57, 18, 68, .86) 100%);
  border: none;
  box-shadow: none;
  backdrop-filter: blur(0);
  display: grid;
  align-content: center;
  gap: 10px;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-label {
  font-size: 11px;
  width: fit-content;
  padding: 5px 10px;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-content h1 {
  font-size: clamp(46px, 5.2vw, 68px);
  line-height: .92;
  margin: 0;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-subtitle {
  font-size: clamp(18px, 1.8vw, 28px);
  margin: 0;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-meta {
  font-size: 14px;
  margin: 0;
  opacity: .9;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-price {
  margin-top: 2px;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-price .current {
  font-size: clamp(48px, 5.8vw, 72px);
}

.home-page .hero-slide[data-kind="product"] .hero-slide-actions .btn {
  width: fit-content;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .home-page .hero-slide[data-kind="product"] {
    grid-template-columns: 46% 54%;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content {
    padding: 14px 12px;
    gap: 6px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content h1 {
    font-size: 20px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-subtitle {
    font-size: 12px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-meta {
    font-size: 10px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-price .current {
    font-size: 24px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-price .old {
    font-size: 10px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-actions .btn {
    padding: 6px 12px;
    font-size: 10px;
  }
}

/* Ajuste fino hero productos: quitar fondo fantasma y mejorar encuadre */
.home-page .hero-slide[data-kind="product"] .hero-slide-content {
  background: linear-gradient(180deg, rgba(38, 18, 56, 0.96) 0%, rgba(58, 20, 72, 0.96) 100%);
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media {
  background: #0f1a33 !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media img {
  object-fit: cover !important;
  object-position: center 22%;
  transform: none !important;
}

/* Reducir escala de imagen en slides de producto (desktop) */
.home-page .hero-slide[data-kind="product"] .hero-slide-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media img {
  width: 88% !important;
  height: 88% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 900px) {
  .home-page .hero-slide[data-kind="product"] .hero-slide-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* =========================================================
   HERO PRODUCT REDESIGN V2 (desktop)
========================================================== */
@media (min-width: 901px) {
  .home-page .hero-slide[data-kind="product"] {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 0;
    background: linear-gradient(120deg, #0f1d3f 0%, #18244a 46%, #3a164e 100%);
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media {
    position: relative;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    padding: 18px 10px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media img {
    width: min(72%, 420px) !important;
    height: auto !important;
    max-height: 92%;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 10px;
    box-shadow: 0 24px 46px -30px rgba(0, 0, 0, 0.7);
    background: #edf1f9;
    padding: 6px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 28px);
    max-width: none;
    margin: 14px;
    border-radius: 18px;
    padding: 26px 24px;
    background: linear-gradient(150deg, rgba(36, 14, 56, 0.9), rgba(73, 18, 78, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    display: grid;
    align-content: center;
    gap: 10px;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content h1 {
    font-size: clamp(54px, 6vw, 78px);
    line-height: .9;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-subtitle {
    font-size: clamp(18px, 1.9vw, 30px);
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-price .current {
    font-size: clamp(54px, 6.2vw, 76px);
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-actions .btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* =========================================================
   HERO ESTILO SAGA (override final)
========================================================== */
.home-page .hero {
  height: 460px !important;
  border-radius: 0 !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-shadow: none !important;
  background: #e7f2fb !important;
}

.home-page .hero::after {
  background: linear-gradient(90deg, rgba(239,246,252,.96) 0%, rgba(171,212,240,.88) 100%) !important;
}

.home-page .hero-slide {
  display: grid !important;
  grid-template-columns: 44% 56% !important;
  align-items: stretch !important;
  inset: 0 !important;
}

.home-page .hero-slide .hero-slide-content {
  grid-column: 1 !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 46px 36px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  color: #1f2b3a !important;
  text-align: left !important;
  justify-items: start !important;
  align-content: center !important;
  gap: 10px !important;
  z-index: 2 !important;
}

.home-page .hero-slide .hero-slide-label {
  background: #dbe5ee !important;
  color: #394757 !important;
  border: none !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
}

.home-page .hero-slide .hero-slide-content h1 {
  color: #1a2636 !important;
  font-size: clamp(54px, 6vw, 78px) !important;
  line-height: .92 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
}

.home-page .hero-slide .hero-slide-subtitle {
  color: #2c3a4b !important;
  font-size: clamp(20px, 2.2vw, 34px) !important;
  margin: 0 !important;
}

.home-page .hero-slide .hero-slide-meta {
  color: #516273 !important;
  font-size: 14px !important;
  margin: 0 !important;
}

.home-page .hero-slide .hero-slide-price .current {
  color: #1e2d42 !important;
  font-size: clamp(48px, 6vw, 72px) !important;
}

.home-page .hero-slide .hero-slide-price .old {
  color: #7f8d9d !important;
}

.home-page .hero-slide .hero-slide-actions .btn {
  background: #2d3138 !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-size: 15px !important;
}

.home-page .hero-slide .hero-slide-media {
  grid-column: 2 !important;
  position: relative !important;
  inset: auto !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.home-page .hero-slide .hero-slide-media img {
  display: block !important;
  width: 86% !important;
  height: 86% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  border-radius: 10px !important;
}

.home-page .hero-nav {
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;
  background: rgba(91, 106, 120, .55) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}

.home-page .hero-nav-prev { left: 8px !important; }
.home-page .hero-nav-next { right: 8px !important; }

.home-page .hero-dots {
  bottom: 8px !important;
  gap: 5px !important;
}

.home-page .hero-dot {
  width: 8px !important;
  height: 8px !important;
  background: rgba(89, 101, 113, .55) !important;
}

.home-page .hero-dot.is-active {
  width: 18px !important;
  background: #5b6773 !important;
}

@media (max-width: 900px) {
  .home-page .hero {
    height: 210px !important;
    border-radius: 10px !important;
    width: calc(100% - 10px) !important;
    margin-top: 8px !important;
  }

  .home-page .hero-slide {
    grid-template-columns: 48% 52% !important;
  }

  .home-page .hero-slide .hero-slide-content {
    padding: 12px 10px !important;
    gap: 5px !important;
  }

  .home-page .hero-slide .hero-slide-label {
    font-size: 8px !important;
    padding: 3px 6px !important;
  }

  .home-page .hero-slide .hero-slide-content h1 {
    font-size: 18px !important;
  }

  .home-page .hero-slide .hero-slide-subtitle {
    font-size: 11px !important;
  }

  .home-page .hero-slide .hero-slide-meta {
    font-size: 9px !important;
  }

  .home-page .hero-slide .hero-slide-price .current {
    font-size: 20px !important;
  }

  .home-page .hero-slide .hero-slide-actions .btn {
    font-size: 9px !important;
    padding: 5px 10px !important;
  }

  .home-page .hero-slide .hero-slide-media img {
    width: 92% !important;
    height: 92% !important;
  }
}

/* =========================================================
   HERO FIX FINAL (corrige estilos cruzados)
========================================================== */
.home-page .hero-slide[data-kind="product"] {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  background: #101a34 !important;
  overflow: hidden !important;
  display: block !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-content {
  position: absolute !important;
  left: 22px !important;
  right: auto !important;
  bottom: 22px !important;
  top: auto !important;
  transform: none !important;
  width: min(520px, calc(100% - 44px)) !important;
  max-width: min(520px, calc(100% - 44px)) !important;
  padding: 16px 16px 14px !important;
  border-radius: 16px !important;
  background: linear-gradient(140deg, rgba(20, 26, 48, .82), rgba(72, 26, 72, .68)) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  box-shadow: 0 18px 42px -28px rgba(5,10,24,.8) !important;
  backdrop-filter: blur(5px) !important;
  color: #fff !important;
  text-align: left !important;
  justify-items: start !important;
  gap: 8px !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-label {
  background: rgba(255,255,255,.22) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-content h1,
.home-page .hero-slide[data-kind="product"] .hero-slide-subtitle,
.home-page .hero-slide[data-kind="product"] .hero-slide-meta {
  color: #fff !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-price .current {
  color: #ff2e79 !important;
}

.home-page .hero-slide[data-kind="product"] .hero-slide-actions .btn {
  background: linear-gradient(95deg, #ff2e79 0%, #8f4fff 100%) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .home-page .hero-slide[data-kind="product"] {
    display: grid !important;
    grid-template-columns: 44% 56% !important;
    gap: 8px !important;
    padding: 8px !important;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media {
    position: relative !important;
    inset: auto !important;
    border-radius: 8px !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-media img {
    object-fit: cover !important;
  }

  .home-page .hero-slide[data-kind="product"] .hero-slide-content {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none !important;
    padding: 10px !important;
    border-radius: 10px !important;
  }
}

/* =========================================================
   FIX INTRO HERO (comenzo el verano en full banner)
========================================================== */
.home-page .hero-slide.hero-slide-intro {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
}

.home-page .hero-slide.hero-slide-intro .hero-slide-media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #c7ddef !important;
  overflow: hidden !important;
}

.home-page .hero-slide.hero-slide-intro .hero-slide-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.home-page .hero-slide.hero-slide-intro .hero-slide-content {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  width: min(940px, calc(100% - 36px)) !important;
  max-width: min(940px, calc(100% - 36px)) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  justify-items: center !important;
  align-content: center !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  color: #fff !important;
}

.home-page .hero-slide.hero-slide-intro .hero-slide-content h1,
.home-page .hero-slide.hero-slide-intro .hero-slide-subtitle,
.home-page .hero-slide.hero-slide-intro .hero-slide-meta {
  color: #fff !important;
}

.home-page .hero-slide.hero-slide-intro .hero-slide-content h1 {
  font-size: clamp(56px, 8.2vw, 104px) !important;
  line-height: .92 !important;
}

.home-page .hero-slide.hero-slide-intro .hero-slide-subtitle {
  font-size: clamp(24px, 3vw, 40px) !important;
}

.home-page .hero-slide.hero-slide-intro .hero-slide-meta {
  font-size: clamp(14px, 1.6vw, 22px) !important;
}

.home-page .hero-slide.hero-slide-intro .hero-slide-actions .btn {
  background: #e21872 !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .home-page .hero-slide.hero-slide-intro .hero-slide-content {
    top: auto !important;
    bottom: 14px !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 18px) !important;
  }

  .home-page .hero-slide.hero-slide-intro .hero-slide-content h1 {
    font-size: clamp(40px, 11vw, 64px) !important;
  }

  .home-page .hero-slide.hero-slide-intro .hero-slide-subtitle {
    font-size: clamp(16px, 5.5vw, 28px) !important;
  }
}

/* =========================================================
   INTRO HERO - CASACAS STYLE
========================================================== */
.home-page .hero-slide-intro-casacas .hero-intro-layout {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 33% 67%;
  gap: 0;
  background: linear-gradient(90deg, #eef1f5 0%, #d9dee5 100%);
}

.home-page .hero-slide-intro-casacas .hero-intro-left {
  padding: 34px 28px;
  display: grid;
  align-content: center;
  gap: 8px;
  color: #272e37;
}

.home-page .hero-slide-intro-casacas .hero-intro-left .hero-slide-label {
  background: #d7dde4;
  color: #3f4a57;
  border: none;
}

.home-page .hero-slide-intro-casacas .hero-intro-left h1 {
  margin: 0;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .9;
  color: #252d38;
}

.home-page .hero-slide-intro-casacas .hero-intro-left .hero-slide-subtitle {
  margin: 0;
  color: #3f4b58;
  font-size: clamp(16px, 1.7vw, 26px);
}

.home-page .hero-slide-intro-casacas .hero-intro-left .hero-slide-meta {
  margin: 2px 0 0;
  color: #5f6a77;
  font-size: 13px;
}

.home-page .hero-slide-intro-casacas .hero-intro-left .btn {
  background: #2f353d;
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
}

.home-page .hero-slide-intro-casacas .hero-intro-right {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  align-items: stretch;
}

.home-page .hero-slide-intro-casacas .hero-intro-card {
  background: #f1f3f7;
  border: 1px solid #d4dbe5;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}

.home-page .hero-slide-intro-casacas .hero-intro-card-image {
  display: block;
  min-height: 0;
}

.home-page .hero-slide-intro-casacas .hero-intro-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .hero-slide-intro-casacas .hero-intro-card-footer {
  background: #e91e63;
  color: #fff;
  padding: 8px 10px;
  text-align: center;
}

.home-page .hero-slide-intro-casacas .hero-intro-card-footer strong {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
}

@media (max-width: 900px) {
  .home-page .hero-slide-intro-casacas .hero-intro-layout {
    grid-template-columns: 1fr;
  }

  .home-page .hero-slide-intro-casacas .hero-intro-right {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 10px 10px;
  }

  .home-page .hero-slide-intro-casacas .hero-intro-left {
    padding: 10px;
    gap: 4px;
  }

  .home-page .hero-slide-intro-casacas .hero-intro-left h1 {
    font-size: 26px;
  }

  .home-page .hero-slide-intro-casacas .hero-intro-left .hero-slide-subtitle {
    font-size: 12px;
  }

  .home-page .hero-slide-intro-casacas .hero-intro-left .hero-slide-meta {
    font-size: 9px;
  }

  .home-page .hero-slide-intro-casacas .hero-intro-left .btn {
    font-size: 10px;
    padding: 5px 10px;
  }

  .home-page .hero-slide-intro-casacas .hero-intro-card-footer {
    padding: 4px 6px;
  }

  .home-page .hero-slide-intro-casacas .hero-intro-card-footer strong {
    font-size: 14px;
  }
}

/* Fix de especificidad para intro por categoria (casacas/formador/zapatillas) */
.home-page .hero-slide.hero-slide-intro-category .hero-intro-layout {
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  grid-template-columns: 33% 67% !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left,
.home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
  z-index: 2;
}

@media (max-width: 900px) {
  .home-page .hero-slide.hero-slide-intro-category .hero-intro-layout {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   REDISEÑO FINAL: CASACAS / FORMADOR / ZAPATILLAS
========================================================== */
.home-page .hero-slide.hero-slide-intro-category .hero-intro-layout {
  background: linear-gradient(120deg, #e9eef4 0%, #d4dee9 100%) !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left {
  background: linear-gradient(180deg, rgba(18, 35, 64, 0.08), rgba(24, 42, 74, 0.02));
  border-right: 1px solid #cdd8e6;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left h1 {
  color: #1f2d40 !important;
  font-size: clamp(56px, 6vw, 84px) !important;
  line-height: 0.88 !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-subtitle {
  color: #45576f !important;
  font-size: clamp(20px, 2vw, 30px) !important;
  line-height: 1.2;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-meta {
  color: #6a7b91 !important;
  font-size: 13px !important;
  letter-spacing: .02em;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .btn {
  background: #232f41 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-size: 14px !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
  gap: 12px !important;
  padding: 12px !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
  border-radius: 10px !important;
  border: 1px solid #cbd6e4 !important;
  background: #f8fbff !important;
  box-shadow: 0 8px 24px -18px rgba(24, 43, 73, 0.45);
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
  background: linear-gradient(90deg, #eb1f72 0%, #b82b85 100%) !important;
  padding: 7px 8px !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
  font-size: clamp(24px, 2.4vw, 34px) !important;
  color: #fff !important;
}

@media (max-width: 900px) {
  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left {
    border-right: none;
    border-bottom: 1px solid #ccd8e8;
    padding: 10px !important;
    gap: 4px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left h1 {
    font-size: 28px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-subtitle {
    font-size: 12px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-meta {
    font-size: 9px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
    gap: 7px !important;
    padding: 0 10px 10px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
    font-size: 13px !important;
  }
}

/* =========================================================
   REDISEÑO V2 - HERO CATEGORÍAS (CASACAS/FORMADOR/ZAPATILLAS)
========================================================== */
.home-page .hero-slide.hero-slide-intro-category .hero-intro-layout {
  background:
    radial-gradient(1200px 360px at 115% 110%, rgba(255, 86, 142, 0.12) 0%, transparent 52%),
    radial-gradient(920px 300px at -10% -20%, rgba(56, 116, 196, 0.16) 0%, transparent 58%),
    linear-gradient(135deg, #eef3f9 0%, #dbe6f2 100%) !important;
  border-radius: 16px;
  overflow: hidden;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left {
  padding: 30px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(245,250,255,.44));
  border-right: 1px solid rgba(57, 84, 122, 0.16);
  display: grid;
  align-content: center;
  gap: 8px;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-label {
  background: #1f3554;
  color: #fff;
  border: none;
  font-size: 10px;
  letter-spacing: .08em;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left h1 {
  color: #1a2a41 !important;
  font-size: clamp(52px, 5.8vw, 82px) !important;
  line-height: .88 !important;
  margin: 0;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-subtitle {
  color: #3e526e !important;
  font-size: clamp(18px, 1.8vw, 28px) !important;
  margin: 0;
  line-height: 1.2;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-meta {
  color: #607089 !important;
  font-size: 13px !important;
  margin: 0;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .btn {
  background: linear-gradient(95deg, #ff2f7a 0%, #972fd8 100%) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  box-shadow: 0 12px 26px -18px rgba(151, 47, 216, 0.7);
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
  padding: 12px;
  gap: 10px !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
  border-radius: 12px !important;
  border: 1px solid rgba(41, 64, 96, 0.18) !important;
  background: linear-gradient(180deg, #fefefe 0%, #f3f8ff 100%) !important;
  box-shadow: 0 16px 24px -22px rgba(29, 48, 77, 0.6);
  overflow: hidden;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image {
  min-height: 0;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image img {
  object-fit: cover !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
  background: linear-gradient(90deg, #ff2876 0%, #ba2a84 100%) !important;
  padding: 8px 8px !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
  color: #fff !important;
  font-size: clamp(22px, 2.2vw, 32px) !important;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left {
    padding: 10px;
    gap: 4px;
    border-right: none;
    border-bottom: 1px solid rgba(47, 70, 102, 0.16);
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left h1 {
    font-size: 28px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-subtitle {
    font-size: 12px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-meta {
    font-size: 9px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left .btn {
    font-size: 10px !important;
    padding: 5px 10px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
    gap: 7px !important;
    padding: 0 10px 10px;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
    border-radius: 8px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
    padding: 4px 6px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
    font-size: 13px !important;
  }
}

/* Fix layout intro categorias: quitar franja superior y alinear bloques */
.home-page .hero-slide.hero-slide-intro-category,
.home-page .hero-slide.hero-slide-intro-category .hero-intro-layout {
  height: 100% !important;
  min-height: 100% !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-layout {
  align-items: stretch !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left,
.home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
  height: 100% !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
  align-items: stretch !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
  height: 100% !important;
}

/* Reducir tamaño de imagen en tarjetas de categorias (casaca/formador/zapatillas) */
.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2f8;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image img {
  width: 84% !important;
  height: 84% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 900px) {
  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image img {
    width: 90% !important;
    height: 90% !important;
  }
}

/* FIX: asegurar que el precio se vea en tarjetas intro de categoria */
.home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
  flex: 0 0 auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 44px !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
  display: block !important;
}

/* FIX DEFINITIVO: tarjetas intro con precio siempre visible */
.home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
  display: grid !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  height: 100% !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image {
  min-height: 0 !important;
  height: auto !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
  position: relative !important;
  z-index: 3 !important;
  min-height: 48px !important;
  line-height: 1 !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
  font-size: clamp(18px, 2.1vw, 30px) !important;
}

@media (max-width: 900px) {
  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
    min-height: 30px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
    font-size: 12px !important;
  }
}

/* FIX ULTRA: precio siempre visible en tarjetas intro */
.home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
  position: relative !important;
  overflow: hidden !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image {
  position: absolute !important;
  inset: 0 0 48px 0 !important;
  min-height: 0 !important;
  height: auto !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  background: linear-gradient(90deg, #ff2876 0%, #ba2a84 100%) !important;
  color: #fff !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
  display: block !important;
  color: #fff !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

@media (max-width: 900px) {
  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image {
    inset: 0 0 28px 0 !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
    height: 28px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
    font-size: 12px !important;
  }
}

/* =========================================================
   REDISEÑO BONITO FINAL - HERO CATEGORÍAS
========================================================== */
.home-page .hero-slide.hero-slide-intro-category .hero-intro-layout {
  background:
    radial-gradient(1100px 380px at 105% -20%, rgba(255, 108, 164, 0.20) 0%, transparent 55%),
    radial-gradient(900px 300px at -15% 105%, rgba(63, 138, 226, 0.24) 0%, transparent 60%),
    linear-gradient(135deg, #edf3fb 0%, #dbe6f3 100%) !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left {
  padding: 30px 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(245,250,255,.48));
  border-right: 1px solid rgba(74, 101, 136, 0.18);
  border-radius: 0;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-label {
  background: #20395c !important;
  color: #fff !important;
  border: none !important;
  font-size: 10px !important;
  letter-spacing: .09em !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left h1 {
  font-size: clamp(56px, 6vw, 88px) !important;
  line-height: .86 !important;
  color: #1c2f49 !important;
  margin: 0 !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-subtitle {
  font-size: clamp(20px, 2vw, 30px) !important;
  color: #3f5878 !important;
  line-height: 1.15;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-meta {
  color: #647995 !important;
  font-size: 12px !important;
  letter-spacing: .03em;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-left .btn {
  background: linear-gradient(95deg, #ff2f7a 0%, #9a39e8 100%) !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 26px -16px rgba(154, 57, 232, 0.58);
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
  gap: 12px !important;
  padding: 12px !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
  position: relative !important;
  border-radius: 14px !important;
  border: 1px solid rgba(70, 97, 131, 0.2) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%) !important;
  box-shadow: 0 18px 30px -24px rgba(23, 43, 72, 0.52);
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image {
  position: absolute !important;
  inset: 0 0 56px 0 !important;
  background: #eef3fb;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.01);
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  background: linear-gradient(95deg, #ff2f7a 0%, #b72f90 100%) !important;
}

.home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
  color: #fff !important;
  font-size: clamp(22px, 2.2vw, 34px) !important;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left {
    padding: 10px !important;
    border-right: none;
    border-bottom: 1px solid rgba(73, 100, 135, 0.18);
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left h1 {
    font-size: 30px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-subtitle {
    font-size: 12px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left .hero-slide-meta {
    font-size: 9px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-left .btn {
    padding: 5px 10px !important;
    font-size: 10px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-right {
    gap: 8px !important;
    padding: 0 10px 10px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card {
    border-radius: 10px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-image {
    inset: 0 0 30px 0 !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer {
    height: 30px !important;
  }

  .home-page .hero-slide.hero-slide-intro-category .hero-intro-card-footer strong {
    font-size: 12px !important;
  }
}
