body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #262626;
    min-height: 100vh;
}

li {
    background: #ffffffea;
    border-radius: 5px;
    gap: 1px;
}

header {
    background: oklch(60.483% 0.21664 257.23);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 2px;
    margin: -10px 0;
}

@media (max-width: 800px) {
    header {
        margin: -30px 0;
    }
}

main {
    padding: 10px;
    margin: 0 auto;
    width: 1300px;
    background-color: #00000033;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1400px) {
    main {
        margin-left: 0;
        width: auto;
    }
}

.h1Titulo {
    font-size: 60px;
}

.h2Titulo {
    font-family: Montserrat regular;
    font-size: 25px;
    margin-bottom: 15px;
}

.espacio {
    margin-top: 1px;
}

.cajota {
    display: flex;
}

.caja {
    padding: 40px;
}

.imgQuienesSomos {
    width: 600px;
    height: auto;
    margin-top: 20px;
}

.centrado {
    display: flex;
    justify-content: center;
}

@media (max-width: 800px) {
    .h1Titulo {
        font-size: 35px;
        margin-left: 0 !important;
    }

    .h2Titulo {
        font-size: 13px;
        margin-left: 0 !important;
    }

    .cajota {

        display: flex;
        flex-direction: column;
    }

    .caja {
        padding: 1px !important;
    }

    .imgQuienesSomos {
        width: 300px !important;
        height: auto;
        margin-top: 20px;
    }

    .centrado {
        display: flex;
        justify-content: center;
    }

    .espacio {
        margin-top: 90px;
    }
}



h1,
h2,
h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    color: #ffffff;
    margin-bottom: 20px;
    margin: 5px;
    margin-left: 20px;
    font-size: xx-large;
}

a {
    text-decoration: none;
}

.aMierdita {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.173);
    width: -webkit-fill-available;
    padding: 1%;
    margin: 2%;
}

.registro-container {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    margin: 40px auto;
}

.registro-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.registro-container button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #007bff;
    color: #cdcdcd;
    cursor: pointer;
    transition: background 0.2s;
}

.registro-container button:hover {
    background: #0056b3;
}

/* Tarjeta de producto */
.product-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    margin: 10px;
    text-align: center;
    display: inline-block;
    width: 140px;
    vertical-align: top;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 210px;
    background: #0000001c;
    color: #ffffffa3;
}


.product-card img {
    max-width: 100%;
    border-radius: 6px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}


.product-card h3 {
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
}

.product-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

.product-card .price {
    color: #007bff;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-card button {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.product-card button:hover {
    background: #218838;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #1c1c1c;
    padding: 5px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: top 0.4s;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 0.5rem;
    color: #007bff;
}

.navbar-logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

.navbar-links {
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links.active {
    display: block;
}

.navbar-links li a {
    text-decoration: none;
    color: #101010;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-links li a:hover {
    color: #828282;
}

/* 🔹 MEJORAR ÁREA CLICKEABLE DEL MENÚ */
.navbar-links a {
  display: block !important;
  width: 100% !important;
  padding: 15px 20px !important;
  text-decoration: none !important;
  color: inherit !important;
  transition: background-color 0.3s ease !important;
}

.navbar-links a:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 5px !important;
}

.navbar-links li {
  margin: 0 !important;
  border-radius: 5px !important;
  overflow: hidden !important;
  gap: 1px !important;
padding: 0px 12px !important;
}

/* Para mobile cuando el menú está desplegado */
@media (max-width: 768px) {
  .navbar-links.active a {
    display: block !important;
    width: 100% !important;
    padding: 10px 0px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .navbar-links.active a:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carrito-btn {
    background: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 400;
    transition: background 0.2s;
    font-size: 15px;
    margin-right: 5px;
}



.carrito-btn img {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.botonWhatsApp img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 15px;
    margin-top: -3px;
}

.carrito-btn:hover {
    background: #888888;
}

.profile-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        padding: 10px 5px;
        position: fixed;
        top: 0;
        left: 0;
        width: 98%;
        z-index: 100;
        transition: top 0.4s;
    }

    .navbar-logo {
        margin-bottom: 0;
    }

    .navbar-toggle {
        display: block;
        display: block;
        background: #ffffff;
        border-radius: 6px;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background: #000000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        padding: 10px 0;
        z-index: 200;
        min-width: 180px;
    }

    .navbar-links li {
        margin: 10px 10px !important;
        text-align: right;
    }

    .navbar-user {
        margin-left: 10px;
    }
}

