body {
    margin: 0;
}

.header {
    background-color: #900C3F;
    width: 100%;
}

.header-one {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0px;
    /*background-color: #eee;*/
    width: 100%;
    height: 80%;
}

.header-two {
    height: 20%;
    background-color: #9e0942;
    display: flex;
    justify-content: space-between;
    padding: 3px;
}

.logo {
    width: 35%;
    height: 100%;
    /*background-color: #736a6a;*/

}

nav.nav-tools {
    width: 100%;
    height: 100%;
    /*background-color: #956161;*/
    display: flex;
    justify-content: space-between;
}

ul.recursos-importantes {
    width: 80%;
    display: flex;
    justify-content: space-between;
    /*  background-color: #77ea8a; */
}

li.perfil,
li.carrito,
li.tiendas-fisicas {
    list-style: none;
    width: 30%;
    height: 80%;
    /*background-color: #5285c8;*/
    display: flex;
    justify-content: center;
    margin: 12px;
}

img.img-logo {
    width: 200px;
}

img.img-perfil,
img.img-carrito,
img.img-tiendas-fisicas {
    width: 70px;
}

form.form-buscador {
    display: flex;
    width: 75%;
    padding-top: 20px;
    padding-bottom: 20px;
}



button.button-menu {
    background-color: #900C3F;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.button-menu:hover {
    background-color: #620a2c;
    border: 1px solid #fff;
}

input.input-text-buscar {
    width: 79%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

button.button-buscar {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.button-buscar:hover {
    background-color: #0056b3;
}

/*header*/


/* FOOTER */
footer {
    background-color: #900C3F;
    color: white;
    /* text-align: center; */
    padding: 40px 20px 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    background-color: white;
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #eee;
    transform: scale(1.05);
}

.newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    width: 300px;
    max-width: 90%;
}

.newsletter button {
    background-color: white;
    border: none;
    padding: 10px 20px;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
    width: 70%;
}

.div-container-footer {
    display: flex;
    justify-content: center;
}


.footer-columns h4 {
    margin-bottom: 10px;
    color: white;
}

.footer-columns a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 30px;
    font-size: 14px;
    color: white;
}

p.p-text-footer {
    text-align: center;
}

a.link-footer {
    text-decoration: none;
    color: #fff;
}

ul.ul-contactanos-footer,
ul.ul-atencion-al-clientes-footer,
ul.ul-metodos-de-pago-footer {
    /* width: 100%; */
    padding: 0px;
}

.img-metodo-de-pago {
    width: 120px;
}

img.img-metodos-de-pago {
    width: 100%;
}


.div-mensaje {
    border-left: 6px solid #ff9900;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    max-width: 900px;
}

.titulo-principal {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    animation: fadeIn 1.5s ease-in-out;
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto hover opcional */
.div-mensaje:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

ul.ul-marca {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    list-style-type: none;
}

li.marcas {
    width: 100%;
}

img.marcas {
    width: 100%;
}

nav.marcas {
    display: flex;
    justify-content: center;
}


span.span-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    animation: fadeIn 1.5s ease-in-out;
}

.text {
    border-left: 6px solid #ff9900;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    max-width: 900px;
}
a.h4-footer {
    text-decoration: none;
    color: #fff;
}



/* sile */


:root {
    --overlay-bg: rgba(0, 0, 0, .55);
    --drawer-w: 320px;
    --radius: 14px;
}

html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    margin: 0;
}

/* Botón demo (usa tu .button-menu original) */
.button-menu {
    margin: 24px;
    padding: 10px 16px;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
    background: #111;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.button-menu:focus-visible {
    outline: 3px solid #6ea8fe;
    outline-offset: 2px;
}

/* Overlay */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 1000;
}

.is-open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Cajón lateral */
.drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(100%, var(--drawer-w));
    background: #fff;
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 0 24px rgba(0, 0, 0, .22);
}

.is-open .drawer {
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {

    .drawer,
    .drawer-overlay {
        transition: none;
    }
}

/* Header del drawer */
.drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 14px;
    background: #900C3F;
    color: #fff;
}

a.a-iniciar-sesion {
    color: #fff;
}

.drawer__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.drawer__close {
    background: #fff;
    color: #232f3e;
    border: 0;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.drawer__close:focus-visible {
    outline: 3px solid #ff9900;
    outline-offset: 2px;
}

/* Contenido / navegación */
.drawer__content {
    padding: 8px 0 20px;
    overflow: auto;
}

.drawer__section-title {
    font-size: .9rem;
    font-weight: 700;
    color: #555;
    padding: 12px 16px;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-decoration: none;
    color: #111;
    padding: 12px 16px;
    font-weight: 500;
}

.menu-list a:hover {
    background: #f6f7f8;
}

.menu-list a:focus-visible {
    outline: 3px solid #6ea8fe;
    outline-offset: -3px;
}

.menu-list .chev {
    opacity: .6;
}

/* Footer pegado abajo opcional */
.drawer__footer {
    margin-top: auto;
    padding: 12px 16px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/*slide */