@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #E9C46A;
    --secondary-color: #5C2334;
    --dark-color: #191716;
    --white-color: #ffffff;
    --beige-color: #F1E0C5;
    --gold-gradient: linear-gradient(to bottom, #E9C46A, #D4AF37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    
    background-color: var(--dark-color);
}

/* Header Principal */
.navbar {
    background-color: #555; /* Tono oscuro */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.navbar-logo {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.navbar-logo:hover {
    transform: scale(1.1); /* Efecto al pasar el mouse */
}

.navbar-title {
    font-family: 'Italiana', serif;
    font-size: 24px;
    font-weight: bold;
    color: #e6d5b8;
    letter-spacing: 2px;
    transition: color 0.3s ease-in-out;
}

.navbar-title:hover {
    color: #f1e4c3; /* Un tono más claro al hacer hover */
}

.navbar-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    color: #e6d5b8;
    font-weight: 500;
    transition: text-shadow 0.3s ease-in-out;
}

.navbar-subtitle:hover {
    text-shadow: 0px 0px 8px rgba(230, 213, 184, 0.7);
}

/* Línea decorativa más sutil */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(230, 213, 184, 0.5), transparent);
    filter: blur(1px);
    opacity: 0.7;
}

.main-nav {
    padding: -0.75rem 0;
}

.nav-menu {
    text-align: center;
    background: #222;
    padding: 15px;
    background-color: #332f2d
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin: 0 10%;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-menu a:hover {
    background: #555;
}







/* Hero Section */
.hero {
    width: 100%;
    background-color: var(--dark-color);
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
/*UNIXESSS*/
.products {
    padding: 4rem 2rem;
    background-color: var(--white-color);
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.title-container h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 400;
    margin: 0;
}

.title-container h1 {
    font-size: 4.5rem;
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 3rem;
}

.slider-wrapper {
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%;
}

.slider-section {
    width: 50%;
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    justify-content: center;
    align-items: stretch;
}

.product-card {
    flex: 1;
    background-color: #E9C46A;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    color: #191716;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #191716;
    line-height: 1.2;
}

.product-info p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    flex-grow: 1;
}

.buy-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #F1E0C5;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    color: #191716;
    cursor: pointer;
    font-size: 1rem;
    font-family: Montserrat;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.buy-button:hover {
    background-color: #AF9B90;
    transform: scale(1.05);
}

/* Estilos mejorados para las flechas del slider */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    /* Eliminando el fondo circular o cualquier sombra */
    background-color: transparent !important;
    box-shadow: none;
}

.slider-arrow svg {
    width: 40px;
    height: 40px;
    color: #E9C46A;
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,0.3));
}

.slider-arrow:hover {
    opacity: 0.7;
}

.slider-arrow:active {
    opacity: 0.5;
}

.slider-arrow:focus {
    outline: none;
}

.slider-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.control-button {
    width: 3rem;
    height: 0.5rem;
    background-color: #E9C46A;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.control-button:hover {
    opacity: 0.8;
}

.control-button.active {
    opacity: 1;
    width: 4rem;
}

/*PERFUMES MUJERR*/
.products3 {
    padding: 4rem 2rem;
    background-color: var(--white-color);
}

.products-container3 {
    max-width: 1200px;
    margin: 0 auto;
}

.title-container3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.title-container3 h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 400;
    margin: 0;
}

.title-container3 h1 {
    font-size: 4.5rem;
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.slider-container3 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 3rem;
}

.slider-wrapper3 {
    overflow: hidden;
}

.slider3 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.slider-section3 {
    width: 33.333%;
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    justify-content: center;
    align-items: stretch;
}

.product-card3 {
    flex: 1;
    background-color: var(--secondary-color);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.product-image3 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.product-card3:hover {
    transform: translateY(-10px);
}

.product-card3:hover .product-image3 {
    transform: scale(1.05);
}

.product-info3 {
    padding: 1.5rem;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-info3 h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.product-info3 p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    flex-grow: 1;
}

.buy-button3 {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #191716;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-family: Montserrat;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.buy-button3:hover {
    background-color: #AF9B90;
    transform: scale(1.05);
}

.slider-arrow3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    /* Eliminando el fondo circular o cualquier sombra */
    background-color: transparent !important;
    box-shadow: none;
    
}

