/** Shopify CDN: Minification failed

Line 1290:4 Unexpected "#3d-container"

**/
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body.no-scroll {
    overflow: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    margin-top: 5rem;
}

img {
    max-width: 80%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Navigation Styles */
.main-nav {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #000000;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    background-color: #85b958;
    color: #fff;
    border-radius: 5px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    padding: 10px;
    background-color: #679142;
    color: white;
    border-radius: 5px;
}

.dropdown-toggle:hover {
    background-color: #8b8b8b;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-item {
    padding: 12px 16px;
}

.dropdown-item a {
    display: block;
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.dropdown-item a:hover {
    background-color: #f1f1f1;
}

.menu .static-navbar {
    display: none;
}

.menu .static-navbar ul {
    flex-direction: column;
}

@media (max-width: 991px) {
    .menu label {
        display: initial;
        z-index: 1001;
    }

    .menu .static-navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #181818;
        flex-direction: column;
        display: none;
        z-index: 1000;
    }

    .menu .static-navbar ul {
        flex-direction: column;
    }

    .menu .static-navbar ul li {
        width: 100%;
    }

    .menu .static-navbar ul li a {
        color: #FFFFFF;
    }

    #menu:checked~.static-navbar {
        display: flex;
    }
}

#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 70px 0;
    overflow: hidden;
    z-index: 1;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #f5f5f5;
    display: block;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1001;
}

.logo img {
    width: 250px;
    margin-top: 100px;
}

#menu {
    display: none;
}

.menu-icon {
  display: none;
}

.menu label {
    cursor: pointer;
    display: none;
}

.submenu {
    position: relative;
}

.carrito-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Ajustes para el contador de productos en el carrito */
#contador-productos {
    background-color: #679142;
    color: white;
    border-radius: 50%;
    padding: 6px 12px;
    position: fixed;
    top: 68px;
    right: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1001;
    display: none;
    transition: transform 0.3s ease-in-out;
}

#contador-productos.mostrar {
    display: inline;
    transform: scale(1.2);
}

#carrito {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #fff;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto; /* Agrega esta línea para permitir el scroll en el carrito */
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    #carrito {
        width: 100%;
        right: -100%;
    }
}

#carrito.mostrar {
    right: 0;
}

#img-carrito {
    position: fixed;
    top: 70px;
    right: 35px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

@media (max-width: 991px) {
  .menu-icon {
    display: block;
    cursor: pointer;
  }

  .static-navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  #menu:checked ~ .static-navbar {
    display: flex;
  }
}

@media (max-width: 600px) {
    #img-carrito {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

.fondo-carrito {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.fondo-carrito.mostrar {
    display: block;
}

/* Encabezado del carrito */
#carrito table thead th {
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 10px;
    color: #333333;
}

/* Elementos del carrito */
#carrito table tbody td {
    padding: 10px 5px;
    vertical-align: middle;
}

/* Imagen del producto */
#carrito table tbody img {
    max-width: 80px;
    border-radius: 5px;
}

.cerrar-carrito {
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
    background-color: #679142;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    margin-right: 5px;
    /* Ajusta el margen según sea necesario */
    align-self: center;
}

.carrito-footer {
    display: flex;
    justify-content: flex-end;
    /* Ajusta los elementos al final del contenedor */
    gap: 10px;
    /* Espacio entre los botones */
}

.carrito-footer a {
    display: inline-block;
    padding: 10px;
    background-color: #679142;
    color: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    width: 30%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.carrito-footer a:hover {
    background-color: #4f722f;
}

@media (max-width: 600px) {
    #contador-productos {
        padding: 3px 6px;
        font-size: 10px;
        top: 20px;
        right: 18px;
    }
}

@media (max-width: 991px) {
    #img-carrito {
        width: 40px;
        height: 40px;
    }

    #carrito {
        width: 100%;
    }
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 0 200px;
}

.header-img {
    flex-basis: 150%px;
    text-align: center;
}

.header-txt {
    flex-basis: 50%;
    text-align: center;
}

.header-txt h1 {
    font-size: 90px;
    text-transform: uppercase;
    line-height: 1;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
}

