/* Font Face for Parfumerie Script Old Style */
@font-face {
    font-family: 'Parfumerie Script';
    src: url('../fonts/parfumerie-script-old-style.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Custom Cursor - Circle with Blurry Center */
/* Hide cursor by default, only show on landing page */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(85, 255, 81, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
    mix-blend-mode: difference;
    opacity: 0;
    visibility: hidden;
    display: none;
    left: 0;
    top: 0;
}

/* Only apply custom cursor on landing page */
body.landing-page *,
body.landing-page {
    cursor: none !important;
}

body.landing-page .custom-cursor {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(85, 255, 81, 0.3);
    border-radius: 50%;
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(85, 255, 81, 0.8);
}

.custom-cursor.hover::before {
    width: 30px;
    height: 30px;
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

/* Base black background for the entire page */
*{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
img{-webkit-user-drag:none;-khtml-user-drag:none;-moz-user-drag:none;-o-user-drag:none;user-drag:none;}
body {
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(85, 255, 81, 0.2);
    touch-action: manipulation;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

/* Navigation Bar - Luxury Perfume Store Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo a {
    font-family: 'Parfumerie Script', serif;
    font-size: 2rem;
    color: #55ff51;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    line-height: 1;
    display: inline-block;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #55ff51;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #55ff51;
}

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

/* Dropdown Menu Styles */
.nav-menu li.dropdown {
    position: relative;
}

.nav-menu li.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu li.dropdown > a {
    position: relative;
}

.nav-menu li.dropdown > a::before {
    content: '▼';
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
}

.nav-menu li.dropdown:hover > a::before {
    transform: rotate(180deg);
}

.nav-menu li.dropdown > a::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(85, 255, 81, 0.2);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-menu li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(85, 255, 81, 0.1);
    color: #55ff51;
    padding-left: 2rem;
}

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

.nav-cart {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-cart:hover {
    color: #55ff51;
}

/* Footer Styles */
.footer {
    background: #000000;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(85, 255, 81, 0.1);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Parfumerie Script', serif;
    font-size: 1.8rem;
    color: #55ff51;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
    text-shadow: 0 0 14px rgba(85, 255, 81, 0.3);
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #55ff51;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(85, 255, 81, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        margin-top: 0.5rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(85, 255, 81, 0.05);
        border: none;
        border-left: 2px solid rgba(85, 255, 81, 0.3);
        margin: 0.5rem 0 0 1rem;
        padding: 0.5rem 0;
        box-shadow: none;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }
    
    .nav-logo a {
        font-size: 1.8rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo a {
        font-size: 1.5rem;
    }
    
    .nav-cart {
        font-size: 0.75rem;
    }
}

/* Touch-friendly button sizes */
@media (max-width: 768px) {
    button,
    .btn-primary,
    .btn-secondary,
    a.btn-primary,
    a.btn-secondary {
        min-height: 44px; /* iOS recommended touch target */
        min-width: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    /* Ensure all interactive elements are touch-friendly */
    a, button, input, select, textarea {
        touch-action: manipulation;
    }
}

/* Section base styles - transparent background */
.fade-section {
    position: relative;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    z-index: 1;
}

/* Top fade overlay: black → transparent (smooth) */
.fade-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Bottom fade overlay: transparent → black (smooth) */
.fade-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Section content - positioned above overlays */
.section-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/bg.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Remove top fade from hero section - only show bottom fade */
.hero-section::before {
    display: none;
}

/* Bottom fade overlay for hero section - smooth transition to next section */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Hero Shadow Layer - z-index 2 (visible, behind bottle, above background) */
.hero-shadow {
    position: absolute;
    top: 65%;
    left: 48%;
    transform: translate(-50%, 0%);
    z-index: 2;
    width: 120%;
    max-width: 1200px;
    pointer-events: none;
    opacity: 0.95;
    filter: blur(60px);
    mix-blend-mode: normal;
}

.shadow-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
}

/* "UNSEEN" image - BEHIND bottle, z-index 3 */
.hero-unseen {
    position: absolute;
    top: -17%;
    left: 49%;
    transform: translateX(-50%);
    z-index: 3;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 102vh;
    opacity: 0.9;
    pointer-events: none;
}

/* Hero Bottle - z-index 5 (above shadow and UNSEEN text) */
.hero-bottle {
    position: absolute;
    top: 58%;
    left: 48%;
    transform: translate(-50%, -50%) rotate(5deg);
    z-index: 5;
    pointer-events: none;
    max-width: 623px;
    width: 63%;
    min-width: 300px;
}

.bottle-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 40px rgba(7, 7, 9, 0.6));
}

/* Hero Content - z-index 6 (on top of everything) */
.hero-content {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

/* Hero Tagline Container - bottom left quadrant */
.hero-tagline {
    position: absolute;
    bottom: 12%;
    left: 3%;
    text-align: left;
    z-index: 6;
    max-width: 450px;
    pointer-events: none;
}

.hero-tagline-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 300;
    color: #55ff51;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-shadow: 0 0 10px rgba(85, 255, 81, 0.3);
}

.hero-product-name {
    font-family: 'Parfumerie Script', serif;
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: normal;
    color: #55ff51;
    margin: 0;
    line-height: 1;
    text-shadow: 
        0 0 15px rgba(85, 255, 81, 0.4),
        0 0 30px rgba(85, 255, 81, 0.2);
    letter-spacing: 0.02em;
}

/* Hero Brand - top right corner */
.hero-brand {
    position: absolute;
    top: 3%;
    right: 3%;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    font-weight: 300;
    color: #55ff51;
    z-index: 6;
    pointer-events: none;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Hero Social - vertical text on right edge */
.hero-social {
    position: absolute;
    top: 50%;
    right: 1.5%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    font-weight: 300;
    color: #55ff51;
    z-index: 6;
    pointer-events: none;
    letter-spacing: 0.1em;
    opacity: 0.8;
    white-space: nowrap;
}

/* Section Title */
.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    margin: 0 0 3rem 0;
    opacity: 0.9;
}

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.collection-item {
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.collection-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Perfume Image Wrapper - Modern Glassmorphism Card */
.perfume-image-wrapper {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    /* Modern glassmorphism effect */
    background: rgba(85, 255, 81, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(85, 255, 81, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
}

.perfume-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(0px);
}

.collection-item:hover .perfume-image-wrapper {
    background: rgba(85, 255, 81, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(85, 255, 81, 0.25);
    box-shadow: 0 12px 40px rgba(85, 255, 81, 0.08);
    transform: scale(1.02);
}

.collection-item:hover .perfume-image {
    filter: none;
}

.collection-item h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.collection-item p {
    font-size: 0.9rem;
    opacity: 0.65;
    margin: 0;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* Collection Link */
.collection-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.collection-link:hover {
    text-decoration: none;
}

/* Collection CTA Button */
.collection-cta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.explore-store-btn {
    padding: 1.2rem 3rem;
    background: rgba(85, 255, 81, 0.1);
    border: 1px solid rgba(85, 255, 81, 0.4);
    color: #55ff51;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.explore-store-btn:hover {
    background: rgba(85, 255, 81, 0.2);
    border-color: rgba(85, 255, 81, 0.6);
    box-shadow: 0 0 30px rgba(85, 255, 81, 0.2);
    transform: translateY(-2px);
}

/* Story Section */
.story-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
    opacity: 0.75;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Floating 3D Glassmorphism Card */
.story-card-3d {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 3rem;
    border-radius: 24px;
    background: rgba(85, 255, 81, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(85, 255, 81, 0.1) inset;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    position: relative;
    overflow: hidden;
}

.story-card-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(85, 255, 81, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.story-card-3d:hover::before {
    opacity: 1;
}

.story-card-content {
    position: relative;
    z-index: 1;
}

.story-card-title {
    font-family: 'Parfumerie Script', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #55ff51;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 0 14px rgba(85, 255, 81, 0.3);
}

.story-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.02em;
}

.story-card-text:last-child {
    margin-bottom: 0;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Experience 3D Floating Glassmorphism Cards */
.experience-card-3d {
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(85, 255, 81, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(85, 255, 81, 0.1) inset;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.experience-card-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(85, 255, 81, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.experience-card-3d:hover::before {
    opacity: 1;
}

.experience-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.experience-card-3d h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 0.8rem 0;
    letter-spacing: 0.05em;
    color: #55ff51;
    text-shadow: 0 0 15px rgba(85, 255, 81, 0.3);
}

.experience-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.experience-description {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    flex: 1;
}

/* CTA Button */
.cta-button {
    background: transparent;
    border: 1px solid rgba(85, 255, 81, 0.4);
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    border-color: rgba(85, 255, 81, 0.8);
    box-shadow: 0 0 30px rgba(85, 255, 81, 0.2);
    transform: translateY(-2px);
}

.cta-button:hover::before {
    left: 100%;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove body overlay to showcase bg.png */
body::before {
    display: none;
}

/* Ensure sections are above the body glow */
.fade-section {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fade-section {
        padding: 80px 20px;
    }
    
    .collection-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-bottle {
        width: 55%;
        min-width: 250px;
        bottom: 20%;
        max-width: 500px;
    }
    
    .hero-unseen {
        top: 8%;
        max-width: 85vw;
        max-height: 35vh;
    }
    
    .hero-tagline {
        bottom: 8%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
        max-width: none;
    }
    
    .hero-shadow {
        max-width: 700px;
        filter: blur(20px);
    }
    
    .hero-brand {
        top: 3%;
        right: 3%;
    }
    
    .hero-social {
        right: 2%;
        font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    }
}

@media (max-width: 480px) {
    .hero-bottle {
        width: 65%;
        min-width: 200px;
        bottom: 18%;
    }
    
    .hero-unseen {
        top: 5%;
        max-width: 80vw;
        max-height: 30vh;
    }
    
    .hero-product-name {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-tagline {
        bottom: 5%;
    }
    
    .hero-brand,
    .hero-social {
        font-size: 0.7rem;
    }
}