/* Responsive para tarjetas de productos */
@media (max-width: 768px) {
    main {
        padding: 10px;
        padding-top: 120px;
    }

    .product-card {
        margin: 15px auto;
        display: block;
    }
}

/* Responsive para el formulario de registro */
@media (max-width: 500px) {
    .registro-container {
        padding: 15px 5px;
        max-width: 98%;
        margin: 20px auto;
    }

    .registro-container input {
        padding: 8px;
        font-size: 1rem;
    }

    .registro-container button {
        padding: 8px 10px;
        font-size: 1rem;
    }

    h1,
    h2,
    h3 {
        font-size: 1.8rem;
    }
}

.productos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .productos-container {
        gap: 5px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .product-card {
        margin: 0 0 15px 0;
        display: flex;
        height: 190px;
        width: 105px !important;
    }

    .productos-container span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .btn-container {
        width: 95%;
    }
}

.btn-container {
    display: flex;
    justify-content: center;
}

.cart-timeline {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 80%;
    background: #000000d1;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    z-index: 999;
    margin-left: 10%;
    transition: bottom 0.4s;
    display: flex;
    flex-direction: column;
    color: white;
}

@media (max-width: 768px) {
    .cart-timeline {
        position: fixed;
        width: -webkit-fill-available;
        background: #000000d9;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
        padding: 10px 12px;
        z-index: 999;
        margin-left: 0%;
        display: flex;
        flex-direction: column;
    }
}

.cart-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .cart-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .cart-info span {
        margin: 1%;
    }
}


.cart-progress {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

#cart-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #007bff 60%, #28a745 100%);
    transition: width 0.3s;
}

.btn-volver {
    margin: 10px 0 20px 0;
    padding: 8px 16px;
    background: #bbbbbb;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
    float: right;
}

.btn-volver:hover {
    background: #656565;
}

.categorias {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.botonCategoria {
    text-decoration: none;
    border: none;
    background: #101214e7;
    color: #fff;
    border-radius: 8px;
    margin: 0 0;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    width: 190px;
    height: 95px;
}

@media (max-width: 768px) {
    .categorias {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;
        padding-left: 0 !important;
        margin-left: 0 !important;
        scroll-padding-left: 0;
        max-width: 100vw;
        align-items: flex-start;
        scrollbar-color: #bdbdbd #222;
        justify-content: flex-start !important;
    }

    .botonCategoria {
        flex: 0 0 auto;
        min-width: 154px;
        max-width: 154px;
        margin-left: 0 !important;
        height: 75px;
    }

    .botonCategoria img {
        width: 100%;
        min-width: 154px;
        max-width: 154px;
        border-radius: 10px;
        object-fit: cover;
        display: block;
    }
}

/* Opcional: mejora visual del scrollbar en navegadores Webkit */
.categorias::-webkit-scrollbar {
    height: 8px;
}

.categorias::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
}

.categorias::-webkit-scrollbar-track {
    background: #222;
}

.botonCategoria img {
    width: 190px;
    height: 95px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    h2 {
        margin-top: 3%;
    }

    .botonCategoria img {
        height: auto;
    }
}

.botonCategoria:hover {
    background: #2c323a;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

footer {
    font-family: "montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    height: 250px;
    padding: 2%;
    color: white;
    background: #1c1c1c;
}

.footer-disruptive {
    background-color: #121212;
    color: white;
    text-align: center;
    padding: 30px 15px;
    font-family: 'Montserrat', sans-serif;
}


.footer-contenido {
    display: flex;
    flex-direction: row;
    gap: 7px;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.footer-logo {
    width: 100px;
    height: auto;
}

.footer-contacto a {
    text-decoration: none;
}

.footer-contacto a img {
    width: 30px;
    margin: 0 8px;
    transition: transform 0.2s ease;
}

.footer-contacto a img:hover {
    transform: scale(1.2);
}

.btn-volver-arriba {
    margin-top: 15px;
    background-color: #e99753b8;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-volver-arriba:hover {
    background-color: #e18031b8;
}

.footer-derechos {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.7;
}



.botonWhatsApp {
    background-color: #248347;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    align-content: center;
    justify-content: center;
    width: -webkit-fill-available;
}

.botonWhatsApp:hover {
    background-color: #1a9b4c;
}

.info-combos {
    background: #0000002e;
    border-radius: 10px;
    padding: 24px 32px;
    margin: 20px auto;
    max-width: 1000px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-family: 'Segoe UI', Arial, sans-serif;

    color: white;
}

.info-combos h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    color: #fff;
    margin-bottom: 16px;
    font-size: 2rem;
}

.info-combos ul {
    margin-left: 5px;
    font-size: 1.1rem;
}

.info-combos li {
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .btn-volver {
        margin-bottom: 5px;
        width: 80px;
        height: 54px;
        font-size: 18px;
    }
}


.carrusel {
    display: flex;
    transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
    width: 100%;
}

.carrusel img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    height: 100%;
    display: block;
}

