/* ========================
        CSS BASE GLOBAL
        =========================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}

/* ========================
        HEADER NAVEGACIÓN - CORREGIDO
        =========================*/
header {
    width: 100%;
    background-color: #1a5f3f;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    /* Se ajusta el padding vertical a 0 y se mantiene el horizontal */
    padding: 0 40px;
    height: 90px; /* **ALTURA FIJA PARA EL HEADER** */
    display: flex;
    justify-content: space-between;
    /* **CLAVE: Centra verticalmente todos los elementos** */
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* **NUEVO ESTILO PARA LA IMAGEN DEL LOGO** */
header .logo-img {
    height: 70px;
    width: auto; /* Mantiene la proporción */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    /* Asegura que los enlaces dentro del nav estén centrados */
    align-items: center;
}

nav ul li a {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffeb3b;
}

/* Ícono de carrito */
.cart-icon {
    position: relative;
    cursor: pointer;
    margin-left: 25px;
}
.cart-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    transition: transform 0.2s ease;
}
.cart-icon:hover svg {
    transform: scale(1.1);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #ffeb3b;
    color: #333;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive menú */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
}

/* ========================
        FOOTER
        =========================*/
footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
}
footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
footer .footer-links a {
    font-weight: 500;
}
footer p {
    font-size: 0.9rem;
    color: #aaa;
}

/* ========================
        BOTÓN SUBIR ARRIBA
        =========================*/
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #7bc043;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 999;
}
#scrollTopBtn:hover {
    background-color: #6aa83e;
    transform: translateY(-3px);
}

/* ========================
        ESTILOS DE DETALLES DEL PRODUCTO 🛍️
        =========================*/
.product-details-page {
    padding-top: 120px; /* Espacio para el header fijo */
    padding-bottom: 60px;
    background-color: #f7f7f7;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-image-area {
    flex: 1 1 400px; /* Permite que la imagen ocupe buen espacio */
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eef8e6; /* Fondo suave para resaltar el producto */
    border-radius: 12px 0 0 12px;
}

.product-image-area img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-info-area {
    flex: 1 1 450px;
    padding: 40px 20px;
}

.product-info-area .category-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #7bc043;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-info-area h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.product-info-area .price {
    font-size: 2rem;
    font-weight: 700;
    color: #3a7d27; /* Verde oscuro fuerte */
    margin-bottom: 25px;
}
.product-info-area .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-info-area p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-selector label {
    font-weight: 600;
    color: #333;
}

.quantity-controls button {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.quantity-controls button:hover {
    background-color: #e0e0e0;
}

.quantity-controls input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
    font-size: 1rem;
}

.btn-add-to-cart {
    background-color: #7bc043;
    color: white;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(123, 192, 67, 0.4);
    display: block;
    width: 100%;
    max-width: 300px;
}
.btn-add-to-cart:hover {
    background-color: #6aa83e;
    transform: translateY(-2px);
}

.product-features {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.product-features h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3a7d27;
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
}
.product-features ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 20px;
}
.product-features ul li::before {
    content: "🌿"; /* Emoji de hoja como viñeta */
    position: absolute;
    left: 0;
    font-size: 1rem;
    line-height: 1;
}

/* ========================
        ESTILOS DE CARRITO DE COMPRAS 🛒
        =========================*/
.cart-page {
    padding-top: 120px; /* Espacio para el header fijo */
    padding-bottom: 80px;
    min-height: 80vh;
    background-color: #f7f7f7;
}

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

.cart-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3a7d27;
    margin-bottom: 30px;
    text-align: center;
}

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

.cart-items-list {
    flex: 2 1 60%; /* Lista de productos ocupa más espacio */
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 20px;
    background-color: #eef8e6;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-image img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.item-details {
    flex-grow: 1;
}
.item-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.item-details p {
    font-size: 0.9rem;
    color: #777;
}

.item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #3a7d27;
    width: 100px;
    text-align: right;
}

.item-quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 20px;
}

.item-quantity-controls input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
}

.btn-remove {
    background: none;
    border: none;
    color: #ff5555;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.btn-remove:hover {
    color: #cc0000;
}

