        :root {
            --pink: #FE9EC7;
            --soft-pink: #FFF0F6;
            --white: #FFFFFF;
            --text-black: #1a1a1a;
            --champagne: #FDF7F2;
            --gray: #F9F9F9;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }


        .footer-input-group{
display:flex;
gap:10px;
justify-content:center;
}

.footer-input-group input{
padding:12px;
border:1px solid #ddd;
flex:1;
max-width:300px;
}

.footer-input-group button{
padding:12px 25px;
}
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: "Beau Rivage", cursive;
            background-color: var(--white);
            color: var(--text-black);
            overflow-x: hidden;
            font-size: 20px;
        }

        /* Typography Override */
        h1, h2, h3, h4, .heading-font { font-family: "Beau Rivage", cursive; font-weight: 400; }
        .cursive-font { font-family: "Dynalight", cursive; }
        p, span, input, button { font-family: "Beau Rivage", cursive; font-size: 1.2rem; }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: transform 0.4s ease;
            height: 80px;
            display: flex;
            align-items: center;
            padding: 0 5%;
            border-bottom: 1px solid rgba(254, 158, 199, 0.2);
        }

        header.hide { transform: translateY(-100%); }

        .logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
        .logo img { height: 228px; }
        /* NAVIGATION */
#main-nav{
display:flex;
gap:30px;
}

#main-nav a{
cursor:pointer;
font-size:1.2rem;
}

/* HEADER TOOLS */
.header-tools{
display:flex;
align-items:center;
gap:20px;
}

/* SEARCH */
.search-box{
display:flex;
align-items:center;
gap:8px;
border:1px solid #eee;
padding:6px 12px;
border-radius:30px;
}

.search-box input{
border:none;
outline:none;
}

/* CART */
.cart-icon-wrapper{
position:relative;
cursor:pointer;
}

.cart-badge{
position:absolute;
top:-6px;
right:-6px;
background:var(--pink);
color:white;
font-size:12px;
padding:2px 6px;
border-radius:50%;
}

/* HAMBURGER */
.menu-toggle{
display:none;
cursor:pointer;
}

/* MOBILE */
@media (max-width:900px){

#main-nav{
display:none;
flex-direction:column;
width:100%;
margin-top:20px;
}

#main-nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.search-box{
width:100%;
margin-top:10px;
}