.carrusel-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1800 / 684;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.personalizado-container {
    background: #0000002e;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 30px auto;
    padding: 24px;
    color: #ffffff;
}

.columnas {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contenedor {
    flex: 1 1 220px;
    min-width: 220px;
    margin-bottom: 20px;
}

.botones-materiales {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
    flex-direction: column;
}

.material {
    background: #363636;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.2s;
}

.material.boton-activo,
.material:hover {
    background: #b5b5b585;
    ;
}

.contenedore {
    display: flex;
    gap: 10px;
}



.btn-aceptar {
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    transition: background 0.2s;
    width: -webkit-fill-available;
}

.btn-aceptar:hover {
    background: #218838;
}

.contador1 {
    margin-top: 16px;
    font-size: 2.1rem;
    color: #ffffff;
    font-family: bebas neue;
    width: -webkit-fill-available;
    display: flex;
    justify-content: center;
    gap: 30%;
}

@media (max-width: 900px) {
    .personalizado-container {
        max-width: 98vw;
        padding: 12px;
    }

    .columnas {
        gap: 15px;
    }
}

@media (max-width: 700px) {
    .columnas {
        flex-direction: column;
        gap: 15px;
    }

    .contenedor {
        flex: 0 0 0;
        min-width: 100%;
    }

    .botones-materiales {
        flex-direction: column;
        gap: 8px;
    }

    .contenedore {
        flex-direction: column;
        gap: 8px;
    }
}

.categoria-titulo {
    margin-right: 80%;
}

@media (max-width: 768px) {
    .categoria-titulo {
        margin-right: 30%;
    }
}


.section-informative-banners {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0px;
    background: #ffffffe3;
    padding: 18px 0;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .section-informative-banners {
        flex-direction: column;
        gap: 20px;
        margin: 20px 10px;
        padding: 12px 0;
    }
}

.banner-info {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.15em;
    font-family: 'Montserrat', sans-serif;
    /* background: #fff; */
    padding: 10px 18px;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px #0001; */
}

.banner-icon {
    width: 32px;
    height: 32px;
}

.btn-sumar,
.btn-restar {
    background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
    border: none;
    color: #333;
    font-size: 1.3em;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin: 0 4px;
    cursor: pointer;
    box-shadow: 0 2px 6px #0001;
    transition: background 0.2s, transform 0.1s;
}

.btn-sumar:hover,
.btn-restar:hover {
    background: linear-gradient(90deg, #ffe066 0%, #ffd700 100%);
    transform: scale(1.1);
}

.btn-agregar {
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1em;
    cursor: pointer;
    margin: 0 4px;
    transition: background 0.2s, transform 0.1s;
}

.btn-agregar:hover {
    background: #388e3c;
    transform: scale(1.05);
}

.input-cantidad{
    width: 45px;
    padding: 6px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-left: 8px;
    text-align: center;
    width: 20px;
    text-align: center;
}

.contenedore input[type="number"] {
    width: 95%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #f8f8f8;
    color: #222;
    margin: 0px;
    text-align: center;
}


input[type="number"] {
    width: 95%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #f8f8f8;
    color: #222;
    margin: 0px;
    width: 45px;
    text-align: center;
}

@media (max-width: 768px) {
    input[type="number"] {
        width: 30px;
    }
}

.google-reviews-section {
    background: #ffffffe8;
    padding: 32px 0 24px 0;
    border-radius: 14px;
    margin: 40px auto 32px auto;
    max-width: 900px;
    box-shadow: 0 2px 16px #0001;
}

.reviews-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2em;
    margin-bottom: 24px;
    color: #333;
    letter-spacing: 1px;
}

.google-reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.review-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0002;
    padding: 18px 22px;
    max-width: 280px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #00000047;
    border: 2px solid #00000062;
}

.review-name {
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #444;
    font-size: 1.1em;
}

.review-stars {
    color: #ffb347;
    font-size: 1.1em;
    margin-left: 2px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.review-starsgris {
    color: #cccccc;
    font-size: 1.1em;
    margin-left: 2px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.review-text {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1em;
    margin: 0;
}