.slider-arrow3 svg {
    width: 40px;
    height: 40px;
    color: #5C2334;
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,0.3));
}

.slider-arrow3:hover {
    opacity: 0.7;
}

.slider-arrow3:active {
    opacity: 0.5;
}

.slider-arrow3:focus {
    outline: none;
}

.slider-arrow3.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-arrow3 {
    left: 10px;
}

.next-arrow3 {
    right: 10px;
}

.control-button3 {
    width: 3rem;
    height: 0.5rem;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.control-button3:hover {
    opacity: 0.8;
}

.control-button3.active {
    opacity: 1;
}

.ver-mas {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.ver-mas:hover {
    transform: translateY(-2px);
}


.banner-container {
    position: relative;
    width: 100%;
    max-width: 1920px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15%; 
    z-index: 2;
}

.text-left {
    text-align: left;
    padding-right: 2rem;
    margin-left: -9rem; 
}

.text-right {
    text-align: right;
    padding-left: 2rem;
    margin-right: -8rem;
}

.banner-title {
    font-size: 5.5rem;
    font-weight: 500;
    color: var(--white-color);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-title2 {
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--white-color);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-title3 {
    font-size: 5.5rem;
    font-weight: 500;
    color: var(--white-color);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
/*HOMBRES*/
.products2 {
    padding: 4rem 2rem;
    background-color: var(--white-color);
}

.products-container2 {
    max-width: 1200px;
    margin: 0 auto;
}

.title-container2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.title-container2 h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 400;
    margin: 0;
}

.title-container2 h1 {
    font-size: 4.5rem;
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.slider-container2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 3rem;
}

.slider-wrapper2 {
    overflow: hidden;
}

.slider2 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.slider-section2 {
    width: 33.333%;
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    justify-content: center;
    align-items: stretch;
}

.product-card2 {
    flex: 1;
    background-color: #191716;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.product-image2 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.product-card2:hover {
    transform: translateY(-10px);
}

.product-card2:hover .product-image2 {
    transform: scale(1.05);
}

.product-info2 {
    padding: 1.5rem;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-info2 h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.product-info2 p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    flex-grow: 1;
}

.buy-button2 {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #FFF0DB;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    color: #000;
    cursor: pointer;
    font-size: 1rem;
    font-family: Montserrat;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.buy-button2:hover {
    background-color: #AF9B90;
    transform: scale(1.05);
}

.slider-arrow2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    background-color: transparent !important;
    box-shadow: none;
}

.slider-arrow2 svg {
    width: 40px;
    height: 40px;
    color: #191716;
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,0.3));
}

.slider-arrow2:hover {
    opacity: 0.7;
}

.slider-arrow2:active {
    opacity: 0.5;
}

.slider-arrow2:focus {
    outline: none;
}

.slider-arrow2.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-arrow2 {
    left: 10px;
}

.next-arrow2 {
    right: 10px;
}

.ver-mas2 {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    padding: 0.8rem 2rem;
    background-color: #191716;
    color: var(--white-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.ver-mas2:hover {
    transform: translateY(-2px);
}



/*Este es el footer*/

.footer {
    background-color: var(--dark-color);
    padding: 3rem 0;
    color: var(--white-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 100px;
    height: 130px;
}

.logo-text {
    border-left: 1px solid var(--white-color);
    padding-left: 1rem;
}

.logo-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white-color);
    opacity: 0.8;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--white-color);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}






/* 2000px+ (4K and Ultra-wide screens) */
@media screen and (min-width: 2000px) {
    .products-container, 
    .products-container2, 
    .products-container3 {
        max-width: 1800px;
        padding: 0 2rem;
    }

    .banner {
        height: 1200px;
    }

    .banner-title, 
    .banner-title2, 
    .banner-title3 {
        font-size: 7rem;
    }

    .product-card, 
    .product-card2, 
    .product-card3 {
        min-height: 600px;
    }

    .product-image, 
    .product-image2, 
    .product-image3 {
        height: 450px;
    }

    .title-container h1,
    .title-container2 h1,
    .title-container3 h1 {
        font-size: 5.5rem;
    }

    .product-info h3,
    .product-info2 h3,
    .product-info3 h3 {
        font-size: 2rem;
    }

    .buy-button,
    .buy-button2,
    .buy-button3 {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }
}

/* 1500px - 1999px (Desktop) */
@media screen and (max-width: 1500px) {

    .banner-container {
        padding: 0 10%;
    }

    .banner-title, 
    .banner-title2, 
    .banner-title3 {
        font-size: 4.5rem;
    }

    .title-container h1,
    .title-container2 h1,
    .title-container3 h1 {
        font-size: 4rem;
    }

    

}

/* 1250px - 1499px (Small Desktop) */
@media screen and (max-width: 1250px) {

    .banner {
        height: 800px;
    }

    .slider-section, 
    .slider-section2, 
    .slider-section3 {
        gap: 1.5rem;
    }


    .title-container h1,
    .title-container2 h1,
    .title-container3 h1 {
        font-size: 3.5rem;
    }
}

/* 1020px - 1249px (Tablet Landscape) */
@media screen and (max-width: 1020px) {
    .navbar {
        padding: 15px 30px;
    }

    .banner-title, 
    .banner-title2, 
    .banner-title3 {
        font-size: 3.5rem;
    }

    .text-left {
        margin-left: -3rem;
    }

    .text-right {
        margin-right: -3rem;
    }



}

/* 900px - 1019px (Tablet Portrait) */
@media screen and (max-width: 900px) {
    .products-container, 
    .products-container2, 
    .products-container3 {
        max-width: 800px;
    }

    .banner-container {
        flex-direction: column;
        gap: 2rem;
    }

    .text-left, 
    .text-right {
        margin: 0;
        padding: 0;
        text-align: center;
    }


    .title-container h1,
    .title-container2 h1,
    .title-container3 h1 {
        font-size: 3rem;
    }
}

/* 768px - 899px (Small Tablet) */
@media screen and (max-width: 768px) {
    .navbar-title {
        font-size: 20px;
    }

    .navbar-subtitle {
        font-size: 18px;
    }

    .banner {
        height: 600px;
    }

    .nav-menu a {
        margin: 0 3%;
        font-size: 16px;
        padding: 8px 12px;
    }

    .slider-container, 
    .slider-container2, 
    .slider-container3 {
        padding: 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }
}

/* 600px - 767px (Large Mobile) */
@media screen and (max-width: 600px) {
    .slider-section, 
    .slider-section2, 
    .slider-section3 {
        grid-template-columns: 1fr;
    }

    .banner-title, 
    .banner-title2, 
    .banner-title3 {
        font-size: 2.8rem;
    }

    .nav-menu {
        padding: 10px;
    }

    .nav-menu a {
        display: block;
        margin: 8px 0;
    }

    .title-container h1,
    .title-container2 h1,
    .title-container3 h1 {
        font-size: 2.5rem;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
    }
}

/* 480px - 599px (Medium Mobile) */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .navbar-logo {
        width: 45px;
    }

    .banner {
        height: 500px;
    }

    .banner-title, 
    .banner-title2, 
    .banner-title3 {
        font-size: 2.3rem;
    }


    .buy-button,
    .buy-button2,
    .buy-button3 {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
}

/* 320px - 479px (Small Mobile) */
@media screen and (max-width: 320px) {
    .navbar-title {
        font-size: 18px;
    }

    .navbar-subtitle {
        font-size: 16px;
    }

    .banner {
        height: 400px;
    }

    .banner-title, 
    .banner-title2, 
    .banner-title3 {
        font-size: 2rem;
    }


    .title-container h1,
    .title-container2 h1,
    .title-container3 h1 {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}

/* < 320px (Extra Small Mobile) */
@media screen and (max-width: 280px) {
    .navbar-title {
        font-size: 16px;
    }

    .navbar-subtitle {
        font-size: 14px;
    }

    .banner {
        height: 350px;
    }

    .banner-title, 
    .banner-title2, 
    .banner-title3 {
        font-size: 1.8rem;
    }

    .product-info h3,
    .product-info2 h3,
    .product-info3 h3 {
        font-size: 1.2rem;
    }

    .buy-button,
    .buy-button2,
    .buy-button3 {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 40px;
        height: 40px;
    }

    .whatsapp-float img {
        width: 22px;
        height: 22px;
    }
}








/* Tablets y pantallas medianas (1020px) */
@media screen and (max-width: 1020px) {
    .slider {
        width: 600%;
    }

    .slider-section {
        width: 100%;
    }

    .product-card {
        flex: 1 1 100%;
    }
}

/* Tablets más pequeñas (768px - 720px) */
@media screen and (max-width: 768px), (max-width: 720px) {
    .slider {
        width: 600%;
    }

    .slider-section {
        width: 100%;
    }

    .product-card {
        flex: 1 1 100%;
    }
}

/* Móviles (480px) */
@media screen and (max-width: 480px) {
    .slider {
        width: 600%;
    }

    .slider-section {
        width: 100%;
    }

    .product-card {
        flex: 1 1 100%;
    }
}





/*mujer*/

@media screen and (max-width: 1020px) {
    .slider3 {
        width: 900%;
    }

    .slider-section3 {
        width: 100%;
    }

    .product-card3 {
        flex: 1 1 100%;
    }

    .products3 {
        padding: 2rem 1rem;
    }
}

/* Tablets más pequeñas (768px - 720px) */
@media screen and (max-width: 768px), (max-width: 720px) {
    .slider3 {
        width: 900%;
    }

    .slider-section3 {
        width: 100%;
    }

    .product-card3 {
        flex: 1 1 100%;
    }

    .title-container3 h1 {
        font-size: 3rem;
    }
}

/* Móviles (480px) */
@media screen and (max-width: 480px) {
    .slider3 {
        width: 900%;
    }

    .slider-section3 {
        width: 100%;
    }

    .product-card3 {
        flex: 1 1 100%;
        min-height: 400px;
    }

    .title-container3 h1 {
        font-size: 2.5rem;
    }

    .title-container3 h2 {
        font-size: 1.2rem;
    }

    .product-info3 h3 {
        font-size: 1.5rem;
    }

    .buy-button3 {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}










@media screen and (max-width: 720px) {
    /* PERFUMES UNISEX */
    .product-card {
        flex: 1 1 100%;
        min-height: auto;
    }

    .product-info h3, .product-info3 h3 {
        font-size: 1.2rem;
    }

    .buy-button, .buy-button3 {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
    }

    /* PERFUMES MUJER */
    .product-card3 {
        flex: 1 1 100%;
        min-height: auto;
    }

    .title-container h1, .title-container3 h1 {
        font-size: 2rem;
    }
}


/*HOMBRES*/

@media screen and (max-width: 1020px) {
    .slider2 {
        width: 900%;
    }

    .slider-section2 {
        width: 100%;
    }

    .product-card2 {
        flex: 1 1 100%;
    }

    .products2 {
        padding: 2rem 1rem;
    }
}

/* Tablets más pequeñas (768px - 720px) */
@media screen and (max-width: 768px), (max-width: 720px) {
    .slider2 {
        width: 900%;
    }

    .slider-section2 {
        width: 100%;
    }

    .product-card2 {
        flex: 1 1 100%;
    }

    .title-container2 h1 {
        font-size: 3rem;
    }
}

/* Móviles (480px) */
@media screen and (max-width: 480px) {
    .slider2 {
        width: 900%;
    }

    .slider-section2 {
        width: 100%;
    }

    .product-card2 {
        flex: 1 1 100%;
        min-height: 400px;
    }

    .title-container2 h1 {
        font-size: 2.5rem;
    }

    .title-container2 h2 {
        font-size: 1.2rem;
    }

    .product-info2 h3 {
        font-size: 1.5rem;
    }

    .buy-button2 {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}