:root {
    --background-color-theme-principal: white;
    --background-color-theme-secundario: #0079be;
    --background-color-theme-terciario: #240097;
    --background-color-theme-quinto: #1d017a;
    --background-color-theme-container: white;

    --color-text-theme-principal: black;
    --color-text-theme-secundario: white;
    --color-text-theme: #0079be;
}

body {
    background-color: var(--background-color-theme-container);
    color: var(--color-text-theme-principal);
}

.btn-success {
    background-color: #00bb79;
    border: none;
}

/* Header */

header {
    background-color: var(--background-color-theme-principal);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-header {
    padding: 15px 100px;
}

.img-logo-header {
    width: 300px;
}

.dropdown-toggle-btn {
    color: var(--color-text-theme);
}

.dropdown-menu .dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 1000;
    text-decoration: none;
    color: black;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-submenu > a {
    padding-left: 20px;
}

.buscador-filter {
    margin-top: 15px;
    margin-right: 75px;
}

.custom-input-filter {
    background-color: var(--color-text-theme);
    /* Fondo negro */
    color: #fff;
    /* Texto blanco */
    border: 1px solid #fff;
    /* Borde blanco */
}

.custom-input-filter::placeholder {
    color: #ccc;
    /* Color de texto del placeholder */
}

.custom-button-filter {
    background-color: var(--color-text-theme);
    /* Fondo negro */
    color: #fff;
    /* Texto blanco */
    border: 1px solid #fff;
    /* Borde blanco */
}

.custom-button-filter:hover {
    background-color: #0a90de;
    /* Fondo más claro al pasar el mouse */
    color: #fff;
    /* Texto blanco */
}

.div-buttons-header {
    padding: 7px 12px;
}

.div-buttons-header a {
    text-decoration: none;
}
.div-buttons-header a h3 {
    padding-left: 7px;
}
.div-buttons-header button img {
    width: 25px;
    height: 25px;
}

.bottom-header {
    padding: 15px 100px;
    background-color: var(--background-color-theme-secundario);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* Elementos en línea horizontal */
    gap: 15px;
    /* Espaciado entre los elementos */
}

.header-list li {
    border-right: 1px solid white;
    /* Borde en el lado derecho */
}

.header-item {
    display: flex;
    align-items: center;
    /* Centra verticalmente el texto e imagen */
    text-decoration: none;
    /* Quita subrayados de los enlaces */
    color: var(--color-text-theme-secundario);
    /* Color del texto */
    gap: 5px;
    /* Espacio entre la imagen y el texto */
    font-weight: bolder;
}

.header-item img {
    width: 30px;
    /* Tamaño de las imágenes */
    height: auto;
}

.header-item span {
    white-space: nowrap;
    /* Evita que el texto se quiebre */
    background-color: var(--background-color-theme-principal);
    color: var(--color-text-theme);
    padding: 7px 9px;
    border-radius: 7px;
    margin-right: 20px;
}

.header-item span span {
    font-weight: bold;
    color: #0079be;
    /* Color para los números */
}

.login-section {
    margin-left: auto;
    /* Empuja esta sección al extremo derecho */
}

.login-section img {
    width: 30px;
    height: auto;
}
.login-section h4 {
    color: var(--color-text-theme-secundario);
}

.container-page {
    margin-top: 219px;
}


.alert-register-distribuidores {
    background-color: var(--background-color-theme-terciario);
    text-align: center;
    color: var(--color-text-theme-secundario);
    padding: 25px 0px;
}

.alert-register-distribuidores h5 button {
    color: var(--background-color-theme-terciario);
    margin-left: 15px;
    font-weight: bolder;
}

.one-section-banner {
    margin: 20px 85px;
}

.img-carrusel-banner {
    height: 542px;
    /* Cambia según tus necesidades */
    object-fit: cover;
    border-radius: 15px;
}

.carousel-inner {
    height: 542px;
    /* Asegúrate de que el contenedor también se ajuste a la altura deseada */
}

.carousel-inner-products {
    height: 542px;
    /* Asegúrate de que el contenedor también se ajuste a la altura deseada */
}

.carousel-btn-prev-product i,
.carousel-btn-next-product i {
    color: var(--background-color-theme-secundario);
    font-size: 30px;
}

.one-banner-end {
    border-radius: 25px;
    background-color: #006cec;
}

.one-btn-banner-access {
    background-color: var(--background-color-theme-secundario);
    border-radius: 15px;
    padding: 10px;
}

.one-btn-banner-access h3 {
    color: var(--color-text-theme-secundario);
}

.one-btn-banner-access img {
    width: 90px;
}

.section-especial-del-dia,
.section-promociones,
.section-recien-lanzados,
.section-gaming {
    margin: 50px 95px;
}

.div-banners-just-launched {
    margin: 20px 70px;
}

footer {
    background-color: var(--background-color-theme-terciario);
    color: var(--color-text-theme-secundario);
}

.top-footer {
    margin: 50px 95px;
    padding: 25px 0px;
}

.title-footer-nav {
    border-left: 1px solid var(--background-color-theme-principal);
    padding: 15px;
}

.title-footer-nav {
    border-left: 1px solid var(--background-color-theme-principal);
    margin-right: 15px;
}

.footer-list {
    list-style: none;
    /* Quita los puntos de la lista */
    padding: 0;
    margin: 0;
}

.footer-list-item {
    display: flex;
    /* Alinea los elementos en fila */
    align-items: center;
    /* Centra verticalmente los íconos y el texto */
    gap: 10px;
    /* Espacio entre el ícono y el texto */
}

.footer-list-item a {
    text-decoration: none;
    /* Elimina el subrayado del enlace */
    color: inherit;
    /* Mantiene el color de texto según el contenedor */
}

.footer-list-item img {
    vertical-align: middle;
    /* Asegura que las imágenes estén centradas verticalmente */
}

.bottom-footer {
    background-color: var(--background-color-theme-quinto);
    padding: 10px 0px;
}

/* Top */

/* Estilos del botón */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: var(--background-color-theme-secundario);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: #0056b3;
}

