/* Vista index — banner, búsqueda, about, categorías, arrivals, about us, WhatsApp, partners, stay updated */

/*
 * Ritmo vertical entre bloques: el hueco entre dos secciones = --section-padding-y.
 * El banner principal (.banner-home) no sigue ese ritmo abajo; solo padding superior.
 */
/* Banner Home */
.banner-home {
    position: relative;
    width: 100vw !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: auto;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: var(--section-padding-y, 5rem);
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.about-section,
.categories-section,
.arrivals-section {
    padding-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
}

.banner-home__bg {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}

.banner-home__bg,
.banner-home__bg picture,
.banner-home__bg img {
    width: 100vw !important;
    min-width: 100vw !important;
    height: auto;
    display: block;
}

/* Search Section: un poco más arriba respecto al banner */
.search-section {
    background-color: #033E8A;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: -1rem;
    padding-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
}

.search-container {
    max-width: 2000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 0 7rem;
}

.search-title {
    color: #ffffff;
    font-family: 'Poppins Regular', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.search-title .bold {
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
}

.search-form {
    flex: 1;
    max-width: 900px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    padding: 0.8rem 1.25rem;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1.1rem;
    color: #333;
}

.search-input::placeholder {
    color: #A0AEC0;
}

.search-button {
    background: none;
    border: none;
    border-left: 1px solid #E2E8F0;
    padding-left: 1.25rem;
    margin-left: 0.5rem;
    color: #718096;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.search-button:hover {
    color: #033E8A;
}

@media (max-width: 1024px) {
    .search-section {
        margin-top: 0;
    }

    .search-container {
        padding: 0 2rem;
        gap: 1.5rem;
    }

    .search-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .search-form {
        width: 100%;
    }
}

/* About Section */
.about-section {
    margin: 0;
    background-color: #ffffff;
}

.about-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 9rem;
}

.about-header {
    margin-bottom: 2rem;
}

.about-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2rem;
    color: #033E8A;
    margin: 0 0 0.2rem 0;
}

.about-underline {
    width: 100px;
    height: 8px;
    background-color: #033E8A;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
}

.about-right {
    padding-top: 2.6rem;
}

.about-subtitle {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 1rem;
    color: #000000;
    margin: 0 0 1rem 0;
}

.about-content p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.about-content p + p {
    margin-top: 2rem;
}

/* Categories Section */
.categories-section {
    margin: 0;
    background-color: #ffffff;
}

.categories-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 9rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.category-item {
    display: flex;
    flex-direction: column;
}