.header-txt p {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn-1 {
    display: inline-block;
    padding: 11px 25px;
    background-color: #679142;
    color: #FFFFFF;
    border-radius: 5px;
}

.ofert {
    padding: 10px 0 0 0;
    display: flex;
    justify-content: space-between;
}

.ofert-1 {
    display: flex;
    align-items: center;
    flex-basis: calc(33.3% - 15px);
    background-color: #f5f5f5;
    padding: 35px;
}

.ofert-img {
    flex-basis: 50%;
    margin-right: 15px;
}

.ofert-img img {
    width: 250px;
}

.ofert-txt {
    flex-basis: 50%;
    text-align: center;
}

.ofert-txt h3 {
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.btn-2 {
    margin-top: auto;
    display: inline-block;
    padding: 7px 10px;
    background-color: #679142;
    color: #f5f5f5;
    border-radius: 5px;
    font-size: 15px;
    width: 100%; /* Asegura que el botón ocupe todo el ancho del contenedor */
    max-width: 250px; /* Limita el ancho máximo del botón */
    text-align: center; /* Centra el texto del botón */
}

.products {
    padding: 50px 0;
    text-align: center;
}

.products h2 {
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.product-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Asegura que todos los productos tengan la misma altura */
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 450px; /* Ajusta según sea necesario */
}

.product img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Mantiene la proporción de las imágenes */
    margin-bottom: 20px;
}

.product-img-container {
    width: 100%;
    height: 300px; /* Fija la altura máxima que deben tener las imágenes */
    overflow: hidden; /* Oculta cualquier parte de la imagen que sobrepase el contenedor */
}

.product-img-container img {
    width: auto;
    height: 100%;
    object-fit: contain; /* Asegura que las imágenes mantengan su proporción mientras se recortan */
    object-position: center; /* Centra la imagen dentro del contenedor */
    cursor: pointer; /* Cambia el cursor a modo de selección de vínculo */
}

.product h3 {
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product p,
.precio {
    font-size: 16px;
    color: #111111;
    margin-bottom: 15px;
}

.precio {
    font-weight: 800;
}

.icons {
    padding: 50px 0 100px 0;
    display: flex;
    justify-content: space-between;
}

.icon-1 {
    flex-basis: calc(33.3% - 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background-color: #f5f5f5;
}

.icon-txt h3 {
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.icon-txt p {
    font-size: 16px;
    color: #111111;
}

.blog {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.blog-1 {
    flex-basis: calc(33.3% - 30px);
}

.blog-1 img {
    margin-bottom: 20px;
}

.blog-1 h3 {
    font-size: 20px;
    color: #111111;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-1 p {
    font-size: 16px;
    color: #111111;
}

.footer {
    padding: 15px 0;
    background-color: #111111;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.link h3 {
    font-size: 18px;
    color: #FFFFFF;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.link a {
    font-size: 16px;
    color: #DCDCDC;
    display: block;
    margin-bottom: 10px;
}

.link a:hover {
    background-color: transparent; /* Sin cambio de fondo en hover */
    color: #679142; /* Sin cambio de color en hover */
}

@media (max-width: 991px) {
    .menu {
        padding: 45px;
        top: -11%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu label {
        display: initial;
    }

    .menu .static-navbar {
        position: absolute;
        top: 70%;
        left: 0;
        right: 0;
        background-color: #181818;
        display: none;
    }

    .menu .static-navbar ul {
        flex-direction: column;
    }

    .menu .static-navbar ul li {
        width: 100%;
    }

    .menu .static-navbar ul li a {
        color: #FFFFFF;
    }

    #menu:checked~.static-navbar {
        display: flex;
    }

    .logo {
        order: 2;
        flex: 1;
        text-align: center;
        margin-top: -90px;
    }

    .menu-icon {
        order: 1;
    }

    .carrito-container {
        order: 3;
    }

    .submenu:hover #carrito {
        min-width: 100%;
    }

    .header {
        min-height: 0vh;
    }

    .header-content {
        padding: 50px 0;
        flex-direction: column;
    }

    .header-img {
        display: none;
    }

    .header-txt {
        flex-basis: 100%;
        text-align: center;
    }

    .header-txt h1 {
        font-size: 70px;
    }

    .ofert {
        padding: 30px 30px 0 30px;
        flex-direction: column;
    }

    .ofert-1 {
        margin-bottom: 30px;
    }

    .products {
        padding: 0 30px 30px 30px;
    }

    .product h2 {
        margin-bottom: 30px;
    }

    .product-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .product img {
        width: 200px;
        height: 280px;
    }

    .icons {
        padding: 30px;
        flex-direction: column;
    }

    .icon-1 {
        margin-bottom: 30px;
    }

    .blog {
        padding: 0 30px 30px 30px;
        flex-direction: column;
    }

    .blog-1 {
        margin-bottom: 30px;
    }

    .footer {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .static-nav {
        display: none;
    }
}

#contacto-page .header {
    display: flex;
    align-items: center;
    min-height: 23vh;
    background-color: #f5f5f5;
    padding: 0 20px;
}

#contacto-page .contact-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
}

#contacto-page .contact-form {
    width: 50%;
    max-width: 600px;
    margin: auto;
}

#contacto-page .contact-form .form-row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#contacto-page .contact-form label {
    margin-bottom: 5px;
}

#contacto-page .contact-form input,
#contacto-page .contact-form select,
#contacto-page .contact-form textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

#contacto-page .contact-form button {
    padding: 10px 20px;
    width: auto;
    margin-top: 20px;
    cursor: pointer;
    background-color: #111111;
    color: white;
    border: none;
    border-radius: 5px;
}

