:root {
    --white: #ffffff;
    --black: #101010;
    --soft-black: #1d1d1d;
    --red: #e30613;
    --dark-red: #b9000e;
    --gray: #676767;
    --light-gray: #f5f5f5;
    --border: #e2e2e2;
    --whatsapp: #25d366;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}


/* ========================================
   REINICIO GENERAL
======================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--black);
    background-color: var(--white);

    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.menu-open,
body.cart-open {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* ========================================
   BARRA SUPERIOR
======================================== */

.topbar {
    overflow: hidden;

    color: var(--white);
    background-color: var(--black);

    border-bottom: 3px solid var(--red);
}

.topbar-track {
    display: flex;
    width: max-content;

    animation: topbarMovement 25s linear infinite;
}

.topbar-group {
    display: flex;
    min-height: 36px;

    align-items: center;
    flex-shrink: 0;
}

.topbar-group span {
    position: relative;

    padding: 0 34px;

    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.topbar-group span::after {
    position: absolute;
    top: 50%;
    right: 0;

    width: 5px;
    height: 5px;

    content: "";

    background-color: var(--red);
    border-radius: 50%;

    transform: translateY(-50%);
}

@keyframes topbarMovement {
    to {
        transform: translateX(-50%);
    }
}


/* ========================================
   ENCABEZADO
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;

    overflow: visible;

    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(14px);
}

.header-main {
    display: flex;
    min-height: 82px;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo-link {
    flex-shrink: 0;
}

.logo {
    width: 88px;
    height: 64px;

    object-fit: contain;
}

.navigation {
    display: flex;

    align-items: center;

    gap: 29px;
}

.navigation a {
    position: relative;

    font-size: 15px;
    font-weight: 800;
}

.navigation a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;

    width: 0;
    height: 3px;
    margin: auto;

    content: "";

    background-color: var(--red);

    transition: width 0.25s ease;
}

.navigation a:hover::after,
.navigation .active-link::after {
    width: 100%;
}

.navigation .active-link {
    color: var(--red);
}

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

.menu-button,
.cart-button {
    position: relative;

    display: inline-flex;

    width: 48px;
    height: 46px;

    align-items: center;
    justify-content: center;

    color: var(--white);
    background-color: var(--black);

    border: none;
    border-radius: 8px;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.menu-button {
    display: none;

    font-size: 27px;
    line-height: 1;
}

.menu-button:hover,
.cart-button:hover {
    background-color: var(--red);

    transform: translateY(-2px);
}

.cart-button svg {
    width: 25px;
    height: 25px;

    fill: currentColor;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;

    display: grid;

    min-width: 23px;
    height: 23px;
    padding: 0 5px;

    place-items: center;

    color: var(--white);
    background-color: var(--red);

    border: 2px solid var(--white);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;
}


/* ========================================
   BUSCADOR
======================================== */

.search-area {
    padding-bottom: 15px;
}

.search-form {
    display: flex;
    min-height: 50px;

    overflow: hidden;

    background-color: var(--black);
    border-radius: 8px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.search-symbol {
    display: grid;

    width: 52px;
    flex: 0 0 52px;

    place-items: center;

    color: var(--white);

    font-size: 25px;
}

.search-form input {
    width: 100%;
    min-width: 0;
    padding: 0 8px;

    color: var(--white);
    background-color: transparent;

    border: none;
    outline: none;
}

.search-form input::placeholder {
    color: #bdbdbd;
}

.search-form button {
    padding: 0 28px;

    color: var(--white);
    background-color: var(--red);

    border: none;

    font-weight: 900;

    transition: background-color 0.2s ease;
}

.search-form button:hover {
    background-color: var(--dark-red);
}


/* ========================================
   CARRUSEL
======================================== */

.hero-slider {
    position: relative;

    min-height: 590px;

    overflow: hidden;

    background-color: var(--light-gray);
}

.hero-slide {
    display: none;
    width: 100%;
    min-height: 590px;
}

.hero-slide.active {
    display: block;

    animation: slideAppearance 0.55s ease;
}

.hero-phone {
    background:
        radial-gradient(
            circle at 76% 48%,
            rgba(227, 6, 19, 0.17),
            transparent 31%
        ),
        linear-gradient(120deg, #ffffff, #fff2f3);
}

.hero-tv {
    background:
        radial-gradient(
            circle at 76% 48%,
            rgba(227, 6, 19, 0.12),
            transparent 34%
        ),
        linear-gradient(120deg, #ffffff, #f4f4f4);
}

.hero-fridge {
    background:
        radial-gradient(
            circle at 76% 48%,
            rgba(0, 0, 0, 0.09),
            transparent 34%
        ),
        linear-gradient(120deg, #ffffff, #f0f0f0);
}

@keyframes slideAppearance {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-layout {
    display: grid;
    min-height: 590px;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, 0.95fr);

    align-items: center;

    gap: 35px;
}

.hero-copy {
    position: relative;
    z-index: 3;

    padding: 70px 0;
}

.hero-slide.active .hero-copy > * {
    opacity: 0;

    animation: heroTextAppearance 0.65s ease forwards;
}

.hero-slide.active .hero-copy > *:nth-child(1) {
    animation-delay: 0.05s;
}

.hero-slide.active .hero-copy > *:nth-child(2) {
    animation-delay: 0.12s;
}

.hero-slide.active .hero-copy > *:nth-child(3) {
    animation-delay: 0.19s;
}

.hero-slide.active .hero-copy > *:nth-child(4) {
    animation-delay: 0.26s;
}

.hero-slide.active .hero-copy > *:nth-child(5) {
    animation-delay: 0.33s;
}

.hero-slide.active .hero-copy > *:nth-child(6) {
    animation-delay: 0.4s;
}

.hero-slide.active .hero-copy > *:nth-child(7) {
    animation-delay: 0.47s;
}

@keyframes heroTextAppearance {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;

    min-height: 31px;
    margin-bottom: 17px;
    padding: 0 14px;

    align-items: center;

    color: var(--white);
    background-color: var(--red);

    border-radius: 999px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-brand {
    margin-bottom: 8px;

    color: var(--red);

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 700px;
    margin-bottom: 20px;

    font-size: clamp(44px, 5.1vw, 72px);
    line-height: 0.98;
    letter-spacing: -2px;
}

.hero-description {
    max-width: 610px;
    margin-bottom: 19px;

    color: var(--gray);

    font-size: 18px;
}

.hero-price {
    display: flex;
    margin-bottom: 5px;

    flex-direction: column;
}

.hero-price span {
    color: #858585;

    font-size: 16px;
    text-decoration: line-through;
}

.hero-price strong {
    font-size: clamp(31px, 4vw, 43px);
    line-height: 1.2;
}

.payment-note {
    margin-bottom: 27px;

    color: var(--gray);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


/* ========================================
   BOTONES GENERALES
======================================== */

.button {
    display: inline-flex;

    min-height: 50px;
    padding: 0 25px;

    align-items: center;
    justify-content: center;

    border: 2px solid transparent;

    font-weight: 900;
    text-align: center;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-red {
    color: var(--white);
    background-color: var(--red);
    border-color: var(--red);
}

.button-red:hover {
    background-color: var(--dark-red);
    border-color: var(--dark-red);
}

.button-outline {
    color: var(--black);
    background-color: transparent;
    border-color: var(--black);
}

.button-outline:hover {
    color: var(--white);
    background-color: var(--black);
}

.button-white {
    color: var(--black);
    background-color: var(--white);
    border-color: var(--white);
}


/* ========================================
   IMAGEN DEL CARRUSEL
======================================== */

.hero-media {
    position: relative;

    display: flex;
    min-height: 500px;

    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;

    width: min(390px, 86%);
    aspect-ratio: 1;

    background-color: rgba(255, 255, 255, 0.84);

    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
}

.hero-product {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 410px;
    max-height: 420px;

    object-fit: contain;

    filter:
        drop-shadow(0 28px 25px rgba(0, 0, 0, 0.22));

    animation: productFloating 4s ease-in-out infinite;
}

@keyframes productFloating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

.discount-badge {
    position: absolute;
    top: 70px;
    right: 20px;
    z-index: 5;

    display: grid;

    width: 82px;
    height: 82px;

    place-items: center;

    color: var(--white);
    background-color: var(--red);

    border: 6px solid var(--white);
    border-radius: 50%;

    font-size: 20px;
    font-weight: 900;

    box-shadow:
        0 15px 35px rgba(227, 6, 19, 0.3);
}


/* ========================================
   CONTROLES DEL CARRUSEL
======================================== */

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 100;

    display: grid;

    width: 48px;
    height: 48px;
    padding: 0;

    place-items: center;

    color: var(--white);
    background-color: var(--black);

    border: 2px solid var(--white);
    border-radius: 50%;

    font-size: 25px;
    font-weight: 900;
    line-height: 1;

    transform: translateY(-50%);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.slider-arrow:hover {
    background-color: var(--red);

    transform:
        translateY(-50%)
        scale(1.08);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-dots {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    z-index: 100;

    display: flex;

    width: max-content;
    margin: auto;

    gap: 8px;
}

.slider-dot {
    display: block;

    width: 11px;
    height: 11px;
    padding: 0;

    background-color: #b7b7b7;

    border: none;
    border-radius: 999px;

    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

.slider-dot.active {
    width: 32px;

    background-color: var(--red);
}


/* ========================================
   BENEFICIOS
======================================== */

.benefits-section {
    position: relative;
    z-index: 10;

    padding: 0 0 20px;

    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    margin-top: -22px;

    grid-template-columns: repeat(3, 1fr);

    overflow: hidden;

    background-color: var(--white);

    border: 1px solid var(--border);
    border-radius: 13px;

    box-shadow: var(--shadow);
}

.benefit-item {
    display: flex;
    min-height: 112px;
    padding: 24px;

    align-items: center;

    gap: 15px;

    border-right: 1px solid var(--border);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon {
    display: grid;

    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    place-items: center;

    color: var(--white);
    background-color: var(--black);

    border-radius: 50%;

    font-size: 20px;
    font-weight: 900;
}

.benefit-item h3 {
    margin-bottom: 2px;

    font-size: 17px;
}

.benefit-item p {
    color: var(--gray);

    font-size: 14px;
}


/* ========================================
   SECCIONES GENERALES
======================================== */

.section {
    padding: 94px 0;
}

.section-label {
    margin-bottom: 8px;

    color: var(--red);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    margin-bottom: 42px;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.section-heading h2,
.final-cta h2,
.products-toolbar h2,
.contact-info h2 {
    max-width: 760px;
    margin-bottom: 14px;

    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.section-description {
    max-width: 660px;

    color: var(--gray);

    font-size: 17px;
}

.text-link {
    color: var(--red);

    font-weight: 900;
    white-space: nowrap;
}


/* ========================================
   CATEGORÍAS CORREGIDAS
======================================== */

.categories-section {
    background-color: var(--white);
}

.category-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    align-items: stretch;

    gap: 24px;
}


/* TARJETA */

.category-card {
    position: relative;

    display: flex;
    min-height: 500px;
    padding: 32px;

    overflow: hidden;

    flex-direction: column;

    color: var(--black);
    background-color: var(--light-gray);

    border: 1px solid #dddddd;
    border-radius: 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.category-card:hover {
    border-color: #c4c4c4;

    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.12);
}


/* TARJETA NEGRA */

.category-card-featured {
    color: var(--white);

    background:
        radial-gradient(
            circle at 50% 78%,
            rgba(227, 6, 19, 0.18),
            transparent 42%
        ),
        var(--black);

    border-color: var(--black);
}


/* TEXTO */

.category-copy {
    position: relative;
    z-index: 3;

    display: flex;

    width: 100%;
    min-height: 180px;

    align-items: flex-start;
    flex-direction: column;
}

.category-card-featured .category-copy {
    padding-top: 52px;
}

.category-name,
.category-copy p {
    margin-bottom: 10px;

    color: var(--red);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.category-copy h3 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;

    font-size: clamp(27px, 2.35vw, 37px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.category-card-featured .category-copy h3 {
    max-width: 400px;

    font-size: clamp(35px, 3vw, 46px);
}


/* ENLACE */

.category-link {
    display: inline-flex;
    margin-top: auto;

    align-items: center;

    gap: 10px;

    color: inherit;

    font-size: 16px;
    font-weight: 900;

    transition: color 0.2s ease;
}

.category-link strong {
    font-size: 20px;

    transition: transform 0.25s ease;
}

.category-card:hover .category-link {
    color: var(--red);
}

.category-card:hover .category-link strong {
    transform: translateX(6px);
}


/* IMAGEN CENTRADA */

.category-image-container {
    position: relative;
    z-index: 2;

    display: flex;

    width: 100%;
    min-height: 235px;
    margin-top: 22px;

    flex: 1;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.category-image {
    display: block;

    width: 100%;
    max-width: 250px;
    height: 100%;
    max-height: 245px;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 18px 18px rgba(0, 0, 0, 0.18)
        );

    transition: transform 0.35s ease;
}

.category-card-featured .category-image {
    max-width: 270px;
    max-height: 265px;
}

.category-card:hover .category-image {
    transform:
        translateY(-5px)
        scale(1.04);
}


/* ETIQUETA */

.category-tag {
    position: absolute;
    top: 26px;
    left: 28px;
    z-index: 10;

    padding: 8px 14px;

    color: var(--white);
    background-color: var(--red);

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* ========================================
   PRODUCTOS
======================================== */

.products-section {
    background-color: var(--light-gray);
}

.product-grid,
.products-page-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.product-card,
.store-product-card {
    overflow: hidden;

    background-color: var(--white);

    border: 1px solid var(--border);
    border-radius: 13px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover,
.store-product-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.product-image,
.store-product-image {
    position: relative;

    display: flex;
    min-height: 285px;
    padding: 25px;

    align-items: center;
    justify-content: center;

    background-color: var(--white);
}

.product-image img,
.store-product-image img {
    width: 100%;
    max-width: 260px;
    height: 240px;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.product-card:hover .product-image img,
.store-product-card:hover .store-product-image img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;

    padding: 6px 11px;

    color: var(--white);
    background-color: var(--red);

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-content,
.store-product-content {
    padding: 23px;
}

.product-category {
    margin-bottom: 5px;

    color: var(--red);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-content h3,
.store-product-content h3 {
    margin-bottom: 8px;

    font-size: 21px;
}

.product-description,
.store-product-content > p:not(.product-category) {
    min-height: 52px;
    margin-bottom: 17px;

    color: var(--gray);

    font-size: 15px;
}

.product-price {
    display: flex;
    margin-bottom: 18px;

    flex-direction: column;
}

.product-price span {
    color: #888888;

    font-size: 13px;
    text-decoration: line-through;
}

.product-price strong {
    font-size: 24px;
}

.product-actions {
    display: grid;

    grid-template-columns: 1fr;

    gap: 9px;
}

.add-to-cart-button,
.direct-whatsapp-button {
    display: flex;

    width: 100%;
    min-height: 47px;
    padding: 10px 14px;

    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 900;
    text-align: center;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.add-to-cart-button {
    color: var(--white);
    background-color: var(--black);

    border: none;
}

.add-to-cart-button:hover {
    background-color: var(--red);

    transform: translateY(-2px);
}

.add-to-cart-button.added {
    background-color: #17984b;
}

.direct-whatsapp-button {
    color: #159447;
    background-color: transparent;

    border: 2px solid var(--whatsapp);
}

.direct-whatsapp-button:hover {
    color: var(--white);
    background-color: var(--whatsapp);

    transform: translateY(-2px);
}


/* ========================================
   MARCAS
======================================== */

.brands-section,
.brands-strip {
    background-color: var(--white);
}

.brand-list,
.brand-pills {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.brand-list span,
.brand-pills span {
    display: inline-flex;

    min-height: 48px;
    padding: 0 21px;

    align-items: center;

    background-color: var(--light-gray);

    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: 15px;
    font-weight: 900;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.brand-list span:hover,
.brand-pills span:hover {
    color: var(--red);
    border-color: var(--red);

    transform: translateY(-3px);
}

.brands-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.brand-card {
    display: flex;

    min-height: 220px;
    padding: 26px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: var(--white);

    border: 1px solid var(--border);
    border-bottom: 4px solid var(--red);
    border-radius: 12px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.brand-initial {
    display: grid;

    width: 72px;
    height: 72px;
    margin-bottom: 18px;

    place-items: center;

    color: var(--white);
    background-color: var(--black);

    border-radius: 50%;

    font-size: 22px;
    font-weight: 900;
}

.brand-card:hover .brand-initial {
    background-color: var(--red);
}

.brand-card h3 {
    margin-bottom: 5px;

    font-size: 22px;
}

.brand-card p {
    color: var(--gray);

    font-size: 14px;
}


/* ========================================
   PÁGINAS INTERNAS
======================================== */

.page-hero {
    padding: 82px 0;

    background:
        linear-gradient(
            120deg,
            #ffffff,
            #f5f5f5 60%,
            #fff0f1
        );

    border-bottom: 4px solid var(--red);
}

.page-hero h1 {
    margin-bottom: 13px;

    font-size: clamp(42px, 7vw, 68px);
    line-height: 1;
    letter-spacing: -2px;
}

.page-hero p:not(.section-label) {
    max-width: 690px;

    color: var(--gray);

    font-size: 18px;
}

.catalog-grid {
    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 22px;
}

.catalog-card {
    position: relative;

    display: flex;

    min-height: 330px;
    padding: 30px;

    overflow: hidden;

    align-items: flex-end;

    background-color: var(--light-gray);

    border: 1px solid var(--border);
    border-radius: 15px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.catalog-card-large {
    grid-row: span 2;

    min-height: 682px;

    color: var(--white);
    background-color: var(--black);
}

.catalog-card > div {
    position: relative;
    z-index: 2;

    max-width: 58%;
}

.catalog-number {
    display: block;
    margin-bottom: 25px;

    color: var(--red);

    font-weight: 900;
}

.catalog-card p {
    color: var(--red);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.catalog-card h3 {
    margin: 6px 0 18px;

    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.05;
}

.catalog-card > div > span:last-child {
    font-weight: 900;
}

.catalog-card img {
    position: absolute;
    right: 15px;
    bottom: 18px;

    width: 49%;
    height: 78%;

    object-fit: contain;

    filter:
        drop-shadow(0 20px 22px rgba(0, 0, 0, 0.2));
}

.catalog-card-text {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--red),
            #7b0009
        );
}

.products-toolbar {
    display: flex;
    margin-bottom: 36px;

    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;
}

.products-count {
    color: var(--gray);
}

.order-field {
    display: flex;

    flex-direction: column;

    gap: 7px;

    font-weight: 800;
}

.order-field select {
    min-width: 220px;
    padding: 12px 15px;

    color: var(--white);
    background-color: var(--black);

    border: 2px solid var(--black);
    outline: none;
}

.empty-products {
    padding: 55px 25px;

    color: var(--gray);
    background-color: var(--light-gray);

    border: 1px solid var(--border);
    border-radius: 13px;

    text-align: center;
}

.store-product-card[hidden] {
    display: none !important;
}


/* ========================================
   CONTACTO
======================================== */

.contact-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: start;

    gap: 70px;
}

.contact-description {
    max-width: 540px;
    margin-bottom: 28px;

    color: var(--gray);

    font-size: 18px;
}

.contact-card {
    padding: 28px;

    color: var(--white);
    background-color: var(--black);

    border-left: 5px solid var(--red);
    border-radius: 10px;
}

.contact-card p {
    color: var(--red);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card a {
    display: block;
    margin: 7px 0;

    color: var(--white);

    font-size: clamp(25px, 4vw, 34px);
    font-weight: 900;
}

.contact-card span {
    color: #c5c5c5;
}

.contact-form {
    padding: 34px;

    background-color: var(--light-gray);

    border-top: 5px solid var(--red);
    border-radius: 12px;
}

.form-group {
    margin-bottom: 21px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;

    font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;

    color: var(--black);
    background-color: var(--white);

    border: 1px solid var(--border);
    border-radius: 5px;

    outline: none;
}

.form-group textarea {
    min-height: 145px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.contact-submit {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;

    color: var(--white);
    background-color: var(--black);

    border: none;

    font-weight: 900;
}

.contact-submit:hover {
    background-color: var(--red);
}

.form-note {
    margin-top: 11px;

    color: var(--gray);

    font-size: 12px;
    text-align: center;
}


/* ========================================
   LLAMADO FINAL
======================================== */

.final-cta {
    padding: 85px 0;

    color: var(--white);

    background:
        linear-gradient(
            120deg,
            #111111,
            #1d1d1d 65%,
            #580009
        );
}

.final-cta-layout {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.final-cta-layout > div {
    max-width: 760px;
}

.final-cta p:not(.section-label) {
    color: #cccccc;

    font-size: 18px;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    color: var(--white);
    background-color: #080808;
}

.footer-grid {
    display: grid;

    padding-top: 65px;
    padding-bottom: 55px;

    grid-template-columns: 1.4fr 0.8fr 1fr;

    gap: 60px;
}

.footer-brand img {
    width: 100px;
    height: 74px;
    margin-bottom: 15px;

    object-fit: contain;
}

.footer-brand p {
    max-width: 430px;

    color: #aaaaaa;
}

.footer-column {
    display: flex;

    align-items: flex-start;
    flex-direction: column;
}

.footer-column h3 {
    margin-bottom: 16px;

    font-size: 16px;
}

.footer-column a {
    margin-bottom: 8px;

    color: #bcbcbc;
}

.footer-column a:hover {
    color: var(--red);
}

.footer-column p {
    color: #8f8f8f;

    font-size: 14px;
}

.footer-bottom {
    padding: 20px;

    color: #909090;

    border-top: 1px solid #222222;

    font-size: 13px;
    text-align: center;
}

.footer-credit {
    display: block;
    margin-top: 7px;
    color: #aaaaaa;
}

.footer-credit a {
    color: #ffffff;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: #31f57b;
}


/* ========================================
   WHATSAPP FLOTANTE
======================================== */

.whatsapp-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 5000;

    display: inline-flex;

    width: 60px;
    height: 60px;

    align-items: center;
    justify-content: center;

    color: var(--white);
    background-color: var(--whatsapp);

    border: 3px solid var(--white);
    border-radius: 50%;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.3);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.whatsapp-floating:hover {
    background-color: #1dbd59;

    transform: translateY(-4px);
}

.whatsapp-icon {
    display: block;

    width: 29px;
    height: 29px;

    fill: var(--white);
}


/* ========================================
   CARRITO
======================================== */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 5998;

    visibility: hidden;

    background-color: rgba(0, 0, 0, 0.58);

    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.cart-overlay.active {
    visibility: visible;

    opacity: 1;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5999;

    display: flex;

    width: min(440px, 100%);
    height: 100vh;

    flex-direction: column;

    background-color: var(--white);

    box-shadow:
        -20px 0 60px rgba(0, 0, 0, 0.22);

    transform: translateX(105%);

    transition: transform 0.35s ease;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;

    min-height: 96px;
    padding: 20px 24px;

    align-items: center;
    justify-content: space-between;

    color: var(--white);
    background-color: var(--black);

    border-bottom: 4px solid var(--red);
}

.cart-small-title {
    color: var(--red);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-header h2 {
    font-size: 29px;
    line-height: 1.1;
}

.cart-close {
    display: grid;

    width: 42px;
    height: 42px;

    place-items: center;

    color: var(--white);
    background-color: #292929;

    border: none;
    border-radius: 50%;

    font-size: 19px;
}

.cart-close:hover {
    background-color: var(--red);
}

.cart-items {
    flex: 1;

    padding: 18px;

    overflow-y: auto;
}

.cart-item {
    display: grid;

    margin-bottom: 14px;
    padding: 14px;

    grid-template-columns:
        78px minmax(0, 1fr);

    gap: 14px;

    background-color: var(--light-gray);

    border: 1px solid var(--border);
    border-radius: 11px;
}

.cart-item-image {
    display: flex;

    width: 78px;
    height: 88px;

    align-items: center;
    justify-content: center;

    background-color: var(--white);

    border-radius: 8px;
}

.cart-item-image img {
    width: 100%;
    height: 78px;

    object-fit: contain;
}

.cart-item-content {
    min-width: 0;
}

.cart-item-content h3 {
    margin-bottom: 4px;

    font-size: 16px;
    line-height: 1.25;
}

.cart-item-price {
    display: block;
    margin-bottom: 10px;

    color: var(--red);

    font-size: 15px;
    font-weight: 900;
}

.cart-item-controls {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.cart-quantity {
    display: flex;

    overflow: hidden;

    align-items: center;

    border: 1px solid #d6d6d6;
    border-radius: 6px;
}

.cart-quantity button {
    width: 32px;
    height: 32px;

    color: var(--white);
    background-color: var(--black);

    border: none;

    font-size: 17px;
    font-weight: 900;
}

.cart-quantity button:hover {
    background-color: var(--red);
}

.cart-quantity span {
    display: grid;

    width: 36px;
    height: 32px;

    place-items: center;

    background-color: var(--white);

    font-weight: 900;
}

.cart-remove {
    color: #a5000d;
    background-color: transparent;

    border: none;

    font-size: 12px;
    font-weight: 900;
}

.cart-remove:hover {
    text-decoration: underline;
}

.cart-empty {
    display: flex;
    flex: 1;

    padding: 45px 25px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    color: var(--gray);

    text-align: center;
}

.cart-empty-icon {
    margin-bottom: 15px;

    font-size: 55px;
}

.cart-empty h3 {
    margin-bottom: 5px;

    color: var(--black);

    font-size: 21px;
}

.cart-footer {
    padding: 20px 22px;

    background-color: var(--light-gray);

    border-top: 1px solid #dddddd;
}

.cart-total-row {
    display: flex;
    margin-bottom: 5px;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.cart-total-row span {
    color: var(--gray);

    font-weight: 700;
}

.cart-total-row strong {
    font-size: 23px;
}

.cart-payment-note {
    margin-bottom: 15px;

    color: var(--gray);

    font-size: 12px;
}

.cart-whatsapp-button,
.cart-clear-button {
    width: 100%;
    min-height: 48px;
    padding: 10px 15px;

    font-weight: 900;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.cart-whatsapp-button {
    margin-bottom: 8px;

    color: var(--white);
    background-color: var(--whatsapp);

    border: none;
}

.cart-whatsapp-button:hover {
    background-color: #1bad54;

    transform: translateY(-2px);
}

.cart-whatsapp-button:disabled,
.cart-clear-button:disabled {
    color: #999999;
    background-color: #dddddd;

    border-color: #dddddd;

    cursor: not-allowed;
    transform: none;
}

.cart-clear-button {
    color: var(--black);
    background-color: transparent;

    border: 1px solid #bdbdbd;
}

.cart-clear-button:hover {
    color: var(--white);
    background-color: var(--black);
}

.cart-notification {
    position: fixed;
    top: 115px;
    right: 24px;
    z-index: 7000;

    padding: 13px 18px;

    color: var(--white);
    background-color: var(--black);

    border-left: 4px solid var(--whatsapp);
    border-radius: 7px;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);

    opacity: 0;

    transform: translateX(30px);

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.cart-notification.active {
    opacity: 1;

    transform: translateX(0);
}


/* ========================================
   ANIMACIONES AL BAJAR
======================================== */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
}

.reveal.reveal-pending,
.reveal-left.reveal-pending,
.reveal-right.reveal-pending {
    opacity: 0;

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.reveal-pending {
    transform: translateY(35px);
}

.reveal-left.reveal-pending {
    transform: translateX(-45px);
}

.reveal-right.reveal-pending {
    transform: translateX(45px);
}

.reveal-pending.visible {
    opacity: 1;

    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.12s !important;
}

.delay-2 {
    transition-delay: 0.24s !important;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1050px) {

    .hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.8fr);
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card-featured {
        grid-column: 1 / -1;
    }

    .category-card {
        min-height: 470px;
    }

    .product-grid,
    .products-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ========================================
   CELULAR
======================================== */

@media (max-width: 768px) {

    .topbar-group span {
        padding: 0 23px;
    }

    .header-main {
        min-height: 72px;
    }

    .logo {
        width: 66px;
        height: 54px;
    }

    .menu-button {
        display: inline-flex;
    }

    .navigation {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        z-index: 4000;

        display: none;

        max-height: calc(100vh - 72px);
        padding: 15px 22px;

        overflow-y: auto;

        background-color: var(--black);
        border-bottom: 4px solid var(--red);

        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .navigation.is-open {
        display: flex;
    }

    .navigation a {
        width: 100%;
        padding: 14px 6px;

        color: var(--white);

        border-bottom: 1px solid #333333;
    }

    .navigation a:last-child {
        border-bottom: none;
    }

    .navigation a::after {
        display: none;
    }

    .navigation .active-link {
        color: var(--red);
    }

    .search-area {
        padding-bottom: 13px;
    }

    .search-form {
        width: 88%;
    }

    .search-symbol {
        width: 43px;
        flex-basis: 43px;
    }

    .search-form button {
        padding: 0 17px;
    }

    .hero-slider,
    .hero-slide,
    .hero-layout {
        min-height: auto;
    }

    .hero-layout {
        display: flex;

        padding-top: 28px;
        padding-bottom: 67px;

        flex-direction: column-reverse;

        gap: 4px;
    }

    .hero-copy {
        width: 100%;
        padding: 15px 0;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(38px, 11vw, 53px);
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-media {
        width: 100%;
        min-height: 320px;
    }

    .hero-circle {
        width: 245px;
    }

    .hero-product {
        max-width: 285px;
        max-height: 280px;
    }

    .discount-badge {
        top: 18px;
        right: 12px;

        width: 66px;
        height: 66px;

        border-width: 4px;

        font-size: 16px;
    }

    .slider-arrow {
        top: 200px;

        width: 40px;
        height: 40px;

        font-size: 21px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .slider-dots {
        bottom: 18px;
    }

    .benefits-grid {
        margin-top: 0;

        grid-template-columns: 1fr;

        border-radius: 0;
    }

    .benefit-item {
        min-height: 95px;

        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .benefit-item:last-child {
        border-bottom: none;
    }

    .section {
        padding: 68px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card-featured {
        grid-column: auto;
    }

    .category-card {
        min-height: 450px;
        padding: 28px 24px;
    }

    .category-copy {
        min-height: 155px;
    }

    .category-card-featured .category-copy {
        padding-top: 48px;
    }

    .category-copy h3,
    .category-card-featured .category-copy h3 {
        font-size: 32px;
    }

    .category-image-container {
        min-height: 210px;
        margin-top: 18px;
    }

    .category-image,
    .category-card-featured .category-image {
        max-width: 235px;
        max-height: 225px;
    }

    .product-grid,
    .products-page-grid {
        grid-template-columns: 1fr;
    }

    .products-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .order-field select {
        width: 100%;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card-large {
        grid-row: auto;

        min-height: 420px;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .final-cta-layout {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .cart-drawer {
        width: min(390px, 100%);
    }

    .cart-notification {
        top: 92px;
        right: 15px;
        left: 15px;

        text-align: center;
    }
}


/* ========================================
   CELULAR PEQUEÑO
======================================== */

@media (max-width: 500px) {

    .container {
        width: 88%;
    }

    .header-actions {
        gap: 7px;
    }

    .cart-button,
    .menu-button {
        width: 44px;
        height: 43px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .category-card {
        min-height: 425px;
        padding: 26px 21px;
    }

    .category-copy {
        min-height: 140px;
    }

    .category-copy h3,
    .category-card-featured .category-copy h3 {
        margin-bottom: 16px;

        font-size: 29px;
    }

    .category-image-container {
        min-height: 185px;
        margin-top: 12px;
    }

    .category-image,
    .category-card-featured .category-image {
        max-width: 205px;
        max-height: 200px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 27px 20px;
    }

    .cart-header {
        padding-right: 17px;
        padding-left: 17px;
    }

    .cart-items {
        padding: 12px;
    }

    .cart-item {
        grid-template-columns:
            65px minmax(0, 1fr);

        gap: 10px;
    }

    .cart-item-image {
        width: 65px;
        height: 78px;
    }

    .cart-item-image img {
        height: 68px;
    }

    .cart-footer {
        padding: 17px;
    }

    .whatsapp-floating {
        right: 15px;
        bottom: 15px;

        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 27px;
        height: 27px;
    }
}


/* ========================================
   REDUCIR ANIMACIONES
======================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-pending {
        opacity: 1 !important;

        transform: none !important;
    }
}/* ========================================
   CATEGORÍAS - AJUSTE FINAL PROFESIONAL
======================================== */

.category-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 430px;
    padding: 34px 28px 26px;

    overflow: hidden;

    color: var(--black);
    background-color: var(--light-gray);

    border: 1px solid #dddddd;
    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.category-card:hover {
    border-color: #c9c9c9;
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.1);
}

.category-card-featured {
    color: var(--white);
    background:
        radial-gradient(
            circle at 50% 85%,
            rgba(227, 6, 19, 0.16),
            transparent 42%
        ),
        var(--black);

    border-color: var(--black);
}

.category-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;

    padding: 8px 15px;

    color: var(--white);
    background-color: var(--red);

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-copy {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    min-height: 170px;
}

.category-card-featured .category-copy {
    padding-top: 48px;
}

.category-name,
.category-copy p {
    margin-bottom: 12px;

    color: var(--red);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.category-copy h3 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;

    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -1px;
}

.category-card-featured .category-copy h3 {
    max-width: 360px;
    font-size: 33px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;

    color: inherit;

    font-size: 16px;
    font-weight: 900;

    transition: color 0.2s ease;
}

.category-link strong {
    font-size: 20px;
    transition: transform 0.25s ease;
}

.category-card:hover .category-link {
    color: var(--red);
}

.category-card:hover .category-link strong {
    transform: translateX(6px);
}

.category-image-container {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    width: 100%;
    min-height: 200px;
    margin-top: 12px;
    padding-bottom: 6px;
}

.category-image {
    display: block;

    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;

    filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.16));
    transition: transform 0.35s ease;
}

.category-card:hover .category-image {
    transform: translateY(-4px) scale(1.03);
}

/* Tamaños específicos */
.category-card-featured .category-image {
    max-width: 330px;
    max-height: 250px;
}

.category-card:not(.category-card-featured) .category-image {
    max-width: 280px;
    max-height: 190px;
}


/* TABLET */
@media (max-width: 1050px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card-featured {
        grid-column: 1 / -1;
    }

    .category-card {
        min-height: 410px;
    }

    .category-card-featured .category-image {
        max-width: 310px;
        max-height: 230px;
    }

    .category-card:not(.category-card-featured) .category-image {
        max-width: 250px;
        max-height: 180px;
    }
}


/* ==========================================================
   VISOR DE FOTOS DE PRODUCTOS
========================================================== */

body.lightbox-open {
    overflow: hidden;
}

.product-photo-trigger,
.store-product-image-link.product-photo-trigger {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: zoom-in;
}

.product-photo-trigger:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: -3px;
}

.product-image > .product-photo-trigger {
    min-height: 285px;
    padding: 25px;
}

.products-catalog-section .store-product-image-link.product-photo-trigger {
    border-bottom: 0;
}

.hero-photo-trigger {
    z-index: 2;
    min-height: 500px;
}

.product-photo-trigger-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 5;
    display: inline-flex;
    min-height: 31px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(12, 12, 12, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
}

.product-photo-trigger:hover .product-photo-trigger-hint,
.product-photo-trigger:focus-visible .product-photo-trigger-hint {
    opacity: 1;
    transform: translateY(0);
}

.public-product-lightbox[hidden] {
    display: none !important;
}

.public-product-lightbox {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    padding: 20px;
    place-items: center;
    background: rgba(4, 4, 4, 0.93);
    backdrop-filter: blur(14px);
    animation: publicLightboxIn 0.18s ease-out;
}

.public-product-lightbox-dialog {
    display: grid;
    width: min(1120px, 100%);
    height: min(860px, calc(100dvh - 40px));
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.public-product-lightbox-header {
    display: flex;
    min-width: 0;
    padding: 13px 14px 13px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.public-product-lightbox-header > div {
    display: grid;
    min-width: 0;
}

.public-product-lightbox-header strong {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-product-lightbox-header span {
    color: #aaaaaa;
    font-size: 11px;
}

.public-product-lightbox-close,
.public-product-lightbox-arrow {
    display: grid;
    flex: none;
    padding: 0;
    place-items: center;
    color: #ffffff;
    background: rgba(25, 25, 25, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.public-product-lightbox-close {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 27px;
    line-height: 1;
}

.public-product-lightbox-stage {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #242424 0, #080808 70%);
    touch-action: pan-y;
}

.public-product-lightbox-stage > img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 72px;
    object-fit: contain;
}

.public-product-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
}

.public-product-lightbox-previous { left: 16px; }
.public-product-lightbox-next { right: 16px; }

.public-product-lightbox-close:hover,
.public-product-lightbox-arrow:hover,
.public-product-lightbox-close:focus-visible,
.public-product-lightbox-arrow:focus-visible {
    color: #ffffff;
    background: var(--red);
    border-color: var(--red);
    outline: none;
}

.public-product-lightbox-thumbnails {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 12px 16px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    scrollbar-width: thin;
}

.public-product-lightbox-thumbnails button {
    position: relative;
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    overflow: hidden;
    padding: 0;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 11px;
    cursor: pointer;
    opacity: 0.62;
}

.public-product-lightbox-thumbnails button.is-active {
    border-color: var(--red);
    opacity: 1;
}

.public-product-lightbox-thumbnails img {
    width: 100%;
    height: 100%;
    padding: 4px;
    object-fit: contain;
}

body.product-detail-page .product-detail-image-container {
    position: relative;
    border: 0;
    cursor: zoom-in;
}

body.product-detail-page .product-detail-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 14px;
    padding: 2px 1px 5px;
}

body.product-detail-page .product-detail-thumbnails[hidden] {
    display: none;
}

body.product-detail-page .product-detail-thumbnails button {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    overflow: hidden;
    padding: 5px;
    background: #ffffff;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    cursor: pointer;
}

body.product-detail-page .product-detail-thumbnails button.is-active {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

body.product-detail-page .product-detail-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes publicLightboxIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 650px) {
    .product-photo-trigger-hint {
        opacity: 1;
        transform: none;
    }

    .public-product-lightbox {
        padding: 0;
    }

    .public-product-lightbox-dialog {
        width: 100%;
        height: 100dvh;
        border: 0;
        border-radius: 0;
    }

    .public-product-lightbox-header {
        padding: max(10px, env(safe-area-inset-top)) 10px 10px 14px;
    }

    .public-product-lightbox-stage > img {
        padding: 10px 45px;
    }

    .public-product-lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 31px;
    }

    .public-product-lightbox-previous { left: 5px; }
    .public-product-lightbox-next { right: 5px; }

    .public-product-lightbox-thumbnails {
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    .hero-photo-trigger {
        min-height: 285px;
    }

    body.product-detail-page .product-detail-thumbnails button {
        flex-basis: 66px;
        width: 66px;
        height: 66px;
    }
}


/* CELULAR */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card-featured {
        grid-column: auto;
    }

    .category-card {
        min-height: 390px;
        padding: 28px 22px 22px;
    }

    .category-card-featured .category-copy {
        padding-top: 44px;
    }

    .category-copy h3 {
        font-size: 30px;
    }

    .category-card-featured .category-copy h3 {
        font-size: 32px;
        max-width: 100%;
    }

    .category-image-container {
        min-height: 180px;
        margin-top: 10px;
    }

    .category-card-featured .category-image {
        max-width: 280px;
        max-height: 210px;
    }

    .category-card:not(.category-card-featured) .category-image {
        max-width: 240px;
        max-height: 170px;
    }
}


/* CELULAR PEQUEÑO */
@media (max-width: 500px) {
    .category-card {
        min-height: 370px;
    }

    .category-copy h3,
    .category-card-featured .category-copy h3 {
        font-size: 28px;
    }

    .category-card-featured .category-image {
        max-width: 250px;
        max-height: 190px;
    }

    .category-card:not(.category-card-featured) .category-image {
        max-width: 220px;
        max-height: 155px;
    }
}/* ========================================
   CATÁLOGO COMPLETO DE PRODUCTOS
======================================== */

.products-catalog-section {
    background-color: #f7f7f7;
}


/* FILTROS */

.product-filter-bar {
    display: flex;
    margin-bottom: 55px;

    flex-wrap: wrap;

    gap: 12px;
}

.product-filter-button {
    min-height: 46px;
    padding: 0 24px;

    color: #101010;
    background-color: #ffffff;

    border: 1px solid #d8d8d8;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 900;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product-filter-button:hover {
    color: #ffffff;
    background-color: #101010;
    border-color: #101010;

    transform: translateY(-2px);
}

.product-filter-button.active {
    color: #ffffff;
    background-color: #e30613;
    border-color: #e30613;
}


/* CUADRÍCULA */

.products-page-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}


/* TARJETA */

.store-product-card {
    display: flex;

    min-width: 0;
    overflow: hidden;

    flex-direction: column;

    background-color: #ffffff;

    border: 1px solid #dedede;
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.store-product-card:hover {
    border-color: #c8c8c8;

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.1);
}


/* IMAGEN */

.store-product-image {
    position: relative;

    display: flex;

    width: 100%;
    min-height: 290px;
    padding: 30px;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f5f5
        );

    border-bottom: 1px solid #eeeeee;
}

.store-product-image img {
    width: 100%;
    max-width: 260px;
    height: 235px;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 15px 15px rgba(0, 0, 0, 0.13)
        );

    transition: transform 0.3s ease;
}

.store-product-card:hover
.store-product-image img {
    transform: scale(1.06);
}


/* INFORMACIÓN */

.store-product-content {
    display: flex;

    height: 100%;
    padding: 24px;

    flex-direction: column;
}

.store-product-content h3 {
    min-height: 52px;
    margin-bottom: 10px;

    font-size: 19px;
    line-height: 1.3;
}

.store-product-content
.product-description {
    min-height: 70px;
    margin-bottom: 16px;

    color: #676767;

    font-size: 14px;
}

.product-consult-price {
    display: block;
    margin-bottom: 20px;

    color: #101010;

    font-size: 22px;
    line-height: 1.2;
}


/* BOTONES AL FONDO */

.store-product-content
.product-actions {
    margin-top: auto;
}


/* MENSAJE SIN RESULTADOS */

.empty-products {
    padding: 70px 25px;

    color: #676767;
    background-color: #ffffff;

    border: 1px solid #dedede;
    border-radius: 16px;

    text-align: center;
}

.empty-products h3 {
    margin-bottom: 8px;

    color: #101010;

    font-size: 25px;
}


/* MONITORES MEDIANOS */

@media (max-width: 1150px) {

    .products-page-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


/* TABLET */

@media (max-width: 850px) {

    .products-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .store-product-image {
        min-height: 260px;
    }

    .store-product-image img {
        height: 210px;
    }
}


/* CELULAR */

@media (max-width: 580px) {

    .product-filter-bar {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;
    }

    .product-filter-button {
        width: 100%;
        padding: 0 12px;
    }

    .products-page-grid {
        grid-template-columns: 1fr;
    }

    .store-product-image {
        min-height: 300px;
    }

    .store-product-image img {
        max-width: 280px;
        height: 250px;
    }

    .store-product-content h3 {
        min-height: auto;
    }

    .store-product-content
    .product-description {
        min-height: auto;
    }
}/* ========================================
   PRODUCTOS: DOS COLUMNAS EN CELULAR
======================================== */

@media (max-width: 580px) {

    .products-page-grid {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .store-product-card {
        min-width: 0;

        border-radius: 10px;
    }

    .store-product-image {
        min-height: 165px;
        padding: 12px 8px;
    }

    .store-product-image img {
        width: 100%;
        max-width: 145px;
        height: 140px;

        object-fit: contain;
    }

    .product-badge {
        top: 8px;
        left: 8px;

        padding: 4px 7px;

        font-size: 8px;
    }

    .store-product-content {
        padding: 12px 10px;
    }

    .product-category {
        margin-bottom: 4px;

        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .store-product-content h3 {
        min-height: 42px;
        margin-bottom: 7px;

        font-size: 13px;
        line-height: 1.2;
    }

    .store-product-content .product-description {
        display: none;
    }

    .product-consult-price {
        margin-bottom: 10px;

        font-size: 15px;
    }

    .product-actions {
        gap: 6px;
    }

    .add-to-cart-button,
    .direct-whatsapp-button {
        min-height: 38px;
        padding: 7px 5px;

        font-size: 10px;
        line-height: 1.15;
    }

    .products-toolbar {
        margin-bottom: 22px;
    }

    .products-toolbar h2 {
        font-size: 30px;
    }

    .products-count {
        font-size: 13px;
    }

    .product-filter-bar {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .product-filter-button {
        min-height: 40px;
        padding: 0 8px;

        font-size: 11px;
    }
}/* ========================================
   PRODUCTOS ESTILO TIENDA CON SIDEBAR
======================================== */

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
}

.products-sidebar {
    position: sticky;
    top: 130px;
}

.sidebar-box {
    padding: 0 0 26px;
    margin-bottom: 28px;
    border-bottom: 1px solid #e3e3e3;
}

.sidebar-box h3 {
    margin-bottom: 20px;
    color: #101010;
    font-size: 28px;
    font-weight: 900;
}

.sidebar-filter-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-filter-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    width: 100%;
    padding: 0;

    color: #444444;
    background: transparent;
    border: none;

    text-align: left;
    font-size: 18px;
    cursor: pointer;

    transition: color 0.2s ease;
}

.sidebar-filter-button:hover {
    color: #e30613;
}

.sidebar-filter-button.active {
    color: #101010;
    font-weight: 800;
}

.sidebar-filter-count {
    color: #9a9a9a;
    font-size: 16px;
}

.products-content-area {
    min-width: 0;
}

.products-top-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e3e3e3;
}

.products-top-header h2 {
    margin-top: 10px;
    font-size: 48px;
    line-height: 1.1;
}

.products-top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.products-count {
    color: #555555;
    font-size: 18px;
    white-space: nowrap;
}


/* GRID DE PRODUCTOS */
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}


/* TARJETAS */
.store-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;

    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.store-product-card:hover {
    transform: translateY(-6px);
    border-color: #cfcfcf;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.store-product-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 280px;
    padding: 24px 20px;

    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.store-product-image img {
    width: 100%;
    max-width: 260px;
    height: 220px;
    object-fit: contain;
    object-position: center;

    filter: drop-shadow(0 14px 15px rgba(0, 0, 0, 0.13));
    transition: transform 0.25s ease;
}

.store-product-card:hover .store-product-image img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;

    padding: 7px 12px;

    color: #ffffff;
    background: #e30613;
    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.store-product-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.product-category {
    margin-bottom: 8px;
    color: #e30613;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.store-product-content h3 {
    min-height: 58px;
    margin-bottom: 10px;
    color: #101010;
    font-size: 20px;
    line-height: 1.25;
}

.product-description {
    min-height: 64px;
    margin-bottom: 16px;
    color: #676767;
    font-size: 14px;
    line-height: 1.5;
}

.product-consult-price {
    display: block;
    margin-bottom: 18px;
    color: #101010;
    font-size: 22px;
    font-weight: 900;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.add-to-cart-button,
.direct-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 14px;

    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.add-to-cart-button {
    color: #ffffff;
    background: #101010;
    border: 1px solid #101010;
}

.add-to-cart-button:hover {
    background: #e30613;
    border-color: #e30613;
}

.direct-whatsapp-button {
    color: #18a84f;
    background: #ffffff;
    border: 1px solid #18a84f;
}

.direct-whatsapp-button:hover {
    color: #ffffff;
    background: #18a84f;
}


/* TABLET */
@media (max-width: 1100px) {
    .products-layout {
        grid-template-columns: 240px 1fr;
        gap: 26px;
    }

    .products-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-top-header h2 {
        font-size: 40px;
    }
}


/* MÓVIL */
@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
        order: 1;
    }

    .products-content-area {
        order: 2;
    }

    .products-top-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-top-header h2 {
        font-size: 34px;
    }

    .products-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .sidebar-box h3 {
        font-size: 24px;
    }

    .sidebar-filter-list {
        gap: 10px;
    }

    .sidebar-filter-button {
        font-size: 16px;
    }

    .store-product-image {
        min-height: 180px;
        padding: 14px 10px;
    }

    .store-product-image img {
        max-width: 150px;
        height: 140px;
    }

    .product-badge {
        top: 10px;
        left: 10px;
        padding: 5px 9px;
        font-size: 8px;
    }

    .store-product-content {
        padding: 12px 10px;
    }

    .product-category {
        margin-bottom: 5px;
        font-size: 8px;
    }

    .store-product-content h3 {
        min-height: 42px;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.2;
    }

    .product-description {
        display: none;
    }

    .product-consult-price {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .add-to-cart-button,
    .direct-whatsapp-button {
        min-height: 36px;
        padding: 0 6px;
        font-size: 10px;
    }
}/* ==========================================================
   AJUSTE DEFINITIVO PARA PRODUCTOS.HTML
   PEGAR AL FINAL DE STYLE.CSS
========================================================== */

.products-catalog-section {
    padding: 72px 0 95px;
    background-color: #ffffff;
}

.products-catalog-section > .container {
    width: min(1400px, 92%);
}


/* ==========================================================
   ESTRUCTURA: FILTROS IZQUIERDA + PRODUCTOS DERECHA
========================================================== */

.products-catalog-section .products-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    gap: 46px;
}

.products-catalog-section .products-content-area {
    min-width: 0;
}


/* ==========================================================
   SIDEBAR
========================================================== */

.products-catalog-section .products-sidebar {
    position: sticky;
    top: 160px;
}

.products-catalog-section .sidebar-heading {
    display: flex;
    margin-bottom: 30px;

    align-items: flex-end;
    justify-content: space-between;

    gap: 16px;
}

.products-catalog-section .sidebar-small-title {
    margin-bottom: 4px;

    color: var(--red);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.products-catalog-section .sidebar-heading h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1;
}

.products-catalog-section .clear-filters-button {
    padding: 5px 0;

    color: var(--red);
    background-color: transparent;

    border: none;

    font-size: 12px;
    font-weight: 900;
}

.products-catalog-section .clear-filters-button:hover {
    text-decoration: underline;
}

.products-catalog-section .clear-filters-button:disabled {
    color: #aaaaaa;

    cursor: default;
    text-decoration: none;
}


/* BLOQUES DE FILTROS */

.products-catalog-section .sidebar-box {
    margin-bottom: 29px;
    padding-bottom: 28px;

    border-bottom: 1px solid #e4e4e4;
}

.products-catalog-section .sidebar-box h3 {
    margin-bottom: 18px;

    color: #101010;

    font-size: 20px;
    font-weight: 900;
}

.products-catalog-section .sidebar-filter-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.products-catalog-section .sidebar-filter-button {
    display: flex;

    width: 100%;
    padding: 0;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    color: #5f5f5f;
    background-color: transparent;

    border: none;

    font-size: 15px;
    text-align: left;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.products-catalog-section .sidebar-filter-button:hover {
    color: var(--red);

    transform: translateX(4px);
}

.products-catalog-section .sidebar-filter-button.active {
    color: var(--red);

    font-weight: 900;
}

.products-catalog-section .sidebar-filter-count {
    color: #a0a0a0;

    font-size: 13px;
    font-weight: 400;
}

.products-catalog-section
.sidebar-filter-button.active
.sidebar-filter-count {
    color: var(--red);
}


/* ==========================================================
   ENCABEZADO DE PRODUCTOS
========================================================== */

.products-catalog-section .products-top-header {
    display: flex;
    margin-bottom: 36px;
    padding-bottom: 24px;

    align-items: flex-end;
    justify-content: space-between;

    gap: 28px;

    border-bottom: 1px solid #e5e5e5;
}

.products-catalog-section .products-top-header h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.products-catalog-section .products-top-actions {
    display: flex;

    align-items: flex-end;

    gap: 22px;
}

.products-catalog-section .products-count {
    margin: 0;
    padding-bottom: 12px;

    color: #5e5e5e;

    font-size: 15px;
    white-space: nowrap;
}


/* ORDENAR */

.products-catalog-section .order-field {
    display: flex;

    flex-direction: column;

    gap: 6px;

    color: #5c5c5c;

    font-size: 11px;
    font-weight: 800;
}

.products-catalog-section .order-field select {
    width: 230px;
    min-height: 46px;
    padding: 0 42px 0 14px;

    color: #101010;
    background-color: #ffffff;

    border: 1px solid #dcdcdc;
    border-radius: 6px;

    outline: none;
}

.products-catalog-section .order-field select:focus {
    border-color: var(--red);
}


/* ==========================================================
   CUADRÍCULA
========================================================== */

.products-catalog-section .products-page-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: stretch;

    gap: 28px 22px;
}


/* ==========================================================
   TARJETAS DE PRODUCTOS
========================================================== */

.products-catalog-section .store-product-card {
    display: flex;

    min-width: 0;
    overflow: hidden;

    flex-direction: column;

    background-color: #ffffff;

    border: 1px solid #e2e2e2;
    border-radius: 12px;

    box-shadow: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.products-catalog-section .store-product-card:hover {
    border-color: #c8c8c8;

    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.09);
}


/* IMAGEN */

.products-catalog-section .store-product-image {
    position: relative;

    display: flex;

    width: 100%;
    min-height: 300px;
    padding: 24px;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-color: #ffffff;
    background-image: none;

    border-bottom: 1px solid #eeeeee;
}

.products-catalog-section .store-product-image img {
    display: block;

    width: 100%;
    max-width: 290px;
    height: 245px;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 16px 16px rgba(0, 0, 0, 0.13)
        );

    transition: transform 0.3s ease;
}

.products-catalog-section
.store-product-card:hover
.store-product-image img {
    transform: scale(1.05);
}


/* ETIQUETA */

.products-catalog-section .product-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 3;

    padding: 6px 10px;

    color: #ffffff;
    background-color: var(--red);

    border-radius: 999px;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}


/* INFORMACIÓN */

.products-catalog-section .store-product-content {
    display: flex;

    height: 100%;
    padding: 20px;

    flex-direction: column;
}

.products-catalog-section .product-category {
    margin-bottom: 7px;

    color: var(--red);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.products-catalog-section .store-product-content h3 {
    min-height: 50px;
    margin: 0 0 9px;

    color: #101010;

    font-size: 17px;
    line-height: 1.3;
}

.products-catalog-section .product-description {
    min-height: 61px;
    margin-bottom: 14px;

    color: #6b6b6b;

    font-size: 13px;
    line-height: 1.45;
}

.products-catalog-section .product-consult-price {
    display: block;
    margin-bottom: 17px;

    color: #101010;

    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}


/* BOTONES */

.products-catalog-section .product-actions {
    display: flex;
    margin-top: auto;

    flex-direction: column;

    gap: 8px;
}

.products-catalog-section .add-to-cart-button,
.products-catalog-section .direct-whatsapp-button {
    display: flex;

    width: 100%;
    min-height: 42px;
    padding: 8px 10px;

    align-items: center;
    justify-content: center;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.products-catalog-section .add-to-cart-button {
    color: #ffffff;
    background-color: #101010;

    border: 1px solid #101010;
}

.products-catalog-section .add-to-cart-button:hover {
    background-color: var(--red);
    border-color: var(--red);

    transform: translateY(-2px);
}

.products-catalog-section .add-to-cart-button.added {
    background-color: #16974a;
    border-color: #16974a;
}

.products-catalog-section .direct-whatsapp-button {
    color: #159447;
    background-color: #ffffff;

    border: 1px solid var(--whatsapp);
}

.products-catalog-section .direct-whatsapp-button:hover {
    color: #ffffff;
    background-color: var(--whatsapp);

    transform: translateY(-2px);
}


/* ==========================================================
   SIN RESULTADOS
========================================================== */

.products-catalog-section .empty-products {
    padding: 65px 25px;

    color: #686868;
    background-color: #f7f7f7;

    border: 1px solid #dfdfdf;
    border-radius: 12px;

    text-align: center;
}

.products-catalog-section .empty-products h3 {
    margin-bottom: 8px;

    color: #101010;

    font-size: 25px;
}

.products-catalog-section .empty-clear-button {
    margin-top: 18px;
    padding: 11px 19px;

    color: #ffffff;
    background-color: #101010;

    border: none;
    border-radius: 5px;

    font-weight: 900;
}

.products-catalog-section .empty-clear-button:hover {
    background-color: var(--red);
}


/* ==========================================================
   PANTALLAS MEDIANAS
========================================================== */

@media (max-width: 1150px) {

    .products-catalog-section .products-layout {
        grid-template-columns:
            220px minmax(0, 1fr);

        gap: 28px;
    }

    .products-catalog-section .products-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .products-catalog-section .products-top-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .products-catalog-section .products-top-actions {
        width: 100%;

        justify-content: space-between;
    }

    .products-catalog-section .products-count {
        padding-bottom: 0;
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    .products-catalog-section {
        padding: 48px 0 70px;
    }

    .products-catalog-section > .container {
        width: 94%;
    }

    .products-catalog-section .products-layout {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .products-catalog-section .products-sidebar {
        position: static;
    }

    .products-catalog-section .sidebar-heading {
        margin-bottom: 18px;
    }

    .products-catalog-section .sidebar-heading h2 {
        font-size: 24px;
    }

    .products-catalog-section .sidebar-box {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    .products-catalog-section .sidebar-box h3 {
        margin-bottom: 12px;

        font-size: 16px;
    }


    /* FILTROS HORIZONTALES */

    .products-catalog-section .sidebar-filter-list {
        display: flex;

        padding-bottom: 5px;

        overflow-x: auto;

        flex-direction: row;

        gap: 8px;

        scrollbar-width: thin;
    }

    .products-catalog-section .sidebar-filter-button {
        width: auto;
        min-width: max-content;
        min-height: 37px;
        padding: 0 12px;

        justify-content: center;

        gap: 5px;

        background-color: #f5f5f5;

        border: 1px solid #dedede;
        border-radius: 999px;

        font-size: 11px;
    }

    .products-catalog-section
    .sidebar-filter-button:hover {
        transform: none;
    }

    .products-catalog-section
    .sidebar-filter-button.active {
        color: #ffffff;
        background-color: var(--red);

        border-color: var(--red);
    }

    .products-catalog-section
    .sidebar-filter-button.active
    .sidebar-filter-count {
        color: #ffffff;
    }

    .products-catalog-section .sidebar-filter-count {
        font-size: 10px;
    }


    /* CABECERA */

    .products-catalog-section .products-top-header {
        margin-bottom: 22px;
        padding-bottom: 17px;

        gap: 14px;
    }

    .products-catalog-section .products-top-header h2 {
        font-size: 29px;
    }

    .products-catalog-section .products-top-actions {
        align-items: stretch;
        flex-direction: column;

        gap: 11px;
    }

    .products-catalog-section .products-count {
        font-size: 12px;
    }

    .products-catalog-section .order-field {
        width: 100%;
    }

    .products-catalog-section .order-field select {
        width: 100%;
        min-width: 0;
    }


    /* DOS PRODUCTOS POR FILA */

    .products-catalog-section .products-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .products-catalog-section .store-product-card {
        border-radius: 8px;
    }

    .products-catalog-section .store-product-image {
        min-height: 170px;
        padding: 10px 6px;
    }

    .products-catalog-section .store-product-image img {
        width: 100%;
        max-width: 150px;
        height: 140px;
    }

    .products-catalog-section .product-badge {
        top: 7px;
        left: 7px;

        padding: 4px 6px;

        font-size: 6px;
    }

    .products-catalog-section .store-product-content {
        padding: 10px 8px;
    }

    .products-catalog-section .product-category {
        margin-bottom: 4px;

        font-size: 6px;
        letter-spacing: 0.3px;
    }

    .products-catalog-section
    .store-product-content h3 {
        min-height: 39px;
        margin-bottom: 6px;

        font-size: 11px;
        line-height: 1.18;
    }

    .products-catalog-section .product-description {
        display: none;
    }

    .products-catalog-section .product-consult-price {
        margin-bottom: 9px;

        font-size: 13px;
    }

    .products-catalog-section .product-actions {
        gap: 5px;
    }

    .products-catalog-section .add-to-cart-button,
    .products-catalog-section .direct-whatsapp-button {
        min-height: 34px;
        padding: 5px 3px;

        border-radius: 3px;

        font-size: 8px;
        line-height: 1.05;
    }
}


/* ==========================================================
   CELULAR MUY PEQUEÑO
========================================================== */

@media (max-width: 380px) {

    .products-catalog-section > .container {
        width: 95%;
    }

    .products-catalog-section .products-page-grid {
        gap: 7px;
    }

    .products-catalog-section .store-product-image {
        min-height: 150px;
    }

    .products-catalog-section .store-product-image img {
        max-width: 128px;
        height: 122px;
    }

    .products-catalog-section .store-product-content {
        padding: 8px 6px;
    }

    .products-catalog-section
    .store-product-content h3 {
        min-height: 36px;

        font-size: 10px;
    }

    .products-catalog-section .product-consult-price {
        font-size: 12px;
    }

    .products-catalog-section .add-to-cart-button,
    .products-catalog-section .direct-whatsapp-button {
        font-size: 7px;
    }
}/* ==========================================================
   SCROLL INDEPENDIENTE: FILTROS Y PRODUCTOS
   PEGAR AL FINAL DE STYLE.CSS
========================================================== */

@media (min-width: 769px) {

    /*
       El área completa ocupa el alto visible.
       Las dos columnas tendrán su propio desplazamiento.
    */

    .products-catalog-section .products-layout {
        display: grid;

        height: calc(100vh - 150px);
        min-height: 580px;

        grid-template-columns:
            250px minmax(0, 1fr);

        align-items: stretch;

        gap: 38px;

        overflow: hidden;
    }


    /* ========================================
       COLUMNA IZQUIERDA: FILTROS
    ======================================== */

    .products-catalog-section .products-sidebar {
        position: relative;
        top: auto;

        width: 100%;
        height: 100%;
        max-height: none;
        padding-right: 14px;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior-y: contain;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: #bbbbbb transparent;
    }


    /* Título de filtros fijo dentro de la columna */

    .products-catalog-section .sidebar-heading {
        position: sticky;
        top: 0;
        z-index: 20;

        margin-bottom: 22px;
        padding: 4px 0 16px;

        background-color: #ffffff;

        border-bottom: 1px solid #eeeeee;
    }


    /* ========================================
       COLUMNA DERECHA: PRODUCTOS
    ======================================== */

    .products-catalog-section .products-content-area {
        position: relative;

        width: 100%;
        height: 100%;
        min-width: 0;
        max-height: none;
        padding-right: 14px;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior-y: contain;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: #bbbbbb transparent;
    }


    /* Encabezado fijo dentro de productos */

    .products-catalog-section .products-top-header {
        position: sticky;
        top: 0;
        z-index: 25;

        margin-bottom: 28px;
        padding: 10px 0 20px;

        background-color: #ffffff;

        border-bottom: 1px solid #e5e5e5;
    }


    /* Espacio al final de ambas columnas */

    .products-catalog-section .products-sidebar::after,
    .products-catalog-section .products-content-area::after {
        display: block;

        height: 30px;

        content: "";
    }


    /* ========================================
       BARRA DE DESPLAZAMIENTO EN CHROME
    ======================================== */

    .products-catalog-section
    .products-sidebar::-webkit-scrollbar,

    .products-catalog-section
    .products-content-area::-webkit-scrollbar {
        width: 8px;
    }


    .products-catalog-section
    .products-sidebar::-webkit-scrollbar-track,

    .products-catalog-section
    .products-content-area::-webkit-scrollbar-track {
        background-color: transparent;
    }


    .products-catalog-section
    .products-sidebar::-webkit-scrollbar-thumb,

    .products-catalog-section
    .products-content-area::-webkit-scrollbar-thumb {
        background-color: #c5c5c5;

        border: 2px solid #ffffff;
        border-radius: 999px;
    }


    .products-catalog-section
    .products-sidebar::-webkit-scrollbar-thumb:hover,

    .products-catalog-section
    .products-content-area::-webkit-scrollbar-thumb:hover {
        background-color: var(--red);
    }
}


/* ==========================================================
   TABLET PEQUEÑA Y CELULAR: SCROLL NORMAL
========================================================== */

@media (max-width: 768px) {

    .products-catalog-section .products-layout {
        height: auto;
        min-height: 0;

        overflow: visible;
    }


    .products-catalog-section .products-sidebar,
    .products-catalog-section .products-content-area {
        position: static;

        width: 100%;
        height: auto;
        max-height: none;
        padding-right: 0;

        overflow: visible;

        overscroll-behavior: auto;
        scrollbar-gutter: auto;
    }


    .products-catalog-section .sidebar-heading,
    .products-catalog-section .products-top-header {
        position: static;

        background-color: transparent;
    }


    .products-catalog-section .products-sidebar::after,
    .products-catalog-section .products-content-area::after {
        display: none;
    }
}/* PRODUCTOS SIN PRESENTACIÓN SUPERIOR */

.products-catalog-section {
    padding-top: 55px;
}

@media (max-width: 768px) {
    .products-catalog-section {
        padding-top: 35px;
    }
}/* ==========================================================
   PRODUCTOS.HTML - CATÁLOGO MÁS COMPACTO
   PEGAR AL FINAL DE STYLE.CSS
========================================================== */

.products-catalog-section {
    padding-top: 38px;
    padding-bottom: 65px;
}

.products-catalog-section > .container {
    width: min(1320px, 94%);
}


/* ESTRUCTURA GENERAL */

.products-catalog-section .products-layout {
    grid-template-columns:
        215px minmax(0, 1fr);

    gap: 30px;

    min-height: 0;
}


/* FILTROS MÁS COMPACTOS */

.products-catalog-section .products-sidebar {
    padding-right: 10px;
}

.products-catalog-section .sidebar-heading {
    margin-bottom: 17px;
    padding-bottom: 12px;
}

.products-catalog-section .sidebar-small-title {
    font-size: 9px;
}

.products-catalog-section .sidebar-heading h2 {
    font-size: 24px;
}

.products-catalog-section .sidebar-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.products-catalog-section .sidebar-box h3 {
    margin-bottom: 13px;

    font-size: 17px;
}

.products-catalog-section .sidebar-filter-list {
    gap: 8px;
}

.products-catalog-section .sidebar-filter-button {
    font-size: 13px;
}

.products-catalog-section .sidebar-filter-count {
    font-size: 11px;
}


/* CABECERA DEL CATÁLOGO */

.products-catalog-section .products-top-header {
    margin-bottom: 20px;
    padding: 5px 0 16px;
}

.products-catalog-section .products-top-header h2 {
    font-size: clamp(30px, 3vw, 38px);
}

.products-catalog-section .products-count {
    padding-bottom: 9px;

    font-size: 13px;
}

.products-catalog-section .order-field {
    font-size: 10px;
}

.products-catalog-section .order-field select {
    width: 205px;
    min-height: 42px;

    font-size: 12px;
}


/* GRILLA */

.products-catalog-section .products-page-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;
}


/* TARJETAS MÁS BAJAS */

.products-catalog-section .store-product-card {
    border-radius: 10px;
}

.products-catalog-section .store-product-image {
    min-height: 225px;
    padding: 17px;
}

.products-catalog-section .store-product-image img {
    max-width: 220px;
    height: 185px;
}

.products-catalog-section .product-badge {
    top: 10px;
    left: 10px;

    padding: 5px 9px;

    font-size: 7px;
}


/* INFORMACIÓN MÁS COMPACTA */

.products-catalog-section .store-product-content {
    padding: 15px;
}

.products-catalog-section .product-category {
    margin-bottom: 5px;

    font-size: 8px;
}

.products-catalog-section .store-product-content h3 {
    min-height: 42px;
    margin-bottom: 7px;

    font-size: 15px;
    line-height: 1.2;
}

.products-catalog-section .product-description {
    min-height: 48px;
    margin-bottom: 10px;

    font-size: 11px;
    line-height: 1.4;
}

.products-catalog-section .product-consult-price {
    margin-bottom: 12px;

    font-size: 17px;
}

.products-catalog-section .product-actions {
    gap: 6px;
}

.products-catalog-section .add-to-cart-button,
.products-catalog-section .direct-whatsapp-button {
    min-height: 37px;
    padding: 6px 8px;

    font-size: 9px;
}


/* PANTALLA GRANDE: CUATRO PRODUCTOS */

@media (min-width: 1450px) {

    .products-catalog-section > .container {
        width: min(1500px, 94%);
    }

    .products-catalog-section .products-page-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .products-catalog-section .store-product-image {
        min-height: 215px;
    }

    .products-catalog-section .store-product-image img {
        max-width: 205px;
        height: 175px;
    }
}


/* TABLET */

@media (max-width: 1100px) and (min-width: 769px) {

    .products-catalog-section .products-layout {
        grid-template-columns:
            190px minmax(0, 1fr);

        gap: 22px;
    }

    .products-catalog-section .products-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* CELULAR: MANTENER DOS PRODUCTOS */

@media (max-width: 768px) {

    .products-catalog-section {
        padding-top: 28px;
        padding-bottom: 50px;
    }

    .products-catalog-section .products-layout {
        grid-template-columns: 1fr;
    }

    .products-catalog-section .products-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .products-catalog-section .store-product-image {
        min-height: 150px;
        padding: 8px 5px;
    }

    .products-catalog-section .store-product-image img {
        max-width: 130px;
        height: 122px;
    }

    .products-catalog-section .store-product-content {
        padding: 8px 7px;
    }

    .products-catalog-section .store-product-content h3 {
        min-height: 35px;

        font-size: 10px;
    }

    .products-catalog-section .product-description {
        display: none;
    }

    .products-catalog-section .product-consult-price {
        margin-bottom: 7px;

        font-size: 12px;
    }

    .products-catalog-section .add-to-cart-button,
    .products-catalog-section .direct-whatsapp-button {
        min-height: 31px;
        padding: 4px 2px;

        font-size: 7px;
    }
}/* ==========================================================
   QUITAR ESPACIO BLANCO ANTES DEL FOOTER
========================================================== */

.products-catalog-section {
    padding-bottom: 0 !important;
}

.products-catalog-section .products-layout {
    margin-bottom: 0;
}

/* Quitar espacios agregados al final de las columnas */
.products-catalog-section .products-sidebar::after,
.products-catalog-section .products-content-area::after {
    display: none !important;
    height: 0 !important;
}/* ==========================================================
   PRODUCTOS: CATÁLOGO MÁS ALTO Y FOOTER MÁS PEQUEÑO
========================================================== */

/* Solamente para productos.html */
@media (min-width: 769px) {

    /* Dar más altura a filtros y productos */
    .products-page
    .products-catalog-section
    .products-layout {
        height: calc(100vh - 80px) !important;
        min-height: 680px !important;
    }

    /* Aprovechar mejor el ancho disponible */
    .products-page
    .products-catalog-section
    .products-layout {
        grid-template-columns:
            225px minmax(0, 1fr) !important;

        gap: 28px !important;
    }

    /* Ampliar ligeramente la zona del catálogo */
    .products-page
    .products-catalog-section
    > .container {
        width: min(1450px, 96%) !important;
    }

    /* Mantener scroll independiente */
    .products-page
    .products-catalog-section
    .products-sidebar,

    .products-page
    .products-catalog-section
    .products-content-area {
        height: 100% !important;
        max-height: none !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}


/* ==========================================================
   FOOTER MÁS COMPACTO EN PRODUCTOS.HTML
========================================================== */

.products-page .footer-grid {
    padding-top: 27px;
    padding-bottom: 22px;

    gap: 35px;
}

.products-page .footer-brand img {
    width: 70px;
    height: 48px;
    margin-bottom: 7px;
}

.products-page .footer-brand p {
    max-width: 360px;

    font-size: 12px;
    line-height: 1.45;
}

.products-page .footer-column h3 {
    margin-bottom: 8px;

    font-size: 13px;
}

.products-page .footer-column a {
    margin-bottom: 4px;

    font-size: 12px;
}

.products-page .footer-column p {
    font-size: 11px;
}

.products-page .footer-bottom {
    padding: 9px 15px;

    font-size: 10px;
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    /* En celular se mantiene el desplazamiento normal */
    .products-page
    .products-catalog-section
    .products-layout {
        height: auto !important;
        min-height: 0 !important;
    }

    .products-page
    .products-catalog-section
    .products-sidebar,

    .products-page
    .products-catalog-section
    .products-content-area {
        height: auto !important;
        overflow: visible !important;
    }

    /* Footer compacto en celular */
    .products-page .footer-grid {
        padding-top: 28px;
        padding-bottom: 25px;

        gap: 24px;
    }

    .products-page .footer-bottom {
        padding: 10px;

        font-size: 10px;
    }
}/* ==========================================================
   PRODUCTOS.HTML - DISEÑO MÓVIL TIPO BRISTOL
   PEGAR AL FINAL DE STYLE.CSS
========================================================== */

.mobile-filter-overlay,
.mobile-filters-button,
.mobile-filter-close {
    display: none;
}


/* ==========================================================
   SOLAMENTE CELULAR
========================================================== */

@media (max-width: 768px) {

    body.products-page {
        background-color: #ffffff;
    }


    /* ========================================
       SECCIÓN GENERAL
    ======================================== */

    body.products-page
    .products-catalog-section {
        padding: 18px 0 45px !important;

        background-color: #ffffff !important;
    }

    body.products-page
    .products-catalog-section
    > .container {
        width: 100% !important;
        max-width: none !important;
    }

    body.products-page
    .products-catalog-section
    .products-layout {
        display: block !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        overflow: visible !important;
    }


    /* ========================================
       ÁREA DE PRODUCTOS
    ======================================== */

    body.products-page
    .products-content-area {
        position: static !important;

        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        padding: 0 11px !important;

        overflow: visible !important;
    }


    /* ========================================
       TÍTULO SUPERIOR
    ======================================== */

    body.products-page
    .products-top-header {
        position: static !important;

        display: block !important;

        margin: 0 -11px 22px !important;
        padding: 17px 12px 14px !important;

        background-color: #ffffff !important;

        border-top: 1px solid #eeeeee !important;
        border-bottom: 1px solid #e6e6e6 !important;
    }

    body.products-page
    .products-top-header
    > div:first-child {
        margin-bottom: 15px;

        text-align: center;
    }

    body.products-page
    .products-top-header
    .section-label {
        display: none !important;
    }

    body.products-page
    .products-top-header h2 {
        margin: 0 !important;

        font-size: 17px !important;
        font-weight: 900 !important;
        line-height: 1.2 !important;
        letter-spacing: 0.2px !important;
        text-transform: uppercase;
    }


    /* ========================================
       FILTRAR + ORDENAR
    ======================================== */

    body.products-page
    .products-top-actions {
        display: grid !important;

        width: 100% !important;

        grid-template-columns:
            105px minmax(0, 1fr);

        align-items: center !important;

        gap: 12px !important;
    }

    body.products-page
    .products-count {
        display: none !important;
    }

    body.products-page
    .mobile-filters-button {
        display: inline-flex;

        width: 105px;
        min-height: 40px;
        padding: 0 11px;

        align-items: center;
        justify-content: center;

        gap: 7px;

        color: #ffffff;
        background-color: #101010;

        border: none;
        border-radius: 4px;

        font-size: 12px;
        font-weight: 800;
    }

    body.products-page
    .mobile-filters-button svg {
        width: 15px;
        height: 15px;

        fill: none;
        stroke: currentColor;
        stroke-width: 2;
    }

    body.products-page
    .order-field {
        display: block !important;

        width: 100% !important;
    }

    body.products-page
    .order-field span {
        display: none !important;
    }

    body.products-page
    .order-field select {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 40px !important;
        padding: 0 34px 0 12px !important;

        color: #555555 !important;
        background-color: #ffffff !important;

        border: 1px solid #e2e2e2 !important;
        border-radius: 4px !important;

        font-size: 11px !important;
    }


    /* ========================================
       FILTROS LATERALES
    ======================================== */

    body.products-page
    .products-sidebar {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 7600 !important;

        display: block !important;

        width: min(330px, 87vw) !important;
        height: 100dvh !important;
        max-height: none !important;
        padding: 18px 18px 35px !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        background-color: #ffffff !important;

        box-shadow:
            18px 0 50px rgba(0, 0, 0, 0.22);

        transform: translateX(-105%);

        transition: transform 0.3s ease;
    }

    body.products-page
    .products-sidebar.is-open {
        transform: translateX(0);
    }

    body.products-page.mobile-filter-open {
        overflow: hidden !important;
    }


    /* FONDO OSCURO */

    body.products-page
    .mobile-filter-overlay {
        position: fixed;
        inset: 0;
        z-index: 7590;

        display: block;

        visibility: hidden;

        background-color: rgba(0, 0, 0, 0.55);

        opacity: 0;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    body.products-page
    .mobile-filter-overlay.is-open {
        visibility: visible;

        opacity: 1;
    }


    /* BOTÓN CERRAR */

    body.products-page
    .mobile-filter-close {
        position: sticky;
        top: 0;
        z-index: 15;

        display: flex;

        width: 100%;
        min-height: 45px;
        margin-bottom: 18px;
        padding: 0 13px;

        align-items: center;
        justify-content: space-between;

        color: #ffffff;
        background-color: #101010;

        border: none;
        border-radius: 5px;

        font-size: 13px;
        font-weight: 900;
    }

    body.products-page
    .mobile-filter-close span:last-child {
        font-size: 20px;
    }


    /* CABECERA INTERNA DEL FILTRO */

    body.products-page
    .products-sidebar
    .sidebar-heading {
        position: static !important;

        margin-bottom: 20px !important;
        padding: 0 0 16px !important;

        background-color: transparent !important;

        border-bottom: 1px solid #e5e5e5 !important;
    }

    body.products-page
    .products-sidebar
    .sidebar-heading h2 {
        font-size: 25px !important;
    }

    body.products-page
    .products-sidebar
    .sidebar-small-title {
        font-size: 9px !important;
    }

    body.products-page
    .products-sidebar
    .sidebar-box {
        margin-bottom: 25px !important;
        padding-bottom: 22px !important;
    }

    body.products-page
    .products-sidebar
    .sidebar-box h3 {
        margin-bottom: 15px !important;

        font-size: 18px !important;
    }


    /* FILTROS VERTICALES */

    body.products-page
    .products-sidebar
    .sidebar-filter-list {
        display: flex !important;

        padding: 0 !important;

        overflow: visible !important;

        flex-direction: column !important;

        gap: 12px !important;
    }

    body.products-page
    .products-sidebar
    .sidebar-filter-button {
        display: flex !important;

        width: 100% !important;
        min-width: 0 !important;
        min-height: 38px !important;
        padding: 0 10px !important;

        justify-content: space-between !important;

        color: #555555 !important;
        background-color: #f7f7f7 !important;

        border: 1px solid #e4e4e4 !important;
        border-radius: 5px !important;

        font-size: 13px !important;
    }

    body.products-page
    .products-sidebar
    .sidebar-filter-button.active {
        color: #ffffff !important;
        background-color: #e30613 !important;

        border-color: #e30613 !important;
    }

    body.products-page
    .products-sidebar
    .sidebar-filter-button.active
    .sidebar-filter-count {
        color: #ffffff !important;
    }


    /* ========================================
       DOS PRODUCTOS POR FILA
    ======================================== */

    body.products-page
    .products-page-grid {
        display: grid !important;

        width: 100% !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        align-items: start !important;

        gap: 30px 11px !important;
    }


    /* ========================================
       TARJETAS ESTILO BRISTOL
    ======================================== */

    body.products-page
    .store-product-card {
        display: flex !important;

        min-width: 0 !important;

        overflow: visible !important;

        flex-direction: column !important;

        background-color: #ffffff !important;

        border: none !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        transform: none !important;
    }

    body.products-page
    .store-product-card:hover {
        transform: none !important;

        box-shadow: none !important;
    }


    /* IMAGEN GRANDE */

    body.products-page
    .store-product-image {
        position: relative !important;

        display: flex !important;

        width: 100% !important;
        min-height: 178px !important;
        padding: 7px 3px 5px !important;

        align-items: center !important;
        justify-content: center !important;

        overflow: visible !important;

        background-color: #ffffff !important;
        background-image: none !important;

        border: none !important;
    }

    body.products-page
    .store-product-image img {
        display: block !important;

        width: 100% !important;
        max-width: 180px !important;
        height: 165px !important;

        object-fit: contain !important;
        object-position: center !important;

        filter:
            drop-shadow(
                0 7px 8px rgba(0, 0, 0, 0.12)
            ) !important;

        transform: none !important;
    }


    /* ETIQUETA CONSULTAR */

    body.products-page
    .product-badge {
        top: 4px !important;
        left: 3px !important;

        padding: 4px 7px !important;

        border-radius: 3px 8px 8px 3px !important;

        font-size: 7px !important;
    }


    /* ========================================
       INFORMACIÓN DEL PRODUCTO
    ======================================== */

    body.products-page
    .store-product-content {
        display: flex !important;

        height: auto !important;
        padding: 7px 3px 0 !important;

        align-items: center !important;
        flex-direction: column !important;

        text-align: center !important;
    }

    body.products-page
    .product-category {
        display: none !important;
    }

    body.products-page
    .store-product-content h3 {
        display: -webkit-box !important;

        width: 100% !important;
        min-height: 39px !important;
        margin: 0 0 8px !important;

        overflow: hidden !important;

        color: #404040 !important;

        font-size: 11px !important;
        font-weight: 500 !important;
        line-height: 1.35 !important;

        text-align: center !important;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    body.products-page
    .product-description {
        display: none !important;
    }

    body.products-page
    .product-consult-price {
        display: block !important;

        width: 100% !important;
        margin: 0 0 10px !important;

        color: #222222 !important;

        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;

        text-align: center !important;
    }


    /* ========================================
       BOTONES
    ======================================== */

    body.products-page
    .product-actions {
        display: grid !important;

        width: 100% !important;
        margin-top: 0 !important;

        grid-template-columns: 1fr !important;

        gap: 6px !important;
    }

    body.products-page
    .add-to-cart-button,
    body.products-page
    .direct-whatsapp-button {
        display: flex !important;

        width: 100% !important;
        min-height: 37px !important;
        padding: 5px 3px !important;

        align-items: center !important;
        justify-content: center !important;

        border-radius: 3px !important;

        font-size: 8px !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;

        text-align: center !important;
    }

    body.products-page
    .add-to-cart-button {
        color: #ffffff !important;
        background-color: #101010 !important;

        border: 1px solid #101010 !important;
    }

    body.products-page
    .direct-whatsapp-button {
        color: #17994b !important;
        background-color: #ffffff !important;

        border: 1px solid #25d366 !important;
    }


    /* ========================================
       FOOTER MÓVIL
    ======================================== */

    body.products-page
    .footer {
        margin-top: 35px !important;
    }

    body.products-page
    .footer-grid {
        padding-top: 28px !important;
        padding-bottom: 25px !important;
    }
}


/* ==========================================================
   CELULARES MUY PEQUEÑOS
========================================================== */

@media (max-width: 370px) {

    body.products-page
    .products-content-area {
        padding: 0 7px !important;
    }

    body.products-page
    .products-page-grid {
        gap: 25px 7px !important;
    }

    body.products-page
    .store-product-image {
        min-height: 158px !important;
    }

    body.products-page
    .store-product-image img {
        max-width: 150px !important;
        height: 145px !important;
    }

    body.products-page
    .store-product-content h3 {
        font-size: 10px !important;
    }

    body.products-page
    .product-consult-price {
        font-size: 13px !important;
    }

    body.products-page
    .add-to-cart-button,
    body.products-page
    .direct-whatsapp-button {
        min-height: 34px !important;

        font-size: 7px !important;
    }
}/* ==========================================================
   PERMITIR LLEGAR AL FOOTER DESDE PRODUCTOS Y FILTROS
========================================================== */

@media (min-width: 769px) {

    .products-page
    .products-catalog-section
    .products-sidebar,

    .products-page
    .products-catalog-section
    .products-content-area {
        overscroll-behavior-y: auto !important;
        overscroll-behavior: auto !important;
    }

    /*
       Cuando llegás al final del scroll interno,
       el mouse continúa desplazando la página.
    */
    .products-page
    .products-catalog-section
    .products-layout {
        overscroll-behavior: auto !important;
    }
}/* ==========================================================
   COMBOS / catalogo.html
========================================================== */

.combos-section {
    padding: 70px 0 90px;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.combo-card {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.combo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.10);
}

.combo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    border-bottom: 1px solid #ededed;
}

.combo-image img {
    max-width: 100%;
    max-height: 230px;
    object-fit: contain;
    display: block;
}

.combo-content {
    padding: 22px;
}

.combo-category {
    margin: 0 0 8px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.combo-content h3 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 24px;
    line-height: 1.2;
}

.combo-description {
    margin: 0 0 18px;
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

.combo-price {
    margin-bottom: 18px;
    color: #111111;
    font-size: 26px;
    font-weight: 900;
}

.combo-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.combo-actions .direct-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
}


/* TABLET */
@media (max-width: 1024px) {
    .combos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* CELULAR */
@media (max-width: 768px) {
    .combos-section {
        padding: 45px 0 60px;
    }

    .combos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 22px;
    }

    .combo-image {
        min-height: 210px;
        padding: 18px;
    }

    .combo-image img {
        max-height: 180px;
    }

    .combo-content {
        padding: 18px;
    }

    .combo-content h3 {
        font-size: 20px;
    }

    .combo-description {
        font-size: 14px;
    }

    .combo-price {
        font-size: 22px;
    }
}/* ==========================================================
   HEADER / MENÚ SUPERIOR MÁS LIMPIO
========================================================== */

.site-header {
    background-color: #ffffff;
    border-top: 2px solid #e30613;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    width: 64px;
    height: auto;
    display: block;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    flex: 1;
}

.navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 70px;
    color: #111111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    transition: color 0.2s ease;
}

.navigation a:hover {
    color: #e30613;
}

.navigation a.active-link {
    color: #e30613;
}

.navigation a.active-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 100%;
    height: 3px;
    background-color: #e30613;
    border-radius: 999px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-area {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    background-color: #ffffff;
}

.search-form {
    display: grid;
    grid-template-columns: 30px 1fr 120px;
    align-items: center;
    gap: 0;
    min-height: 62px;
}

.search-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 18px;
}

.search-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    background-color: #0c0c0c;
    color: #ffffff;
    border: none;
    outline: none;
    font-size: 15px;
}

.search-form input::placeholder {
    color: #bdbdbd;
}

.search-form button {
    min-height: 46px;
    border: none;
    background-color: #e30613;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}


/* ==========================================================
   AJUSTE DE LA SECCIÓN MARCAS
========================================================== */

.brands-section {
    padding-top: 42px;
}

.brands-section .section-heading {
    margin-bottom: 30px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {
    .navigation {
        gap: 24px;
    }

    .navigation a {
        font-size: 16px;
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {
    .header-main {
        min-height: 78px;
    }

    .logo {
        width: 52px;
    }

    .navigation {
        gap: 18px;
    }

    .navigation a {
        min-height: 58px;
        font-size: 15px;
    }

    .navigation a.active-link::after {
        bottom: 8px;
    }

    .search-form {
        grid-template-columns: 26px 1fr 92px;
        min-height: 56px;
    }

    .search-form input {
        min-height: 42px;
        font-size: 14px;
    }

    .search-form button {
        min-height: 42px;
        font-size: 14px;
    }

    .brands-section {
        padding-top: 28px;
    }
}/* ==========================================================
   MARCAS - MEJORA DE TEXTO, RESPONSIVE Y MOVIMIENTO
========================================================== */

.brands-section {
    padding: 50px 0 90px;
}

.brands-heading {
    margin-bottom: 40px;
}

.brands-heading-text {
    max-width: 780px;
}

.brands-heading .section-label {
    margin-bottom: 14px;
    color: #e30613;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brands-heading h1 {
    margin: 0 0 18px;
    color: #111111;
    font-size: 58px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1px;
}

.brands-heading .section-description {
    margin: 0;
    color: #5f6672;
    font-size: 22px;
    line-height: 1.6;
}

.brands-heading .secondary-description {
    margin-top: 10px;
}

/* GRID DE MARCAS */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 18px;
}

.brand-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    padding: 34px 22px 30px;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: #e30613;
    transform: scaleX(1);
    transform-origin: center;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.10);
    border-color: #dddddd;
}

/* “LOGO” REDONDO */
.brand-initial {
    width: 92px;
    height: 92px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0f;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    animation: brandFloat 3.2s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.brand-card:hover .brand-initial {
    transform: scale(1.08) translateY(-4px);
    background: #e30613;
    box-shadow: 0 18px 30px rgba(227, 6, 19, 0.28);
}

.brand-card h3 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.brand-card p {
    margin: 0;
    color: #606772;
    font-size: 17px;
    line-height: 1.5;
}

.brand-card:hover p {
    color: #111111;
}

/* EFECTO DE MOVIMIENTO SUAVE */
@keyframes brandFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* RETRASOS PARA QUE NO SE MUEVAN TODOS IGUAL */
.brands-grid .brand-card:nth-child(2) .brand-initial,
.brands-grid .brand-card:nth-child(5) .brand-initial,
.brands-grid .brand-card:nth-child(8) .brand-initial,
.brands-grid .brand-card:nth-child(11) .brand-initial {
    animation-delay: 0.3s;
}

.brands-grid .brand-card:nth-child(3) .brand-initial,
.brands-grid .brand-card:nth-child(6) .brand-initial,
.brands-grid .brand-card:nth-child(9) .brand-initial,
.brands-grid .brand-card:nth-child(12) .brand-initial {
    animation-delay: 0.6s;
}

.brands-grid .brand-card:nth-child(4) .brand-initial,
.brands-grid .brand-card:nth-child(7) .brand-initial,
.brands-grid .brand-card:nth-child(10) .brand-initial,
.brands-grid .brand-card:nth-child(13) .brand-initial {
    animation-delay: 0.9s;
}

/* TABLET */
@media (max-width: 1100px) {
    .brands-heading h1 {
        font-size: 46px;
    }

    .brands-heading .section-description {
        font-size: 19px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

/* CELULAR */
@media (max-width: 768px) {
    .brands-section {
        padding: 30px 0 60px;
    }

    .brands-heading {
        margin-bottom: 28px;
    }

    .brands-heading-text {
        max-width: 100%;
    }

    .brands-heading .section-label {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .brands-heading h1 {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .brands-heading .section-description {
        font-size: 16px;
        line-height: 1.65;
    }

    .secondary-description {
        margin-top: 8px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 10px;
    }

    .brand-card {
        min-height: 210px;
        padding: 24px 14px 20px;
        border-radius: 18px;
    }

    .brand-initial {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
        font-size: 20px;
    }

    .brand-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .brand-card p {
        font-size: 14px;
    }
}

/* CELULAR CHICO */
@media (max-width: 480px) {
    .brands-heading h1 {
        font-size: 30px;
    }

    .brands-heading .section-description {
        font-size: 15px;
    }

    .brand-card {
        min-height: 190px;
        padding: 20px 12px 18px;
    }

    .brand-initial {
        width: 62px;
        height: 62px;
        font-size: 18px;
    }

    .brand-card h3 {
        font-size: 17px;
    }

    .brand-card p {
        font-size: 13px;
    }
}/* ==========================================================
   MARCAS - ENCABEZADO PREMIUM
========================================================== */

body.brands-page .brands-section {
    padding-top: 55px;
    padding-bottom: 90px;
}

body.brands-page .brands-premium-heading {
    position: relative;

    display: grid;
    grid-template-columns: 6px minmax(0, 1fr);

    max-width: 1050px;
    margin-bottom: 55px;

    gap: 30px;
}


/* LÍNEA ROJA DECORATIVA */

body.brands-page .brands-premium-line {
    width: 6px;
    min-height: 100%;

    background:
        linear-gradient(
            180deg,
            #e30613 0%,
            #e30613 65%,
            #111111 65%,
            #111111 100%
        );

    border-radius: 999px;
}


/* CONTENIDO */

body.brands-page .brands-premium-content {
    max-width: 920px;
}

body.brands-page
.brands-premium-content
.section-label {
    margin-bottom: 14px;

    color: #e30613;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

body.brands-page
.brands-premium-content h1 {
    max-width: 900px;
    margin: 0 0 22px;

    color: #101010;

    font-size: clamp(46px, 5vw, 70px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

body.brands-page
.brands-premium-description {
    max-width: 820px;
    margin: 0;

    color: #5f6672;

    font-size: 20px;
    line-height: 1.65;
}


/* BENEFICIOS */

body.brands-page
.brands-premium-benefits {
    display: flex;
    margin-top: 28px;

    flex-wrap: wrap;

    gap: 11px;
}

body.brands-page
.brands-premium-benefits span {
    position: relative;

    display: inline-flex;
    min-height: 40px;
    padding: 0 17px 0 36px;

    align-items: center;

    color: #222222;
    background-color: #f5f5f5;

    border: 1px solid #e4e4e4;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

body.brands-page
.brands-premium-benefits span::before {
    position: absolute;
    left: 15px;

    display: grid;

    width: 14px;
    height: 14px;

    content: "✓";

    place-items: center;

    color: #ffffff;
    background-color: #e30613;

    border-radius: 50%;

    font-size: 9px;
    font-weight: 900;
}

body.brands-page
.brands-premium-benefits span:hover {
    color: #ffffff;
    background-color: #101010;

    border-color: #101010;

    transform: translateY(-3px);
}


/* ==========================================================
   TARJETAS DE MARCAS MÁS PROFESIONALES
========================================================== */

body.brands-page .brands-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}

body.brands-page .brand-card {
    position: relative;

    display: flex;
    min-height: 245px;
    padding: 30px 20px 26px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    overflow: hidden;

    color: #101010;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fafafa
        );

    border: 1px solid #e2e2e2;
    border-radius: 18px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

body.brands-page .brand-card::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 5px;

    content: "";

    background-color: #e30613;

    transform: scaleX(0.35);
    transform-origin: center;

    transition: transform 0.3s ease;
}

body.brands-page .brand-card:hover {
    border-color: #cccccc;

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.1);
}

body.brands-page .brand-card:hover::before {
    transform: scaleX(1);
}


/* CÍRCULO DE LA MARCA */

body.brands-page .brand-initial {
    display: grid;

    width: 88px;
    height: 88px;
    margin-bottom: 22px;

    place-items: center;

    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #101010,
            #272727
        );

    border: 4px solid #ffffff;
    border-radius: 50%;

    font-size: 22px;
    font-weight: 900;

    box-shadow:
        0 13px 26px rgba(0, 0, 0, 0.2);

    animation:
        brandPremiumFloat 3.5s ease-in-out infinite;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

body.brands-page
.brand-card:hover
.brand-initial {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #e30613,
            #b8000c
        );

    transform:
        translateY(-5px)
        rotate(4deg)
        scale(1.08);

    box-shadow:
        0 17px 30px rgba(227, 6, 19, 0.3);
}


/* MOVIMIENTO SUAVE */

@keyframes brandPremiumFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* MOVIMIENTOS EN TIEMPOS DIFERENTES */

body.brands-page
.brands-grid
.brand-card:nth-child(2n)
.brand-initial {
    animation-delay: 0.45s;
}

body.brands-page
.brands-grid
.brand-card:nth-child(3n)
.brand-initial {
    animation-delay: 0.9s;
}

body.brands-page
.brand-card h3 {
    margin: 0 0 7px;

    color: #101010;

    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

body.brands-page
.brand-card p {
    margin: 0;

    color: #6a6a6a;

    font-size: 15px;
    font-weight: 500;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

body.brands-page
.brand-card:hover p {
    color: #e30613;

    transform: translateX(3px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    body.brands-page .brands-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    body.brands-page
    .brands-premium-heading {
        max-width: 900px;
    }

    body.brands-page
    .brands-premium-content h1 {
        font-size: 50px;
    }

    body.brands-page
    .brands-premium-description {
        font-size: 18px;
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    body.brands-page .brands-section {
        padding-top: 32px;
        padding-bottom: 60px;
    }

    body.brands-page
    .brands-premium-heading {
        grid-template-columns: 4px minmax(0, 1fr);

        margin-bottom: 34px;

        gap: 17px;
    }

    body.brands-page
    .brands-premium-line {
        width: 4px;
    }

    body.brands-page
    .brands-premium-content
    .section-label {
        margin-bottom: 9px;

        font-size: 10px;
        letter-spacing: 2px;
    }

    body.brands-page
    .brands-premium-content h1 {
        margin-bottom: 14px;

        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    body.brands-page
    .brands-premium-description {
        font-size: 15px;
        line-height: 1.6;
    }

    body.brands-page
    .brands-premium-benefits {
        margin-top: 19px;

        gap: 7px;
    }

    body.brands-page
    .brands-premium-benefits span {
        min-height: 34px;
        padding: 0 11px 0 29px;

        font-size: 10px;
    }

    body.brands-page
    .brands-premium-benefits span::before {
        left: 10px;

        width: 13px;
        height: 13px;

        font-size: 8px;
    }


    /* DOS MARCAS POR FILA */

    body.brands-page .brands-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    body.brands-page .brand-card {
        min-height: 190px;
        padding: 22px 10px 19px;

        border-radius: 14px;
    }

    body.brands-page .brand-initial {
        width: 65px;
        height: 65px;
        margin-bottom: 14px;

        font-size: 17px;

        border-width: 3px;
    }

    body.brands-page
    .brand-card h3 {
        margin-bottom: 5px;

        font-size: 16px;
    }

    body.brands-page
    .brand-card p {
        font-size: 12px;
    }
}


/* ==========================================================
   CELULAR PEQUEÑO
========================================================== */

@media (max-width: 380px) {

    body.brands-page
    .brands-premium-heading {
        gap: 13px;
    }

    body.brands-page
    .brands-premium-content h1 {
        font-size: 29px;
    }

    body.brands-page
    .brands-premium-description {
        font-size: 14px;
    }

    body.brands-page .brands-grid {
        gap: 8px;
    }

    body.brands-page .brand-card {
        min-height: 175px;
        padding: 18px 7px 16px;
    }

    body.brands-page .brand-initial {
        width: 58px;
        height: 58px;

        font-size: 15px;
    }

    body.brands-page
    .brand-card h3 {
        font-size: 14px;
    }

    body.brands-page
    .brand-card p {
        font-size: 11px;
    }
}


/* RESPETAR USUARIOS QUE DESACTIVAN MOVIMIENTOS */

@media (prefers-reduced-motion: reduce) {

    body.brands-page .brand-initial {
        animation: none;
    }

    body.brands-page .brand-card,
    body.brands-page .brand-initial {
        transition: none;
    }
}/* ==========================================================
   CORRECCIÓN DEFINITIVA DEL MENÚ EN CELULAR
========================================================== */

@media (max-width: 768px) {

    /* Encabezado */

    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 7000 !important;

        background-color: #ffffff !important;
    }

    .header-main {
        position: relative !important;

        min-height: 70px !important;
        padding: 7px 0 !important;
    }

    .logo {
        width: 58px !important;
        height: 52px !important;

        object-fit: contain !important;
    }


    /* Botones del encabezado */

    .header-actions {
        display: flex !important;

        align-items: center !important;

        gap: 10px !important;
    }

    .cart-button,
    .menu-button {
        display: inline-flex !important;

        width: 43px !important;
        height: 43px !important;

        min-width: 43px !important;
        min-height: 43px !important;

        align-items: center !important;
        justify-content: center !important;

        color: #ffffff !important;
        background-color: #101010 !important;

        border: none !important;
        border-radius: 7px !important;
    }

    .menu-button {
        font-size: 23px !important;
        line-height: 1 !important;
    }


    /* Menú cerrado */

    .site-header .navigation {
        position: absolute !important;
        top: 70px !important;
        right: 0 !important;
        left: 0 !important;
        z-index: 7500 !important;

        display: none !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: calc(100vh - 70px) !important;

        margin: 0 !important;
        padding: 8px 20px 14px !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        align-items: stretch !important;
        justify-content: flex-start !important;
        flex-direction: column !important;

        gap: 0 !important;

        background-color: #101010 !important;

        border-top: 3px solid #e30613 !important;
        border-bottom: 3px solid #e30613 !important;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, 0.28) !important;
    }


    /* Menú abierto */

    .site-header .navigation.is-open {
        display: flex !important;
    }


    /* Todos los enlaces */

    .site-header .navigation a {
        position: relative !important;

        display: flex !important;

        width: 100% !important;
        height: auto !important;
        min-height: 52px !important;
        margin: 0 !important;
        padding: 14px 6px !important;

        align-items: center !important;
        justify-content: flex-start !important;

        color: #ffffff !important;
        background-color: transparent !important;

        border: none !important;
        border-bottom: 1px solid #303030 !important;
        border-radius: 0 !important;

        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;

        text-align: left !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;
    }


    /* Quitar línea de computadora */

    .site-header .navigation a::before,
    .site-header .navigation a::after {
        display: none !important;

        width: 0 !important;
        height: 0 !important;

        content: none !important;
    }


    /* Enlace seleccionado */

    .site-header .navigation a.active-link {
        color: #e30613 !important;
        background-color: transparent !important;
    }


    /* Indicador rojo del enlace seleccionado */

    .site-header .navigation a.active-link::before {
        position: absolute !important;
        top: 13px !important;
        bottom: 13px !important;
        left: -10px !important;

        display: block !important;

        width: 3px !important;
        height: auto !important;

        content: "" !important;

        background-color: #e30613 !important;
        border-radius: 999px !important;
    }


    /* Último enlace sin línea inferior */

    .site-header .navigation a:last-child {
        border-bottom: none !important;
    }


    /* Hover */

    .site-header .navigation a:hover {
        color: #e30613 !important;
        background-color: #191919 !important;
    }


    /* Evitar el espacio negro gigante */

    body.menu-open .navigation {
        height: auto !important;
        min-height: 0 !important;
    }
}/* ==========================================================
   INICIO - MOVIMIENTO PROFESIONAL EN IMÁGENES
========================================================== */

/* Imágenes de las categorías */

.home-page .category-image {
    will-change: transform;

    animation:
        categoryImageFloat 4s ease-in-out infinite;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.home-page .category-card:nth-child(2) .category-image {
    animation-delay: 0.5s;
}

.home-page .category-card:nth-child(3) .category-image {
    animation-delay: 1s;
}

.home-page .category-card:hover .category-image {
    transform:
        translateY(-8px)
        scale(1.06);

    filter:
        drop-shadow(
            0 18px 18px rgba(0, 0, 0, 0.18)
        );
}


/* Imágenes de productos destacados */

.home-page .product-card .product-image img {
    will-change: transform;

    animation:
        featuredProductFloat 4.5s ease-in-out infinite;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.home-page .product-card:nth-child(2) .product-image img {
    animation-delay: 0.7s;
}

.home-page .product-card:nth-child(3) .product-image img {
    animation-delay: 1.4s;
}

.home-page .product-card:hover .product-image img {
    transform:
        translateY(-7px)
        scale(1.07);

    filter:
        drop-shadow(
            0 17px 17px rgba(0, 0, 0, 0.2)
        );
}


/* Movimiento de las tarjetas */

.home-page .category-card,
.home-page .product-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.home-page .category-card:hover,
.home-page .product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.11);
}


/* Movimiento vertical de categorías */

@keyframes categoryImageFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-9px)
            rotate(0.5deg);
    }
}


/* Movimiento vertical de productos */

@keyframes featuredProductFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-7px)
            scale(1.015);
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    .home-page .category-image {
        animation-duration: 4.8s;
    }

    .home-page .product-card .product-image img {
        animation-duration: 5s;
    }

    .home-page .category-card:hover,
    .home-page .product-card:hover {
        transform: none;
    }

    .home-page .category-card:hover .category-image,
    .home-page .product-card:hover .product-image img {
        transform: none;
    }
}


/* Respetar dispositivos con animaciones desactivadas */

@media (prefers-reduced-motion: reduce) {

    .home-page .category-image,
    .home-page .product-card .product-image img {
        animation: none;
    }

    .home-page .category-card,
    .home-page .product-card,
    .home-page .category-image,
    .home-page .product-card .product-image img {
        transition: none;
    }
}/* ==========================================================
   CONTACTO - DISEÑO PROFESIONAL
========================================================== */

body.contact-page {
    background-color: #ffffff;
}


/* ==========================================================
   PRESENTACIÓN
========================================================== */

body.contact-page .contact-hero {
    position: relative;

    overflow: hidden;

    padding: 75px 0 85px;

    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(227, 6, 19, 0.12),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #ffffff 0%,
            #f8f8f8 62%,
            #fff3f4 100%
        );

    border-bottom: 1px solid #eeeeee;
}

body.contact-page .contact-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(280px, 0.65fr);

    align-items: center;

    gap: 70px;
}

body.contact-page .contact-hero-copy {
    max-width: 820px;
}

body.contact-page .contact-hero-copy h1 {
    max-width: 760px;
    margin: 0 0 22px;

    color: #101010;

    font-size: clamp(50px, 6vw, 78px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -3px;
}

body.contact-page .contact-hero-copy > p:not(.section-label) {
    max-width: 720px;
    margin: 0;

    color: #626974;

    font-size: 20px;
    line-height: 1.65;
}


/* BENEFICIOS CORTOS */

body.contact-page .contact-trust-list {
    display: flex;
    margin-top: 28px;

    flex-wrap: wrap;

    gap: 10px;
}

body.contact-page .contact-trust-list span {
    position: relative;

    display: inline-flex;
    min-height: 39px;
    padding: 0 16px 0 36px;

    align-items: center;

    color: #202020;
    background-color: #ffffff;

    border: 1px solid #e1e1e1;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.05);
}

body.contact-page .contact-trust-list span::before {
    position: absolute;
    left: 14px;

    display: grid;

    width: 14px;
    height: 14px;

    content: "✓";

    place-items: center;

    color: #ffffff;
    background-color: #e30613;

    border-radius: 50%;

    font-size: 8px;
}


/* LOGO DECORATIVO */

body.contact-page .contact-hero-decoration {
    display: flex;

    align-items: center;
    justify-content: center;
    flex-direction: column;
}

body.contact-page .contact-decoration-circle {
    display: grid;

    width: 255px;
    height: 255px;

    place-items: center;

    background-color: #ffffff;

    border: 1px solid #ececec;
    border-radius: 50%;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.13);

    animation:
        contactLogoFloat 4s ease-in-out infinite;
}

body.contact-page .contact-decoration-circle img {
    width: 135px;
    height: 135px;

    object-fit: contain;
}

body.contact-page .contact-decoration-label {
    margin-top: 18px;

    color: #e30613;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes contactLogoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* ==========================================================
   INFORMACIÓN Y FORMULARIO
========================================================== */

body.contact-page .contact-main-section {
    padding: 90px 0;

    background-color: #ffffff;
}

body.contact-page .contact-main-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: start;

    gap: 65px;
}

body.contact-page .contact-information h2,
body.contact-page .contact-form-heading h2 {
    margin: 0 0 14px;

    color: #101010;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

body.contact-page .contact-information-description,
body.contact-page .contact-form-heading > p:not(.section-label) {
    margin: 0;

    color: #666d78;

    font-size: 17px;
    line-height: 1.65;
}


/* TARJETA WHATSAPP */

body.contact-page .contact-whatsapp-card {
    display: grid;
    margin-top: 32px;
    padding: 27px;

    grid-template-columns:
        60px minmax(0, 1fr);

    align-items: center;

    gap: 20px;

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #0e0e0e,
            #1c1c1c
        );

    border-left: 5px solid #25d366;
    border-radius: 15px;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

body.contact-page .contact-whatsapp-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.22);
}

body.contact-page .contact-whatsapp-icon {
    display: grid;

    width: 60px;
    height: 60px;

    place-items: center;

    color: #ffffff;
    background-color: #25d366;

    border-radius: 50%;
}

body.contact-page .contact-whatsapp-icon svg {
    width: 31px;
    height: 31px;

    fill: currentColor;
}

body.contact-page .contact-whatsapp-card span {
    display: block;
    margin-bottom: 3px;

    color: #25d366;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

body.contact-page .contact-whatsapp-card strong {
    display: block;
    margin-bottom: 5px;

    font-size: 27px;
    line-height: 1.2;
}

body.contact-page .contact-whatsapp-card p {
    margin: 0;

    color: #bdbdbd;

    font-size: 13px;
}


/* SERVICIOS */

body.contact-page .contact-services {
    display: grid;
    margin-top: 25px;

    gap: 11px;
}

body.contact-page .contact-service-card {
    display: grid;
    padding: 18px;

    grid-template-columns:
        45px minmax(0, 1fr);

    align-items: start;

    gap: 15px;

    background-color: #f8f8f8;

    border: 1px solid #e7e7e7;
    border-radius: 11px;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}

body.contact-page .contact-service-card:hover {
    background-color: #ffffff;
    border-color: #e30613;

    transform: translateX(5px);
}

body.contact-page .contact-service-number {
    display: grid;

    width: 43px;
    height: 43px;

    place-items: center;

    color: #ffffff;
    background-color: #101010;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}

body.contact-page .contact-service-card h3 {
    margin: 0 0 3px;

    color: #101010;

    font-size: 16px;
}

body.contact-page .contact-service-card p {
    margin: 0;

    color: #707070;

    font-size: 13px;
}


/* ==========================================================
   FORMULARIO
========================================================== */

body.contact-page .contact-form-wrapper {
    padding: 38px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7f7f7
        );

    border: 1px solid #e2e2e2;
    border-top: 5px solid #e30613;
    border-radius: 18px;

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.1);
}

body.contact-page .contact-form-heading {
    margin-bottom: 29px;
}

body.contact-page .contact-form {
    display: grid;

    gap: 21px;
}

body.contact-page .contact-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}

body.contact-page .contact-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

body.contact-page .contact-field > span {
    color: #101010;

    font-size: 13px;
    font-weight: 900;
}

body.contact-page .contact-field input,
body.contact-page .contact-field select,
body.contact-page .contact-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;

    color: #101010;
    background-color: #ffffff;

    border: 1px solid #dcdcdc;
    border-radius: 8px;

    outline: none;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

body.contact-page .contact-field textarea {
    min-height: 145px;

    resize: vertical;
}

body.contact-page .contact-field input:focus,
body.contact-page .contact-field select:focus,
body.contact-page .contact-field textarea:focus {
    background-color: #ffffff;
    border-color: #e30613;

    box-shadow:
        0 0 0 4px rgba(227, 6, 19, 0.08);
}

body.contact-page .contact-submit-button {
    display: flex;

    width: 100%;
    min-height: 55px;
    padding: 0 19px;

    align-items: center;
    justify-content: space-between;

    color: #ffffff;
    background-color: #101010;

    border: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 900;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

body.contact-page .contact-submit-button strong {
    font-size: 23px;
}

body.contact-page .contact-submit-button:hover {
    background-color: #e30613;

    transform: translateY(-3px);
}

body.contact-page .contact-form-note {
    color: #7c7c7c;

    font-size: 11px;
    text-align: center;
}


/* ==========================================================
   POR QUÉ ELEGIR A.S COMERCIAL
========================================================== */

body.contact-page .why-choose-section {
    padding: 90px 0;

    background-color: #101010;
}

body.contact-page .why-choose-heading {
    max-width: 780px;
    margin-bottom: 43px;
}

body.contact-page .why-choose-heading h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -2px;
}

body.contact-page .why-choose-heading > p:not(.section-label) {
    margin: 0;

    color: #bdbdbd;

    font-size: 18px;
    line-height: 1.6;
}

body.contact-page .why-choose-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

body.contact-page .why-choose-card {
    position: relative;

    min-height: 260px;
    padding: 26px;

    overflow: hidden;

    color: #ffffff;
    background-color: #181818;

    border: 1px solid #303030;
    border-radius: 14px;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

body.contact-page .why-choose-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 5px;

    content: "";

    background-color: #e30613;

    transform: scaleX(0.3);
    transform-origin: left;

    transition: transform 0.3s ease;
}

body.contact-page .why-choose-card:hover {
    background-color: #202020;
    border-color: #e30613;

    transform: translateY(-7px);
}

body.contact-page .why-choose-card:hover::after {
    transform: scaleX(1);
}

body.contact-page .why-choose-icon {
    display: grid;

    width: 55px;
    height: 55px;
    margin-bottom: 32px;

    place-items: center;

    color: #ffffff;
    background-color: #e30613;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 900;
}

body.contact-page .why-choose-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.25;
}

body.contact-page .why-choose-card p {
    margin: 0;

    color: #aaaaaa;

    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================================
   LLAMADO FINAL
========================================================== */

body.contact-page .contact-final-cta {
    padding: 65px 0;

    color: #ffffff;
    background-color: #e30613;
}

body.contact-page .contact-final-layout {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

body.contact-page .contact-final-layout h2 {
    margin: 0 0 8px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
}

body.contact-page .contact-final-layout p:not(.section-label) {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);
}

body.contact-page
.contact-final-layout
.section-label {
    color: #ffffff;
}

body.contact-page .contact-final-button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 24px;

    align-items: center;
    justify-content: center;

    color: #101010;
    background-color: #ffffff;

    border: 2px solid #ffffff;
    border-radius: 7px;

    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

body.contact-page .contact-final-button:hover {
    color: #ffffff;
    background-color: #101010;
    border-color: #101010;

    transform: translateY(-3px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    body.contact-page .contact-hero-layout {
        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(220px, 0.75fr);

        gap: 35px;
    }

    body.contact-page .contact-decoration-circle {
        width: 210px;
        height: 210px;
    }

    body.contact-page .contact-main-layout {
        gap: 35px;
    }

    body.contact-page .why-choose-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    body.contact-page .contact-hero {
        padding: 45px 0 52px;
    }

    body.contact-page .contact-hero-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    body.contact-page .contact-hero-copy {
        text-align: left;
    }

    body.contact-page .contact-hero-copy h1 {
        margin-bottom: 15px;

        font-size: 39px;
        line-height: 1.04;
        letter-spacing: -1.5px;
    }

    body.contact-page
    .contact-hero-copy
    > p:not(.section-label) {
        font-size: 15px;
        line-height: 1.6;
    }

    body.contact-page .contact-trust-list {
        margin-top: 20px;

        gap: 7px;
    }

    body.contact-page .contact-trust-list span {
        min-height: 34px;
        padding: 0 11px 0 30px;

        font-size: 9px;
    }

    body.contact-page
    .contact-trust-list span::before {
        left: 10px;
    }

    body.contact-page .contact-hero-decoration {
        display: none;
    }


    /* INFORMACIÓN Y FORMULARIO */

    body.contact-page .contact-main-section {
        padding: 55px 0;
    }

    body.contact-page .contact-main-layout {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    body.contact-page .contact-information h2,
    body.contact-page .contact-form-heading h2 {
        font-size: 31px;
    }

    body.contact-page .contact-information-description,
    body.contact-page
    .contact-form-heading
    > p:not(.section-label) {
        font-size: 15px;
    }

    body.contact-page .contact-whatsapp-card {
        padding: 20px;

        grid-template-columns:
            48px minmax(0, 1fr);

        gap: 14px;
    }

    body.contact-page .contact-whatsapp-icon {
        width: 48px;
        height: 48px;
    }

    body.contact-page .contact-whatsapp-icon svg {
        width: 25px;
        height: 25px;
    }

    body.contact-page .contact-whatsapp-card strong {
        font-size: 19px;
    }

    body.contact-page .contact-whatsapp-card p {
        font-size: 11px;
    }

    body.contact-page .contact-service-card {
        padding: 14px;

        grid-template-columns:
            38px minmax(0, 1fr);

        gap: 11px;
    }

    body.contact-page .contact-service-number {
        width: 37px;
        height: 37px;
    }

    body.contact-page .contact-form-wrapper {
        padding: 24px 17px;

        border-radius: 13px;
    }

    body.contact-page .contact-form-row {
        grid-template-columns: 1fr;
    }

    body.contact-page .contact-field input,
    body.contact-page .contact-field select,
    body.contact-page .contact-field textarea {
        font-size: 16px;
    }


    /* POR QUÉ ELEGIR */

    body.contact-page .why-choose-section {
        padding: 60px 0;
    }

    body.contact-page .why-choose-heading {
        margin-bottom: 28px;
    }

    body.contact-page .why-choose-heading h2 {
        font-size: 36px;
    }

    body.contact-page
    .why-choose-heading
    > p:not(.section-label) {
        font-size: 15px;
    }

    body.contact-page .why-choose-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    body.contact-page .why-choose-card {
        min-height: 230px;
        padding: 18px 14px;

        border-radius: 10px;
    }

    body.contact-page .why-choose-icon {
        width: 43px;
        height: 43px;
        margin-bottom: 22px;

        font-size: 10px;
    }

    body.contact-page .why-choose-card h3 {
        font-size: 15px;
    }

    body.contact-page .why-choose-card p {
        font-size: 12px;
    }


    /* LLAMADO FINAL */

    body.contact-page .contact-final-cta {
        padding: 45px 0;
    }

    body.contact-page .contact-final-layout {
        align-items: flex-start;
        flex-direction: column;

        gap: 22px;
    }

    body.contact-page .contact-final-layout h2 {
        font-size: 31px;
    }

    body.contact-page .contact-final-button {
        width: 100%;
    }
}


/* ==========================================================
   CELULAR MUY PEQUEÑO
========================================================== */

@media (max-width: 380px) {

    body.contact-page .contact-hero-copy h1 {
        font-size: 34px;
    }

    body.contact-page .contact-whatsapp-card {
        grid-template-columns: 1fr;

        text-align: center;
    }

    body.contact-page .contact-whatsapp-icon {
        margin: 0 auto;
    }

    body.contact-page .why-choose-grid {
        grid-template-columns: 1fr;
    }

    body.contact-page .why-choose-card {
        min-height: 200px;
    }
}


/* RESPETAR DISPOSITIVOS SIN ANIMACIONES */

@media (prefers-reduced-motion: reduce) {

    body.contact-page .contact-decoration-circle {
        animation: none;
    }

    body.contact-page .contact-whatsapp-card,
    body.contact-page .contact-service-card,
    body.contact-page .why-choose-card,
    body.contact-page .contact-submit-button,
    body.contact-page .contact-final-button {
        transition: none;
    }
}/* ==========================================================
   REDES SOCIALES AL LADO DEL CARRITO
========================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}


/* BOTONES SOCIALES */

.header-social-button {
    position: relative;

    display: inline-flex;
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    align-items: center;
    justify-content: center;

    color: #ffffff;
    background-color: #101010;

    border: none;
    border-radius: 9px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.09);

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.header-social-button svg {
    display: block;

    width: 22px;
    height: 22px;
}


/* INSTAGRAM */

.instagram-header-button svg {
    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
}

.instagram-header-button .instagram-dot {
    fill: currentColor;
    stroke: none;
}

.instagram-header-button:not(.is-disabled):hover {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );

    transform: translateY(-3px);

    box-shadow:
        0 12px 24px rgba(225, 48, 108, 0.28);
}


/* INSTAGRAM DESACTIVADO */

.instagram-header-button.is-disabled {
    color: #8e8e8e;
    background-color: #eeeeee;

    border: 1px solid #dedede;

    cursor: not-allowed;
    pointer-events: none;

    box-shadow: none;
}


/* WHATSAPP */

.whatsapp-header-button svg {
    fill: currentColor;
}

.whatsapp-header-button {
    color: #ffffff;
    background-color: #25d366;
}

.whatsapp-header-button:hover {
    color: #ffffff;
    background-color: #1dbb59;

    transform: translateY(-3px);

    box-shadow:
        0 12px 24px rgba(37, 211, 102, 0.28);
}


/* CARRITO IGUALADO CON LAS REDES */

.header-actions .cart-button {
    width: 46px;
    height: 46px;

    min-width: 46px;
    min-height: 46px;

    flex: 0 0 46px;

    border-radius: 9px;
}


/* TEXTO FLOTANTE */

.header-social-tooltip {
    position: absolute;
    right: 50%;
    bottom: -40px;
    z-index: 8000;

    width: max-content;
    max-width: 190px;
    padding: 7px 10px;

    visibility: hidden;

    color: #ffffff;
    background-color: #101010;

    border-radius: 5px;

    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;

    opacity: 0;

    transform:
        translateX(50%)
        translateY(-4px);

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.header-social-button:hover
.header-social-tooltip {
    visibility: visible;

    opacity: 1;

    transform:
        translateX(50%)
        translateY(0);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .header-actions {
        gap: 7px;
    }

    .header-social-button,
    .header-actions .cart-button {
        width: 43px;
        height: 43px;

        min-width: 43px;
        min-height: 43px;

        flex-basis: 43px;
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    .header-actions {
        gap: 6px !important;
    }

    .header-social-button,
    .header-actions .cart-button,
    .header-actions .menu-button {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;
        min-height: 40px !important;

        flex: 0 0 40px !important;

        border-radius: 7px !important;
    }

    .header-social-button svg {
        width: 19px;
        height: 19px;
    }

    .header-actions .cart-button svg {
        width: 21px;
        height: 21px;
    }

    .header-actions .menu-button {
        font-size: 21px !important;
    }

    .header-social-tooltip {
        display: none;
    }

    .cart-count {
        top: -6px;
        right: -6px;

        min-width: 20px;
        height: 20px;

        font-size: 9px;
    }
}


/* CELULARES PEQUEÑOS */

@media (max-width: 390px) {

    .header-actions {
        gap: 4px !important;
    }

    .header-social-button,
    .header-actions .cart-button,
    .header-actions .menu-button {
        width: 37px !important;
        height: 37px !important;

        min-width: 37px !important;
        min-height: 37px !important;

        flex-basis: 37px !important;
    }

    .header-social-button svg {
        width: 18px;
        height: 18px;
    }
}/* ==========================================================
   ENCABEZADO: REDES + BUSCADOR DEBAJO
========================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}


/* BOTONES SOCIALES */

.header-social-button {
    position: relative;

    display: inline-flex;
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    border: none;
    border-radius: 10px;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.1);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.header-social-button:hover {
    transform: translateY(-3px);
}


/* INSTAGRAM CON DEGRADADO */

.instagram-header-button {
    background:
        radial-gradient(
            circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285aeb 90%
        );
}

.instagram-header-button:hover {
    filter: brightness(1.08);

    box-shadow:
        0 13px 25px rgba(214, 36, 159, 0.3);
}

.instagram-header-button svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

.instagram-header-button .instagram-camera-dot {
    fill: #ffffff;
    stroke: none;
}

.facebook-header-button {
    background: #1877f2;
    color: #ffffff;
}

.tiktok-header-button {
    background: #111111;
    color: #ffffff;
}

.dynamic-social-letter {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}


/* WHATSAPP */

.whatsapp-header-button {
    background-color: #25d366;
}

.whatsapp-header-button:hover {
    background-color: #1dbc59;

    box-shadow:
        0 13px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-header-button svg {
    width: 23px;
    height: 23px;

    fill: #ffffff;
}


/* CARRITO */

.header-actions .cart-button {
    width: 46px;
    height: 46px;

    min-width: 46px;
    min-height: 46px;

    flex: 0 0 46px;

    border-radius: 10px;
}


/* ==========================================================
   BUSCADOR DEBAJO DEL ENCABEZADO
========================================================== */

.site-header .search-area {
    display: block;

    width: 100%;
    padding: 0 0 14px;

    background-color: #ffffff;

    border: none;
}

.site-header .search-form {
    display: grid;

    width: min(1280px, 92%);
    min-height: 50px;
    margin: 0 auto;

    grid-template-columns:
        52px minmax(0, 1fr) auto;

    align-items: stretch;

    overflow: hidden;

    background-color: #101010;

    border: none;
    border-radius: 8px;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.site-header .search-symbol {
    display: flex;

    width: 52px;
    height: 50px;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 22px;
}

.site-header .search-form input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 12px;

    color: #ffffff;
    background-color: #101010;

    border: none;
    outline: none;

    font-size: 14px;
}

.site-header .search-form input::placeholder {
    color: #bcbcbc;
}

.site-header .search-form button {
    min-width: 110px;
    height: 50px;
    padding: 0 25px;

    color: #ffffff;
    background-color: #e30613;

    border: none;

    font-size: 13px;
    font-weight: 900;

    transition: background-color 0.2s ease;
}

.site-header .search-form button:hover {
    background-color: #b9000e;
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    .header-actions {
        gap: 6px !important;
    }

    .header-social-button,
    .header-actions .cart-button,
    .header-actions .menu-button {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;
        min-height: 40px !important;

        flex: 0 0 40px !important;

        border-radius: 8px !important;
    }

    .instagram-header-button svg,
    .whatsapp-header-button svg {
        width: 20px;
        height: 20px;
    }


    /* BUSCADOR ABAJO EN CELULAR */

    .site-header .search-area {
        padding-bottom: 10px;
    }

    .site-header .search-form {
        width: 92%;
        min-height: 44px;

        grid-template-columns:
            40px minmax(0, 1fr) 82px;

        border-radius: 6px;
    }

    .site-header .search-symbol {
        width: 40px;
        height: 44px;

        font-size: 19px;
    }

    .site-header .search-form input {
        height: 44px;
        padding: 0 7px;

        font-size: 12px;
    }

    .site-header .search-form button {
        min-width: 82px;
        height: 44px;
        padding: 0 10px;

        font-size: 11px;
    }
}


/* CELULAR PEQUEÑO */

@media (max-width: 390px) {

    .header-actions {
        gap: 4px !important;
    }

    .header-social-button,
    .header-actions .cart-button,
    .header-actions .menu-button {
        width: 36px !important;
        height: 36px !important;

        min-width: 36px !important;
        min-height: 36px !important;

        flex-basis: 36px !important;
    }

    .instagram-header-button svg,
    .whatsapp-header-button svg {
        width: 18px;
        height: 18px;
    }

    .site-header .search-form {
        grid-template-columns:
            35px minmax(0, 1fr) 70px;
    }

    .site-header .search-symbol {
        width: 35px;
    }

    .site-header .search-form button {
        min-width: 70px;
        padding: 0 6px;

        font-size: 10px;
    }
}/* ==========================================================
   PRODUCTOS - LETRAS UN POCO MÁS GRANDES
========================================================== */

/* Título principal */
body.products-page .products-top-header h1,
body.products-page #productsTitle {
    font-size: 42px;
    line-height: 1.1;
}

/* Cantidad de artículos */
body.products-page .products-count {
    font-size: 16px;
}

/* Título de filtros */
body.products-page .sidebar-heading h2 {
    font-size: 27px;
}

/* Títulos Categorías y Marcas */
body.products-page .sidebar-box h3 {
    font-size: 21px;
}

/* Opciones de los filtros */
body.products-page .sidebar-filter-list button,
body.products-page .sidebar-filter-list a,
body.products-page .sidebar-filter-list label {
    font-size: 15px;
}

/* Categoría y marca de cada producto */
body.products-page .catalog-product-category,
body.products-page .product-category {
    font-size: 12px;
    line-height: 1.4;
}

/* Nombre del producto */
body.products-page .catalog-product-card h3,
body.products-page .product-card h3 {
    font-size: 18px;
    line-height: 1.35;
}

/* Descripción */
body.products-page .catalog-product-description,
body.products-page .product-description {
    font-size: 15px;
    line-height: 1.55;
}

/* Precio */
body.products-page .catalog-product-price,
body.products-page .product-price {
    font-size: 21px;
    line-height: 1.2;
}

/* Botones */
body.products-page .add-to-cart-button,
body.products-page .direct-whatsapp-button {
    font-size: 13px;
    font-weight: 800;
}

/* Selector de orden */
body.products-page .order-field span {
    font-size: 13px;
}

body.products-page .order-field select {
    font-size: 14px;
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    /* Título Todos los productos */
    body.products-page .products-top-header h1,
    body.products-page #productsTitle {
        font-size: 31px;
        line-height: 1.1;
    }

    /* Botón Filtrar */
    body.products-page .mobile-filter-button,
    body.products-page #mobileFilterButton {
        font-size: 14px;
        font-weight: 800;
    }

    /* Ordenar */
    body.products-page .order-field select,
    body.products-page #productOrder {
        font-size: 13px;
    }

    /* Categoría del producto */
    body.products-page .catalog-product-category,
    body.products-page .product-category {
        font-size: 10px;
    }

    /* Nombre del producto */
    body.products-page .catalog-product-card h3,
    body.products-page .product-card h3 {
        font-size: 13px;
        line-height: 1.35;
    }

    /* Precio */
    body.products-page .catalog-product-price,
    body.products-page .product-price {
        font-size: 17px;
    }

    /* Botones */
    body.products-page .add-to-cart-button,
    body.products-page .direct-whatsapp-button {
        min-height: 39px;
        padding: 7px 5px;
        font-size: 10px;
        line-height: 1.2;
    }
}


/* CELULAR PEQUEÑO */

@media (max-width: 390px) {

    body.products-page .products-top-header h1,
    body.products-page #productsTitle {
        font-size: 28px;
    }

    body.products-page .catalog-product-card h3,
    body.products-page .product-card h3 {
        font-size: 12px;
    }

    body.products-page .catalog-product-price,
    body.products-page .product-price {
        font-size: 16px;
    }

    body.products-page .add-to-cart-button,
    body.products-page .direct-whatsapp-button {
        font-size: 9px;
    }
}

/* ==========================================================
   INICIO Y FOOTER - VERSIÓN MÓVIL DEFINITIVA
   Imagen arriba, flechas visibles y contenido ordenado
========================================================== */

@media (max-width: 768px) {

    /* =========================
       ENCABEZADO MÓVIL
    ========================= */

    body.home-page .header-main {
        width: 94% !important;
        min-height: 70px !important;
        gap: 8px !important;
    }

    body.home-page .logo {
        width: 60px !important;
        height: 50px !important;
    }

    body.home-page .header-actions {
        gap: 5px !important;
    }

    body.home-page .header-social-button,
    body.home-page .header-actions .cart-button,
    body.home-page .header-actions .menu-button {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        flex: 0 0 40px !important;
        border-radius: 8px !important;
    }

    body.home-page .site-header .search-area {
        padding-bottom: 10px !important;
    }

    body.home-page .site-header .search-form {
        width: 94% !important;
        min-height: 45px !important;
        grid-template-columns: 42px minmax(0, 1fr) 84px !important;
        border-radius: 7px !important;
    }

    body.home-page .site-header .search-symbol {
        width: 42px !important;
        height: 45px !important;
        font-size: 18px !important;
    }

    body.home-page .site-header .search-form input {
        height: 45px !important;
        padding: 0 6px !important;
        font-size: 12px !important;
    }

    body.home-page .site-header .search-form button {
        min-width: 84px !important;
        height: 45px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
    }


    /* =========================
       CARRUSEL PRINCIPAL
    ========================= */

    body.home-page .hero-slider {
        position: relative !important;
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        overflow: hidden !important;
    }

    body.home-page .hero-slide {
        position: relative !important;
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        padding: 0 0 34px !important;
        overflow: hidden !important;
    }

    body.home-page .hero-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "media"
            "copy" !important;

        width: min(100% - 28px, 1180px) !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        padding: 0 0 52px !important;

        align-items: start !important;
        gap: 14px !important;
    }


    /* IMAGEN ARRIBA */

    body.home-page .hero-media {
        grid-area: media !important;
        position: relative !important;
        z-index: 2 !important;

        display: flex !important;
        width: 100% !important;
        height: 285px !important;
        min-height: 285px !important;
        margin: 0 !important;
        padding: 12px 0 0 !important;

        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    body.home-page .hero-circle {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        z-index: 1 !important;

        width: 220px !important;
        height: 220px !important;
        aspect-ratio: 1 !important;

        transform: translate(-50%, -50%) !important;
    }

    body.home-page .hero-product {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        z-index: 3 !important;

        width: auto !important;
        max-width: 86% !important;
        height: auto !important;
        max-height: 255px !important;

        object-fit: contain !important;
        object-position: center !important;

        animation: productFloatingMobile 4s ease-in-out infinite !important;
        transform: none !important;

        filter:
            drop-shadow(0 18px 18px rgba(0, 0, 0, 0.16)) !important;
    }

    @keyframes productFloatingMobile {
        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-7px);
        }
    }

    body.home-page .discount-badge {
        position: absolute !important;
        top: 17px !important;
        right: 18px !important;
        bottom: auto !important;
        left: auto !important;
        z-index: 5 !important;

        display: flex !important;
        width: 60px !important;
        height: 60px !important;

        align-items: center !important;
        justify-content: center !important;

        border-width: 4px !important;
        font-size: 16px !important;
    }


    /* FLECHAS VISIBLES */

    body.home-page .slider-arrow {
        position: absolute !important;
        top: 143px !important;
        z-index: 20 !important;

        display: flex !important;
        width: 43px !important;
        height: 43px !important;
        padding: 0 !important;

        align-items: center !important;
        justify-content: center !important;

        color: #ffffff !important;
        background-color: #101010 !important;

        border: 3px solid #ffffff !important;
        border-radius: 50% !important;

        font-size: 22px !important;
        line-height: 1 !important;

        transform: translateY(-50%) !important;

        box-shadow:
            0 9px 24px rgba(0, 0, 0, 0.23) !important;
    }

    body.home-page .slider-arrow-left {
        right: auto !important;
        left: 10px !important;
    }

    body.home-page .slider-arrow-right {
        right: 10px !important;
        left: auto !important;
    }


    /* TEXTO ABAJO */

    body.home-page .hero-copy {
        grid-area: copy !important;
        position: relative !important;
        z-index: 4 !important;

        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 4px 2px 0 !important;

        text-align: left !important;
    }

    body.home-page .hero-badge {
        display: inline-flex !important;
        width: fit-content !important;
        max-width: 100% !important;
        min-height: 32px !important;
        margin: 0 0 13px !important;
        padding: 7px 14px !important;

        align-items: center !important;
        justify-content: center !important;

        border-radius: 999px !important;

        font-size: 9px !important;
        line-height: 1.2 !important;
        letter-spacing: 0.9px !important;
        white-space: normal !important;
    }

    body.home-page .hero-brand {
        margin: 0 0 7px !important;

        font-size: 12px !important;
        line-height: 1.2 !important;
        letter-spacing: 3px !important;
    }

    body.home-page .hero-copy h1,
    body.home-page .hero-copy h2 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 14px !important;

        font-size: clamp(31px, 9.4vw, 39px) !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;

        word-break: normal !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
    }

    body.home-page .hero-description {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 16px !important;

        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    body.home-page .hero-price {
        display: flex !important;
        width: 100% !important;
        margin: 0 0 6px !important;

        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
    }

    body.home-page .hero-price span {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    body.home-page .hero-price strong {
        font-size: 27px !important;
        line-height: 1.1 !important;
    }

    body.home-page .payment-note {
        width: 100% !important;
        margin: 0 !important;

        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    body.home-page .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;

        width: 100% !important;
        margin-top: 19px !important;
        gap: 9px !important;
    }

    body.home-page .hero-actions .button {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 47px !important;
        padding: 9px 12px !important;

        align-items: center !important;
        justify-content: center !important;

        font-size: 13px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }


    /* PUNTOS DEL CARRUSEL */

    body.home-page .slider-dots {
        position: absolute !important;
        right: 0 !important;
        bottom: 16px !important;
        left: 0 !important;
        z-index: 30 !important;

        display: flex !important;
        width: max-content !important;
        margin: auto !important;

        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;

        transform: none !important;
    }

    body.home-page .slider-dot {
        display: block !important;
        width: 9px !important;
        height: 9px !important;
        padding: 0 !important;

        background-color: #bdbdbd !important;
        border: none !important;
        border-radius: 999px !important;
    }

    body.home-page .slider-dot.active {
        width: 30px !important;
        background-color: #e30613 !important;
    }


    /* =========================
       BENEFICIOS COMPACTOS
    ========================= */

    body.home-page .benefits-section {
        padding: 0 0 18px !important;
    }

    body.home-page .benefits-grid {
        width: min(100% - 28px, 1180px) !important;
        margin: 0 auto !important;

        grid-template-columns: 1fr !important;

        border-radius: 12px !important;
    }

    body.home-page .benefit-item {
        min-height: 84px !important;
        padding: 16px 18px !important;

        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
    }

    body.home-page .benefit-item:last-child {
        border-bottom: none !important;
    }

    body.home-page .benefit-icon {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;

        font-size: 16px !important;
    }

    body.home-page .benefit-item h3 {
        font-size: 15px !important;
    }

    body.home-page .benefit-item p {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }


    /* =========================
       SECCIONES DEL INICIO
    ========================= */

    body.home-page .section {
        padding-top: 46px !important;
        padding-bottom: 46px !important;
    }

    body.home-page .section-heading {
        margin-bottom: 24px !important;

        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 9px !important;
    }

    body.home-page .section-heading h2 {
        margin-bottom: 7px !important;

        font-size: 29px !important;
        line-height: 1.08 !important;
    }

    body.home-page .section-description {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    body.home-page .text-link {
        font-size: 12px !important;
    }


    /* =========================
       CATEGORÍAS
    ========================= */

    body.home-page .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 11px !important;
    }

    body.home-page .category-card {
        min-height: 294px !important;
        padding: 17px 13px !important;

        border-radius: 14px !important;
    }

    body.home-page .category-card-featured {
        grid-column: 1 / -1 !important;
        min-height: 345px !important;
    }

    body.home-page .category-card-featured .category-copy {
        padding-top: 42px !important;
    }

    body.home-page .category-copy {
        min-height: 118px !important;
    }

    body.home-page .category-copy h3 {
        margin-bottom: 11px !important;

        font-size: 20px !important;
        line-height: 1.08 !important;
    }

    body.home-page .category-card-featured .category-copy h3 {
        max-width: 230px !important;

        font-size: 29px !important;
    }

    body.home-page .category-name,
    body.home-page .category-copy p {
        margin-bottom: 7px !important;

        font-size: 9px !important;
    }

    body.home-page .category-link {
        font-size: 10px !important;
        gap: 5px !important;
    }

    body.home-page .category-image-container {
        min-height: 138px !important;
        margin-top: 8px !important;
    }

    body.home-page .category-card-featured .category-image-container {
        min-height: 180px !important;
    }

    body.home-page .category-image,
    body.home-page .category-card-featured .category-image {
        max-width: 92% !important;
        max-height: 170px !important;
    }

    body.home-page .category-card-featured .category-image {
        max-height: 205px !important;
    }


    /* =========================
       PRODUCTOS DESTACADOS
    ========================= */

    body.home-page .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.home-page .product-card {
        min-width: 0 !important;
        border-radius: 12px !important;
    }

    body.home-page .product-image {
        min-height: 165px !important;
        height: 165px !important;
        padding: 12px !important;
    }

    body.home-page .product-image > .product-photo-trigger {
        height: 100% !important;
        min-height: 0 !important;
        padding: 0 !important;
    }

    body.home-page .product-image .product-photo-trigger-hint {
        right: 8px;
        bottom: 8px;
    }

    body.home-page .product-image img {
        width: 100% !important;
        max-width: 145px !important;
        height: 138px !important;
        max-height: 138px !important;

        object-fit: contain !important;
    }

    body.home-page .product-content {
        padding: 12px 10px !important;
    }

    body.home-page .product-category {
        font-size: 8px !important;
    }

    body.home-page .product-content h3 {
        min-height: 36px !important;
        margin-bottom: 6px !important;

        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    body.home-page .product-description {
        display: -webkit-box !important;
        min-height: 45px !important;
        margin-bottom: 10px !important;
        overflow: hidden !important;

        font-size: 10px !important;
        line-height: 1.45 !important;

        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
    }

    body.home-page .product-price {
        margin-bottom: 10px !important;
    }

    body.home-page .product-price span {
        font-size: 9px !important;
    }

    body.home-page .product-price strong {
        font-size: 15px !important;
    }

    body.home-page .product-actions {
        gap: 6px !important;
    }

    body.home-page .add-to-cart-button,
    body.home-page .direct-whatsapp-button {
        min-height: 36px !important;
        padding: 6px 4px !important;

        border-radius: 5px !important;

        font-size: 8px !important;
        line-height: 1.2 !important;
    }


    /* =========================
       MARCAS DESLIZABLES
    ========================= */

    body.home-page .brand-list {
        display: flex !important;
        flex-wrap: nowrap !important;

        gap: 7px !important;
        padding-bottom: 4px !important;

        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    body.home-page .brand-list::-webkit-scrollbar {
        display: none !important;
    }

    body.home-page .brand-list span {
        min-height: 35px !important;
        padding: 0 12px !important;

        flex: 0 0 auto !important;

        font-size: 10px !important;
        white-space: nowrap !important;
    }


    /* =========================
       LLAMADO FINAL
    ========================= */

    body.home-page .final-cta {
        padding: 42px 0 !important;
    }

    body.home-page .final-cta-layout {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    body.home-page .final-cta h2 {
        font-size: 28px !important;
        line-height: 1.08 !important;
    }

    body.home-page .final-cta p:not(.section-label) {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    body.home-page .final-cta .button {
        width: 100% !important;
        min-height: 46px !important;
    }


    /* =========================
       FOOTER COMPACTO
    ========================= */

    .footer {
        padding-top: 0 !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        padding-top: 25px !important;
        padding-bottom: 22px !important;

        gap: 19px 15px !important;
    }

    .footer-brand {
        grid-column: 1 / -1 !important;

        display: grid !important;
        grid-template-columns: 45px minmax(0, 1fr) !important;

        align-items: center !important;
        gap: 12px !important;
    }

    .footer-brand img {
        width: 45px !important;
        height: 45px !important;
        margin: 0 !important;
    }

    .footer-brand p {
        display: -webkit-box !important;
        max-width: none !important;
        margin: 0 !important;
        overflow: hidden !important;

        font-size: 10px !important;
        line-height: 1.4 !important;

        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
    }

    .footer-column h3 {
        margin-bottom: 7px !important;

        font-size: 12px !important;
    }

    .footer-column a,
    .footer-column p {
        margin-bottom: 4px !important;

        font-size: 9px !important;
        line-height: 1.4 !important;
    }

    .footer-bottom {
        padding: 11px 12px !important;

        font-size: 8px !important;
        line-height: 1.4 !important;
    }
}


/* ==========================================================
   CELULARES MUY PEQUEÑOS
========================================================== */

@media (max-width: 390px) {

    body.home-page .header-main {
        width: 95% !important;
        gap: 5px !important;
    }

    body.home-page .logo {
        width: 54px !important;
        height: 46px !important;
    }

    body.home-page .header-actions {
        gap: 4px !important;
    }

    body.home-page .header-social-button,
    body.home-page .header-actions .cart-button,
    body.home-page .header-actions .menu-button {
        width: 37px !important;
        height: 37px !important;
        min-width: 37px !important;
        min-height: 37px !important;
        flex-basis: 37px !important;
    }

    body.home-page .site-header .search-form {
        width: 94% !important;
        grid-template-columns: 37px minmax(0, 1fr) 72px !important;
    }

    body.home-page .site-header .search-symbol {
        width: 37px !important;
    }

    body.home-page .site-header .search-form button {
        min-width: 72px !important;
        padding: 0 5px !important;
        font-size: 10px !important;
    }

    body.home-page .hero-layout {
        width: calc(100% - 24px) !important;
    }

    body.home-page .hero-media {
        height: 265px !important;
        min-height: 265px !important;
    }

    body.home-page .hero-product {
        max-width: 84% !important;
        max-height: 235px !important;
    }

    body.home-page .hero-circle {
        width: 200px !important;
        height: 200px !important;
    }

    body.home-page .discount-badge {
        top: 14px !important;
        right: 12px !important;

        width: 54px !important;
        height: 54px !important;

        font-size: 14px !important;
    }

    body.home-page .slider-arrow {
        top: 133px !important;

        width: 40px !important;
        height: 40px !important;

        font-size: 20px !important;
    }

    body.home-page .slider-arrow-left {
        left: 7px !important;
    }

    body.home-page .slider-arrow-right {
        right: 7px !important;
    }

    body.home-page .hero-copy h1,
    body.home-page .hero-copy h2 {
        font-size: 29px !important;
    }

    body.home-page .hero-description {
        font-size: 13px !important;
    }

    body.home-page .hero-price strong {
        font-size: 25px !important;
    }

    body.home-page .category-grid,
    body.home-page .product-grid {
        gap: 8px !important;
    }

    body.home-page .category-card {
        min-height: 278px !important;
        padding: 15px 11px !important;
    }

    body.home-page .category-card-featured {
        min-height: 328px !important;
    }

    body.home-page .category-copy h3 {
        font-size: 18px !important;
    }

    body.home-page .category-card-featured .category-copy h3 {
        font-size: 27px !important;
    }

    body.home-page .product-image {
        min-height: 150px !important;
        height: 150px !important;
    }

    body.home-page .product-image img {
        height: 125px !important;
        max-height: 125px !important;
    }

    body.home-page .product-content h3 {
        font-size: 12px !important;
    }

    body.home-page .product-description {
        font-size: 9px !important;
    }
}
/* ==========================================================
   NAVEGACIÓN FIJA INFERIOR PARA CELULAR
========================================================== */

/* OCULTA EN COMPUTADORA */

.mobile-bottom-navigation {
    display: none;
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    /* ESPACIO PARA QUE LA BARRA NO TAPE EL CONTENIDO */

    body {
        padding-bottom:
            calc(
                72px +
                env(safe-area-inset-bottom)
            ) !important;
    }


    /* OCULTAMOS EL BOTÓN HAMBURGUESA */

    .header-actions .menu-button {
        display: none !important;
    }


    /* EVITA QUE EL MENÚ DESPLEGABLE APAREZCA */

    .navigation {
        display: none !important;
    }


    /* BARRA INFERIOR */

    .mobile-bottom-navigation {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 4800;

        display: grid;

        width: 100%;
        min-height:
            calc(
                68px +
                env(safe-area-inset-bottom)
            );

        padding:
            5px 5px
            env(safe-area-inset-bottom);

        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        align-items: stretch;

        background-color:
            rgba(255, 255, 255, 0.98);

        border-top:
            1px solid #dedede;

        box-shadow:
            0 -8px 25px
            rgba(0, 0, 0, 0.12);

        backdrop-filter:
            blur(14px);
    }


    /* ENLACES */

    .mobile-bottom-link {
        position: relative;

        display: flex;

        min-width: 0;
        padding: 7px 2px 5px;

        align-items: center;
        justify-content: center;
        flex-direction: column;

        gap: 3px;

        color: #383838;

        border-radius: 8px;

        font-size: 9px;
        font-weight: 800;
        line-height: 1.1;
        text-align: center;

        transition:
            color 0.2s ease,
            background-color 0.2s ease,
            transform 0.2s ease;
    }


    /* ÍCONOS */

    .mobile-bottom-link svg {
        display: block;

        width: 22px;
        height: 22px;

        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;

        transition:
            transform 0.2s ease;
    }


    /* TEXTO */

    .mobile-bottom-link span {
        display: block;

        max-width: 100%;

        overflow: hidden;

        white-space: nowrap;
        text-overflow: ellipsis;
    }


    /* PÁGINA ACTIVA */

    .mobile-bottom-link.active {
        color: #e30613;
        background-color: #fff1f2;
    }

    .mobile-bottom-link.active::before {
        position: absolute;
        top: -5px;
        left: 50%;

        width: 31px;
        height: 4px;

        content: "";

        background-color: #e30613;

        border-radius:
            0 0 999px 999px;

        transform:
            translateX(-50%);
    }

    .mobile-bottom-link.active svg {
        transform:
            translateY(-1px)
            scale(1.08);
    }


    /* EFECTO AL PRESIONAR */

    .mobile-bottom-link:active {
        transform: scale(0.94);
    }


    /* SUBIMOS EL WHATSAPP FLOTANTE */

    .whatsapp-floating {
        right: 15px !important;
        bottom:
            calc(
                82px +
                env(safe-area-inset-bottom)
            ) !important;

        width: 54px !important;
        height: 54px !important;
    }


    /* EL PANEL DEL CARRITO QUEDA POR ENCIMA */

    .cart-overlay {
        z-index: 5998 !important;
    }

    .cart-drawer {
        z-index: 5999 !important;
    }
}


/* ==========================================================
   CELULARES PEQUEÑOS
========================================================== */

@media (max-width: 390px) {

    body {
        padding-bottom:
            calc(
                68px +
                env(safe-area-inset-bottom)
            ) !important;
    }

    .mobile-bottom-navigation {
        min-height:
            calc(
                64px +
                env(safe-area-inset-bottom)
            );

        padding-top: 4px;
    }

    .mobile-bottom-link {
        padding-right: 1px;
        padding-left: 1px;

        gap: 2px;

        font-size: 8px;
    }

    .mobile-bottom-link svg {
        width: 20px;
        height: 20px;
    }

    .mobile-bottom-link.active::before {
        width: 27px;
    }

    .whatsapp-floating {
        bottom:
            calc(
                76px +
                env(safe-area-inset-bottom)
            ) !important;
    }
}/* =========================
   DETALLE DE PRODUCTO
========================= */

.detalle-page {
    background: #f7f7f7;
    padding: 40px 0 70px;
}

.detalle-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 36px;
    align-items: start;
}

.detalle-breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 18px;
}

.detalle-breadcrumb a {
    color: #777;
    text-decoration: none;
}

.detalle-breadcrumb a:hover {
    color: #e30613;
}

.detalle-gallery {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.detalle-main-image {
    width: 100%;
    min-height: 500px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.detalle-main-image img {
    max-width: 90%;
    max-height: 460px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.detalle-main-image:hover img {
    transform: scale(1.04);
}

.detalle-info {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.detalle-tagline {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e30613;
    margin-bottom: 14px;
}

.detalle-titulo {
    font-size: 42px;
    line-height: 1.05;
    font-weight: 800;
    color: #111;
    margin: 0 0 16px;
}

.detalle-subinfo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detalle-chip {
    background: #f3f3f3;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.detalle-descripcion {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

.detalle-price-box {
    background: linear-gradient(135deg, #fafafa, #f3f3f3);
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 22px;
}

.detalle-price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.detalle-price-current {
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    color: #111;
    margin-bottom: 12px;
}

.detalle-price-note {
    font-size: 15px;
    color: #5f5f5f;
    line-height: 1.7;
}

.detalle-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.detalle-payment-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}

.detalle-payment-card strong {
    display: block;
    font-size: 15px;
    color: #111;
    margin-bottom: 5px;
}

.detalle-payment-card span {
    font-size: 13px;
    color: #666;
}

.detalle-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.detalle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.detalle-btn-black {
    background: #0b0b0b;
    color: #fff;
}

.detalle-btn-black:hover {
    transform: translateY(-2px);
    background: #1b1b1b;
}

.detalle-btn-green {
    background: #25D366;
    color: #fff;
}

.detalle-btn-green:hover {
    transform: translateY(-2px);
    background: #1ebe5b;
}

.detalle-meta-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 22px;
}

.detalle-meta-box h3 {
    font-size: 20px;
    margin: 0 0 16px;
    color: #111;
}

.detalle-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.detalle-meta-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.detalle-meta-list li strong {
    color: #111;
}

.detalle-extra {
    margin-top: 36px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.detalle-section-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e30613;
    margin-bottom: 12px;
    display: inline-block;
}

.detalle-extra h2 {
    font-size: 34px;
    margin: 0 0 16px;
    color: #111;
}

.detalle-extra p {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.detalle-related {
    margin-top: 40px;
}

.detalle-related-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.detalle-related-head h2 {
    font-size: 34px;
    margin: 0;
    color: #111;
}

.detalle-related-head a {
    color: #e30613;
    font-weight: 800;
    text-decoration: none;
}

.detalle-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.detalle-related-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.detalle-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.09);
}

.detalle-related-image {
    height: 210px;
    background: #f9f9f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
}

.detalle-related-image img {
    max-width: 88%;
    max-height: 180px;
    object-fit: contain;
}

.detalle-related-card h4 {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 8px;
    color: #111;
}

.detalle-related-card p {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px;
}

.detalle-related-price {
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

/* =========================
   RESPONSIVE DETALLE
========================= */

@media (max-width: 1100px) {
    .detalle-layout {
        grid-template-columns: 1fr;
    }

    .detalle-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .detalle-page {
        padding: 20px 0 90px;
    }

    .detalle-gallery,
    .detalle-info,
    .detalle-extra {
        padding: 20px;
        border-radius: 20px;
    }

    .detalle-main-image {
        min-height: 320px;
    }

    .detalle-main-image img {
        max-height: 280px;
    }

    .detalle-titulo {
        font-size: 31px;
    }

    .detalle-descripcion {
        font-size: 15px;
        line-height: 1.7;
    }

    .detalle-price-current {
        font-size: 36px;
    }

    .detalle-payment-grid {
        grid-template-columns: 1fr;
    }

    .detalle-extra h2,
    .detalle-related-head h2 {
        font-size: 27px;
    }

    .detalle-related-grid {
        grid-template-columns: 1fr;
    }

    .detalle-related-head {
        flex-direction: column;
        align-items: flex-start;
    }
}/* ==========================================================
   PÁGINA DE DETALLE DEL PRODUCTO
   DISEÑO PROFESIONAL PARA PC Y CELULAR
========================================================== */

body.product-detail-page {
    background-color: #f7f7f7;
}

body.product-detail-page .product-detail-main {
    min-height: 70vh;
    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #f8f8f8 230px,
            #f5f5f5 100%
        );
}

body.product-detail-page .product-detail-section {
    padding: 35px 0 75px;
}


/* ==========================================================
   VOLVER A PRODUCTOS
========================================================== */

body.product-detail-page .product-detail-back {
    display: inline-flex;
    margin-bottom: 24px;

    align-items: center;
    gap: 8px;

    color: #555555;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

body.product-detail-page .product-detail-back:hover {
    color: #e30613;
    transform: translateX(-4px);
}


/* ==========================================================
   CARGANDO Y PRODUCTO NO ENCONTRADO
========================================================== */

body.product-detail-page .product-detail-loading,
body.product-detail-page .product-detail-not-found {
    max-width: 720px;
    margin: 50px auto;
    padding: 55px 30px;

    background-color: #ffffff;

    border: 1px solid #e4e4e4;
    border-radius: 22px;

    text-align: center;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.07);
}

body.product-detail-page
.product-detail-not-found
> span {
    display: flex;
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;

    align-items: center;
    justify-content: center;

    color: #ffffff;
    background-color: #e30613;

    border-radius: 50%;

    font-size: 30px;
    font-weight: 900;
}

body.product-detail-page
.product-detail-not-found h1 {
    margin-bottom: 12px;

    font-size: 36px;
}

body.product-detail-page
.product-detail-not-found p {
    margin-bottom: 25px;

    color: #666666;

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================================
   BLOQUE PRINCIPAL
========================================================== */

body.product-detail-page .product-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(390px, 0.95fr);

    align-items: start;

    gap: 42px;
}


/* ==========================================================
   GALERÍA E IMAGEN
========================================================== */

body.product-detail-page .product-detail-gallery {
    position: relative;

    min-width: 0;
    padding: 24px;

    background-color: #ffffff;

    border: 1px solid #e2e2e2;
    border-radius: 24px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.07);
}

body.product-detail-page .product-detail-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;

    display: inline-flex;
    min-height: 31px;
    padding: 0 13px;

    align-items: center;
    justify-content: center;

    color: #ffffff;
    background-color: #e30613;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

body.product-detail-page
.product-detail-image-container {
    display: flex;
    width: 100%;
    min-height: 545px;
    padding: 55px 35px 35px;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0,
            #fafafa 50%,
            #f1f1f1 100%
        );

    border-radius: 18px;

    overflow: hidden;
}

body.product-detail-page
.product-detail-image-container img {
    display: block;

    width: auto;
    max-width: 88%;
    height: auto;
    max-height: 455px;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 22px 22px rgba(0, 0, 0, 0.16)
        );

    transition:
        transform 0.35s ease;
}

body.product-detail-page
.product-detail-gallery:hover
.product-detail-image-container img {
    transform: scale(1.035);
}


/* ==========================================================
   INFORMACIÓN PRINCIPAL
========================================================== */

body.product-detail-page
.product-detail-information {
    min-width: 0;
    padding: 36px;

    background-color: #ffffff;

    border: 1px solid #e2e2e2;
    border-radius: 24px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.07);
}

body.product-detail-page
.product-detail-category {
    margin: 0 0 12px;

    color: #e30613;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

body.product-detail-page
.product-detail-information h1 {
    margin: 0 0 18px;

    color: #111111;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.3px;
}

body.product-detail-page
.product-detail-description {
    margin: 0 0 25px;

    color: #626262;

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================================
   PRECIO
========================================================== */

body.product-detail-page
.product-detail-price-box {
    display: flex;
    margin-bottom: 22px;
    padding: 22px 24px;

    flex-direction: column;

    gap: 7px;

    background:
        linear-gradient(
            135deg,
            #fafafa,
            #f2f2f2
        );

    border: 1px solid #e5e5e5;
    border-radius: 16px;
}

body.product-detail-page
.product-detail-price-box > span {
    color: #777777;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.product-detail-page
.product-detail-price-box > strong {
    color: #111111;

    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
}


/* ==========================================================
   OPCIONES DE PAGO
========================================================== */

body.product-detail-page
.product-detail-payment {
    margin-bottom: 25px;
    padding: 20px;

    background-color: #fff8f8;

    border: 1px solid #ffd8dc;
    border-radius: 16px;
}

body.product-detail-page
.product-detail-payment-title {
    margin: 0 0 13px;

    color: #111111;

    font-size: 15px;
    font-weight: 900;
}

body.product-detail-page
.product-detail-payment-list {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-bottom: 13px;

    gap: 8px;
}

body.product-detail-page
.product-detail-payment-list span {
    display: flex;
    min-height: 43px;
    padding: 7px;

    align-items: center;
    justify-content: center;

    color: #111111;
    background-color: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 10px;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

body.product-detail-page
.product-detail-payment-note {
    margin: 0;

    color: #6b6b6b;

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================
   BOTONES
========================================================== */

body.product-detail-page
.product-detail-actions {
    display: grid;
    grid-template-columns: 1fr;

    gap: 10px;
}

body.product-detail-page
.product-detail-cart-button,
body.product-detail-page
.product-detail-whatsapp-button {
    display: flex;
    width: 100%;
    min-height: 54px;
    padding: 10px 18px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 900;
    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

body.product-detail-page
.product-detail-cart-button {
    color: #ffffff;
    background-color: #111111;

    border: 1px solid #111111;
}

body.product-detail-page
.product-detail-cart-button:hover {
    background-color: #292929;

    transform: translateY(-2px);

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.14);
}

body.product-detail-page
.product-detail-whatsapp-button {
    color: #ffffff;
    background-color: #15b957;

    border: 1px solid #15b957;
}

body.product-detail-page
.product-detail-whatsapp-button:hover {
    background-color: #119c49;

    transform: translateY(-2px);

    box-shadow:
        0 10px 20px rgba(21, 185, 87, 0.2);
}


/* Evita que el estilo general del carrito
   modifique el botón de esta página */

body.product-detail-page
.product-detail-cart-button.add-to-cart-button {
    min-height: 54px;
    padding: 10px 18px;

    color: #ffffff;
    background-color: #111111;

    border-radius: 10px;

    font-size: 14px;
}


/* ==========================================================
   DESCRIPCIÓN Y CARACTERÍSTICAS
========================================================== */

body.product-detail-page
.product-detail-extra {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(330px, 0.85fr);

    margin-top: 35px;

    gap: 25px;
}

body.product-detail-page
.product-detail-description-section,
body.product-detail-page
.product-detail-features-section {
    padding: 31px;

    background-color: #ffffff;

    border: 1px solid #e2e2e2;
    border-radius: 20px;

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.05);
}

body.product-detail-page
.product-detail-extra .section-label {
    display: block;
    margin-bottom: 9px;

    color: #e30613;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

body.product-detail-page
.product-detail-extra h2 {
    margin: 0 0 16px;

    color: #111111;

    font-size: 28px;
    line-height: 1.12;
}

body.product-detail-page
.product-detail-description-section > p:last-child {
    margin: 0;

    color: #5f5f5f;

    font-size: 15px;
    line-height: 1.8;
}

body.product-detail-page
.product-detail-features-section ul {
    display: grid;
    margin: 0;
    padding: 0;

    gap: 0;

    list-style: none;
}

body.product-detail-page
.product-detail-features-section li {
    position: relative;

    padding: 12px 8px 12px 27px;

    color: #4f4f4f;

    border-bottom: 1px solid #eeeeee;

    font-size: 14px;
    line-height: 1.5;
}

body.product-detail-page
.product-detail-features-section li:last-child {
    border-bottom: none;
}

body.product-detail-page
.product-detail-features-section li::before {
    position: absolute;
    top: 17px;
    left: 5px;

    width: 8px;
    height: 8px;

    content: "";

    background-color: #e30613;

    border-radius: 50%;
}


/* ==========================================================
   PRODUCTOS RELACIONADOS
========================================================== */

body.product-detail-page
.related-products-section {
    margin-top: 55px;
}

body.product-detail-page
.related-products-section .section-heading {
    margin-bottom: 25px;
}

body.product-detail-page
.related-products-section .section-heading h2 {
    font-size: clamp(30px, 4vw, 43px);
}

body.product-detail-page
.related-products-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

body.product-detail-page
.related-products-grid
.store-product-card {
    background-color: #ffffff;

    border-radius: 17px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.05);
}

body.product-detail-page
.related-products-grid
.store-product-image {
    height: 235px;
    min-height: 235px;
}

body.product-detail-page
.related-products-grid
.store-product-content {
    padding: 18px;
}

body.product-detail-page
.related-products-grid
.product-description {
    display: none;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    body.product-detail-page
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    body.product-detail-page
    .product-detail-image-container {
        min-height: 480px;
    }

    body.product-detail-page
    .product-detail-extra {
        grid-template-columns: 1fr;
    }

    body.product-detail-page
    .related-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    body.product-detail-page
    .product-detail-section {
        padding: 18px 0 95px;
    }

    body.product-detail-page
    .product-detail-back {
        margin-bottom: 15px;

        font-size: 12px;
    }

    body.product-detail-page
    .product-detail-layout {
        gap: 14px;
    }

    body.product-detail-page
    .product-detail-gallery {
        padding: 13px;

        border-radius: 16px;
    }

    body.product-detail-page
    .product-detail-badge {
        top: 16px;
        left: 16px;

        min-height: 27px;
        padding: 0 10px;

        font-size: 8px;
    }

    body.product-detail-page
    .product-detail-image-container {
        min-height: 355px;
        padding: 48px 20px 25px;

        border-radius: 13px;
    }

    body.product-detail-page
    .product-detail-image-container img {
        max-width: 88%;
        max-height: 295px;
    }

    body.product-detail-page
    .product-detail-information {
        padding: 24px 19px;

        border-radius: 16px;
    }

    body.product-detail-page
    .product-detail-category {
        margin-bottom: 8px;

        font-size: 10px;
    }

    body.product-detail-page
    .product-detail-information h1 {
        margin-bottom: 13px;

        font-size: 29px;
        line-height: 1.08;
    }

    body.product-detail-page
    .product-detail-description {
        margin-bottom: 18px;

        font-size: 14px;
        line-height: 1.6;
    }

    body.product-detail-page
    .product-detail-price-box {
        padding: 18px;
    }

    body.product-detail-page
    .product-detail-price-box > strong {
        font-size: 25px;
    }

    body.product-detail-page
    .product-detail-payment {
        padding: 16px;
    }

    body.product-detail-page
    .product-detail-payment-list {
        grid-template-columns: 1fr;

        gap: 7px;
    }

    body.product-detail-page
    .product-detail-payment-list span {
        min-height: 38px;

        font-size: 11px;
    }

    body.product-detail-page
    .product-detail-cart-button,
    body.product-detail-page
    .product-detail-whatsapp-button,
    body.product-detail-page
    .product-detail-cart-button.add-to-cart-button {
        min-height: 48px;

        font-size: 12px;
    }

    body.product-detail-page
    .product-detail-extra {
        margin-top: 15px;

        gap: 14px;
    }

    body.product-detail-page
    .product-detail-description-section,
    body.product-detail-page
    .product-detail-features-section {
        padding: 22px 19px;

        border-radius: 16px;
    }

    body.product-detail-page
    .product-detail-extra h2 {
        font-size: 24px;
    }

    body.product-detail-page
    .product-detail-description-section > p:last-child {
        font-size: 14px;
        line-height: 1.7;
    }

    body.product-detail-page
    .related-products-section {
        margin-top: 38px;
    }

    body.product-detail-page
    .related-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    body.product-detail-page
    .related-products-grid
    .store-product-image {
        height: 160px;
        min-height: 160px;
    }

    body.product-detail-page
    .related-products-grid
    .store-product-image img {
        max-height: 125px;
    }

    body.product-detail-page
    .related-products-grid
    .store-product-content {
        padding: 11px 9px;
    }

    body.product-detail-page
    .related-products-grid
    .store-product-content h3 {
        font-size: 12px;
    }

    body.product-detail-page
    .related-products-grid
    .product-consult-price {
        font-size: 14px;
    }

    body.product-detail-page
    .related-products-grid
    .add-to-cart-button,
    body.product-detail-page
    .related-products-grid
    .direct-whatsapp-button {
        min-height: 34px;
        padding: 5px 3px;

        font-size: 8px;
    }
}


/* ==========================================================
   CELULAR PEQUEÑO
========================================================== */

@media (max-width: 390px) {

    body.product-detail-page
    .product-detail-image-container {
        min-height: 320px;
    }

    body.product-detail-page
    .product-detail-image-container img {
        max-height: 260px;
    }

    body.product-detail-page
    .product-detail-information h1 {
        font-size: 26px;
    }

    body.product-detail-page
    .related-products-grid {
        gap: 7px;
    }
}
/* ==========================================================
   DETALLE DEL PRODUCTO — AJUSTE PROFESIONAL DEFINITIVO
   Solo afecta detalle-producto.html
========================================================== */

body.product-detail-page {
    overflow-x: hidden;
    background-color: #f5f5f5;
}


/* ==========================================================
   CONTENIDO GENERAL
========================================================== */

body.product-detail-page .product-detail-main {
    min-height: 70vh;

    background:
        linear-gradient(
            180deg,
            #ffffff 0,
            #f7f7f7 260px,
            #f4f4f4 100%
        );
}

body.product-detail-page .product-detail-section {
    padding: 32px 0 80px;
}

body.product-detail-page .product-detail-content {
    width: 100%;
}


/* ==========================================================
   VOLVER
========================================================== */

body.product-detail-page .product-detail-back {
    display: inline-flex;
    margin-bottom: 24px;

    align-items: center;
    gap: 8px;

    color: #5d5d5d;

    font-size: 13px;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

body.product-detail-page .product-detail-back:hover {
    color: #e30613;
    transform: translateX(-4px);
}


/* ==========================================================
   CARGANDO
========================================================== */

body.product-detail-page .product-detail-loading {
    display: flex;
    min-height: 330px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 18px;

    text-align: center;
}

body.product-detail-page .product-detail-loading-spinner {
    width: 42px;
    height: 42px;

    border: 4px solid #e3e3e3;
    border-top-color: #e30613;
    border-radius: 50%;

    animation: productDetailSpin 0.8s linear infinite;
}

@keyframes productDetailSpin {
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================
   BLOQUE PRINCIPAL
========================================================== */

body.product-detail-page .product-detail-layout {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(390px, 0.96fr) !important;

    align-items: start !important;

    gap: 30px !important;
}


/* ==========================================================
   TARJETA DE IMAGEN
========================================================== */

body.product-detail-page .product-detail-gallery {
    position: relative;

    display: flex;
    min-width: 0;
    padding: 20px;

    flex-direction: column;

    background-color: #ffffff;

    border: 1px solid #e1e1e1;
    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.07);
}

body.product-detail-page .product-detail-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;

    display: inline-flex;
    min-height: 29px;
    padding: 0 12px;

    align-items: center;
    justify-content: center;

    color: #ffffff;
    background-color: #e30613;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    box-shadow:
        0 7px 16px rgba(227, 6, 19, 0.2);
}

body.product-detail-page .product-detail-image-container {
    display: flex;
    width: 100%;
    min-height: 510px;
    padding: 55px 35px 35px;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0,
            #fbfbfb 52%,
            #eeeeee 100%
        );

    border-radius: 15px;

    overflow: hidden;
}

body.product-detail-page .product-detail-image-container img {
    display: block;

    width: auto;
    max-width: 88%;
    height: auto;
    max-height: 425px;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 18px 20px rgba(0, 0, 0, 0.16)
        );

    transition:
        transform 0.35s ease;
}

body.product-detail-page
.product-detail-gallery:hover
.product-detail-image-container img {
    transform: scale(1.025);
}


/* NOTA DEBAJO DE LA IMAGEN */

body.product-detail-page .product-detail-gallery-note {
    display: flex;
    margin-top: 14px;
    padding: 13px 14px;

    align-items: flex-start;
    gap: 10px;

    color: #5f5f5f;
    background-color: #fafafa;

    border: 1px solid #ededed;
    border-radius: 10px;
}

body.product-detail-page
.product-detail-gallery-note > span {
    display: flex;
    width: 22px;
    height: 22px;

    align-items: center;
    justify-content: center;
    flex: 0 0 22px;

    color: #ffffff;
    background-color: #111111;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}

body.product-detail-page .product-detail-gallery-note p {
    margin: 1px 0 0;

    font-size: 11px;
    line-height: 1.45;
}


/* ==========================================================
   TARJETA DE INFORMACIÓN
========================================================== */

body.product-detail-page .product-detail-information {
    min-width: 0;
    padding: 31px;

    background-color: #ffffff;

    border: 1px solid #e1e1e1;
    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.07);
}

body.product-detail-page .product-detail-category {
    margin: 0 0 10px;

    color: #e30613;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

body.product-detail-page .product-detail-information h1 {
    margin: 0 0 15px;

    color: #101010;

    font-size: clamp(31px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1px;
}

body.product-detail-page .product-detail-description {
    margin: 0 0 22px;

    color: #626262;

    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================
   PRECIO
========================================================== */

body.product-detail-page .product-detail-price-box {
    display: flex;
    margin-bottom: 17px;
    padding: 19px 20px;

    flex-direction: column;

    gap: 6px;

    background:
        linear-gradient(
            135deg,
            #fafafa,
            #f1f1f1
        );

    border: 1px solid #dedede;
    border-radius: 13px;
}

body.product-detail-page
.product-detail-price-box > span {
    color: #777777;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

body.product-detail-page
.product-detail-price-box > strong {
    color: #101010;

    font-size: 25px;
    font-weight: 900;
    line-height: 1.1;
}

body.product-detail-page
.product-detail-price-box > p {
    margin: 2px 0 0;

    color: #686868;

    font-size: 11px;
    line-height: 1.5;
}


/* ==========================================================
   FORMAS DE PAGO
========================================================== */

body.product-detail-page .product-detail-payment {
    margin-bottom: 17px;
    padding: 18px;

    background-color: #fff7f7;

    border: 1px solid #ffd0d4;
    border-radius: 13px;
}

body.product-detail-page
.product-detail-payment-heading {
    display: flex;
    margin-bottom: 14px;

    align-items: center;
    gap: 11px;
}

body.product-detail-page
.product-detail-payment-heading > span {
    display: flex;
    width: 37px;
    height: 37px;

    align-items: center;
    justify-content: center;
    flex: 0 0 37px;

    color: #ffffff;
    background-color: #e30613;

    border-radius: 10px;

    font-size: 17px;
    font-weight: 900;
}

body.product-detail-page
.product-detail-payment-heading h2 {
    margin: 0 0 2px;

    font-size: 14px;
    line-height: 1.2;
}

body.product-detail-page
.product-detail-payment-heading p {
    margin: 0;

    color: #6c6c6c;

    font-size: 10px;
    line-height: 1.4;
}

body.product-detail-page
.product-detail-payment-list {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-bottom: 11px;

    gap: 7px;
}

body.product-detail-page
.product-detail-payment-list span {
    display: flex;
    min-height: 38px;
    padding: 6px;

    align-items: center;
    justify-content: center;

    color: #111111;
    background-color: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 8px;

    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

body.product-detail-page
.product-detail-payment-note {
    margin: 0;

    color: #707070;

    font-size: 9px;
    line-height: 1.45;
}


/* ==========================================================
   BOTONES
========================================================== */

body.product-detail-page .product-detail-actions {
    display: grid;
    grid-template-columns: 1fr;

    gap: 9px;
}

body.product-detail-page
.product-detail-cart-button,
body.product-detail-page
.product-detail-whatsapp-button {
    display: flex !important;
    width: 100% !important;
    min-height: 49px !important;
    padding: 9px 16px !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 9px !important;

    border-radius: 9px !important;

    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-align: center !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease !important;
}

body.product-detail-page
.product-detail-cart-button {
    color: #ffffff !important;
    background-color: #111111 !important;

    border: 1px solid #111111 !important;
}

body.product-detail-page
.product-detail-cart-button:hover {
    background-color: #292929 !important;

    transform: translateY(-2px);

    box-shadow:
        0 9px 20px rgba(0, 0, 0, 0.14);
}

body.product-detail-page
.product-detail-whatsapp-button {
    color: #ffffff !important;
    background-color: #18b957 !important;

    border: 1px solid #18b957 !important;
}

body.product-detail-page
.product-detail-whatsapp-button:hover {
    background-color: #109c48 !important;

    transform: translateY(-2px);

    box-shadow:
        0 9px 20px rgba(24, 185, 87, 0.2);
}


/* CORRIGE EL ÍCONO GIGANTE DE WHATSAPP */

body.product-detail-page
.product-detail-whatsapp-button svg {
    display: block !important;

    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
    min-height: 21px !important;
    max-width: 21px !important;
    max-height: 21px !important;

    flex: 0 0 21px !important;

    fill: currentColor !important;
}


/* EVITA QUE EL BOTÓN GENERAL MODIFIQUE ESTE BOTÓN */

body.product-detail-page
.product-detail-cart-button.add-to-cart-button {
    min-height: 49px !important;
    padding: 9px 16px !important;

    color: #ffffff !important;
    background-color: #111111 !important;

    border-radius: 9px !important;

    font-size: 12px !important;
}


/* ==========================================================
   CONFIANZA
========================================================== */

body.product-detail-page .product-detail-trust {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    margin-top: 18px;
    padding-top: 17px;

    gap: 10px;

    border-top: 1px solid #ebebeb;
}

body.product-detail-page
.product-detail-trust-item {
    display: flex;

    align-items: flex-start;
    gap: 8px;
}

body.product-detail-page
.product-detail-trust-item > span {
    display: flex;
    width: 22px;
    height: 22px;

    align-items: center;
    justify-content: center;
    flex: 0 0 22px;

    color: #ffffff;
    background-color: #111111;

    border-radius: 50%;

    font-size: 10px;
    font-weight: 900;
}

body.product-detail-page
.product-detail-trust-item strong {
    display: block;
    margin-bottom: 3px;

    color: #111111;

    font-size: 10px;
    line-height: 1.3;
}

body.product-detail-page
.product-detail-trust-item p {
    margin: 0;

    color: #777777;

    font-size: 9px;
    line-height: 1.4;
}


/* ==========================================================
   DESCRIPCIÓN Y CARACTERÍSTICAS
========================================================== */

body.product-detail-page .product-detail-extra {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(330px, 0.9fr) !important;

    margin-top: 25px !important;

    gap: 18px !important;
}

body.product-detail-page
.product-detail-description-section,
body.product-detail-page
.product-detail-features-section {
    padding: 27px;

    background-color: #ffffff;

    border: 1px solid #e1e1e1;
    border-radius: 17px;

    box-shadow:
        0 13px 35px rgba(0, 0, 0, 0.05);
}

body.product-detail-page
.product-detail-extra .section-label {
    display: block;
    margin-bottom: 8px;

    color: #e30613;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

body.product-detail-page .product-detail-extra h2 {
    margin: 0 0 14px;

    color: #111111;

    font-size: 25px;
    line-height: 1.15;
}

body.product-detail-page
.product-detail-description-section > p:last-child {
    margin: 0;

    color: #5f5f5f;

    font-size: 13px;
    line-height: 1.75;
}

body.product-detail-page
.product-detail-features-section ul {
    display: grid;
    margin: 0;
    padding: 0;

    gap: 0;

    list-style: none;
}

body.product-detail-page
.product-detail-features-section li {
    position: relative;

    padding: 10px 7px 10px 24px;

    color: #505050;

    border-bottom: 1px solid #eeeeee;

    font-size: 12px;
    line-height: 1.45;
}

body.product-detail-page
.product-detail-features-section li:last-child {
    border-bottom: none;
}

body.product-detail-page
.product-detail-features-section li::before {
    position: absolute;
    top: 15px;
    left: 5px;

    width: 7px;
    height: 7px;

    content: "";

    background-color: #e30613;

    border-radius: 50%;
}


/* ==========================================================
   INFORMACIÓN COMERCIAL
========================================================== */

body.product-detail-page .product-detail-commercial {
    margin-top: 25px;
    padding: 31px;

    color: #ffffff;
    background-color: #111111;

    border-radius: 19px;

    box-shadow:
        0 17px 40px rgba(0, 0, 0, 0.14);
}

body.product-detail-page
.product-detail-commercial-heading {
    max-width: 590px;
    margin-bottom: 24px;
}

body.product-detail-page
.product-detail-commercial-heading .section-label {
    color: #ff2334;
}

body.product-detail-page
.product-detail-commercial-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 29px;
    line-height: 1.1;
}

body.product-detail-page
.product-detail-commercial-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

body.product-detail-page
.product-detail-commercial-grid article {
    padding: 20px;

    background-color: #1b1b1b;

    border: 1px solid #303030;
    border-radius: 13px;
}

body.product-detail-page
.product-detail-commercial-grid article > span {
    display: block;
    margin-bottom: 18px;

    color: #e30613;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

body.product-detail-page
.product-detail-commercial-grid h3 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.3;
}

body.product-detail-page
.product-detail-commercial-grid p {
    margin: 0;

    color: #bcbcbc;

    font-size: 11px;
    line-height: 1.55;
}


/* ==========================================================
   PRODUCTOS RELACIONADOS
========================================================== */

body.product-detail-page .related-products-section {
    margin-top: 48px;
}

body.product-detail-page
.related-products-section .section-heading {
    margin-bottom: 23px;
}

body.product-detail-page
.related-products-section
.section-heading h2 {
    font-size: clamp(29px, 4vw, 41px);
}

body.product-detail-page .related-products-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}

body.product-detail-page
.related-products-grid .store-product-card {
    background-color: #ffffff;

    border-radius: 15px;

    box-shadow:
        0 11px 30px rgba(0, 0, 0, 0.05);
}

body.product-detail-page
.related-products-grid .store-product-image {
    height: 220px;
    min-height: 220px;
}

body.product-detail-page
.related-products-grid .store-product-content {
    padding: 16px;
}

body.product-detail-page
.related-products-grid .product-description {
    display: none;
}


/* ==========================================================
   LLAMADO FINAL
========================================================== */

body.product-detail-page .product-detail-final-cta {
    padding: 50px 0;

    color: #ffffff;
    background-color: #e30613;
}

body.product-detail-page
.product-detail-final-layout {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

body.product-detail-page
.product-detail-final-layout .section-label {
    color: #ffffff;
}

body.product-detail-page
.product-detail-final-layout h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 32px;
}

body.product-detail-page
.product-detail-final-layout p:not(.section-label) {
    max-width: 650px;
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    body.product-detail-page .product-detail-layout {
        grid-template-columns: 1fr !important;
    }

    body.product-detail-page
    .product-detail-image-container {
        min-height: 460px;
    }

    body.product-detail-page .product-detail-extra {
        grid-template-columns: 1fr !important;
    }

    body.product-detail-page
    .related-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    body.product-detail-page .product-detail-section {
        padding: 16px 0 95px;
    }

    body.product-detail-page .product-detail-back {
        margin-bottom: 13px;

        font-size: 11px;
    }

    body.product-detail-page .product-detail-layout {
        gap: 12px !important;
    }

    body.product-detail-page .product-detail-gallery {
        padding: 12px;

        border-radius: 15px;
    }

    body.product-detail-page .product-detail-badge {
        top: 15px;
        left: 15px;

        min-height: 25px;
        padding: 0 9px;

        font-size: 7px;
    }

    body.product-detail-page
    .product-detail-image-container {
        min-height: 340px;
        padding: 46px 18px 22px;

        border-radius: 12px;
    }

    body.product-detail-page
    .product-detail-image-container img {
        max-width: 88%;
        max-height: 280px;
    }

    body.product-detail-page .product-detail-gallery-note {
        padding: 11px;
    }

    body.product-detail-page .product-detail-information {
        padding: 23px 18px;

        border-radius: 15px;
    }

    body.product-detail-page
    .product-detail-information h1 {
        margin-bottom: 12px;

        font-size: 28px;
    }

    body.product-detail-page
    .product-detail-description {
        margin-bottom: 17px;

        font-size: 13px;
    }

    body.product-detail-page
    .product-detail-price-box {
        padding: 17px;
    }

    body.product-detail-page
    .product-detail-price-box > strong {
        font-size: 23px;
    }

    body.product-detail-page
    .product-detail-payment {
        padding: 15px;
    }

    body.product-detail-page
    .product-detail-payment-list {
        grid-template-columns: 1fr;
    }

    body.product-detail-page
    .product-detail-payment-list span {
        min-height: 36px;
    }

    body.product-detail-page .product-detail-trust {
        grid-template-columns: 1fr;
    }

    body.product-detail-page .product-detail-extra {
        margin-top: 12px !important;

        gap: 12px !important;
    }

    body.product-detail-page
    .product-detail-description-section,
    body.product-detail-page
    .product-detail-features-section {
        padding: 21px 18px;

        border-radius: 15px;
    }

    body.product-detail-page
    .product-detail-extra h2 {
        font-size: 23px;
    }

    body.product-detail-page
    .product-detail-commercial {
        margin-top: 12px;
        padding: 23px 18px;

        border-radius: 15px;
    }

    body.product-detail-page
    .product-detail-commercial-heading h2 {
        font-size: 25px;
    }

    body.product-detail-page
    .product-detail-commercial-grid {
        grid-template-columns: 1fr;
    }

    body.product-detail-page
    .related-products-section {
        margin-top: 35px;
    }

    body.product-detail-page
    .related-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    body.product-detail-page
    .related-products-grid .store-product-image {
        height: 150px;
        min-height: 150px;
    }

    body.product-detail-page
    .related-products-grid
    .store-product-image img {
        max-height: 120px;
    }

    body.product-detail-page
    .related-products-grid
    .store-product-content {
        padding: 10px 8px;
    }

    body.product-detail-page
    .related-products-grid
    .store-product-content h3 {
        font-size: 11px;
    }

    body.product-detail-page
    .product-detail-final-cta {
        padding: 38px 0 95px;
    }

    body.product-detail-page
    .product-detail-final-layout {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }

    body.product-detail-page
    .product-detail-final-layout h2 {
        font-size: 27px;
    }

    body.product-detail-page
    .product-detail-final-layout .button {
        width: 100%;
    }
}


/* ==========================================================
   CELULAR PEQUEÑO
========================================================== */

@media (max-width: 390px) {

    body.product-detail-page
    .product-detail-image-container {
        min-height: 305px;
    }

    body.product-detail-page
    .product-detail-image-container img {
        max-height: 245px;
    }

    body.product-detail-page
    .product-detail-information h1 {
        font-size: 25px;
    }

    body.product-detail-page
    .related-products-grid {
        gap: 6px;
    }
}/* ==========================================================
   DETALLE DEL PRODUCTO
   ESPACIADO, OPCIONES DE PAGO, MOVIMIENTO Y CELULAR
========================================================== */


/* ==========================================================
   IGUALAR LAS DOS TARJETAS PRINCIPALES
========================================================== */

body.product-detail-page
.product-detail-layout {
    align-items: stretch !important;
    gap: 22px !important;
}

body.product-detail-page
.product-detail-gallery,
body.product-detail-page
.product-detail-information {
    height: 100% !important;
}

body.product-detail-page
.product-detail-gallery {
    display: flex !important;
    flex-direction: column !important;
}

body.product-detail-page
.product-detail-image-container {
    flex: 1 1 auto !important;
    min-height: 430px !important;
}

body.product-detail-page
.product-detail-extra {
    margin-top: 18px !important;
}


/* ==========================================================
   OPCIONES DE PAGO SELECCIONABLES
========================================================== */

body.product-detail-page
.product-detail-payment-list {
    display: grid !important;
    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 8px !important;
}

body.product-detail-page
.product-detail-payment-option {
    position: relative;

    display: flex;
    min-width: 0;
    min-height: 43px;
    padding: 8px 7px;

    align-items: center;
    justify-content: center;

    color: #202020;
    background-color: #ffffff;

    border: 1px solid #dedede;
    border-radius: 9px;

    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

body.product-detail-page
.product-detail-payment-option:hover {
    color: #e30613;

    border-color: #e30613;

    transform: translateY(-2px);
}

body.product-detail-page
.product-detail-payment-option.active {
    padding-left: 24px;

    color: #ffffff;
    background-color: #e30613;

    border-color: #e30613;

    transform: translateY(-3px);

    box-shadow:
        0 9px 18px rgba(227, 6, 19, 0.22);
}

body.product-detail-page
.product-detail-payment-option.active::before {
    position: absolute;
    left: 8px;

    content: "✓";

    color: #ffffff;

    font-size: 11px;
    font-weight: 900;
}

body.product-detail-page
.selected-payment-text {
    margin: 11px 0 5px;

    color: #e30613;

    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
}


/* ==========================================================
   MOVIMIENTO PROFESIONAL
========================================================== */

body.product-detail-page
.product-detail-gallery,
body.product-detail-page
.product-detail-information,
body.product-detail-page
.product-detail-description-section,
body.product-detail-page
.product-detail-features-section,
body.product-detail-page
.product-detail-commercial {
    opacity: 0;

    animation:
        productDetailReveal
        0.65s ease
        forwards;
}

body.product-detail-page
.product-detail-information {
    animation-delay: 0.08s;
}

body.product-detail-page
.product-detail-description-section {
    animation-delay: 0.14s;
}

body.product-detail-page
.product-detail-features-section {
    animation-delay: 0.2s;
}

body.product-detail-page
.product-detail-commercial {
    animation-delay: 0.25s;
}

@keyframes productDetailReveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* MOVIMIENTO SUAVE DEL PRODUCTO */

body.product-detail-page
.product-detail-image-container img {
    animation:
        productDetailFloating
        4.5s ease-in-out
        infinite !important;
}

@keyframes productDetailFloating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    body.product-detail-page
    .product-detail-gallery,
    body.product-detail-page
    .product-detail-information {
        height: auto !important;
    }

    body.product-detail-page
    .product-detail-image-container {
        min-height: 420px !important;
    }
}


/* ==========================================================
   CELULAR
========================================================== */

@media (max-width: 768px) {

    body.product-detail-page
    .product-detail-layout {
        gap: 12px !important;
    }

    body.product-detail-page
    .product-detail-image-container {
        min-height: 310px !important;
    }

    body.product-detail-page
    .product-detail-extra {
        margin-top: 12px !important;
    }

    body.product-detail-page
    .product-detail-payment-list {
        grid-template-columns: 1fr !important;

        gap: 7px !important;
    }

    body.product-detail-page
    .product-detail-payment-option {
        min-height: 44px;

        font-size: 11px;
    }

    body.product-detail-page
    .product-detail-payment-option.active {
        padding-left: 28px;
    }

    body.product-detail-page
    .product-detail-payment-option.active::before {
        left: 12px;
    }

    body.product-detail-page
    .selected-payment-text {
        font-size: 10px;
    }

    body.product-detail-page
    .product-detail-description-section,
    body.product-detail-page
    .product-detail-features-section {
        min-height: 0 !important;
    }
}


/* ==========================================================
   ACCESIBILIDAD: QUITAR MOVIMIENTO CUANDO EL DISPOSITIVO
   LO SOLICITA
========================================================== */

@media (prefers-reduced-motion: reduce) {

    body.product-detail-page
    .product-detail-gallery,

    body.product-detail-page
    .product-detail-information,

    body.product-detail-page
    .product-detail-description-section,

    body.product-detail-page
    .product-detail-features-section,

    body.product-detail-page
    .product-detail-commercial,

    body.product-detail-page
    .product-detail-image-container img {
        opacity: 1 !important;

        animation: none !important;

        transform: none !important;
    }
}/* FORMA DE PAGO DENTRO DEL CARRITO */

.cart-item-payment {
    display: block;
    margin-top: 5px;

    color: #e30613;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
}/* ========================================
   PRECIOS AL CONTADO
======================================== */

.product-cash-price {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
}

.product-cash-price-label {
    color: #666;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.product-consult-price {
    display: block;
    color: #c40000;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
}

.detail-cash-price-label {
    display: block;
    margin-bottom: 4px;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.detail-cash-price-value {
    display: block;
    color: #c40000;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 800;
    line-height: 1.1;
}/* ==========================================================
   INICIO - CATEGORÍAS PROFESIONALES PARA CELULAR
   NO MODIFICA EL BOTÓN FLOTANTE DE WHATSAPP
========================================================== */

@media (max-width: 768px) {

    /* SECCIÓN GENERAL */

    body.home-page .categories-section {
        padding-top: 34px !important;
        padding-bottom: 105px !important;

        overflow: hidden;
    }

    body.home-page
    .categories-section > .container {
        width: calc(100% - 32px) !important;
        max-width: none !important;
    }


    /* ENCABEZADO DE LA SECCIÓN */

    body.home-page
    .categories-section .section-heading {
        display: flex !important;
        margin-bottom: 20px !important;

        align-items: flex-start !important;
        flex-direction: column !important;

        gap: 7px !important;
    }

    body.home-page
    .categories-section .section-label {
        margin-bottom: 3px !important;

        font-size: 11px !important;
        line-height: 1.3 !important;
        letter-spacing: 1.8px !important;
    }

    body.home-page
    .categories-section .section-heading h2 {
        margin: 0 0 6px !important;

        font-size: 29px !important;
        line-height: 1.05 !important;
        letter-spacing: -0.8px !important;
    }

    body.home-page
    .categories-section .section-description {
        max-width: 310px;

        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    body.home-page
    .categories-section .text-link {
        display: inline-flex;
        margin-top: 2px;

        font-size: 12px !important;
        line-height: 1.3 !important;
        white-space: normal !important;
    }


    /* CUADRÍCULA */

    body.home-page .category-grid {
        display: grid !important;
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        align-items: stretch !important;

        gap: 10px !important;
    }


    /* TODAS LAS TARJETAS */

    body.home-page .category-card {
        position: relative;

        display: flex !important;
        min-width: 0 !important;
        width: 100% !important;
        min-height: 235px !important;
        height: auto !important;
        padding: 15px 12px 13px !important;

        flex-direction: column !important;

        overflow: hidden;

        border-radius: 16px !important;

        box-shadow:
            0 8px 22px rgba(0, 0, 0, 0.07) !important;

        transform: none;
    }

    body.home-page .category-card:active {
        transform: scale(0.985);
    }


    /* TARJETA PRINCIPAL DE CELULARES */

    body.home-page
    .category-card-featured {
        grid-column: 1 / -1 !important;

        min-height: 320px !important;
        padding: 20px 18px 16px !important;

        border-radius: 18px !important;

        background:
            radial-gradient(
                circle at 75% 72%,
                rgba(227, 6, 19, 0.18),
                transparent 43%
            ),
            #101010 !important;
    }


    /* ETIQUETA MÁS BUSCADO */

    body.home-page .category-tag {
        top: 16px !important;
        left: 16px !important;

        padding: 7px 13px !important;

        border-radius: 999px !important;

        font-size: 9px !important;
        line-height: 1.2 !important;
        letter-spacing: 0.5px !important;
    }


    /* CONTENIDO DE TEXTO */

    body.home-page .category-copy {
        position: relative;
        z-index: 3;

        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;

        flex: 0 0 auto !important;
        flex-direction: column !important;
    }

    body.home-page
    .category-card-featured .category-copy {
        padding-top: 43px !important;
    }


    /* NOMBRE DE LA CATEGORÍA */

    body.home-page .category-name,
    body.home-page .category-copy p {
        margin: 0 0 6px !important;

        overflow-wrap: anywhere;

        font-size: 9px !important;
        font-weight: 900 !important;
        line-height: 1.3 !important;
        letter-spacing: 1.1px !important;
    }


    /* TÍTULOS DE LAS TARJETAS PEQUEÑAS */

    body.home-page .category-copy h3 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 10px !important;

        overflow-wrap: anywhere;

        font-size: 18px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.4px !important;
    }


    /* TÍTULO PRINCIPAL */

    body.home-page
    .category-card-featured
    .category-copy h3 {
        max-width: 245px !important;
        margin-bottom: 12px !important;

        font-size: 29px !important;
        line-height: 1.02 !important;
        letter-spacing: -0.8px !important;
    }


    /* ENLACE VER PRODUCTOS */

    body.home-page .category-link {
        display: inline-flex !important;
        margin-top: 0 !important;

        align-items: center !important;

        gap: 5px !important;

        font-size: 10px !important;
        font-weight: 900 !important;
        line-height: 1.3 !important;
    }

    body.home-page .category-link strong {
        font-size: 14px !important;
    }

    body.home-page
    .category-card-featured .category-link {
        font-size: 11px !important;
    }


    /* CONTENEDOR DE IMAGEN */

    body.home-page
    .category-image-container {
        display: flex !important;
        width: 100% !important;
        min-height: 92px !important;
        height: auto !important;
        margin-top: auto !important;
        padding: 5px 0 0 !important;

        flex: 1 1 auto !important;

        align-items: flex-end !important;
        justify-content: center !important;

        overflow: hidden !important;
    }

    body.home-page
    .category-card-featured
    .category-image-container {
        min-height: 155px !important;
        margin-top: 3px !important;
        padding-top: 3px !important;
    }


    /* IMÁGENES PEQUEÑAS */

    body.home-page .category-image {
        display: block !important;

        width: auto !important;
        max-width: 94% !important;
        height: auto !important;
        max-height: 105px !important;

        object-fit: contain !important;
        object-position: center bottom !important;

        filter:
            drop-shadow(
                0 10px 10px rgba(0, 0, 0, 0.15)
            ) !important;
    }


    /* IMAGEN PRINCIPAL DE CELULARES */

    body.home-page
    .category-card-featured .category-image {
        width: auto !important;
        max-width: 275px !important;
        height: auto !important;
        max-height: 170px !important;

        object-fit: contain !important;

        filter:
            drop-shadow(
                0 14px 14px rgba(0, 0, 0, 0.28)
            ) !important;

        animation:
            homeCategoryPhoneMovement
            4s ease-in-out
            infinite;
    }


    /* MOVIMIENTO SUAVE SOLAMENTE DE LOS CELULARES */

    @keyframes homeCategoryPhoneMovement {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }
}


/* ==========================================================
   CELULARES MUY PEQUEÑOS
========================================================== */

@media (max-width: 390px) {

    body.home-page
    .categories-section > .container {
        width: calc(100% - 28px) !important;
    }

    body.home-page
    .categories-section .section-heading h2 {
        font-size: 27px !important;
    }

    body.home-page .category-grid {
        gap: 8px !important;
    }

    body.home-page .category-card {
        min-height: 225px !important;
        padding: 14px 10px 12px !important;

        border-radius: 14px !important;
    }

    body.home-page
    .category-card-featured {
        min-height: 305px !important;
        padding: 18px 16px 14px !important;
    }

    body.home-page .category-copy h3 {
        font-size: 16px !important;
        line-height: 1.08 !important;
    }

    body.home-page
    .category-card-featured
    .category-copy h3 {
        max-width: 220px !important;

        font-size: 27px !important;
    }

    body.home-page .category-name,
    body.home-page .category-copy p {
        font-size: 8px !important;
        letter-spacing: 0.9px !important;
    }

    body.home-page .category-link {
        font-size: 9px !important;
    }

    body.home-page
    .category-image-container {
        min-height: 85px !important;
    }

    body.home-page .category-image {
        max-height: 90px !important;
    }

    body.home-page
    .category-card-featured
    .category-image-container {
        min-height: 145px !important;
    }

    body.home-page
    .category-card-featured .category-image {
        max-width: 245px !important;
        max-height: 155px !important;
    }
}


/* ==========================================================
   REDUCIR MOVIMIENTO CUANDO EL CELULAR LO SOLICITA
========================================================== */

@media (prefers-reduced-motion: reduce) {

    body.home-page
    .category-card-featured .category-image {
        animation: none !important;
    }
}


/* ==========================================================
   PANEL DE CARGA Y TRANSICIÓN ENTRE PÁGINAS
========================================================== */

.page-transition-loader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    visibility: hidden;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(227, 6, 19, 0.12), transparent 32%),
        #0d0d0f;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.page-transition-loader.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.page-transition-loader-rings,
.page-transition-loader-rings::before,
.page-transition-loader-rings::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    border: 1px solid rgba(227, 6, 19, 0.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.page-transition-loader-rings {
    width: min(72vw, 760px);
    aspect-ratio: 1;
    background:
        radial-gradient(circle, transparent 48%, rgba(255, 255, 255, 0.018) 49%);
}

.page-transition-loader-rings::before {
    width: 78%;
    aspect-ratio: 1;
}

.page-transition-loader-rings::after {
    width: 122%;
    aspect-ratio: 1;
    border-color: rgba(255, 255, 255, 0.035);
}

.page-transition-loader-content {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(88vw, 480px);
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.page-transition-loader .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-transition-loader-mark {
    display: grid;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    place-items: center;
    background-color: #ffffff;
    border: 1px solid rgba(227, 6, 19, 0.72);
    border-radius: 50%;
    box-shadow:
        0 0 0 10px rgba(227, 6, 19, 0.06),
        0 18px 48px rgba(0, 0, 0, 0.34);
}

.page-transition-loader-mark img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.page-transition-loader-content strong {
    font-size: clamp(34px, 7vw, 66px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.14em;
}

.page-transition-loader-subtitle {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.page-transition-loader-progress {
    position: relative;
    width: min(74vw, 350px);
    height: 2px;
    margin-top: 58px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.14);
}

.page-transition-loader-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    background:
        linear-gradient(90deg, transparent, #e30613 36%, #ff5963 72%, transparent);
    animation: pageTransitionProgress 1.05s ease-in-out infinite;
}

@keyframes pageTransitionProgress {
    from {
        transform: translateX(-115%);
    }

    to {
        transform: translateX(255%);
    }
}

@media (max-width: 640px) {
    .page-transition-loader-rings {
        width: 118vw;
    }

    .page-transition-loader-content strong {
        font-size: clamp(30px, 10vw, 44px);
        letter-spacing: 0.1em;
    }

    .page-transition-loader-subtitle {
        font-size: 9px;
        letter-spacing: 0.26em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-transition-loader,
    .page-transition-loader-progress span {
        transition: none;
        animation: none;
    }

    .page-transition-loader-progress span {
        width: 100%;
        transform: none;
    }
}
