/* Variables */
:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #9c27b0;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-color);
    color: #333;
    line-height: 1.6;
}

/* Barre de navigation */
.navbar {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.logo img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.logo:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Menu principal */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 1.5rem;
    position: relative;
}

.nav-item a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-item a:hover {
    color: var(--primary-color);
}

.nav-item a:hover::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--light-color) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-contact::after {
    display: none;
}

/* Menu mobile (hamburger) */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Section Hero */
.hero {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: var(--radius);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--light-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 35px;
        width: 35px;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }
    
    .logo img {
        margin-right: 0;
    }
}



/* ACCUEIL */

/* Variables */
:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #9c27b0;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-color);
    color: var(--dark-color);
    line-height: 1.6;
}

/* Section Carrousel */
.carousel-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 80vh;
    max-height: 800px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 500px;
    background-color: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: var(--radius);
    color: var(--light-color);
    transform: translateX(-50px);
    transition: var(--transition);
    opacity: 0;
}

.carousel-slide.active .carousel-content {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.carousel-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.carousel-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.carousel-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators .indicator.active {
    background-color: var(--light-color);
    transform: scale(1.2);
}

/* Section Icônes de Menu */
.menu-icons-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-icons-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.menu-icons-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.menu-icons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-icon {
    background-color: var(--light-color);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-img {
    width: 80px;
    height: 80px;
    background-color: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.menu-icon h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.menu-icon p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.visit-btn:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.visit-btn i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .carousel-content {
        left: 5%;
        max-width: 400px;
        padding: 1.5rem;
    }
    
    .carousel-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        height: 70vh;
    }
    
    .carousel-content {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%) translateY(50px);
        width: 90%;
        max-width: none;
        text-align: center;
    }
    
    .carousel-slide.active .carousel-content {
        transform: translateX(-50%) translateY(0);
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .menu-icons-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-section {
        height: 60vh;
    }
    
    .carousel-content h2 {
        font-size: 1.5rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .menu-icons-container {
        grid-template-columns: 1fr;
    }
    
    .menu-icon {
        padding: 1.5rem 1rem;
    }
}



/* ANATOMIE */
/* Section Hero */
.anatomie-hero {
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), 
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Section Parties Anatomie */
.anatomie-sections {
    padding: 4rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.anatomie-part {
    display: flex;
    margin-bottom: 4rem;
    background-color: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.anatomie-part:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.anatomie-part.reverse {
    flex-direction: row-reverse;
}

.part-image {
    flex: 1;
    min-height: 300px;
}

.part-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.part-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.part-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.part-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.anatomy-details {
    list-style: none;
    margin-top: 1rem;
}

.anatomy-details li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.anatomy-details i {
    font-size: 0.5rem;
    color: var(--primary-color);
}

/* Section CTA */
.anatomie-cta {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.anatomie-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.anatomie-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cta-btn.primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.cta-btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.cta-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .part-content {
        padding: 1.5rem;
    }
    
    .part-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .anatomie-hero {
        height: 50vh;
    }
    
    .anatomie-part, .anatomie-part.reverse {
        flex-direction: column;
    }
    
    .part-image {
        min-height: 250px;
    }
    
    .anatomie-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .anatomie-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .part-content h2 {
        font-size: 1.5rem;
    }
    
    .part-description p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
    }
}




/* ORGASME */


/* Section Hero */
.orgasme-hero {
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), 
                url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Section Types d'Orgasmes */
.orgasme-types {
    padding: 4rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.orgasme-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.orgasme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.orgasme-card.reverse {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    min-height: 350px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.card-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.orgasme-details {
    list-style: none;
    margin-top: 1rem;
}

.orgasme-details li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.orgasme-details i {
    color: var(--primary-color);
    min-width: 20px;
}

/* Section Conseils */
.orgasme-tips {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0;
}

.tips-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.orgasme-tips h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.tip-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tip-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Section CTA */
.orgasme-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.orgasme-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.orgasme-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .orgasme-hero {
        height: 50vh;
    }
    
    .orgasme-card, .orgasme-card.reverse {
        flex-direction: column;
    }
    
    .card-image {
        min-height: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .orgasme-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-description p {
        font-size: 1rem;
    }
    
    .orgasme-cta h2 {
        font-size: 2rem;
    }
    
    .orgasme-cta p {
        font-size: 1rem;
    }
}




/* SEX-TOYS */

/* Section Hero */
.sex-toys-hero {
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), 
                url('Sex-toys/banniere.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Section Filtres */
.product-filters {
    background-color: var(--light-color);
    padding: 2rem 0;
    box-shadow: var(--shadow);
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-group {
    flex: 1;
    min-width: 250px;
}

.filter-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.filter-list {
    list-style: none;
}

.filter-list li {
    padding: 0.7rem 0;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

.filter-list li:last-child {
    border-bottom: none;
}

.filter-list li:hover,
.filter-list li.active {
    color: var(--primary-color);
    font-weight: 500;
}

.price-range {
    padding: 1rem 0;
}

.price-range input {
    width: 100%;
    margin-bottom: 0.5rem;
}

.price-values {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.feature-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.feature-checkboxes input {
    accent-color: var(--primary-color);
}

/* Section Produits */
.sex-toys-products {
    padding: 3rem 0;
}

.products-header {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.products-header h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.sorting-options select {
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    background-color: var(--light-color);
    font-size: 0.9rem;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.carousel-images {
    position: relative;
    height: 100%;
}

.carousel-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-images img.active {
    opacity: 1;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-controls button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-controls button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators .indicator.active {
    background-color: var(--light-color);
    transform: scale(1.3);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background-color: rgba(233, 30, 99, 0.08);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    color: var(--primary-dark);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.product-contact {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.product-contact:hover {
    background-color: var(--primary-dark);
}

/* Pagination */
.products-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.pagination-btn.next {
    width: auto;
    padding: 0 1.5rem;
    border-radius: 30px;
}

.pagination-btn:hover:not(.active) {
    background-color: var(--light-gray);
}

/* Section Newsletter */
.sex-toys-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    color: var(--light-color);
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.sex-toys-newsletter h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.sex-toys-newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0 2rem;
    background-color: var(--dark-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: rgba(26, 26, 46, 0.9);
}

.privacy-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .sex-toys-hero {
        height: 40vh;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-carousel {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .sex-toys-hero {
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        padding: 0.9rem;
    }
}




/* LINGERIE */

/* Section Hero */
.lingerie-hero {
    background: linear-gradient(rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.6)), 
                url('LINGERIE/BANIERE.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* Section Catégories */
.lingerie-categories {
    background-color: var(--light-color);
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.category:hover, .category.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Section Produits */
.lingerie-products {
    padding: 3rem 0;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.lingerie-card {
    background-color: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.lingerie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.product-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-images {
    position: relative;
    height: 100%;
}

.carousel-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-images img.active {
    opacity: 1;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
}

.carousel-controls button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators .indicator.active {
    background-color: var(--light-color);
    transform: scale(1.3);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.quick-view-btn {
    padding: 0.8rem;
    background-color: var(--dark-color);
    color: var(--light-color);
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.quick-view-btn:hover {
    background-color: var(--primary-color);
}

/* Bouton Voir Plus */
.see-more-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.see-more-btn {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.see-more-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.4);
}

/* Section Guide Tailles */
.size-guide {
    background-color: var(--light-color);
    padding: 4rem 0;
    margin-top: 3rem;
}

.size-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.size-content {
    flex: 1;
}

.size-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.size-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.size-steps {
    list-style: none;
    margin: 2rem 0;
}

.size-steps li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.size-steps i {
    width: 35px;
    height: 35px;
    background-color: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.guide-btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.guide-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.size-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.size-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.size-image:hover img {
    transform: scale(1.05);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--light-color);
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius);
    overflow: hidden;
    transform: translateY(-50px);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-carousel {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .size-container {
        flex-direction: column;
    }
    
    .size-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lingerie-hero {
        height: 50vh;
    }
    
    .product-carousel {
        height: 300px;
    }
    
    .categories-container {
        gap: 0.5rem;
    }
    
    .category {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .lingerie-hero {
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .product-carousel {
        height: 350px;
    }
    
    .size-content h2 {
        font-size: 1.8rem;
    }
}




/* PARFUMERIE */

/* Section Hero */
.parfum-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('PARFUMERIE/banniere.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 2rem;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.6rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    opacity: 0.9;
    font-weight: 300;
}

/* Section Collections */
.collections {
    padding: 4rem 0;
}

.collections-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-card {
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.collection-card:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('PARFUMERIE/A1.jpeg');
    background-size: cover;
    background-position: center;
}

.collection-card:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('PARFUMERIE/A2.jpeg');
    background-size: cover;
    background-position: center;
}

.collection-card:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('PARFUMERIE/A3.jpeg');
    background-size: cover;
    background-position: center;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: var(--light-color);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.collection-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.collection-content p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Section Produits */
.parfum-products {
    padding: 4rem 0;
    background-color: var(--light-beige);
}

.products-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.products-header h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    position: relative;
}

.products-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter {
    padding: 0.7rem 1.5rem;
    background-color: var(--light-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    box-shadow: var(--shadow);
}

.filter:hover, .filter.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.parfum-card {
    background-color: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.parfum-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.parfum-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.parfum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.parfum-card:hover .parfum-image img {
    transform: scale(1.05);
}

.parfum-info {
    padding: 1.8rem;
    text-align: center;
}

.parfum-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
}

.parfum-notes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.parfum-notes span {
    padding: 0.4rem 0.8rem;
    background-color: rgba(233, 30, 99, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.parfum-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.add-to-cart {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--dark-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--primary-color);
}

/* Bouton Voir Plus */
.see-more-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.see-more-btn {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.see-more-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Section Guide Olfactif */
.scent-guide {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.guide-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.guide-container p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guide-step {
    background-color: var(--light-beige);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.guide-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.guide-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.guide-step p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Section Newsletter */
.parfum-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
    color: var(--light-color);
    text-align: center;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.parfum-newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.parfum-newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0 2.5rem;
    background-color: var(--dark-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: rgba(26, 26, 46, 0.9);
}

.privacy-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .parfum-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .parfum-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .parfum-hero {
        height: 60vh;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .parfum-hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .collections-container {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .parfum-newsletter h2 {
        font-size: 2rem;
    }
}




/* CONTACT*/

.contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(138, 43, 226, 0.15);
    overflow: hidden;
}

.contact-header {
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-content {
    display: flex;
    padding: 40px;
    gap: 40px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    background: #f9f5ff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e1f7;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: #8a2be2;
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    color: #5a189a;
}

.info-card p {
    color: #666;
    font-size: 1.05rem;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #5a189a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e1f7;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8a2be2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-right: 5px;
}

.checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-group a {
    color: #8a2be2;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .contact-header {
        padding: 30px 20px;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 15px;
    }
    
    .contact-header {
        padding: 25px 15px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        padding: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}




/* Messages d'erreur */
.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Message de succès */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.success-content i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.success-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.success-content button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.success-content button:hover {
    background: #219653;
}




/* OFFRE SPECIAL */

.pub-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #5a189a;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pub-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pub-slide {
    display: none;
    animation: fade 0.5s ease-in-out;
}

.pub-slide.active {
    display: flex;
}

.pub-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pub-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #8a2be2;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pub-content {
    flex: 1;
    background: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pub-title {
    font-size: 2.2rem;
    color: #5a189a;
    margin-bottom: 20px;
}

.pub-price {
    font-size: 1.8rem;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 30px;
}

.pub-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8a2be2, #6a0dad);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.pub-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-btn:hover {
    background: white;
}

.slider-btn i {
    font-size: 1.2rem;
    color: #5a189a;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Animation */
@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .pub-slide.active {
        flex-direction: column;
    }
    
    .pub-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .pub-section {
        padding: 60px 15px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .pub-title {
        font-size: 1.8rem;
    }
    
    .pub-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pub-section {
        padding: 40px 10px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .pub-content {
        padding: 30px 20px;
    }
    
    .pub-title {
        font-size: 1.5rem;
    }
    
    .pub-price {
        font-size: 1.3rem;
    }
    
    .pub-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}




/* FOOTER STYLES */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #fff;
    padding-top: 60px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col {
    padding: 0 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.footer-description {
    color: #ddd;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a:hover {
    color: #ff6b6b;
    padding-left: 5px;
}

.footer-links li a i {
    color: #8a2be2;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ddd;
}

.contact-info li i {
    color: #8a2be2;
    min-width: 20px;
}

.newsletter {
    margin-top: 30px;
}

.newsletter p {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5252;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    padding: 25px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #ff6b6b;
}

/* Bouton retour en haut */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #ff5252;
    transform: translateY(-5px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .footer-links li a {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}