:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f48fb1;
    --secondary: #9c27b0;
    --accent: #ff6090;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #ffffff;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #e91e63, #9c27b0);
    --gradient-2: linear-gradient(135deg, #ff6090, #d4af37);
    --gradient-3: linear-gradient(135deg, #1a1a2e, #2d1b4e);
    --shadow-sm: 0 2px 10px rgba(233, 30, 99, 0.1);
    --shadow-md: 0 8px 30px rgba(233, 30, 99, 0.2);
    --shadow-lg: 0 20px 60px rgba(233, 30, 99, 0.3);
    --shadow-glow: 0 0 40px rgba(233, 30, 99, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
}

#cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s, visibility 0.8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
}

.loader-ring:nth-child(1) {
    border-top-color: var(--primary);
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-right-color: var(--secondary);
    animation: spin 1.2s linear infinite reverse;
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-bottom-color: var(--gold);
    animation: spin 1s linear infinite;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    animation: rotate-star 4s linear infinite;
}

@keyframes rotate-star {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    cursor: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.nav-btn:hover {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

#menu-btn {
    display: none;
}

#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

#mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

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

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(156, 39, 176, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-3d-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 1500px;
    z-index: 1;
}

.floating-product {
    position: absolute;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.floating-product.p1 {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.floating-product.p2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.floating-product.p3 {
    top: 25%;
    left: 10%;
    animation-delay: 2s;
}

.floating-product.p4 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.floating-product.p5 {
    top: 45%;
    right: 8%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(10deg); }
    25% { transform: translateY(-20px) rotateY(5deg) rotateX(5deg); }
    50% { transform: translateY(-30px) rotateY(0deg) rotateX(-5deg); }
    75% { transform: translateY(-15px) rotateY(-5deg) rotateX(5deg); }
}

.product-3d {
    width: 80px;
    height: 120px;
    transform-style: preserve-3d;
}

/* 3D Bottle */
.bottle {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 8s linear infinite;
}

.bottle-cap {
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    margin: 0 auto;
    border-radius: 5px 5px 0 0;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.bottle-body {
    width: 50px;
    height: 80px;
    background: linear-gradient(135deg, #e91e63, #f48fb1);
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    box-shadow: 
        inset -10px 0 20px rgba(0, 0, 0, 0.2),
        inset 10px 0 20px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(233, 30, 99, 0.4);
}

.bottle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 3D Compact */
.compact {
    width: 80px;
    height: 40px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 10s linear infinite reverse;
}

.compact-lid {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9c27b0, #e040fb);
    border-radius: 50%;
    position: absolute;
    top: -40px;
    transform: rotateX(60deg);
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(156, 39, 176, 0.5);
}

.compact-base {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7b1fa2, #9c27b0);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* 3D Lipstick */
.lipstick {
    width: 30px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 7s linear infinite;
}

.lipstick-cap {
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.lipstick-body {
    width: 28px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    margin: 1px auto;
    box-shadow: 
        inset -5px 0 10px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(212, 175, 55, 0.4);
}

.lipstick-tip {
    width: 24px;
    height: 25px;
    background: linear-gradient(135deg, #e91e63, #ff6090);
    margin: 0 auto;
    border-radius: 3px 3px 50% 50%;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.6);
}

/* 3D Perfume */
.perfume {
    width: 60px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 9s linear infinite reverse;
}

.perfume-cap {
    width: 20px;
    height: 25px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    margin: 0 auto;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.perfume-neck {
    width: 10px;
    height: 15px;
    background: linear-gradient(135deg, #e0e0e0, #ffffff);
    margin: 0 auto;
}

.perfume-body {
    width: 50px;
    height: 60px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.6), rgba(156, 39, 176, 0.6));
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 
        inset -8px 0 15px rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(10px);
}

.perfume-spray {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* 3D Palette */
.palette {
    width: 100px;
    height: 70px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 11s linear infinite;
}

.palette-lid {
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
    border-radius: 10px;
    position: absolute;
    top: -30px;
    transform: rotateX(70deg);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.palette-base {
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #2d2d4e, #3d3d5e);
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.shadow {
    border-radius: 50%;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2);
}

.shadow.s1 { background: linear-gradient(135deg, #e91e63, #f48fb1); }
.shadow.s2 { background: linear-gradient(135deg, #9c27b0, #ce93d8); }
.shadow.s3 { background: linear-gradient(135deg, #ff6090, #ff8a80); }
.shadow.s4 { background: linear-gradient(135deg, #d4af37, #f4d03f); }
.shadow.s5 { background: linear-gradient(135deg, #e040fb, #f8bbd0); }
.shadow.s6 { background: linear-gradient(135deg, #ff4081, #ff80ab); }

@keyframes rotate3d {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-left: 5%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.badge-star {
    color: var(--gold);
    animation: rotate-star 3s linear infinite;
}

.hero-badge span:nth-child(2) {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    animation: slideInUp 1s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.8s; }

.title-line.accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
    animation: slideInUp 1s ease-out 1s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 1.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: slideInUp 1s ease-out 1.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    animation: slideInUp 1s ease-out 1.6s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

.section-title .accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Products Section */
.products-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

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

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(156, 39, 176, 0.05));
    overflow: hidden;
}

.product-3d-display {
    width: 120px;
    height: 160px;
    transform-style: preserve-3d;
    animation: productFloat 4s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(10deg); }
}

/* Product 3D Models */
.cream-jar {
    width: 80px;
    height: 70px;
    background: linear-gradient(135deg, #f8bbd0, #fce4ec);
    margin: 45px auto 0;
    border-radius: 10px;
    position: relative;
    box-shadow: 
        inset -10px 0 20px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(233, 30, 99, 0.2);
}

.cream-jar::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 15px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.cream-jar::after {
    content: 'GLOW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.lipstick-display {
    width: 25px;
    height: 120px;
    margin: 20px auto 0;
    position: relative;
}

.lipstick-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 45px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
    border-radius: 5px 5px 0 0;
}

.lipstick-display::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 70px;
    background: linear-gradient(135deg, #e91e63, #ff6090);
    border-radius: 3px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.perfume-display {
    width: 60px;
    height: 120px;
    margin: 20px auto 0;
    position: relative;
}

.perfume-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.perfume-display::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 80px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.6), rgba(156, 39, 176, 0.6));
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.moisturizer-display {
    width: 70px;
    height: 90px;
    margin: 35px auto 0;
    position: relative;
}

.moisturizer-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 20px;
    background: linear-gradient(135deg, #4fc3f7, #81d4fa);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
}

.moisturizer-display::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 70px;
    background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
    border-radius: 5px;
    box-shadow: inset -8px 0 15px rgba(0, 0, 0, 0.1);
}

.shampoo-display {
    width: 40px;
    height: 110px;
    margin: 25px auto 0;
    position: relative;
}

.shampoo-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 25px;
    background: linear-gradient(135deg, #7b1fa2, #9c27b0);
    border-radius: 5px 5px 0 0;
}

.shampoo-display::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 85px;
    background: linear-gradient(135deg, #ce93d8, #e1bee7);
    border-radius: 10px 10px 5px 5px;
    box-shadow: 
        inset -5px 0 10px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(156, 39, 176, 0.3);
}

.palette-display {
    width: 90px;
    height: 60px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #2d2d4e, #3d3d5e);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.palette-display::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view,
.add-wishlist {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.product-card:hover .quick-view,
.product-card:hover .add-wishlist {
    transform: translateY(0);
    opacity: 1;
}

.product-card:hover .add-wishlist {
    transition-delay: 0.1s;
}

.quick-view:hover,
.add-wishlist:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.new { background: var(--gradient-2); }
.product-badge.hot { background: linear-gradient(135deg, #ff5722, #ff9800); }

.product-info {
    padding: 1.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.product-rating i {
    color: var(--gold);
    font-size: 0.85rem;
}

.product-rating span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-left: 0.3rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.product-category {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    padding: 0.9rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.add-to-cart:hover::before {
    left: 100%;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Categories Section */
.categories-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    transform-style: preserve-3d;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: var(--shadow-lg);
    background: rgba(233, 30, 99, 0.05);
}

.category-3d {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
    transform-style: preserve-3d;
    animation: categoryFloat 3s ease-in-out infinite;
}

@keyframes categoryFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(15deg); }
}

.cat-icon {
    width: 80px;
    height: 80px;
    margin: 10px auto;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skincare-icon {
    background: linear-gradient(135deg, #e91e63, #f48fb1);
}

.skincare-icon::before {
    content: '🧴';
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.makeup-icon {
    background: linear-gradient(135deg, #9c27b0, #ce93d8);
}

.makeup-icon::before {
    content: '💄';
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fragrance-icon {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
}

.fragrance-icon::before {
    content: '🌸';
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.haircare-icon {
    background: linear-gradient(135deg, #ff6090, #ff8a80);
}

.haircare-icon::before {
    content: '💇';
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.category-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.category-link:hover {
    gap: 1rem;
}

/* Featured Section */
.featured-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(156, 39, 176, 0.05));
    z-index: 0;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-content {
    padding-right: 2rem;
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.featured-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.feature i {
    color: var(--primary);
}

.featured-price {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-3d-scene {
    width: 400px;
    height: 400px;
    position: relative;
    perspective: 1000px;
}

.featured-product {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.luxury-bottle {
    width: 120px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    animation: luxuryFloat 4s ease-in-out infinite;
}

@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(10deg); }
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.3), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.lux-cap {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    margin: 0 auto;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.lux-body {
    width: 80px;
    height: 180px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.7), rgba(156, 39, 176, 0.7));
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    box-shadow: 
        inset -15px 0 30px rgba(0, 0, 0, 0.2),
        inset 15px 0 30px rgba(255, 255, 255, 0.1),
        0 20px 50px rgba(233, 30, 99, 0.4);
}

.lux-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lux-label::before {
    content: '✦';
    font-size: 1.5rem;
    color: var(--gold);
}

.lux-detail {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    border: 2px solid rgba(233, 30, 99, 0.2);
    border-radius: 50%;
    animation: orbitSpin 10s linear infinite;
}

.orbit-ring.ring-1 { width: 250px; height: 250px; animation-duration: 10s; }
.orbit-ring.ring-2 { width: 300px; height: 300px; animation-duration: 15s; animation-direction: reverse; }
.orbit-ring.ring-3 { width: 350px; height: 350px; animation-duration: 20s; }

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}

.orbit-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    animation: particleOrbit 8s linear infinite;
}

.orbit-particle.p1 { animation-delay: 0s; }
.orbit-particle.p2 { animation-delay: -2.5s; }
.orbit-particle.p3 { animation-delay: -5s; }

@keyframes particleOrbit {
    0% { top: 50%; left: 0%; transform: translate(-50%, -50%); }
    25% { top: 0%; left: 50%; transform: translate(-50%, -50%); }
    50% { top: 50%; left: 100%; transform: translate(-50%, -50%); }
    75% { top: 100%; left: 50%; transform: translate(-50%, -50%); }
    100% { top: 50%; left: 0%; transform: translate(-50%, -50%); }
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 99, 0.3);
    box-shadow: var(--shadow-md);
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars i {
    color: var(--gold);
    font-size: 1rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.reviewer-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem;
}

.newsletter-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
}

.newsletter-note {
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
}

.newsletter-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-3d {
    width: 200px;
    height: 200px;
    perspective: 500px;
}

.envelope {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: envelopeFloat 3s ease-in-out infinite;
}

@keyframes envelopeFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateY(10deg) rotateX(5deg); }
}

.envelope-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
}

.envelope-letter {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 70%;
    height: 60%;
    background: white;
    border-radius: 5px;
    padding: 15%;
    transform: translateY(-20%);
    animation: letterSlide 3s ease-in-out infinite;
}

@keyframes letterSlide {
    0%, 100% { transform: translateY(-20%); }
    50% { transform: translateY(-40%); }
}

.letter-line {
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-bottom: 8px;
}

.letter-line.l2 { width: 80%; }
.letter-line.l3 { width: 60%; }

.envelope-front {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, #d81b60, #ad1457);
    border-radius: 0 0 10px 10px;
    clip-path: polygon(0 40%, 50% 0, 100% 40%, 100% 100%, 0 100%);
}

.envelope-flap {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform-origin: top;
    animation: flapOpen 3s ease-in-out infinite;
}

@keyframes flapOpen {
    0%, 100% { transform: rotateX(0deg); }
    50% { transform: rotateX(30deg); }
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: rgba(233, 30, 99, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    margin-bottom: 0.3rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 3px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links li {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Cart Sidebar */
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--dark);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

#cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-header h3 {
    font-family: var(--font-display);
}

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

.close-cart:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 0.8rem;
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.mini-product {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.mini-product.cream { background: linear-gradient(135deg, #f8bbd0, #fce4ec); }
.mini-product.lipstick { background: linear-gradient(135deg, #e91e63, #ff6090); }
.mini-product.perfume { background: linear-gradient(135deg, rgba(233, 30, 99, 0.6), rgba(156, 39, 176, 0.6)); }

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.cart-item-qty button {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-qty button:hover {
    background: var(--primary);
}

.cart-item-qty span {
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    color: #ff5252;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .featured-container {
        grid-template-columns: 1fr;
    }
    
    .featured-visual {
        order: -1;
    }
    
    .featured-3d-scene {
        width: 300px;
        height: 300px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form .btn {
        border-radius: 50px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    #cursor-glow {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    #menu-btn {
        display: flex;
    }
    
    .hero-content {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto 2rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-product {
        opacity: 0.3;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-features {
        justify-content: center;
    }
    
    #cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Animations for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* 3D Background Canvas */
#cosmetics-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Product Images */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Category Images */
.category-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(233, 30, 99, 0.3);
    transition: var(--transition);
}

.category-card:hover .category-img {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.4);
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Image */
.featured-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease;
    animation: featuredFloat 4s ease-in-out infinite;
}

.featured-img:hover {
    transform: scale(1.05) rotate(2deg);
}

@keyframes featuredFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Newsletter Image */
.newsletter-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Reviewer Avatar Image */
.reviewer-avatar {
    overflow: hidden;
    padding: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Cart Item Image */
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Remove old 3D product models (not needed with real images) */
.product-3d-display,
.cream-jar,
.lipstick-display,
.perfume-display,
.moisturizer-display,
.shampoo-display,
.palette-display,
.category-3d,
.cat-icon,
.category-img,
.newsletter-visual,
.newsletter-3d,
.envelope,
.envelope-back,
.envelope-letter,
.letter-line,
.envelope-front,
.envelope-flap {
    /* Keep for backward compatibility */
}

/* Hero specific - remove old 3D scene styles */
.hero-3d-scene {
    display: none;
}
