body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
/*--------------------------wsp button*/
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}
.whatsapp-button .wsp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}
.whatsapp-button .wsp:hover {
    transform: scale(1.1);
}
/*---------------------Encabezado */
.header {
    background-color: #f5f5dc;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0 3rem 0 0;
}
.logo .img {
    width: 40%;
    max-width: 120px;
    margin-left: auto;
}
.title {
    font-size: 5rem;
    color: #333333;
    margin: 0;
    flex: 2;
    text-align: justify;
    font-family: "playfair Display",serif;
}
/*---------------------------------------Menú de navegación */
.nav {
    background-color: #ffffff;
    padding: 30px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    position: sticky;
    top: 1px;
    z-index: 30;
}
.nav__menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.nav__item {
    margin: 0 5px;
}
.nav__link {
    font-size: 1.3rem;
    color: #333333;
    text-decoration: none;
    padding: 8px 10px;
    transition: 0.3s ease, color 0.3s ease;
}
.nav__link:hover {
    background-color: #666;
    color: #ffffff;
    border-radius: 5px;
}
/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .header {
        flex-direction:row;
        align-items: center;
        padding: 20px;
    }
    .logo {
        margin-bottom: 10px;
        justify-content: center;
    }
    .title {
        font-size: 2.5rem;
        text-align: center;
    }
    .nav__menu {
        flex-direction: row;
        align-items: center;
    }
    .nav__item {
        margin: 10px 0;
    }
}
@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    .nav__link {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
}
/*----------------------------------------------PRODUCTS----------------*/
.product-catalog {
    padding: 20px;
    background-color: #f5f5dc;
}

.catalog-header {
    text-align: center;
    margin-bottom: 20px;
}

.catalog-title {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Diseño responsive */
    gap: 20px;
    padding: 10px;
}

.product-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.product-image {
    max-width: 100%;
    height: 18rem;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.product-name {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #333;
}
.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.product-description {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.5;
    text-align: left;
}
.order-button{
    padding: 10px 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}
.zelle--button{
    padding: 10px 15px;
    background-color: #6d1ed4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}
.zelle--button:hover {
    background-color:#6d5ed4;;
}
.order-button:hover {
    background-color: #080;
}
/*----------------------------------RESPONSIVE*/
/* Ajustes para texto grande en pantallas pequeñas */
@media (max-width: 768px) {
    .product-catalog {
        flex-direction: column;
    }
    .product-grid {
        flex-direction: column;
    }
    .product-item {
        width: 90%;
        margin: 10px auto;
    }
}
@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    .main__text {
        font-size: 1.5rem;
    }
    .main__description {
        font-size: 0.9rem;
    }
    .product-description {
        font-size: 0.9rem;
        width: 100%;
    }
    .order-button .zelle--button {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
    }
}
/*------------------------FOOTER*/
.site-footer {
    background-color: #f5f5dc;
    padding: 20px 0;
    text-align: center;
    color: #333;
}
.footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333333;
}
.social-links {
    margin-bottom: 15px;
}
.image{
    width: 30px;
    height: 30px;
}
.social-link {
    margin: 0 10px;
    font-size: 1.2rem;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.social-link:hover {
    color: #666;
}
.footer-address {
    font-size: 1rem;
    color: #666;
}
.footer-address .text__address {
    margin: 0;
}
.privacity {
    text-align: left;
}
.privacity__text .privacity__link{
    color: #666;
    text-decoration: none;
}
.footer-brand {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.brand-link {
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.brand-link:hover {
    color: #666666;
}
.contact__content {
    text-align: left;
}
.contact__title {
    color: #666;
    line-height: 25px;
    font-size: 1rem;
}
/*----------------------NEW MODIFICATIONS//////////////////////////*/
@media (max-width: 768px) {
    .main__text {
        font-size: 3rem;
        text-align: left;
        width: 100%;
    }
    .main__description {
        font-size: 1.2rem;
        width: 100%;
        margin: 0;
    }
    .main__content {
        flex-direction: column;
    }
    .main__content-img {
        max-width: 500px;
        text-align: center;
        margin: auto;
    }
    .img__promo {
        width: auto;
        height: auto;
    }
    .button--promo,.button--promo__zelle {
        width: 80%;
        font-size: 1.5rem;
    }
    .products-section {
        flex-direction:row;
    }
    .products-list {
        flex-direction:row;
    }
    .product-item {
        width: 60%;
        margin: auto;
    }
}
@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    .main__text {
        font-size: 1.5rem;
    }
    .main__description {
        font-size: 0.9rem;
    }
    .product-description {
        font-size: 0.7rem;
        width: 100%;
    }
    .order-button .zelle--button {
        width: 100%;
        padding: 10px;
        font-size: 1em;
    }
}