html {
    scroll-behavior: smooth;
}

.active-section {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para la página de checkout */
#lista-compra {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}

#lista-compra th,
#lista-compra td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#lista-compra th {
    background-color: #f4f4f4;
    font-weight: bold;
}

#lista-compra img {
    width: 150px;
}

.total-compra {
    text-align: right;
    margin-top: 20px;
}

.total-compra h2 {
    font-size: 24px;
    color: #111111;
}

.compra-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}

.compra-footer .btn-2 {
    width: 45%;
    text-align: center;
}

.product-img-container {
    position: relative;
}

.info-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.info-popup {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 1100px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    overflow-y: auto;
    max-height: 80vh;
}

.info-popup.mostrar {
    display: block;
}

.media-content {
    display: flex;
    justify-content: space-around;
    /* Asegura que el contenido multimedia esté distribuido equitativamente */
    width: 100%;
}

/* Producto destacado personalizado */
.featured-collection .card__heading {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    color: #111111;
}

.featured-collection .card__media img {
    border-radius: 15px;
    object-fit: cover;
    height: 300px;
}

.featured-collection .card {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;
}

.featured-collection .price {
    color: #679142;
    font-weight: bold;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-contenido {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 80%;
    max-width: 900px;
    height: 80vh;
    position: relative;
}

.popup-contenido iframe {
    width: 100%;
    height: 100%;
}

.cerrar-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    z-index: 10000;
}

.info-popup .info-content {
    display: flex;
    flex-direction: row;
    /* Elementos principales en columna */
    align-items: center;
    /* Alineación central */
    width: 100%;
    /* Uso del ancho completo */
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.carousel-container img {
    width: auto;
    height: 90%;
    object-fit: cover;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.info-popup video {
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
}

.description-content {
    width: 100%;
    /* Asegura que la descripción ocupe el ancho completo */
    margin-top: 20px;
    /* Espacio entre el contenido multimedia y la descripción */
    text-align: justify;
    padding: 10px;
    box-sizing: border-box;
}

.info-popup h3 {
    text-align: center;
    margin-bottom: 20px;
}

.info-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
}

#info-fondo {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 19;
}

#info-fondo.mostrar {
    display: block;
}

.logo-resumen-compra {
    width: 230px;
    position: relative;
    top: -40px;
    margin-left: 930px;
}

.blur-content {
    filter: blur(5px);
    pointer-events: none;
}

@media (max-width: 991px) {
    .info-popup .info-content {
        flex-direction: column;
        align-items: center;
    }

    .carousel-container {
        width: 100%;
        height: auto;
    }

    .carousel-container img {
        width: 100%;
        height: auto;
        max-height: 300px;
        /* Ajusta este valor según el tamaño máximo deseado */
        object-fit: cover;
        /* Esto asegura que la imagen se recorte para llenar el contenedor */
    }

    .info-popup video {
        width: 100%;
        height: auto;
        margin: 20px 0;
    }
}

@media (max-width: 600px) {
    .info-popup .info-content {
        flex-direction: column;
        align-items: center;
    }

    .carousel-container {
        width: 100%;
        height: auto;
    }

    .carousel-container img {
        width: 100%;
        height: auto;
        max-height: 300px;
        /* Ajusta este valor según el tamaño máximo deseado */
        object-fit: cover;
        /* Esto asegura que la imagen se recorte para llenar el contenedor */
    }

    .info-popup video {
        width: 100%;
        height: auto;
        margin: 20px 0;
    }
}