.cart-summary {
    flex: 1 1 30%; /* Resumen de compra ocupa el resto del espacio */
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #7bc043;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 15px;
}
.summary-line span:first-child {
    color: #555;
}
.summary-line.total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #3a7d27;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    margin-top: 20px;
}

.btn-checkout {
    background-color: #ffeb3b;
    color: #333;
    font-weight: bold;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 235, 59, 0.4);
    margin-top: 20px;
}
.btn-checkout:hover {
    background-color: #ffdf00;
    transform: translateY(-2px);
}

/* ========================
        ESTILOS DE LANDING PAGE (VISTA INICIO)
        =========================*/
/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 160px 20px 80px;
    background: linear-gradient(90deg, #0f7b55 0%, #a8e063 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1100px;
    z-index: 2;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero h1 span {
    color: #ffeb3b;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #f9f9f9;
}
.hero .btn-primary {
    background-color: white;
    color: #3a7d27;
    font-weight: bold;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
}
.hero .btn-primary:hover {
    background-color: #e5e5e5;
    transform: translateY(-2px);
}
.hero-image {
    margin-top: 50px;
    position: relative;
}
.hero-image img.main {
    max-width: 100%;
    transition: transform 0.5s ease;
}
.hero-image img.main:hover {
    transform: scale(1.05);
}
.hero-image img.decor {
    position: absolute;
    top: -20px;
    left: -60px;
    width: 100px;
    opacity: 0.3;
    animation: spin-slow 60s linear infinite;
}
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* PRODUCTO DESTACADO */
.featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
}
.featured .eco-label {
    background-color: #a8e063;
    color: #2b572b;
    font-weight: bold;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.featured h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.featured p {
    font-size: 1rem;
    color: #555;
    max-width: 650px;
    margin-bottom: 30px;
}
.featured .btn-buy {
    background-color: #7bc043;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.featured .btn-buy:hover {
    background-color: #6ca539;
    transform: translateY(-2px);
}
.featured .product-image {
    margin-top: 40px;
}

/* SECCIÓN DE PRODUCTOS (GRID) */
.products {
    padding: 80px 20px;
    background-color: white;
}
.products h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #3a7d27;
    margin-bottom: 40px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.product-card {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    height: 230px;
    object-fit: contain;
    margin-bottom: 15px;
}
.product-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
.product-card .btn-secondary {
    background-color: #7bc043;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.product-card .btn-secondary:hover {
    background-color: #6aa83e;
}

/* ========================
        ESTILOS DE NOSOTROS (VISTA SOBRE NOSOTROS)
        =========================*/
.about-page-content {
    padding-top: 80px; /* Espacio para el header fijo */
}
.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}
.about-section.first-section {
    padding-top: 100px;
}
.about-section h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}
.quienes-somos {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.quienes-somos h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a7d27;
    margin-bottom: 15px;
}
.quienes-somos p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}
.quienes-somos .quote-box {
    background-color: #eef8e6;
    padding: 25px;
    border-left: 5px solid #7bc043;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}
.quienes-somos .quote-box p {
    font-style: italic;
    font-weight: 600;
    color: #3a7d27;
    margin: 0;
}
.people-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
    width: 100%;
}
.person-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.person-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.person-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    color: white;
    padding: 30px 15px 15px;
    text-align: left;
}
.person-info strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}
.person-info span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #a8e063;
}
.mision-valores {
    padding: 60px 20px;
    background-color: #f7f7f7;
}
.mision-valores h2 {
    color: #3a7d27;
    font-size: 2rem;
    margin-bottom: 50px;
}
.valor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.valor-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.valor-card .icon-container {
    color: #7bc043;
    font-size: 2.5rem;
    line-height: 1;
}
.valor-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}
.valor-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ========================
        ESTILOS DE CONTACTO (VISTA CONTACTO)
        =========================*/
