
body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    background-color: #f9f5ef;
    color: #2e2a26;
}

.sidebar {
    background-color: #e7dfd8;
    width: 220px;
    padding: 20px;
    position: fixed;
    height: 100%;
    font-family: 'Playfair Display', serif;
}

.sidebar h2 {
    color: #2f3d2f;
    font-weight: bold;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.sidebar li {
    margin: 10px 0;
    cursor: pointer;
    color: #3a342f;
    transition: color 0.3s;
}

.sidebar li:hover {
    color: #6d4c41;
}

.main {
    margin-left: 240px;
    padding: 20px;
    font-family: 'Playfair Display', serif;
}

h1 {
    color: #2e4a2b;
    font-size: 28px;
}

input {
    padding: 8px;
    width: 60%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
}

.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px;
    margin: 10px;
    display: inline-block;
    width: 250px;
    vertical-align: top;
    font-family: 'Playfair Display', serif;
}

.card h3 {
    margin-top: 0;
    font-size: 20px;
    color: #3b302a;
}

.card p {
    font-size: 14px;
}

button {
    background-color: #5c8a57;
    color: white;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    margin-top: 8px;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
}

button:hover {
    background-color: #3e6840;
}

#carrito-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4b8255;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}

#carrito {
    position: fixed;
    right: 0;
    top: 60px;
    width: 300px;
    background-color: white;
    border-left: 1px solid #ccc;
    padding: 20px;
    height: calc(100% - 60px);
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    overflow-y: auto;
    font-family: 'Playfair Display', serif;
}

#carrito.oculto {
    display: none;
}

.product-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        display: flex;
        overflow-x: auto;
        padding: 10px;
        background-color: #f2ede1;
    }

    .sidebar ul {
        display: flex;
        flex-wrap: nowrap;
    }

    .sidebar li {
        margin-right: 15px;
        font-size: 0.9em;
    }

    .main {
        margin-left: 0;
        padding: 10px;
    }

    .card {
        width: 100%;
        margin: 10px 0;
    }

    #carrito {
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-left: none;
        border-top: 1px solid #ccc;
    }

    #carrito-toggle {
        bottom: 80px;
        right: 20px;
        top: auto;
    }

    input {
        width: 100%;
    }

    button {
        width: 100%;
    }
}
