@import "/public/css/home-global.css";

@import "/public/components/home-components/whatsapp-chat-modal/WhatsAppChatModal.css";
@import "/public/components/home-components/sign-in-modal/SignInModal.css";
@import "/public/components/home-components/site-header/SiteHeader.css";
@import "/public/components/home-components/site-footer/SiteFooter.css";
@import "/public/components/global-components/paginator/Paginator.css";

@import "/public/components/home-components/fragancias/fragancias.css";
@import "/public/components/home-components/product-modal/ProductModal.css";

#site-main{
    background:#28282A;
}
 
.wrapper-fragancias {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 125px;
    position: relative; /* Necesario para el pseudoelemento */
}

.wrapper-fragancias::before {
    content: "";
    position: absolute;
    inset: 0; /* Ocupa toda el área del wrapper */
    background-image: url("/public/multimedia/fondo-fragancias.png");
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1; /* Mantiene el fondo detrás del título */
}

.title {
    padding: 1rem 2.5rem;
    max-width: max-content;
    margin: 0;
    position: relative;
    z-index: 2; /* Asegura que el título esté por encima del fondo */
}

.title span {
    font-size: 2.8rem;
    background: linear-gradient(45deg, #ffffff, #ffffff, #636363);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 3px;
}

#products .title:before {
    position: absolute;
    height: 40px;
    background-color: #28282A;
    width: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.entry-count{
    color:#FAFAFA !important;
}

.ProductModal .product-title{
    color:#D1C2A8 !important;
}


.ProductModal .product-description {
    padding: 1rem;
    color:#b1986d;
    background-color: #F4EFE8;
    margin-bottom: 1rem;
    height: 150px;
    overflow: auto;
}