/* Responsivo para página de checkout */
@media (max-width: 991px) {
    .logo-resumen-compra {
        width: 150px;
        position: relative;
        top: 0;
        margin-left: 20px;
        display: inline-block;
    }

    .resumen-titulo {
        display: flex;
        align-items: center;
        text-align: center;
        font-size: 24px;
        justify-content: center;
    }

    .resumen-titulo img {
        margin-top: 0;
    }

    #lista-compra {
        width: 100%;
        margin-top: 20px;
    }

    #lista-compra th,
    #lista-compra td {
        padding: 8px;
        font-size: 14px;
    }

    #lista-compra img {
        width: 100px;
    }

    .total-compra h2 {
        font-size: 20px;
    }

    .compra-footer {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 20px;
        flex-direction: row;
    }

    .compra-footer .btn-2 {
        width: 45%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .logo-resumen-compra {
        width: 120px;
        margin-left: 20px;
    }

    .resumen-titulo {
        font-size: 20px;
    }

    #lista-compra th,
    #lista-compra td {
        padding: 6px;
        font-size: 12px;
    }

    #lista-compra img {
        width: 80px;
    }

    .total-compra h2 {
        font-size: 18px;
    }

    .compra-footer {
        flex-direction: row;
        justify-content: space-between;
    }

    .compra-footer .btn-2 {
        width: 45%;
    }

    #3d-container {
        background-color: rgba(0, 0, 0, 0.1);
        /* Color de fondo temporal */
        width: 100%;
        height: 500px;
    }

}

/* Estilos para la sección de opiniones */
.opiniones {
    padding: 50px 0;
    text-align: center;
}

.opiniones h2 {
    color: #111111;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.opiniones-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
}