.contact-section {
    padding-top: 100px;
    padding-bottom: 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-section h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
}
.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}
.contact-form-container p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 30px;
}
.contact-form .input-group {
    margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #7bc043;
    outline: none;
    box-shadow: 0 0 5px rgba(123, 192, 67, 0.5);
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-form .btn-submit {
    background-color: #7bc043;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-form .btn-submit:hover {
    background-color: #6aa83e;
    transform: translateY(-1px);
}
.contact-info-box {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #f9f9f9;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.contact-item .icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    color: #7bc043;
    font-size: 1.5rem;
    line-height: 1;
}
.contact-item .details span {
    display: block;
    font-size: 0.95rem;
    color: #555;
}
.contact-item .details strong {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}
.contact-item a {
    color: #7bc043;
    transition: color 0.3s ease;
}
.contact-item a:hover {
    color: #3a7d27;
}
.contact-item.schedule .details strong {
    font-size: 1rem;
    color: #555;
    font-weight: normal;
}

/* ========================
        ESTILOS DE LOGIN/AUTENTICACIÓN
        =========================*/
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4; /* Fondo suave para destacar el formulario */
    padding-top: 60px; /* Para asegurar que no quede detrás del header fijo */
}
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.login-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #3a7d27; /* Verde oscuro para el título */
    margin-bottom: 30px;
}
.login-form .input-group {
    margin-bottom: 25px;
    text-align: left;
}
.login-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.login-form input:focus {
    border-color: #7bc043;
    outline: none;
    box-shadow: 0 0 5px rgba(123, 192, 67, 0.4);
}
.login-form .btn-login {
    width: 100%;
    background-color: #7bc043;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}
.login-form .btn-login:hover {
    background-color: #6aa83e;
    transform: translateY(-2px);
}
.login-links {
    margin-top: 25px;
    font-size: 0.9rem;
}
.login-links a {
    color: #7bc043;
    font-weight: 600;
    margin: 0 10px;
}
.login-links a:hover {
    color: #3a7d27;
    text-decoration: underline;
}

/* ========================
        RESPONSIVE MEDIA QUERIES - CORREGIDO
        =========================*/
@media (max-width: 900px) {
    /* PRODUCT DETAILS & CART adjustments for smaller screens */
    .product-container {
        flex-direction: column;
    }
    .product-image-area {
        border-radius: 12px 12px 0 0;
        padding: 20px;
    }
    .product-info-area {
        padding: 20px;
    }
    .btn-add-to-cart {
        max-width: none;
    }

    .cart-layout {
        flex-direction: column;
    }
    .cart-items-list {
        padding: 15px;
    }
    .cart-summary {
        padding: 20px;
    }
    .item-image {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
    .cart-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .item-details {
        min-width: 150px;
    }
    .item-quantity-controls {
        margin: 0;
    }
}

@media (max-width: 768px) {
    /* Ajuste del header y logo para móviles */
    header {
        height: 60px; /* Header un poco más bajo en móvil */
        padding: 0 20px;
    }

    header .logo-img {
        height: 50px; /* Logo más pequeño en móvil */
    }

    nav ul {
        display: none; /* Oculto por defecto en móvil */
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 60px; /* Se ajusta a la altura del header móvil */
        right: 0;
        width: 100%;
        background: #7bc043;
        text-align: center;
        padding: 15px 0;
        z-index: 99;
    }

    nav ul.active {
        display: flex; /* Se muestra cuando se activa */
    }

    .menu-toggle {
        display: flex; /* Muestra el ícono hamburguesa */
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .menu-toggle span {
        background-color: #fff;
        height: 3px;
        width: 25px;
        border-radius: 2px;
    }

    .cart-icon {
        margin-left: 15px;
    }
}

@media (min-width: 900px) {
    /* LANDING PAGE (Inicio) */
    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }
    .hero-text {
        flex: 1;
    }
    .hero-image {
        flex: 1;
        margin-top: 0;
    }

    .featured {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        max-width: 1100px;
        margin: 0 auto;
        gap: 60px;
    }
    .featured .text {
        flex: 1;
    }
    .featured .product-image {
        flex: 1;
        margin-top: 0;
    }

    /* CONTACTO */
    .contact-content {
        grid-template-columns: 2fr 1fr; /* Formulario más ancho que la caja de información */
        gap: 60px;
    }
}
.site-footer {
  background: linear-gradient(135deg, #1a5f3f 0%, #0d3b27 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: #d4d4d4;
  line-height: 1.6;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.footer-links i {
  margin-right: 8px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  margin: auto
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  color: #d4d4d4;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffd700;
  color: #1a5f3f;
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: #d4d4d4;
  font-size: 13px;
  margin: 0;
}

.footer-bottom a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 15px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-title {
    font-size: 18px;
  }
}