/* ============================================================
   HOME.CSS COMPLETO CORREGIDO - EL PIVOTE
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body,
button,
input,
textarea,
select,
a,
span,
p,
h1,
h2,
h3,
h4,
div {
    font-family: 'Poppins', Arial, sans-serif !important;
}

:root {
    --yellow: #ffc812;
    --yellow-dark: #e2ad00;
    --black: #000000;
    --white: #ffffff;
    --soft-gray: #f5f6f8;
    --border-gray: #e5e7eb;
    --text-gray: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: #111;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ============================================================
   HEADER
============================================================ */

.top-header {
    width: 100%;
    background: var(--white);
    display: grid;
    grid-template-columns: 260px 1fr 170px;
    align-items: center;
    gap: 25px;
    padding: 18px 42px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-area a {
    display: flex;
    align-items: center;
}

.logo {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 470px;
    justify-self: end;
}

.search-bar {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 470px;
    height: 42px;
}

.search-wrapper .search-bar {
    width: 100%;
    max-width: 100%;
}

.search-bar input {
    flex: 1;
    height: 42px;
    padding: 0 14px;
    border: 2px solid var(--black);
    border-right: none;
    outline: none;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
}

.search-bar input::placeholder {
    color: var(--black);
    opacity: 0.75;
}

.search-bar input:focus {
    border-color: var(--black);
    box-shadow: none;
}

.search-btn {
    width: 52px;
    height: 42px;
    background: var(--black);
    border: 2px solid var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn img {
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    object-fit: contain;
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    text-decoration: underline;
    font-weight: 800;
    font-size: 15px;
}

.header-link span {
    color: var(--black);
}

.header-icon {
    width: 29px;
    height: 29px;
    object-fit: contain;
    display: block;
}

/* ============================================================
   BUSCADOR INTELIGENTE
============================================================ */

.suggestions-box {
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 2px solid var(--black);
    border-top: none;
    z-index: 9999;
    display: none;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #111;
    border-bottom: 1px solid #eeeeee;
}

.suggestion-item:hover {
    background: var(--black);
    color: var(--yellow);
}

.suggestion-title {
    font-weight: 800;
    display: block;
}

.suggestion-category {
    font-size: 12px;
    opacity: 0.75;
}

/* ============================================================
   BARRA DE CATEGORÍAS
============================================================ */

.category-bar {
    width: 100%;
    background: var(--black);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 0 18px;
    min-height: 54px;
}

.category-item {
    height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    white-space: normal;
}

.category-item img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
}

.category-item span {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
}

/* ============================================================
   CONTENEDOR PRINCIPAL
============================================================ */

.home-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px 20px 0;
}

/* ============================================================
   CINTILLO ENTREGA CORREGIDO
============================================================ */

.delivery-strip-mobile-fix {
    width: 100%;
    max-width: 980px;
    height: 44px;
    min-height: 44px;
    margin: 14px auto 18px;
    padding: 0 24px;
    background: var(--yellow);
    color: var(--black);

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
}

.delivery-option-fix {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    min-width: 0 !important;

    font-size: 15px !important;
    font-weight: 900 !important;
    color: var(--black) !important;
    line-height: 1 !important;
}

.delivery-option-fix > img {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    object-fit: contain !important;
    display: block !important;
    flex: 0 0 24px !important;
}

.delivery-option-fix > span {
    display: inline-block !important;
    white-space: nowrap !important;
    color: var(--black) !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.delivery-separator-fix {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 14px !important;
    width: 14px !important;
    min-width: 14px !important;
    color: var(--black) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

/* Por si quedó el bloque viejo en alguna plantilla */
.service-strip {
    width: 100%;
    max-width: 980px;
    height: 44px;
    min-height: 44px;
    margin: 14px auto 18px;
    padding: 0 24px;
    background: var(--yellow);
    border-radius: 0;

    display: grid;
    grid-template-columns: 1fr 34px 1fr;
    align-items: center;
    overflow: hidden;
}

.service-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    white-space: nowrap;
}

.service-option img {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    object-fit: contain !important;
    display: block !important;
}

.service-option span {
    display: inline-block;
    white-space: nowrap;
    color: var(--black);
}

.service-divider {
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

/* ============================================================
   BANNERS
============================================================ */

.slogan-banner,
.shipping-banner {
    width: 92%;
    margin: 0 auto 18px;
    display: flex;
    justify-content: center;
}

.hero-banner {
    width: 89.2%;
    margin: 0 auto 18px;
}

.slogan-banner img,
.slogan-banner video,
.shipping-banner img {
    width: 100%;
    max-width: 980px;
    display: block;
    object-fit: cover;
}

.hero-banner img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
}

.slogan-banner img,
.slogan-banner video {
    height: 110px;
}

.shipping-banner img {
    height: 105px;
}

/* ============================================================
   PRODUCTOS HOME
============================================================ */

#secciones-productos {
    scroll-margin-top: 40px;
}