.opinion {
    flex-basis: calc(33.3% - 20px);
    background-color: #f5f5f5;
    padding: 35px;
    text-align: center;
    border-radius: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.opinion img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.opinion h3 {
    font-size: 20px;
    color: #111111;
    margin-bottom: 10px;
}

.opinion p {
    font-size: 16px;
    color: #111111;
}

/* Ajustes para la sección de opiniones en pantallas pequeñas */
@media (max-width: 991px) {
    .opiniones-content {
        flex-direction: column;
        gap: 30px;
    }

    .opinion {
        max-width: 100%;
        flex-basis: auto;
    }

    .opinion img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    .opinion img {
        width: 100px;
        height: 100px;
    }

    .opiniones-content {
        gap: 10px;
    }
}
.btn-login {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #679142;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease, background-color 0.4s ease;
    cursor: pointer;
}

/* Hover effect with glow */
.btn-login:hover {
    background-color: #85b958;
    box-shadow: 0px 0px 20px rgba(103, 145, 66, 0.6); /* Agrega un resplandor suave */
}

/* Ajustes para el botón en móviles para que se comporte como los demás enlaces */
@media (max-width: 600px) {
    .btn-login {
        font-size: 13px; /* Tamaño de fuente coherente con los demás enlaces del menú */
        padding: 5px 15px; /* Espaciado similar a otros elementos del menú */
        background-color: transparent; /* Fondo transparente como los demás enlaces */
        border-radius: 0; /* Sin borde redondeado */
        text-align: left; /* Alineación del texto a la izquierda */
        width: 100%; /* Ocupa el ancho completo del menú */
        box-shadow: none; /* Sin sombra */
        display: block; /* Asegura que el botón esté en línea con otros elementos del menú */
    }

    .btn-login:hover {
        background-color: transparent; /* Sin cambio de fondo en hover */
        color: #679142; /* Sin cambio de color en hover */
    }
}

/* Aseguramos que sean visibles y responsive */
@media (max-width: 991px) {
    .btn-login {
        color: #ffffff;
        padding: 10px;
        text-align: center;
    }
}

/* Estilos para el título "Destacados" */
.ofert-header {
    text-align: center;
    margin-bottom: 0px;
    /* Ajuste de margen para separar el título de los productos */
}

.ofert-header h2 {
    font-size: 50px;
    font-family: 'Oswald', sans-serif;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px;
    margin-bottom: 0;
}

/* Asegura que los productos tengan espacio debajo del título */
.product-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsividad para la sección de destacados */
@media (max-width: 991px) {
    .product-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .product-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .product img {
        width: 200px;
        height: 220px;
    }
}
/* Header con flecha de regreso y logo centrado */
.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.back-arrow a img {
    width: 30px;
    height: auto;
}

.checkout-header .logo {
    display: flex;
    justify-content: center;
    flex: 1;
}

.checkout-header .logo img {
    width: 50px;
}

/* Navegación de pasos (DATOS > ENVÍO > PAGO) */
.checkout-nav {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #5A5A5A;
}

.checkout-nav a {
    color: #7C4DFF;
    text-decoration: none;
}

.checkout-nav a:hover {
    text-decoration: underline;
}

/* Contenedor principal de la página de confirmación */
.checkout-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.form-section {
    width: 60%;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.summary-section {
    width: 35%;
    padding: 20px;
    background-color: #f7f7f7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.cart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cart-item-img {
    max-width: 80%;
    margin-bottom: 20px;
}

/* Ajuste de espacios en el formulario */
.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-half {
    width: 48%;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 100px;
}

.btn-2 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #679142;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

.btn-2:hover {
    background-color: #295700;
}


.borrar{
background-color: #85b958;

box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 50%;
border-radius: 10px;
font-size: arial;
}

/* Estilos para la sección de FAQs */
.faq-section {
    max-width: 800px;
    margin: 80px auto 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    border-left: 5px solid #2e7d32;
    transition: background-color 0.3s;
}

.faq:hover {
    background-color: #c8e6c9;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: #2e7d32;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 8px;
    color: #4a4a4a;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.hidden {
    display: none;
}

@media (max-width: 600px) {
    .faq-section {
        padding: 15px;
    }
    .faq-title {
        font-size: 1.8rem;
    }
}

/* Estilos para las opiniones */
.opiniones-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.opinion {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 350px; /* Aumenta el tamaño máximo de cada tarjeta */
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opinion:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}

.opinion img {
    width: 80px; /* Aumenta el tamaño de la imagen */
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.opinion h3 {
    font-size: 1.6em;
    color: #333;
    margin: 15px 0 10px 0;
}

.opinion p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

/* Estilos para el título "Más Opiniones" */
.opiniones h2 {
    font-size: 3em;
    color: #333;
    margin-bottom: 50px;
    margin-top: 100px; /* Asegura el espaciado adecuado desde la navegación */
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
    .opiniones h2 {
        font-size: 2.5em;
    }

    .opinion {
        max-width: 90%;
        margin: 0 auto;
    }

    .opinion img {
        width: 70px;
        height: 70px;
    }

    .opinion h3 {
        font-size: 1.4em;
    }

    .opinion p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .opiniones h2 {
        font-size: 2em;
    }

    .opinion img {
        width: 60px;
        height: 60px;
    }

    .opinion h3 {
        font-size: 1.2em;
    }

    .opinion p {
        font-size: 0.9em;
    }
}

/* Estilos básicos para el carrusel */
.swiper-container {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    transition-timing-function: ease-in-out;
}

/* Estilos para el contenedor de texto */
.slide-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
    padding: 1em;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    font-family: "Poppins", sans-serif; /* Cambia el tipo de letra */
    max-width: 80%; /* Controla el ancho horizontal del texto */
}

/* Ajustes opcionales para el texto */
.slide-content h2 {
    font-size: 4em;
    margin: 0;
}

.slide-content p {
    font-size: 2em;
    margin: 0.5em 0 0;
}

/* Asegura que el texto esté visible encima de las imágenes */
.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Cambia el icono de flecha con contenido personalizado */
.swiper-button-next::after,
.swiper-button-prev::after {
    background-color: rgba(0, 0, 0, 0.503); /* Aumenta la opacidad en hover */
    border-radius: 5px;
    font-size: 2em; /* Ajusta el tamaño del icono */
    color: #ffffff; /* Cambia al color que desees */
}

/* Personaliza la flecha de avance */
.swiper-button-next::after {
    content: '\276F'; /* Puedes cambiar este carácter Unicode por otro */
}

/* Personaliza la flecha de retroceso */
.swiper-button-prev::after {
    content: '\276E'; /* Puedes cambiar este carácter Unicode por otro */
}

/* Efecto hover semitransparente */
.swiper-button-next:hover,
.swiper-button-prev:hover {
color: #000;; /* Ajusta el nivel de transparencia en hover */
opacity: 0.85; /* Transparencia adicional en hover */
}

/* Responsividad */

/* Pantallas medianas (tabletas) */
@media (max-width: 768px) {
    .swiper-container {
        height: 70vh;
    }
    .slide-content {
        top: 55%;
        padding: 0.8em;
        max-width: 80%; /* Expande el ancho máximo en pantallas medianas */
    }
    .slide-content h2 {
        font-size: 2.5em;
    }
    .slide-content p {
        font-size: 1.2em;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.5em;
    }
}

/* Pantallas pequeñas (móviles) */
@media (max-width: 480px) {
    .swiper-container {
        height: 60vh;
    }
    .slide-content {
        top: 50%;
        padding: 0.5em;
        max-width: 90%; /* Asegura que el texto no quede comprimido */
    }
    .slide-content h2 {
        font-size: 2em;
    }
    .slide-content p {
        font-size: 1em;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2em;
    }
}