.header-tools{
width:100%;
justify-content:space-between;
margin-top:10px;
}

}

        nav { flex: 1; display: flex; justify-content: center; gap: 25px; }
        nav a {
            text-decoration: none;
            color: var(--text-black);
            font-size: 1.4rem;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: var(--pink);
            transition: 0.3s;
        }
        nav a:hover:after { width: 100%; }
        nav a:hover { color: var(--pink); }

        .header-tools { display: flex; align-items: center; gap: 20px; }
        .search-box {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--champagne);
            padding: 5px 15px;
            border-radius: 25px;
            border: 1px solid rgba(254, 158, 199, 0.3);
        }
        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            padding: 5px;
            width: 100px;
            transition: width 0.3s;
        }
        .search-box input:focus { width: 180px; }

        .cart-icon-wrapper { position: relative; cursor: pointer; color: var(--text-black); }
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--pink);
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: sans-serif;
        }

        /* --- HERO SLIDER --- */
        .hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
            background: #fdf2f8;
        }
        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 0 10%;
        }
        .slide.active { opacity: 1; z-index: 1; }
        
        .slide-content {
            max-width: 650px;
            transform: translateX(-50px);
            transition: all 1s ease 0.3s;
            opacity: 0;
        }
        .slide.active .slide-content { transform: translateX(0); opacity: 1; }

        .slide-content h1 { font-size: 5.5rem; margin-bottom: 20px; line-height: 0.9; color: var(--text-black); }
        .slide-content p { font-size: 1.6rem; margin-bottom: 35px; color: #444; }

        .btn {
            display: inline-block;
            padding: 14px 40px;
            background: var(--pink);
            color: var(--white);
            text-decoration: none;
            font-size: 1.5rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(254, 158, 199, 0.3);
        }
        .btn:hover { background: #e889b2; transform: translateY(-3px); }

        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }
        .dot {
            width: 12px;
            height: 12px;
            border: 2px solid var(--pink);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }
        .dot.active { background: var(--pink); width: 35px; border-radius: 10px; }

        /* --- ICON CARDS --- */
        .icon-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 80px 5%;
            gap: 25px;
            background: var(--white);
        }
        .icon-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 30px;
            background: var(--white);
            box-shadow: 0 15px 40px rgba(0,0,0,0.04);
            border: 1px solid var(--soft-pink);
            transition: var(--transition);
        }
        .icon-card:hover { transform: translateY(-5px); border-color: var(--pink); }
        .icon-card img { width: 55px; height: 55px; }

        /* --- POPUP TEXT CARDS --- */
        .popup-section {
            padding: 100px 8%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .popup-card {
            background: var(--champagne);
            color: var(--text-black);
            padding: 50px 30px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid rgba(254, 158, 199, 0.2);
            position: relative;
        }
        .popup-card:hover { background: var(--pink); color: white; }
        .popup-card h3 { font-size: 2.2rem; margin-bottom: 10px; }

        /* --- EDITORIAL SECTION --- */
        .editorial-section {
            padding: 120px 8%;
            display: flex;
            flex-wrap: wrap;
            gap: 80px;
            background: var(--white);
        }
        .editorial-left { flex: 1; min-width: 350px; }
        .editorial-right { flex: 1.5; min-width: 350px; }
        
        .accent-text { color: var(--pink); font-size: 2rem; margin-bottom: 15px; }
        .quote-text { font-size: 4.5rem; line-height: 1; margin-top: 20px; color: var(--text-black); }

        /* --- VIDEO OVERLAP --- */
        .overlap-container {
            position: relative;
                        left:-190px;

            margin-top: 260px;
            height: 450px;
        }
        .video-card {
            width: 105%;
            height: 100%;
            background: var(--soft-pink);
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        }
        .video-card img { width: 100%; height: 100%; object-fit: cover; }
        
        .overlap-text-card {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 75%;
                        right:-190px;
            background: var(--white);
            padding: 60px;
            box-shadow: -20px 20px 60px rgba(254, 158, 199, 0.1);
            z-index: 2;
            border-left: 5px solid var(--pink);
        }

        /* --- PRODUCTS --- */
        .product-section { padding: 100px 8%; }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .product-card {
            text-align: center;
            transition: var(--transition);
            padding: 15px;
            border: 1px solid transparent;
        }
        .product-card:hover { border-color: var(--soft-pink); }
        .product-img {
            width: 100%;
            aspect-ratio: 1/1.25;
            background: var(--champagne);
            margin-bottom: 25px;
            overflow: hidden;
            position: relative;
        }
        .product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
        .product-card:hover .product-img img { transform: scale(1.08); }
        
        .add-to-cart-btn {
            background: var(--pink);
            color: white;
            border: none;
            padding: 12px 25px;
            margin-top: 20px;
            cursor: pointer;
            width: 100%;
            font-size: 1.3rem;
        }

        /* --- BANNER --- */
        .banner-section {
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://i.pinimg.com/736x/f5/ec/1e/f5ec1e8bf93b0581f0695773251e9ebe.jpg') center/cover;
            display: flex;
            align-items: center;
            padding: 0 10%;
        }

        /* --- QUOTE SLIDER --- */
        .quote-parallax {
            background: var(--champagne);
            padding: 180px 0;
            text-align: center;
            overflow: hidden;
            border-top: 1px solid var(--soft-pink);
            border-bottom: 1px solid var(--soft-pink);
        }
        .quote-scroll-container {
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 120px;
            animation: scrollText 35s linear infinite;
        }
        @keyframes scrollText {
            0% { transform: translateX(50%); }
            100% { transform: translateX(-100%); }
        }
        .quote-item { font-size: 5.5rem; color: var(--text-black); }
        .pink-quote { color: var(--pink); font-size: 9rem; vertical-align: middle; }

        /* --- INTERACTIVE IMAGE CARDS --- */
        .interactive-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 100px 8%;
            gap: 20px;
        }
        .int-card {
            position: relative;
            height: 450px;
            overflow: hidden;
            cursor: pointer;
        }
        .int-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
        .int-overlay {
            position: absolute;
            inset: 0;
            background: rgba(254, 158, 199, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            color: white;
            opacity: 0;
            transition: 0.5s;
            text-align: center;
        }
        .int-card:hover .int-overlay { opacity: 1; }
        .int-card:hover img { transform: scale(1.1); }

        /* --- FOOTER --- */
        footer {
            background: #2a2a2a;
            color: var(--white);
            padding: 120px 8% 40px;
        }
        .footer-news { text-align: center; margin-bottom: 100px; }
        .footer-news h2 { font-size: 4.5rem; margin-bottom: 30px; }
        .footer-input-group {
            display: flex;
            justify-content: center;
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 5px;
            border-radius: 40px;
        }
        .footer-input-group input {
            flex: 1;
            padding: 15px 30px;
            border: none;
            outline: none;
            border-radius: 40px;
            color: black;
        }
        .footer-input-group .btn { border-radius: 40px; padding: 10px 35px; }
        
        .footer-main {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 80px;
            border-bottom: 1px solid rgba(254, 158, 199, 0.3);
            padding-bottom: 60px;
            margin-bottom: 30px;
        }
        .footer-col h4 { font-size: 2.2rem; color: var(--pink); margin-bottom: 25px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: white; text-decoration: none; font-size: 1.3rem; transition: 0.3s; cursor: pointer; }
        .footer-col a:hover { color: var(--pink); padding-left: 5px; }

        /* --- MODALS --- */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal.active { display: flex; }
        .modal-content {
            background: var(--white);
            max-width: 950px;
            width: 100%;
            display: flex;
            position: relative;
            box-shadow: 0 30px 100px rgba(0,0,0,0.2);
            border: 1px solid var(--soft-pink);
        }
        .modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            cursor: pointer;
            z-index: 10;
            color: var(--pink);
        }

        /* Pages */
        .page-container { min-height: 80vh; padding-top: 100px; }

        /* --- RESPONSIVE --- */
        @media (max-width: 1100px) {
            .icon-section, .product-grid, .popup-section, .interactive-grid { grid-template-columns: repeat(2, 1fr); }
            .overlap-text-card { width: 65%; }
        }
        @media (max-width: 768px) {
            .icon-section, .product-grid, .popup-section, .footer-main, .interactive-grid { grid-template-columns: 1fr; }
            .slide-content h1 { font-size: 3.5rem; }
            .overlap-text-card { position: static; width: 100%; transform: none; margin-top: 20px; padding: 30px; }
            .video-card { width: 100%; height: 350px; }
        }
