/* assets/css/style.css */

/* General */
body {
    background: #18181a;
    color: #e4ded8;
    font-family: 'Montserrat', Arial, sans-serif;
}

a {
    color: #bb567d;
    text-decoration: none;
}

a:hover {
    color: #d4a373;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #18181a;
    border-bottom: 1px solid #22222a;
}

.navbar .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #d4a373;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #e4ded8;
    font-weight: 500;
    font-size: 1rem;
}

.nav-links li a:hover {
    color: #bb567d;
}

/* Icons */
.icons a {
    margin-left: 1.2rem;
    color: #bb567d;
    font-size: 1.2rem;
}

.icons a:hover {
    color: #d4a373;
}

/* Hero/Slider */
.hero-section {
    background: #22222a;
    padding: 3rem 1rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #212124;
}

.hero-section h1 {
    font-size: 2.7rem;
    color: #e4ded8;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    color: #b6b0a4;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.btn-principal {
    background: #bb567d;
    color: #fff;
    border-radius: 30px;
    padding: 0.7rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: background 0.3s;
}

.btn-principal:hover {
    background: #d4a373;
    color: #18181a;
}

/* Cards Productos */
.seccion-productos {
    padding: 2.5rem 0;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.producto-card {
    background: #212124;
    border: 1px solid #bb567d;
    border-radius: 18px;
    padding: 1.2rem 1rem 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px 0 rgba(34, 34, 42, 0.07);
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}

.producto-card.hovered,
.producto-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #d4a373;
    box-shadow: 0 8px 32px 0 rgba(212, 163, 115, 0.09);
}

.producto-card img {
    max-width: 90%;
    border-radius: 12px;
    margin-bottom: 0.7rem;
}

.producto-card h5 {
    color: #e4ded8;
    margin-bottom: 0.3rem;
    font-size: 1.08rem;
    font-weight: 600;
}

.producto-card p {
    color: #bb567d;
    font-weight: 500;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.producto-card button {
    background: #bb567d;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 0.5rem 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.producto-card button:hover {
    background: #d4a373;
    color: #18181a;
}

.tachado {
    color: #b6b0a4;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.badge-organico {
    background: #2c4430;
    color: #e4ded8;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: inline-block;
}

/* Newsletter */
.newsletter {
    background: #212124;
    padding: 2rem 1rem 2.5rem 1rem;
    text-align: center;
}

.newsletter h3 {
    color: #d4a373;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.newsletter input[type="email"] {
    background: #191920;
    color: #e4ded8;
    border: 1px solid #bb567d;
    padding: 0.6rem 1rem;
    border-radius: 22px;
    font-size: 1rem;
}

.newsletter button {
    background: #bb567d;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    transition: background 0.2s;
}

.newsletter button:hover {
    background: #d4a373;
    color: #18181a;
}

/* Footer */
footer {
    background: #151518;
    color: #e4ded8;
    padding: 2.5rem 1rem 1.2rem 1rem;
}

.footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-cols > div {
    flex: 1 1 180px;
    min-width: 160px;
}

.footer-cols h5 {
    color: #bb567d;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

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

.footer-cols ul li {
    margin-bottom: 0.7rem;
}

.footer-cols ul li a {
    color: #d4a373;
    font-size: 0.97rem;
}

.footer-cols ul li a:hover {
    color: #bb567d;
}

.copy {
    text-align: center;
    margin-top: 2rem;
    color: #b6b0a4;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .footer-cols {
        flex-direction: column;
        align-items: flex-start;
    }
    .productos-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}
