/********** Template CSS **********/
:root {
    --primary: #c6a172;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #000000;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 150px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}
.container2 {
    text-align: center;
}

.philosophy {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
}

.mission, .vision, .values {
    margin-bottom: 20px; 
    width: 30%;
    padding: 20px;
    text-align: left;
}

.mission p, .vision p, .values p {
    color: rgb(77, 76, 76);
    text-align: center;
}

@media (max-width: 768px) {
    .mission, .vision, .values {
        width: 100%; 
    }
}



.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px; 
    margin: 0 auto; 
}

.gallery a {
    width: calc(30% - 10px);
    margin-bottom: 20px;
    position: relative; 
    box-sizing: border-box; 
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
}

.gallery a img {
    width: 100%; 
    height: auto; 
    display: block;
    transition: transform 0.3s ease; 
}

.gallery a:hover img {
    transform: scale(1.1); 
}

@media (max-width: 768px) {
    .gallery a {
        width: calc(50% - 10px); 
    }
}

@media (max-width: 480px) {
    .gallery a {
        width: calc(100% - 10px); 
    }
}


body {
    font-family: 'Poppins', sans-serif; 
    font-style: italic;
    background-color: #000000;
    color: #ffffff;
    }
    h1, h2, h5 {
    font-weight: 600;
    color: #ffffff;
    font-family: 'Poppins', sans-serif; 
    font-style: italic;
    }

   
    /* Botón personalizado */
    .btn-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    background-color: #c6a172;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    .btn-custom:hover {
    background-color: #c6a172;
    transform: scale(1.05);
    }
    .btn-custom i {
    margin-right: 8px;
    }
    /* Estilo del contenedor del botón */
    .btn-container {
    text-align: center;
    margin: 20px 0;
    }
    /* Galería de imágenes */
    .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    }
    .carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    }
    .carousel-item.active img:hover {
    transform: scale(1.02);
    }
    .carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    }
    .carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    }
    .carousel-control-prev {
    left: 10px;
    }
    .carousel-control-next {
    right: 10px;
    }
    /* Tarjetas de producto */
    .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background-color: #fff;
    }
    .card:hover {
    transform: translateY(-5px);
    }
    .card-body {
    padding: 20px;
    text-align: center;
    }
    .card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #444;
    }
    .card-text {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #777;
    }
    .form-control {
    border-radius: 30px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    }
    /* Estilos para la paginación */
    .pagination a {
    color: #c6a172;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 50px;
    background-color: #f1f1f1;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    text-decoration: none;
    }
    .pagination a.active {
    background-color: #c6a172;
    color: #fff;
    font-weight: bold;
    }
    .pagination a:hover {
    background-color: #c6a172;
    color: #fff;
    }
    /* Redefinición del input de búsqueda */
    #search-input {
    border-radius: 50px;
    border: 1px solid #ddd;
    padding: 12px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300&display=swap');
    h1.display-5 {
        font-family: 'PT Sans Narrow', sans-serif;
        font-weight: 50; /* Peso fino para letras sutiles */
    font-size: 30px; /* Tamaño del texto */
    color: #000000; /* Color neutro */
    letter-spacing: 2px; /* Espaciado entre letras */
    position: relative; /* Para permitir animación */
    display: inline-block;
    overflow: hidden;
    }
    h1.display-5::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    top: 0;
    left: -100%;
    animation: shine 3s infinite; /* Efecto de brillo suave en movimiento */
    }
    @keyframes shine {
    0% {
    left: -100%;
    }
    100% {
    left: 100%;
    }
    }


    .page-header {
        position: relative;
        background-image: url('img/fondo3.jpg');
        background-size: cover;
        background-position: center;
        color: white; 
        }
        .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1; 
        }
        .title-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px; /* Espacio entre el texto y el ícono */
        }
        .best-seller-title {
           font-family: 'PT Sans Narrow', sans-serif;
           font-weight: 100; /* Letras finas */
        font-size: 3.0rem;
        color: #000000;
        margin: 0; /* Elimina el margen por defecto del título */
        text-align: center;
        position: relative;
        display: inline-block;
        animation: slideIn 1s ease-in-out, colorChange 3s infinite alternate;
        }
        /* Animación de entrada */
        @keyframes slideIn {
        from {
        opacity: 0;
        transform: translateY(-50px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        /* Animación de cambio de color */
        @keyframes colorChange {
        0% {
        color: #333;
        }
        100% {
        color: #c6a172; /* Cambia a color rojo tomate */
        }
        }
        /* Animación de entrada */
        @keyframes slideIn {
        from {
        opacity: 0;
        transform: translateY(-50px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }
        /* Estilos para el contenedor del ícono */
        .icon-container {
        margin-top: 20px; 
        }
        .icon-container i {
        font-size: 2rem; 
        color: #c6a172; 
        display: inline-block;
        }
        .icon {
        font-size: 2.5rem; /* Tamaño del ícono igual al tamaño del texto */
        color: #333; /* Color del ícono */
        animation: slideIn 1s ease-in-out, colorChange 3s infinite alternate;
        }
        .address-info {
            width: 100%; /* Asegura que el contenedor ocupe todo el ancho disponible */
            margin-bottom: 20px;
        }
        
        .address-info label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .address-info textarea {
            width: 100%; /* Asegura que el textarea se adapte al contenedor */
            max-width: 100%; /* Evita que crezca más allá del contenedor */
            min-width: 300px; /* Define un tamaño mínimo para pantallas pequeñas */
            height: 120px; /* Establece una altura adecuada */
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            resize: vertical; /* Permite que el usuario ajuste la altura */
            box-sizing: border-box; /* Incluye padding y border en el cálculo del ancho */
            font-size: 16px;
        }
        
        /* Opcional: Estilos adicionales para pantallas más pequeñas */
        @media (max-width: 600px) {
            .address-info textarea {
                min-width: 100%; /* Se adapta completamente a pantallas pequeñas */
            }
        }
        .container1 {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 600px; /* Ancho fijo para pantallas grandes (PC) */
            height: auto; /* Ajusta automáticamente el alto según el contenido */
            min-height: 300px; /* Define un alto mínimo */
            padding: 20px; /* Espacio adicional */
            box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
        }
        
        /* Media query para dispositivos móviles (pantallas más pequeñas) */
        @media (max-width: 768px) {
            .container1 {
                width: 100%; /* Ajusta el ancho al 90% del ancho de la pantalla en dispositivos móviles */
                max-width: none; /* Elimina el ancho máximo para pantallas pequeñas */
            }
        }
        
        
        
        .tab-container {
            width: 60%;
            max-width: 600px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: width 0.3s ease; /* Transición suave al cambiar el tamaño */
        }
        
        /* Estilo de las pestañas */
        .tabs {
            display: flex;
            justify-content: space-evenly;
            background-color: #ff4d4d;
        }
        
        .tab {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            color: white;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        
        .tab.active {
            background-color: #e60000;
            border-bottom: 3px solid white;
        }
        
        .tab-content {
            display: none;
            padding: 30px;
            text-align: left;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* Media query para pantallas más pequeñas */
        @media (max-width: 768px) {
            .tab-container {
                width: 100%; /* Reduce el ancho para tablets */
            }
        
            .tab {
                font-size: 14px; /* Reduce el tamaño del texto para adaptarse */
            }
        }
        
        @media (max-width: 480px) {
            .tab-container {
                width: 100%; /* Ocupa casi todo el ancho en móviles */
            }
        
            .tab {
                font-size: 12px;
                padding: 5px 0; /* Reduce el padding en móviles */
            }
        
            .tab-content {
                padding: 20px; /* Ajusta el padding para móviles */
            }
        }

        



 /* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}

/* Estilo para el botón */
button {
    background-color: #e60000;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #000000;
}

/* Estilos para la modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    overflow-y: auto; 
}

.modal-contenido {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%; /* Permite que el ancho se ajuste al contenido */
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative; 
    width: auto; /* Deja que el contenido determine el tamaño */
}

.cerrar {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.cerrar:hover {
    color: red;
}

/* Estilos para el formulario */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #c6a172;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #000000;
}

/* Estilos específicos */
textarea {
    resize: vertical; /* Permite ajustar el tamaño del área de texto */
}

.tab-container {
    margin-top: 20px;
}

.tab-content {
    margin-top: 15px;
}
.nota-importante {
    text-align: center; /* Centraliza el texto */
    font-size: 16px; /* Ajusta el tamaño de la fuente */
    font-weight: bold; /* Hace el texto más grueso */
    color: #ff0000; /* Cambia el color a rojo (puedes elegir otro color) */
    background-color: #ffe6e6; /* Fondo suave para destacar */
    padding: 10px; /* Espaciado alrededor del texto */
    border: 1px solid #ffcccc; /* Borde para marcar la nota */
    border-radius: 5px; /* Bordes redondeados */
    margin: 20px 0; /* Espacio arriba y abajo del texto */
}
.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.guarniciones-select {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Estilo para botones personalizados */
.btn-custom-camarero {
    background-color: #c6a172;
    color: white;
 }
 
 .btn-custom-mesa {
    background-color: #c6a172;
    color: white;
 }
 
 .btn-custom-camarero i, 
 .btn-custom-mesa i {
    margin-right: 5px;
 }
 /* Estilo para el contenedor del método de pago */
.metodo-pago {
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Estilo para la etiqueta del método de pago */
.metodo-pago label {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* Estilo para el select */
.metodo-pago select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #555;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Estilo para cuando el select está enfocado */
.metodo-pago select:focus {
    border-color: #4aa8dd;
    box-shadow: 0 0 5px rgba(74, 168, 221, 0.5);
    outline: none;
}

/* Estilo para las opciones del select */
.metodo-pago select option {
    padding: 10px;
    font-size: 16px;
}

/* Estilo para el estado de deshabilitado */
.metodo-pago select:disabled {
    background-color: #e0e0e0;
    cursor: not-allowed;
}
/* Estilos generales para la sección de resumen */
.summary {
    margin-top: 20px;
    font-weight: bold;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
}

/* Estilos para cada categoría de método de pago */
.summary .category {
    margin-bottom: 15px;
}

/* Estilo para los encabezados de cada categoría */
.summary .category h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
    font-weight: bold;
}

/* Estilos para las líneas de totales dentro de cada categoría */
.summary .category p {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
}

/* Estilo específico para el método de pago "Efectivo" */
.summary .category.efectivo {
    background-color: #e0f7fa;
    padding: 10px;
    border-radius: 5px;
}

/* Estilo específico para el método de pago "Tarjeta" */
.summary .category.tarjeta {
    background-color: #fce4ec;
    padding: 10px;
    border-radius: 5px;
}

/* Estilo específico para el método de pago "Crédito" */
.summary .category.credito {
    background-color: #f3e5f5;
    padding: 10px;
    border-radius: 5px;
}

/* Estilo para los valores de totales con color resaltado */
.summary .category p span {
    font-weight: bold;
    color: #007bff;
}
/* Estilos generales del modal */



.tab-container {
    margin-top: 20px;
}

.tab-content {
    margin-top: 15px;
}
.nota-importante {
    text-align: center; /* Centraliza el texto */
    font-size: 16px; /* Ajusta el tamaño de la fuente */
    font-weight: bold; /* Hace el texto más grueso */
    color: #c6a172; /* Cambia el color a rojo (puedes elegir otro color) */
    background-color: #ffe6e6; /* Fondo suave para destacar */
    padding: 10px; /* Espaciado alrededor del texto */
    border: 1px solid #ffcccc; /* Borde para marcar la nota */
    border-radius: 5px; /* Bordes redondeados */
    margin: 20px 0; /* Espacio arriba y abajo del texto */
}




/* Ajuste general del tamaño de las tarjetas */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background-color: #fff;
    max-width: 100%; /* Reduce el ancho máximo de las tarjetas */
    margin: auto; /* Centra las tarjetas */
}

.card:hover {
    transform: translateY(-3px); /* Reducción del hover */
}

.card-img-top {
    width: 100%; /* Asegura que la imagen se ajuste al ancho de la tarjeta */
    height: 150px; /* Ajusta la altura según tus necesidades */
    object-fit: cover; /* Mantiene la proporción de la imagen y la recorta si es necesario */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 15px; /* Reduce el espacio interno */
}

.card-title {
    margin-bottom: 0.5rem;
    font-size: 1rem; /* Reduce el tamaño del título */
    color: #444;
}

.card-text {
    font-size: 0.875rem; /* Reduce el tamaño del texto */
    color: #777;
    margin-bottom: 10px;
}

/* Asegura disposición 2x2 en móviles */
@media (max-width: 768px) {
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .card {
        max-width: 95%; /* Ajusta el tamaño máximo para móviles */
    }

    .card-img-top {
        height: 120px; /* Reduce la altura de las imágenes en móviles */
    }

    .card-body {
        padding: 10px; /* Reduce el relleno interno en móviles */
    }

    .card-title {
        font-size: 0.875rem; /* Reduce el tamaño del texto en móviles */
    }

    .card-text {
        font-size: 0.75rem; /* Reduce el tamaño del texto en móviles */
    }
}
.btn-pedir {
    font-size: 0.85em; /* Tamaño de texto más pequeño */
    padding: 6px 12px; /* Reduce aún más el relleno */
    background-color: #c6a172; /* Color rojo llamativo */
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); /* Sombra más ligera */
    transition: transform 0.2s, box-shadow 0.2s; /* Transición de animación */
    border-radius: 4px; /* Bordes redondeados más pequeños */
}

.btn-pedir:hover {
    background-color: #b98541; /* Rojo más oscuro al pasar el ratón */
    transform: scale(1.03); /* Ligero aumento al hacer hover */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Sombra más intensa */
}

.btn-pedir i {
    font-size: 0.9em; /* Ajusta el tamaño del icono */
}

.btn-whatsapp {
    font-size: 0.85em; /* Tamaño de texto más pequeño */
    padding: 6px 12px; /* Reduce aún más el relleno */
    background-color: #25D366; /* Color característico de WhatsApp */
    color: white;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); /* Sombra más ligera */
    transition: transform 0.2s, box-shadow 0.2s; /* Transición de animación */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 4px; /* Bordes redondeados más pequeños */
}

.btn-whatsapp:hover {
    background-color: #1ebe57; /* Verde más oscuro al pasar el ratón */
    transform: scale(1.03); /* Ligero aumento al hacer hover */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Sombra más intensa */
}

.btn-whatsapp i {
    font-size: 1em; /* Ajusta el tamaño del icono */
    margin-right: 4px; /* Espacio entre el icono y el texto */
}
#loader {
    display: none;
}

.hidden {
    display: none;
}


