        :root {
            --champagne: #ffc694;
            --peach: #FFB7A5;
            --rose: #8d0426;
            --gold: #FFD6A5;
            --charcoal: #2E2E2E;
            --white: #FFFFFF;
            --glass: rgba(255, 255, 255, 0.7);
            --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Comfortaa', sans-serif;
            background-color: var(--champagne);
            color: var(--charcoal);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* --- GLOBAL UI --- */
        .bold { font-weight: 700; }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            gap: 10px;
        }
        .btn-primary { background: var(--rose); color: white; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 143, 171, 0.4); }
        .btn-outline { border: 2px solid var(--rose); color: var(--rose); background: transparent; }
        .btn-outline:hover { background: var(--rose); color: white; }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 92%;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 30px;
            border-radius: 100px;
            transition: var(--transition);
        }
        header.scrolled {
            background: var(--glass);
            backdrop-filter: blur(15px);
            top: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(255,255,255,0.3);
        }

.logo {
font-size: 1.4rem;
font-weight: 700;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
}

/* logo image size */
.logo img{
height:132px;
width:auto;
object-fit:contain;
}

.logo span{
color: var(--rose);
}
        nav { display: flex; gap: 20px; }
        nav a { text-decoration: none; color: var(--charcoal); font-weight: 400; font-size: 0.9rem; cursor: pointer; transition: 0.3s; }
        nav a:hover { color: var(--rose); }

        .header-controls { display: flex; gap: 15px; align-items: center; }
        .search-container { position: relative; display: flex; align-items: center; }
        .search-input {
            width: 0; opacity: 0;
            padding: 8px 15px; border-radius: 20px; border: 1px solid var(--peach);
            transition: var(--transition);
        }
        .search-container.active .search-input { width: 180px; opacity: 1; margin-right: 10px; }

        /* --- AUTH & CART ICONS --- */
        .icon-btn { cursor: pointer; position: relative; }
        .badge {
            position: absolute; top: -5px; right: -8px;
            background: var(--rose); color: white;
            font-size: 0.6rem; padding: 2px 6px; border-radius: 50%;
        }

        /* --- PAGES --- */
        .page { display: none; min-height: 100vh; animation: fadeIn 0.8s ease; }
        .page.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* --- HERO --- */
        .hero {
            height: 100vh; display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden; text-align: center;
        }
        #hero-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
        .hero-bg-img {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://i.pinimg.com/736x/cd/97/e1/cd97e118180602864ac0911581a2a3b4.jpg') center/cover no-repeat;
            opacity: 0.15; filter: blur(2px); z-index: 0;
        }
        .hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
        .hero-content h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 25px; }
        .hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #444; }

        /* --- CURVED PATH SECTION --- */
        .gift-path { position: relative; padding: 100px 0; background: white; }
        .path-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
        .path-node {
            display: flex; align-items: center; gap: 30px; max-width: 500px;
            background: var(--champagne); padding: 25px; border-radius: 30px;
            position: relative; z-index: 2; margin-bottom: 150px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03); transition: var(--transition);
        }
        .path-node:hover { transform: scale(1.05) rotate(1deg); background: var(--gold); }
        .path-node img { width: 120px; height: 120px; border-radius: 20px; object-fit: cover; }
        .node-l { margin-left: 10%; }
        .node-r { margin-left: 55%; flex-direction: row-reverse; }

        /* --- SURPRISE BOX --- */
        .surprise-box-section {
            background: var(--rose); padding: 150px 5%; color: white; text-align: center;
            border-radius: 100px 100px 0 0;
        }
        .box-wrapper {
            perspective: 1000px; width: 280px; height: 280px; margin: 60px auto; cursor: pointer;
        }
        .gift-box {
            position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 1s;
        }
        .box-face {
            position: absolute; width: 100%; height: 100%; background: white; border: 4px solid var(--peach);
            display: flex; align-items: center; justify-content: center; font-size: 4rem;
        }
        .box-lid {
            position: absolute; top: -30%; left: 0; width: 100%; height: 30%; background: var(--peach);
            transform-origin: bottom; transition: transform 0.8s, opacity 0.5s; z-index: 5;
        }
        .box-wrapper.open .box-lid { transform: rotateX(-110deg) translateY(-50px); opacity: 0; }
        .surprise-content {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
            background: white; color: var(--charcoal); padding: 20px; border-radius: 20px;
            width: 200px; transition: 0.5s 0.3s; z-index: 2;
        }
        .box-wrapper.open .surprise-content { transform: translate(-50%, -50%) scale(1.2); }

        /* --- COLLECTIONS --- */
        .col-grid { display: flex; gap: 40px; justify-content: center; padding: 100px 5%; flex-wrap: wrap; }
        .col-card {
            width: 320px; height: 450px; border-radius: 40px; overflow: hidden; position: relative;
            transform: translateY(0); transition: var(--transition); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .col-card:nth-child(even) { margin-top: 60px; }
        .col-card:hover { transform: translateY(-20px); }
        .col-card img { width: 100%; height: 100%; object-fit: cover; }
        .col-info {
            position: absolute; bottom: 0; left: 0; right: 0; padding: 30px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white;
        }

        /* --- PRODUCT GRID --- */
        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; padding: 40px 0; }
        .product-card {
            background: white; border-radius: 30px; padding: 20px; transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        .product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
        .product-card img { width: 100%; height: 220px; border-radius: 20px; object-fit: cover; }

        /* --- AUTH MODAL --- */
        .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-inner {
            background: var(--champagne); width: 100%; max-width: 450px; border-radius: 40px;
            padding: 50px; position: relative; text-align: center;
        }
        .auth-form input {
            width: 100%; padding: 15px 25px; border-radius: 15px; border: 2px solid var(--peach);
            margin-bottom: 15px; font-family: inherit; outline: none;
        }

        /* --- CART SIDEBAR --- */
        .cart-sidebar {
            position: fixed; top: 0; right: -400px; width: 400px; height: 100%;
            background: white; z-index: 2001; transition: 0.5s; padding: 40px;
            box-shadow: -10px 0 50px rgba(0,0,0,0.1); display: flex; flex-direction: column;
        }
        .cart-sidebar.open { right: 0; }
        .cart-items { flex: 1; overflow-y: auto; margin-top: 30px; }
        .cart-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
        .cart-item img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }

        /* --- FOOTER --- */
        footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 100px 8% 40px; }
        .footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
        .footer-cols h4 { color: white; margin-bottom: 25px; }
        .footer-cols ul { list-style: none; }
        .footer-cols li { margin-bottom: 12px; }
        .footer-cols a { color: inherit; text-decoration: none; transition: 0.3s; cursor: pointer; }
        .footer-cols a:hover { color: var(--rose); }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .hero-content h1 { font-size: 2.8rem; }
            .node-r, .node-l { margin-left: 5%; }
            .footer-cols { grid-template-columns: 1fr 1fr; }
            .cart-sidebar { width: 100%; right: -100%; }
        }
/* NAV */

nav{
display:flex;
gap:28px;
}

nav a{
cursor:pointer;
font-weight:500;
}

/* HEADER CONTROLS */

.header-controls{
display:flex;
align-items:center;
gap:18px;
}

/* SEARCH */

.search-container{
display:flex;
align-items:center;
gap:6px;
border:1px solid #eee;
padding:6px 10px;
border-radius:20px;
}

.search-input{
border:none;
outline:none;
}

/* MOBILE MENU ICON */

.menu-toggle{
display:none;
cursor:pointer;
}

/* MOBILE RESPONSIVE */

@media (max-width: 900px){

nav{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
gap:20px;
padding:30px 0;
display:none;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

.search-container{
display:none;
}

}