.category-link {
    position: relative;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-title {
    position: absolute;
    top: 1.5rem;
    left: 3rem;
    z-index: 2;
    font-family: 'Poppins Bold', sans-serif;
    font-size: 1.8rem;
    color: #033E8A;
    margin: 0;
}

.category-btn {
    position: absolute;
    top: 4.5rem;
    left: 3rem;
    z-index: 2;
    background-color: #033E8A;
    color: #ffffff;
    font-family: 'Poppins SemiBold', sans-serif;
    font-size: 1.15rem;
    padding: 0.2rem 1.5rem;
    border-radius: 999px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.category-link:hover .category-btn {
    transform: translateY(-3px);
    background-color: #033E8A;
}

.category-img {
    width: 100%;
    height: auto;
    display: block;
}



@media (max-width: 1024px) {
    .about-container {
        padding: 0 2rem;
    }

    .about-content {
        gap: 4rem;
    }

    .categories-container {
        padding: 0 4rem;
        gap: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
        top: 1.5rem;
        left: 2rem;
    }

    .category-btn {
        top: 4.5rem;
        left: 2rem;
        font-size: 0.95rem;
        padding: 0.5rem 1.8rem;
    }
}

@media (max-width: 900px) {
    .categories-container {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        gap: 3rem;
    }

    .category-title {
        font-size: 1.3rem;
        top: 1.25rem;
        left: 1.5rem;
    }

    .category-btn {
        top: 3.75rem;
        left: 1.5rem;
        font-size: 0.85rem;
        padding: 0.45rem 1.5rem;
    }



    .about-title {
        font-size: 1.75rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-right {
        padding-top: 0;
    }


    .about-content p {
        font-size: 1rem;
    }
}

/* Responsividad para pantallas ultra anchas (2000px+) */
@media (min-width: 2000px) {
    .about-title {
        font-size: 2.8rem;
    }

    .about-underline {
        width: 165px;
        height: 10px;
    }

    .about-subtitle {
        font-size: 1.35rem;
    }

    .about-content p {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .aboutus-title {
        font-size: 3.5rem;
    }

    .aboutus-underline {
        width: 165px;
        height: 10px;
    }

    .aboutus-content p {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    .aboutus-section {
        background-image: none !important;
    }

    .aboutus-container {
        background-image: url('../../res/img/flechas-about-us-8.png');
        background-position: right 9rem center;
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-origin: border-box;
    }

    .btn-aboutus {
        font-size: 1.35rem;
        padding: 1rem 3.5rem;
    }

    .whatsapp-title {
        font-size: 3.2rem;
    }

    .whatsapp-underline {
        width: 150px;
        height: 10px;
    }

    .whatsapp-info p {
        font-size: 1.25rem;
        line-height: 1.6;
        max-width: 700px;
    }

    .btn-whatsapp {
        font-size: 1.35rem;
        padding: 1rem 3.5rem;
    }

    .whatsapp-phone-img {
        max-width: 650px;
    }
}

/* Arrivals Section */
.arrivals-section {
    margin: 0;
    color: #ffffff;
}

.arrivals-card {
    background-color: #033E8A;
    background-image: linear-gradient(rgba(3, 62, 138, 0.2), rgba(3, 62, 138, 0.2)), url('../../res/img/flechas-new-arrivals-8.png');
    background-position: top center;
    background-size: auto;
    background-repeat: no-repeat;
    padding: 2.25rem 0;
    border-radius: 40px;
    overflow: hidden;
}

.arrivals-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.arrivals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 4rem;
    padding: 0 4.5rem;
}

.arrivals-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 5.5rem;
    line-height: 0.9;
    color: #ffffff;
    margin: 0;
    text-transform: capitalize;
}

.arrivals-info {
    max-width: 600px;
}

.arrivals-subtitle {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.arrivals-info p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.arrivals-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.arrivals-slider {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.arrivals-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.product-card {
    flex: 0 0 calc((100% - 6rem) / 4);
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    color: #000000;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-10px);
}

.slider-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.slider-arrow:hover {
    transform: scale(1.2);
}


.product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background-color: #033E8A;
    color: #ffffff;
    padding: 0.2rem 1.2rem;
    border-radius: 999px;
    font-family: 'Poppins Bold', sans-serif;
    font-size: 0.9rem;
    z-index: 2;
}

.product-image {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    margin-top: 1.5rem;
    overflow: hidden;
}

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


.product-details {
    padding: 1.2rem;
}

.product-details h4 {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.product-cat {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}


.product-sku {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 0.9rem;
    color: #333;
}

.arrivals-footer {
    display: flex;
    justify-content: center;
}

.btn-view-all {
    display: inline-block;
    background-color: #ffffff;
    color: #033E8A;
    font-family: 'Poppins Bold', sans-serif;
    padding: 0.5rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
}

/* About Us Section: margen superior para separar la tarjeta de Arrivals del bloque blanco;
   el aire del título respecto al borde va en el contenedor */
.aboutus-section {
    position: relative;
    margin: 0;
    margin-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-top: 0;
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
    background-color: #ffffff;
    background-image: url('../../res/img/flechas-about-us-8.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.aboutus-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: calc(var(--section-padding-y, 5rem) / 2) 9rem 0;
}

.aboutus-content {
    max-width: 600px;
}

.aboutus-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2.8rem;
    color: #033E8A;
    margin: 0 0 0.2rem 0;
}

.aboutus-underline {
    width: 120px;
    height: 8px;
    background-color: #033E8A;
    margin-bottom: 1.5rem;
}

.aboutus-content p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.btn-aboutus {
    display: inline-block;
    background-color: #033E8A;
    color: #ffffff;
    font-family: 'Poppins Bold', sans-serif;
    padding: 0.8rem 2.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-aboutus:hover {
    background-color: #033E8A;
    transform: translateY(-3px);
}

/* WhatsApp Section: separación respecto a About Us; ritmo vertical propio */
.whatsapp-section {
    margin: 0;
    margin-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-top: 0;
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
}

.whatsapp-section > .about-container {
    padding-top: calc(var(--section-padding-y, 5rem) / 2);
}

.whatsapp-card {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 40px;
    overflow: hidden;
    min-height: 520px;
}

.whatsapp-left {
    flex: 0.9;
    padding: 2.25rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whatsapp-right {
    flex: 0.9;
    background-color: #033E8A;
    background-image: linear-gradient(rgba(3, 62, 138, 0), rgba(3, 62, 138, 0)), url('../../res/img/flechas-whatsapp-8.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.whatsapp-phone-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: auto;
    max-width: none;
    z-index: 10;
}

.whatsapp-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2.2rem;
    color: #033E8A;
    line-height: 1.1;
    margin: 0 0 0.5rem 0;
}

.whatsapp-underline {
    width: 100px;
    height: 7px;
    background-color: #033E8A;
    margin-bottom: 3rem;
}

.whatsapp-info p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 1rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.whatsapp-info p strong {
    font-family: 'Poppins Bold', sans-serif;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #033E8A;
    color: #ffffff;
    font-family: 'Poppins Bold', sans-serif;
    padding: 0.8rem 2.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background-color: #033E8A;
    transform: translateY(-3px);
}

/* Strategic partners (logos) */
.partners-section {
    margin: 0;
    background-color: #ffffff;
    padding-top: calc(var(--section-padding-y, 5rem) / 2);
    padding-bottom: calc(var(--section-padding-y, 5rem) / 2);
}

.partners-heading-wrap {
    width: fit-content;
    max-width: 100%;
}

.partners-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: 2rem;
    color: #033E8A;
    margin: 0;
    line-height: 1.15;
}

.partners-underline {
    width: 100%;
    height: 7px;
    background-color: #033E8A;
    margin-top: 0.4rem;
}

.partners-logos {
    margin-top: 3rem;
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2.75rem 2.25rem;
    align-items: center;
    justify-items: center;
}

.partners-row--bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 4rem;
    row-gap: 2.25rem;
    margin-top: 2.75rem;
}

.partners-row--bottom .partners-cell {
    width: auto;
    flex: 0 1 auto;
    min-height: 5.25rem;
}

.partners-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.partners-link:focus-visible {
    outline: 2px solid #033E8A;
    outline-offset: 4px;
    border-radius: 4px;
}

.partners-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.partners-logo-grid .partners-cell {
    min-height: 6.5rem;
}

.partners-cell img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.92;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.partners-logo-grid .partners-cell img {
    max-height: 7rem;
}

.partners-row--bottom .partners-cell img {
    max-height: 5.5rem;
}

.partners-cell img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stay Updated / formulario (después de partners) */
.stay-updated-section {
    margin: 0;
    position: relative;
    background-color: #ffffff;
    background-image: url('../../res/img/fondo_formulario.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.stay-updated-inner {
    max-width: 2000px;
    margin: 0 auto;
    padding: calc(var(--section-padding-y, 5rem) * 0.38) 9rem;
    box-sizing: border-box;
}

.stay-updated-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 1.25rem 3rem;
    align-items: center;
}

.stay-updated-form-col {
    color: #ffffff;
}

.stay-updated-heading-wrap {
    width: fit-content;
    max-width: 100%;
}

.stay-updated-title {
    font-family: 'Poppins Bold', sans-serif;
    font-size: clamp(1.65rem, 2.8vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.stay-updated-underline {
    width: 100%;
    height: 6px;
    background-color: #ffffff;
    margin-top: 0.35rem;
}

.stay-updated-kicker {
    font-family: 'Poppins Bold', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0.75rem 0 0.4rem 0;
}

.stay-updated-lead {
    font-family: 'Poppins Regular', sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    line-height: 1.45;
    color: #ffffff;
    margin: 0 0 0.85rem 0;
    max-width: 32rem;
}

.stay-updated-lead strong {
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
}

.stay-updated-form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 32rem;
}

.stay-updated-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;
}

.stay-updated-input,
.stay-updated-textarea {
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 0.95rem;
    font-family: 'Poppins Regular', sans-serif;
    font-size: 0.95rem;
    color: #1a202c;
    background-color: #ffffff;
    outline: none;
    transition: box-shadow 0.2s ease;
}

.stay-updated-input::placeholder,
.stay-updated-textarea::placeholder {
    color: #A0AEC0;
}

.stay-updated-textarea {
    min-height: 4.5rem;
    resize: vertical;
}

.stay-updated-input:focus,
.stay-updated-textarea:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.stay-updated-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.15rem;
}

.stay-updated-submit {
    font-family: 'Poppins Bold', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #033E8A;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.62rem 2.1rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.stay-updated-submit:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stay-updated-submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.stay-updated-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.stay-updated-visual img {
    width: 100%;
    max-width: min(100%, 720px);
    height: auto;
    display: block;
    object-fit: contain;
    margin-left: auto;
    margin-right: 0;
}

@media (max-height: 820px) and (min-width: 901px) {
    .stay-updated-inner {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .stay-updated-textarea {
        min-height: 3.75rem;
    }
}

@media (max-width: 900px) {
    .stay-updated-inner {
        padding-top: calc(var(--section-padding-y, 5rem) * 0.35);
        padding-bottom: calc(var(--section-padding-y, 5rem) * 0.35);
    }

    .stay-updated-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stay-updated-form {
        max-width: none;
    }

    .stay-updated-lead {
        max-width: none;
    }

    .stay-updated-visual {
        align-items: center;
    }

    .stay-updated-visual img {
        margin-left: auto;
        margin-right: auto;
        max-width: min(100%, 520px);
    }
}

@media (max-width: 1400px) {
    .arrivals-title {
        font-size: 4rem;
    }

    .arrivals-container {
        padding: 0 3rem;
    }
}

@media (max-width: 1024px) {
    .arrivals-container {
        padding: 0 2rem;
    }



    .arrivals-header {
        flex-direction: column;
        gap: 2rem;
    }

    .product-card {
        flex: 0 0 calc((100% - 2rem) / 2);
    }

    .aboutus-container {
        padding: calc(var(--section-padding-y, 5rem) / 2) 4rem 0;
    }

    .aboutus-section {
        background-size: 65% auto;
        background-position: calc(100% + 250px) center;
    }

    .aboutus-content {
        max-width: 480px;
    }

    .aboutus-title {
        font-size: 2.2rem;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }

    .partners-logos {
        margin-top: 2.25rem;
    }

    .partners-row--bottom {
        margin-top: 2rem;
        column-gap: 2.5rem;
    }

    .stay-updated-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .whatsapp-card {
        flex-direction: column;
        min-height: auto;
    }

    .whatsapp-left {
        padding: 2.25rem 3rem;
        text-align: left;
        align-items: flex-start;
    }

    .whatsapp-underline {
        margin: 0 0 2.5rem 0;
    }

    .btn-whatsapp {
        white-space: nowrap;
        font-size: clamp(0.82rem, 1.9vw, 1.05rem);
        padding: 0.75rem 1.35rem;
    }

    .whatsapp-right {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .banner-home {
        height: auto;
        min-height: 0;
        padding-top: 3rem;
        padding-bottom: 0;
    }

    .banner-home__bg {
        width: 100%;
    }

    .arrivals-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .arrivals-container {
        padding: 0 1rem;
    }

    .arrivals-header {
        align-items: center;
        margin-bottom: 2rem;
    }

    .arrivals-info {
        display: none;
    }

    .arrivals-footer {
        display: none;
    }

    .product-card {
        flex: 0 0 100%;
    }

    .arrivals-title {
        font-size: 3rem;
        text-align: center;
    }

    .aboutus-container {
        background-image: none;
        padding: calc(var(--section-padding-y, 5rem) / 2) 2rem 0;
    }

    .aboutus-section {
        background-image: none;
        text-align: left;
    }

    .aboutus-content {
        max-width: 100%;
    }

    .aboutus-title {
        font-size: 2rem;
        text-align: center;
    }

    .aboutus-underline {
        margin: 0 auto 2rem auto;
    }

    .btn-aboutus {
        font-size: 1.1rem;
        padding: 0.7rem 2rem;
        text-align: center;
        align-items: center;
    }

    .whatsapp-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .whatsapp-card {
        flex-direction: column;
        min-height: auto;
    }

    .whatsapp-left {
        padding: 2.25rem 1.5rem;
        text-align: left;
        align-items: flex-start;
    }

    .whatsapp-title {
        font-size: 1.8rem;
    }

    .whatsapp-underline {
        margin: 0 0 2rem 0;
    }

    .whatsapp-info p {
        font-size: 1rem;
    }

    .btn-whatsapp {
        white-space: nowrap;
        font-size: clamp(0.7rem, 3.4vw, 0.95rem);
        padding: 0.65rem 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .whatsapp-right {
        min-height: 300px;
    }

    .whatsapp-phone-img {
        max-width: 100%;
    }

    .stay-updated-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .stay-updated-visual img {
        max-width: 100%;
    }

    .partners-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1rem;
    }

    .partners-logos {
        margin-top: 1.75rem;
    }

    .partners-row--bottom {
        margin-top: 1.5rem;
        column-gap: 1.75rem;
        row-gap: 1.5rem;
    }

    .partners-title {
        font-size: 1.65rem;
    }

    .partners-logo-grid .partners-cell {
        min-height: 5.25rem;
    }

    .partners-row--bottom .partners-cell {
        min-height: 4.5rem;
    }

    .partners-logo-grid .partners-cell img {
        max-height: 5.25rem;
    }

    .partners-row--bottom .partners-cell img {
        max-height: 4.35rem;
    }
}
