/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #F1E4B2; /* Light beige background */
    color: #1D1D1B; /* Dark text for contrast */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin-top: 80px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background-color: #F1E4B2;
}

/* Product Card Styles */
.producto {
    background-color: #FFFFFF; /* White background for product cards */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.producto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ceadcf; /* Main color for accents */
}

.producto h3 {
    font-size: 1.2em;
    margin: 15px 0 10px;
    color: #1D1D1B; /* Dark text for titles */
}

.producto p {
    font-size: 0.9em;
    color: #1D1D1B; /* Dark text for descriptions */
    margin: 5px 0;
}

.producto .ver-mas {
    background-color: #FB91A3; /* Pink button color */
    color: #FFFFFF; /* White text for buttons */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 15px 0;
    transition: background-color 0.3s ease;
}

.producto .ver-mas:hover {
    background-color: #ceadcf; /* Lighter pink on hover */
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 27, 0.8); /* Dark overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background-color: #FFFFFF; /* White background for popup */
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.popup img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.popup h3 {
    font-size: 1.5em;
    color: #1D1D1B; /* Dark text for popup title */
    margin-bottom: 10px;
}

.popup p {
    font-size: 1em;
    color: #1D1D1B; /* Dark text for popup description */
    margin-bottom: 15px;
}

.popup .comprar {
    background-color: #C4D4A4; /* Green button color */
    color: #1D1D1B; /* Dark text for button */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.popup .comprar:hover {
    background-color: #FCD199; /* Orange hover effect */
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FB91A3; /* Pink close button */
    color: #FFFFFF; /* White text for close button */
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup .close:hover {
    background-color: #ceadcf; /* Lighter pink on hover */
}
#popupDescripcion {
    white-space: pre-wrap; /* Preserve line breaks and wrap text */
    text-align: left; /* Align text to the left */
    margin: 10px 0; /* Add some spacing */
    line-height: 1.5; /* Improve readability */
}

/* Footer and Header Styles */
header, footer {
    padding: 15px 0;
    text-align: center;
}

header a, footer a {
    color: #1D1D1B; /* Dark text for links */
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

header a:hover, footer a:hover {
    color: #FB91A3; /* Pink hover effect for links */
}
.anuncio {
    background-color: #FB91A3;
    color: white;
    height: 80px;
    margin-top: 80px;
    align-content: center;

}
.txt{
    text-align: center;
    margin-left: auto;
    font-weight: bold;

}