.product-section {
    width: 100%;
    margin: 50px auto 55px;
}

.section-header {
    border-bottom: 4px solid var(--yellow);
    margin-bottom: 28px;
    padding-bottom: 10px;
}

.custom-section-header {
    border-bottom: 3px solid var(--yellow);
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.section-header h2,
.custom-section-header h2 {
    font-size: 22px;
    font-weight: 600;
    text-transform: none;
    color: #111;
    line-height: 1.3;
}

.section-products-wrapper {
    position: relative;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    align-items: start;
}

.product-card {
    text-align: center;
    padding: 16px 10px;
    background: var(--white);
}

.product-image-box {
    width: 100%;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.product-image-box img {
    max-width: 100%;
    max-height: 165px;
    object-fit: contain;
}

.product-card h3 {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 7px;
    min-height: 38px;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
}

.price {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.btn-more {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 999px;
    border: 2px solid var(--yellow);
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.btn-more:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
}

/* ============================================================
   OPCIONES DE PRODUCTOS
============================================================ */

.options-box {
    margin-top: 14px;
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.option-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gray);
}

.option-row:last-child {
    border-bottom: none;
}

.option-name {
    font-weight: 700;
    color: #111827;
    text-align: left;
    font-size: 13px;
}

.option-price {
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    font-size: 13px;
}

.btn-buy {
    background: var(--black);
    color: var(--yellow);
    padding: 8px 13px;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
    font-size: 13px;
    transition: 0.2s ease;
}

.btn-buy:hover {
    background: var(--yellow);
    color: var(--black);
}

/* Flecha de sección */
.section-arrow {
    position: absolute;
    right: -18px;
    top: 42%;
    transform: translateY(-50%);

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: var(--yellow);
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    font-weight: 400;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.section-arrow:hover {
    background: var(--yellow-dark);
    color: var(--white);
}

/* ============================================================
   FOOTER NUEVO
============================================================ */

.footer,
.new-footer {
    margin-top: 70px;
    background: #f5f5f5;
    border-top: 5px solid var(--yellow);
    padding: 0;
    color: #111;
}

.footer-main {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px 34px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 38px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 170px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 310px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4,
.footer-payments h4 {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--black);
    position: relative;
}

.footer-column h4::after,
.footer-payments h4::after {
    content: "";
    width: 42px;
    height: 3px;
    background: var(--yellow);
    display: block;
    margin-top: 8px;
}

.footer-column a {
    color: #222;
    font-size: 14px;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.footer-column a:hover {
    color: #d4a300;
    padding-left: 4px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.footer-map-link {
    width: fit-content;
    margin-top: 10px;
    background: var(--black);
    color: var(--yellow) !important;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px !important;
}

.footer-map-link:hover {
    background: var(--yellow);
    color: var(--black) !important;
    padding-left: 16px !important;
}

.footer-payments {
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 24px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-payments h4 {
    margin-bottom: 0;
}

.footer-payments img {
    max-width: 360px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-legal-links {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-legal-links a,
.footer-legal-links span {
    color: #222;
    font-size: 13px;
    text-decoration: underline;
}

.footer-legal-links a:hover {
    color: #d4a300;
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #555;
}

.admin-btn,
.admin-btn-discreet,
.footer-bottom .admin-btn {
    background: transparent !important;
    color: #777 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    text-decoration: underline !important;
}

.admin-btn:hover,
.admin-btn-discreet:hover,
.footer-bottom .admin-btn:hover {
    background: transparent !important;
    color: var(--black) !important;
}

/* Redes sociales */
.social-links,
.new-footer .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.social-links a,
.new-footer .social-links a {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.2s ease;
}

.social-links a:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.social-links img,
.new-footer .social-links img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain !important;
    display: block !important;
}

/* ============================================================
   PÁGINA DE CATEGORÍAS
============================================================ */

.category-title-banner {
    width: 100%;
    background: var(--black);
    padding: 25px 20px;
    text-align: center;
}

.category-title-banner h1 {
    color: var(--yellow);
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-style: italic;
}

.category-products-container {
    width: 95%;
    margin: 60px auto 40px;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 45px;
    row-gap: 80px;
}

.category-product-card .product-image-box {
    height: 180px;
    margin-bottom: 20px;
}

.category-product-card .product-image-box img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
}

.category-product-card h3 {
    font-size: 18px;
    font-weight: 600;
    min-height: 48px;
    line-height: 1.25;
    text-transform: uppercase;
}

.category-product-card .price {
    font-size: 18px;
    margin-bottom: 35px;
}

.empty-category {
    text-align: center;
    font-size: 22px;
    margin: 80px 0;
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {
    .top-header {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        padding: 18px 20px;
    }

    .logo {
        height: 62px;
    }

    .search-wrapper {
        justify-self: center;
        max-width: 600px;
    }

    .search-bar {
        max-width: 600px;
    }

    .header-actions {
        justify-content: center;
    }

    .category-bar {
        grid-template-columns: repeat(5, 1fr);
        padding: 6px 12px;
    }

    .category-item {
        font-size: 12px;
        height: 56px;
    }

    .category-item img {
        width: 24px;
        height: 24px;
    }

    .home-container {
        max-width: 920px;
        padding: 22px 18px 0;
    }

    .hero-banner img {
        height: 280px;
    }

    .slogan-banner img,
    .slogan-banner video,
    .shipping-banner img {
        height: 90px;
    }

    .products-row,
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-title-banner h1 {
        font-size: 42px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   CELULAR
============================================================ */

@media (max-width: 700px) {
    .top-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 14px 14px 16px;
        gap: 12px;
    }

    .logo {
        height: 52px;
    }

    .search-wrapper {
        width: 100%;
        max-width: 100%;
        justify-self: center;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
        height: 38px;
    }

    .search-bar input {
        height: 38px;
        font-size: 13px;
        padding: 0 10px;
    }

    .search-btn {
        width: 42px;
        height: 38px;
    }

    .search-btn img {
        width: 21px !important;
        height: 21px !important;
        max-width: 21px !important;
        max-height: 21px !important;
    }

    .suggestions-box {
        top: 40px;
    }

    .suggestion-item {
        font-size: 13px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .header-link {
        font-size: 14px;
    }

    .header-icon {
        width: 25px;
        height: 25px;
    }

    .category-bar {
        width: 100%;
        max-width: 100%;
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        padding: 12px 12px !important;
        margin: 0 !important;
        background: var(--black) !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        flex-wrap: nowrap !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .category-bar::-webkit-scrollbar {
        display: none !important;
    }

    .category-item {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 112px !important;
        max-width: 135px !important;
        height: 62px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        padding: 7px 8px !important;
        color: var(--yellow) !important;
        text-align: center !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        scroll-snap-align: start !important;
    }

    .category-item span {
        display: block !important;
        width: 100% !important;
        color: var(--yellow) !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        text-align: center !important;
        white-space: normal !important;
    }

    .category-item img {
        width: 24px !important;
        height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .home-container {
        width: 100%;
        max-width: 100%;
        padding: 16px 10px 0;
        margin: 0 auto;
    }

    .delivery-strip-mobile-fix {
        width: calc(100% - 1px) !important;
        max-width: none !important;
        height: 40px !important;
        min-height: 40px !important;
        margin: 12px auto 16px !important;
        padding: 0 6px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        flex-wrap: nowrap !important;
        overflow: hidden !important;
        border-radius: 0 !important;
    }

    .delivery-option-fix {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: none !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        white-space: nowrap !important;
        font-size: 9.8px !important;
        font-weight: 500 !important;
        line-height: 1 !important;
        overflow: hidden !important;
    }

    .delivery-option-fix > img {
        width: 15px !important;
        height: 15px !important;
        min-width: 15px !important;
        max-width: 15px !important;
        max-height: 15px !important;
        object-fit: contain !important;
        flex: 0 0 15px !important;
    }

    .delivery-option-fix > span {
        white-space: nowrap !important;
        font-size: 9.8px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
    }

    .delivery-separator-fix {
        display: inline-flex !important;
        flex: 0 0 6px !important;
        width: 6px !important;
        min-width: 6px !important;
        font-size: 10px !important;
        font-weight: 900 !important;
    }

    .service-strip {
        width: calc(100% - 6px) !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 6px !important;
        grid-template-columns: 1fr 8px 1fr !important;
        gap: 3px !important;
        border-radius: 0 !important;
    }

    .service-divider {
        display: block !important;
        font-size: 10px !important;
        width: 8px !important;
    }

    .service-option {
        font-size: 9.8px !important;
        gap: 3px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }

    .service-option img {
        width: 15px !important;
        height: 15px !important;
        min-width: 15px !important;
        max-width: 15px !important;
        max-height: 15px !important;
    }

    .service-option span {
        font-size: 9.8px !important;
        white-space: nowrap !important;
    }

    .slogan-banner,
    .hero-banner,
    .shipping-banner {
        width: 100%;
        margin-bottom: 12px;
    }

    .slogan-banner img,
    .slogan-banner video {
        height: 70px;
        object-fit: cover;
    }

    .hero-banner img {
        height: 190px;
        object-fit: cover;
    }

    .shipping-banner img {
        height: 70px;
        object-fit: cover;
    }

    .product-section {
        margin: 34px auto 42px;
    }

    .section-header,
    .custom-section-header {
        margin-bottom: 20px;
    }

    .section-header h2,
    .custom-section-header h2 {
        font-size: 17px;
        text-align: left;
    }

    .products-row,
    .category-products-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-card {
        padding: 12px 8px;
    }

    .product-image-box {
        height: 138px;
        margin-bottom: 8px;
    }

    .product-image-box img {
        max-height: 132px;
    }

    .product-card h3 {
        font-size: 12px;
        min-height: auto;
        margin-bottom: 6px;
    }

    .price {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .btn-more {
        padding: 5px 13px;
        font-size: 10px;
    }

    .options-box {
        padding: 9px;
    }

    .option-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5px;
    }

    .option-name,
    .option-price {
        text-align: center;
        font-size: 12px;
    }

    .btn-buy {
        width: 100%;
        display: block;
        padding: 7px 10px;
        font-size: 12px;
    }

    .section-arrow {
        position: static;
        transform: none;
        margin: 20px auto 0;
        width: 42px;
        height: 42px;
        font-size: 40px;
        line-height: 34px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 26px;
        padding: 34px 20px 24px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column h4::after,
    .footer-payments h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-payments {
        flex-direction: column;
        text-align: center;
        padding: 22px 20px;
    }

    .footer-payments img {
        max-width: 260px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 7px;
        padding: 16px 20px 8px;
    }

    .footer-legal-links span {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 18px 20px 24px;
    }

    .admin-btn,
    .admin-btn-discreet,
    .footer-bottom .admin-btn {
        font-size: 10.5px !important;
    }

    .category-title-banner h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }
}

/* ============================================================
   CELULARES MUY PEQUEÑOS
============================================================ */

@media (max-width: 390px) {
    .logo {
        height: 46px;
    }

    .category-item {
        min-width: 94px !important;
    }

    .category-item img {
        width: 21px !important;
        height: 21px !important;
    }

    .category-item span {
        font-size: 10px !important;
    }

    .delivery-strip-mobile-fix {
        width: calc(100% - 4px) !important;
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 4px !important;
        gap: 2px !important;
    }

    .delivery-option-fix {
        gap: 2px !important;
        font-size: 8.8px !important;
    }

    .delivery-option-fix > img {
        width: 13px !important;
        height: 13px !important;
        min-width: 13px !important;
        max-width: 13px !important;
        max-height: 13px !important;
        flex: 0 0 13px !important;
    }

    .delivery-option-fix > span {
        font-size: 8.8px !important;
    }

    .delivery-separator-fix {
        flex: 0 0 5px !important;
        width: 5px !important;
        min-width: 5px !important;
        font-size: 9px !important;
    }

    .hero-banner img {
        height: 165px;
    }

    .slogan-banner img,
    .slogan-banner video,
    .shipping-banner img {
        height: 62px;
    }

    .product-image-box {
        height: 125px;
    }

    .product-image-box img {
        max-height: 120px;
    }

    .section-header h2,
    .custom-section-header h2 {
        font-size: 16px;
    }
}
/* ================================
   AJUSTE FINAL PARA VIDEOS BANNER
================================ */

.slogan-banner video,
.shipping-banner video,
.banner-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.slogan-banner,
.shipping-banner {
    overflow: hidden;
}

@media (max-width: 768px) {
    .slogan-banner video,
    .shipping-banner video,
    .banner-video {
        width: 100% !important;
        height: 70px !important;
        object-fit: cover !important;
        display: block !important;
    }
}

@media (max-width: 390px) {
    .slogan-banner video,
    .shipping-banner video,
    .banner-video {
        height: 62px !important;
    }
}
/* =========================
   BOTÓN WHATSAPP FLOTANTE
========================= */

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 9px;

    background: #1fc83a;
    color: #ffffff;
    text-decoration: none;

    padding: 12px 24px 12px 18px;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 600;

    box-shadow:
        0 0 0 20px rgba(31, 200, 58, 0.13),
        0 8px 18px rgba(0, 0, 0, 0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 0 23px rgba(31, 200, 58, 0.18),
        0 10px 22px rgba(0, 0, 0, 0.32);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    border: 2px solid #ffffff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
}

.whatsapp-dot {
    position: absolute;
    top: -2px;
    right: 8px;

    width: 10px;
    height: 10px;

    background: #ff1f1f;
    border-radius: 50%;
}

/* CELULAR */
@media (max-width: 600px) {
    .whatsapp-float {
        right: 14px;
        bottom: 16px;

        font-size: 12px;
        padding: 10px 16px 10px 13px;

        box-shadow:
            0 0 0 13px rgba(31, 200, 58, 0.13),
            0 8px 18px rgba(0, 0, 0, 0.25);
    }

    .whatsapp-icon {
        width: 19px;
        height: 19px;
        font-size: 10px;
    }
}

/* ============================================================
   AJUSTE FINAL: CENTRAR Y EMPAREJAR BANNERS DEL HOME
============================================================ */

.slogan-banner,
.hero-banner,
.shipping-banner {
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto 18px !important;
    display: block !important;
    overflow: hidden !important;
}

.slogan-banner video,
.slogan-banner img,
.hero-banner img,
.shipping-banner video,
.shipping-banner img,
.banner-video {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* Alturas escritorio */
.slogan-banner video,
.slogan-banner img {
    height: 110px !important;
}

.hero-banner img {
    height: 330px !important;
}

.shipping-banner video,
.shipping-banner img {
    height: 105px !important;
}

/* Tablet */
@media (max-width: 900px) {
    .slogan-banner,
    .hero-banner,
    .shipping-banner {
        max-width: 100% !important;
        margin-bottom: 14px !important;
    }

    .slogan-banner video,
    .slogan-banner img {
        height: 90px !important;
    }

    .hero-banner img {
        height: 270px !important;
    }

    .shipping-banner video,
    .shipping-banner img {
        height: 90px !important;
    }
}

/* Celular */
@media (max-width: 600px) {
    .slogan-banner,
    .hero-banner,
    .shipping-banner {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 12px !important;
    }

    .slogan-banner video,
    .slogan-banner img {
        height: 70px !important;
    }

    .hero-banner img {
        height: 190px !important;
    }

    .shipping-banner video,
    .shipping-banner img {
        height: 70px !important;
    }
}

/* Celulares pequeños */
@media (max-width: 390px) {
    .slogan-banner video,
    .slogan-banner img,
    .shipping-banner video,
    .shipping-banner img {
        height: 62px !important;
    }

    .hero-banner img {
        height: 175px !important;
    }
}