/* Estilos del botón con imagen */
.image-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: block;
    width: 50px;
    height: 50px;
    z-index: 101;
}

.image-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Hace que la imagen sea circular */
    /* background-color: var(--background-color-theme-principal); */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease;
}

.image-button img:hover {
    transform: scale(1.1);
    /* Efecto de zoom al pasar el mouse */
}

.btn-act-one{
    color: var(--color-text-theme-secundario);
    background-color: var(--background-color-theme-secundario);
}

@media (min-width: 992px) {
    .cards-categorias {
        padding: 20px 100px;
    }
}


@media (max-width: 1750px) {
    .div-buttons-header a h3,
    .div-buttons-header h4 {
        font-size: 18px;
    }
    .bottom-header {
        padding: 15px 100px;
        background-color: var(--background-color-theme-secundario);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-list {
        gap: 13px;
        /* Espaciado entre los elementos */
    }
    .header-item {
        font-size: 14px;
    }

    .header-item img {
        width: 27px;
    }

    .header-item span {
        white-space: nowrap;
        /* Evita que el texto se quiebre */
        background-color: var(--background-color-theme-principal);
        color: var(--color-text-theme);
        padding: 6px 7px;
        border-radius: 7px;
        margin-right: 20px;
    }
}
@media (max-width: 1600px) {
    .div-buttons-header a h3,
    .div-buttons-header h4 {
        font-size: 18px;
    }

    .header-list {
        gap: 12px;
        /* Espaciado entre los elementos */
    }
    .header-item {
        font-size: 12px;
    }

    .header-item img {
        width: 26px;
    }

    .header-item span {
        white-space: nowrap;
        /* Evita que el texto se quiebre */
        background-color: var(--background-color-theme-principal);
        color: var(--color-text-theme);
        padding: 5px 6px;
        border-radius: 5px;
        margin-right: 20px;
    }
    .login-section h4 {
        font-size: 14px;
    }
}
@media (max-width: 1400px) {
    .div-buttons-header a h3,
    .div-buttons-header h4 {
        font-size: 16px;
    }
    .top-header {
        padding: 15px 50px;
    }
    .img-logo-header {
        width: 250px;
    }
    .div-buttons-header a h3,
    .div-buttons-header h4 {
        font-size: 17px;
    }

    .bottom-header {
        padding: 15px 50px;
        background-color: var(--background-color-theme-secundario);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-item span {
        white-space: nowrap;
        /* Evita que el texto se quiebre */
        background-color: var(--background-color-theme-principal);
        color: var(--color-text-theme);
        padding: 4px 5px;
        border-radius: 4px;
        margin-right: 13px;
    }
}
@media (max-width: 1250px) {
    .top-header {
        padding: 15px 20px;
    }
    .img-logo-header {
        width: 200px;
    }
    .div-buttons-header a h3,
    .div-buttons-header h4 {
        font-size: 16px;
    }

    .bottom-header {
        padding: 15px 20px;
        background-color: var(--background-color-theme-secundario);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
@media (max-width: 1200px) {
    .top-header {
        padding: 15px 10px;
    }
    .img-logo-header {
        width: 220px;
    }
    .div-buttons-header a h3,
    .div-buttons-header h4 {
        font-size: 16px;
    }
    .custom-margin {
        margin-top: 10px;
    }

    .header-list {
        gap: 10px;
        /* Espaciado entre los elementos */
    }
    .header-item {
        font-size: 11px;
    }

    .header-item img {
        width: 24px;
    }

    .header-item span {
        white-space: nowrap;
        /* Evita que el texto se quiebre */
        background-color: var(--background-color-theme-principal);
        color: var(--color-text-theme);
        padding: 4px 5px;
        border-radius: 4px;
        margin-right: 10px;
    }
}

@media (max-width: 1115px) {
    .div-buttons-header button {
        font-size: 14px;
    }
    .div-buttons-header button img {
        width: 17px;
        height: 17px;
    }
    .div-buttons-header a h3,
    .div-buttons-header h4 {
        font-size: 15px;
    }
    .custom-margin {
        margin-top: 10px;
    }

    .header-list {
        gap: 8px;
        /* Espaciado entre los elementos */
    }
    .header-item {
        font-size: 10px;
    }

    .header-item img {
        width: 24px;
    }

    .header-item span {
        white-space: nowrap;
        /* Evita que el texto se quiebre */
        background-color: var(--background-color-theme-principal);
        color: var(--color-text-theme);
        padding: 4px 5px;
        border-radius: 4px;
        margin-right: 5px;
    }
}
@media (max-width: 1050px) {
    .img-red-social {
        width: 30px;
    }
    .div-buttons-header a h3,
    .div-buttons-header h4 {
        font-size: 14px;
    }
}
@media (max-width: 1000px) {
    .container-page {
        margin-top: 187px;
    }
}

@media (max-width: 750px) {
    .div-banners-just-launched {
        margin: 12px 0px;
    }
}

@media (max-width: 500px) {
    .section-especial-del-dia,
    .section-promociones,
    .section-recien-lanzados,
    .section-gaming {
        margin: 50px 25px;
    }

    .one-section-banner {
        margin: 1px 25px;
    }

    .div-marcas {
        margin: 0px !important;
    }

    .new-card-text-product {
        font-size: 13px;
    }

    .new-img-title {
        width: 25px;
        height: 25px;
    }

    .new-footer {
        font-size: 13px;
    }

    .new-h4 {
        font-size: 16px;
        margin-top: 5px;
    }

    .new-img-footer {
        width: 13px;
        height: 13px;
    }

    .img-logo-header {
        width: 100px;
    }

    .img-fluid {
        margin-top: 50px;
    }

    .one-btn-banner-access h3 {
        font-size: 16px;
    }

    .carousel-inner {
        height: auto;
    }

    .img-carrusel-banner {
        height: 150px;
        margin-top: 10px;
    }

    .one-carousel-banner-prev {
        margin-top: 16px;
    }

    .carousel-control-next {
        margin-top: 16px;
    }

    /* .carousel-btn-prev-product {
        margin-top: 80px;
    } */

    /* vista cards home */
    .title-categorias{
        display: flex;
        justify-content: center;
    }

    .new-img-title{
        width: 22px;
        height: 22px;
    }

    .title-text-categorias{
        font-size: 15px;
    }

    .new-container-card{
        width: 300px;
    }

    .cards-categorias{
        justify-self: center;
    }
}

@media (max-width: 400px) {
    .title-categorias{
        display: flex;
        justify-content: center;
    }

    .new-img-title{
        width: 22px;
        height: 22px;
    }

    .title-text-categorias{
        font-size: 10px;
    }

    .new-container-card{
        width: 300px;
    }

    .cards-categorias{
        justify-self: center;
        padding: 0px 0px;
    }
}

.new-a-footer {
    color: var(--color-text-theme-secundario);
    text-decoration: none;
}

.new-footer {
    padding: 25px 0px;
}

.new-input-footer {
    background-color: black;
    border-radius: 15px 0px 0px 15px;
    border: none;
    padding: 5px;
    width: 60%;
}

.new-btn-footer {
    background-color: white;
    color: black;
    border-radius: 15px 15px 15px 15px;
    border: none;
    padding: 5px;
    margin-left: -10px;
    font-weight: 500;
}

.new-section-categorias {
    padding: 25px;
    background-color: white;
    border-radius: 30px;
    justify-content: center;
    overflow: hidden;
}

.new-btn-setion-categorias {
    border-radius: 10px;
    padding: 10px 18px;
}

.section-marcas {
    background-color: white;
    padding: 25px;
    overflow: hidden;
}

.div-marcas {
    margin: 0px;
}

.carousel-inner-marcas {
    height: 140px;
}

.page-container-portal {
    margin: 250px 175px 175px 175px;
}

@media (max-width: 1250px) {
    .page-container-portal {
        margin: 230px 30px 75px 75px;
    }
}

@media (max-width: 1000px) {
    .page-container-portal {
        margin: 215px 30px 30px 30px;
    }
}
@media (max-width: 700px) {
    .page-container-portal {
        margin: 215px 20px 20px 20px;
    }
}
@media (max-width: 500px) {
    .page-container-portal {
        margin: 200px 20px 10px 20px;
    }

    .img-checkout{
        display: none;
    }
}
@media (max-width: 400px) {
    .page-container-portal {
        margin: 200px 20px 10px 20px;
    }
}
