/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --gold: #EECB8C;
    --black: #000000;
    --white: #FFFFFF;
    --gray-dark: #1a1a1a;
    --gray-medium: #2a2a2a;
    --gray-light: #3a3a3a;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
    max-width: 100vw;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(238, 203, 140, 0.3));
}

.nav-cta {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 2px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta:hover {
    color: var(--black);
}

/* Navigation Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    color: var(--white);
}

.social-link svg {
    transition: var(--transition-smooth);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(238, 203, 140, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-toggle:hover {
    border-color: var(--gold);
    background: rgba(238, 203, 140, 0.05);
}

.lang-option {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.lang-option.active {
    color: var(--gold);
}

.lang-divider {
    color: rgba(238, 203, 140, 0.3);
    font-size: 0.9rem;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
    justify-content: flex-end;
    overflow: hidden;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.active {
    color: var(--gold);
}


/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(238, 203, 140, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -20%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(238, 203, 140, 0.05);
    border: 1px solid rgba(238, 203, 140, 0.2);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.badge:hover {
    background: rgba(238, 203, 140, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.badge-icon {
    color: var(--gold);
    font-size: 1rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 203, 140, 0.3);
}

.cta-button svg {
    transition: var(--transition-fast);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
    position: relative;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .product-image {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(238, 203, 140, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .image-glow {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 50%, var(--black) 100%);
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--gold);
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(238, 203, 140, 0.1);
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(238, 203, 140, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===================================
   Showcase Section
   =================================== */
.showcase {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238, 203, 140, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showcase-image .image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.lifestyle-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.showcase-image:hover .lifestyle-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(238, 203, 140, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.showcase-image:hover .image-overlay {
    opacity: 1;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--gold);
    letter-spacing: -1px;
}

.showcase-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-align: justify;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(238, 203, 140, 0.05);
    border: 1px solid rgba(238, 203, 140, 0.2);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.stat:hover {
    background: rgba(238, 203, 140, 0.1);
    transform: translateY(-5px);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* ===================================
   Coming Soon Section
   =================================== */
.coming-soon {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    position: relative;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(238, 203, 140, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
}

.coming-soon-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Notification Form Section
   =================================== */
.notify-section {
    padding: 8rem 0;
    background: var(--black);
}

.notify-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.notify-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--gold);
    letter-spacing: -1px;
}

.notify-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.notify-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.benefit svg {
    flex-shrink: 0;
}

.notify-form-wrapper {
    position: relative;
}

.notify-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border: 1px solid rgba(238, 203, 140, 0.2);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.notify-form:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(238, 203, 140, 0.2);
    border-radius: 2px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(238, 203, 140, 0.1);
}

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

.submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 203, 140, 0.4);
}

.submit-button svg {
    transition: var(--transition-fast);
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.form-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-success.active {
    opacity: 1;
    pointer-events: auto;
}

.form-success svg {
    margin-bottom: 1.5rem;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--gray-dark);
    border-top: 1px solid rgba(238, 203, 140, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 120px;
    width: fit-content;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 2.5rem;
}

.footer-column {
    min-width: 0;
    flex-shrink: 1;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    white-space: nowrap;
}

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

/* Contact Info Styling */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info span,
.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info a {
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--gold);
    padding-left: 0;
}


.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(238, 203, 140, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===================================
   Pre-Order Page Styles
   =================================== */

/* Navigation Links */
.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
}

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

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

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

/* Pre-Order Hero */
.preorder-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%);
    position: relative;
}

.preorder-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238, 203, 140, 0.08) 0%, transparent 70%);
    transform: translate(-50%, 0);
    pointer-events: none;
}

.preorder-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.preorder-main-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--gold);
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preorder-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: var(--black);
}

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

.step-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(238, 203, 140, 0.1);
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(238, 203, 140, 0.03);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(238, 203, 140, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    background: var(--gold);
    color: var(--black);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* What You Receive Section */
.what-you-receive {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%);
}

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

.receive-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(238, 203, 140, 0.03);
    border: 1px solid rgba(238, 203, 140, 0.15);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.receive-item:hover {
    background: rgba(238, 203, 140, 0.05);
    border-color: var(--gold);
    transform: translateX(10px);
}

.receive-icon {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.receive-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
}

/* Pre-Order Form Section */
.preorder-form-section {
    padding: 0;
    background: var(--black);
}

.preorder-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.preorder-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 3.5rem;
    border: 1px solid rgba(238, 203, 140, 0.2);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.preorder-form:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.form-row.two-columns {
    grid-template-columns: 1fr 1fr;
}

.preorder-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(238, 203, 140, 0.2);
    border-radius: 2px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    resize: vertical;
}

.preorder-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(238, 203, 140, 0.1);
}

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

.preorder-form .form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(238, 203, 140, 0.2);
    border-radius: 2px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23EECB8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.preorder-form .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(238, 203, 140, 0.1);
}

.preorder-form .form-group select option {
    background: var(--gray-dark);
    color: var(--white);
    padding: 1rem;
}

.preorder-form .form-group select option:hover {
    background: var(--gold);
    color: var(--black);
}

.important-notice {
    background: rgba(238, 203, 140, 0.05);
    border: 1px solid rgba(238, 203, 140, 0.3);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.important-notice p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.preorder-submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.preorder-submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.preorder-submit-button:hover::before {
    width: 500px;
    height: 500px;
}

.preorder-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 203, 140, 0.4);
}

.preorder-submit-button svg {
    transition: var(--transition-fast);
}

.preorder-submit-button:hover svg {
    transform: translateX(5px);
}

.form-trust-text {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Product Display Section */
.preorder-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.product-display {
    position: sticky;
    top: 100px;
}

/* Product Gallery */
.product-gallery {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.main-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(238, 203, 140, 0.1);
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}



.main-image-container .image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(238, 203, 140, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-smooth);
}

.main-image-container:hover .image-glow {
    opacity: 1;
}

/* Thumbnail Selector */
.thumbnail-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 120px;
    max-height: 70vh;
    overflow-y: auto;
}

.thumbnail {
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(238, 203, 140, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.6;
    width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
}

.thumbnail:hover {
    opacity: 0.8;
    border-color: rgba(238, 203, 140, 0.5);
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(238, 203, 140, 0.3);
}

/* Thumbnail Selector Scrollbar */
.thumbnail-selector::-webkit-scrollbar {
    width: 6px;
}

.thumbnail-selector::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.thumbnail-selector::-webkit-scrollbar-thumb {
    background: rgba(238, 203, 140, 0.3);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.thumbnail-selector::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
    padding: 20px;
    gap: 15px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(238, 203, 140, 0.1);
    border: 2px solid rgba(238, 203, 140, 0.3);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 100;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.modal-zoom-controls {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(238, 203, 140, 0.1);
    border: 2px solid rgba(238, 203, 140, 0.3);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    z-index: 100;
}

.zoom-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.zoom-btn:hover {
    background: rgba(238, 203, 140, 0.2);
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.zoom-level {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 50px;
    text-align: center;
    letter-spacing: 0.5px;
}

.modal-image-container {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    cursor: grab;
    position: relative;
    min-height: 0;
}

.modal-image-container:active {
    cursor: grabbing;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
    user-select: none;
    -webkit-user-drag: none;
    position: relative;
    z-index: 1;
}

/* Modal Image Container Scrollbar */
.modal-image-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.modal-image-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.modal-image-container::-webkit-scrollbar-thumb {
    background: rgba(238, 203, 140, 0.3);
    border-radius: 5px;
}

.modal-image-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Clickable cursor for main image */
.main-image-container {
    cursor: pointer;
}

.main-product-image {
    cursor: pointer;
}



/* Product Details */
.product-details {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(238, 203, 140, 0.1);
    border-radius: 8px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(238, 203, 140, 0.1);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-notice {
    font-size: 0.85rem;
    color: rgba(238, 203, 140, 0.7);
    margin: 0.75rem 0 0;
    font-style: italic;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

/* Product Options */
.product-option {
    margin-bottom: 2rem;
}

.option-label {
    display: block;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Color Selector */
.color-selector {
    display: flex;
    gap: 1rem;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(238, 203, 140, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex: 1;
}

.color-option:hover {
    background: rgba(238, 203, 140, 0.05);
    border-color: rgba(238, 203, 140, 0.5);
    transform: translateY(-3px);
}

.color-option.active {
    background: rgba(238, 203, 140, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(238, 203, 140, 0.2);
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.color-option:hover .color-swatch,
.color-option.active .color-swatch {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(238, 203, 140, 0.3);
}

.color-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.color-option.active .color-name {
    color: var(--gold);
}

/* Package Selector */
.package-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-option {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(238, 203, 140, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.package-option:hover {
    background: rgba(238, 203, 140, 0.05);
    border-color: rgba(238, 203, 140, 0.5);
    transform: translateX(5px);
}

.package-option.active {
    background: rgba(238, 203, 140, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(238, 203, 140, 0.2);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.package-radio {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(238, 203, 140, 0.5);
    border-radius: 50%;
    position: relative;
    transition: var(--transition-smooth);
}

.package-option.active .package-radio {
    border-color: var(--gold);
}

.package-option.active .package-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.package-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.package-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.package-option.active .package-name {
    color: var(--gold);
}

.package-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.package-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    margin-left: 2rem;
}

.package-option.active .package-description {
    color: rgba(255, 255, 255, 0.8);
}

.package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-left: 2rem;
    margin-top: 0.75rem;
}

.include-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(238, 203, 140, 0.08);
    border: 1px solid rgba(238, 203, 140, 0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(238, 203, 140, 0.85);
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.include-chip svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.package-option.active .include-chip {
    background: rgba(238, 203, 140, 0.12);
    border-color: rgba(238, 203, 140, 0.4);
    color: var(--gold);
}

.package-option.active .include-chip svg {
    opacity: 1;
}

.package-option:hover .include-chip {
    background: rgba(238, 203, 140, 0.15);
    border-color: rgba(238, 203, 140, 0.5);
}

/* Form Container Adjustments */
.preorder-form-container {
    background: transparent;
}

.preorder-form-section {
    padding: 8rem 0;
    background: var(--black);
}

/* How It Works Subsection */
.how-it-works-subsection {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(238, 203, 140, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(238, 203, 140, 0.15);
    border-radius: 8px;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.preorder-info-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.preorder-info-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.preorder-info-text p:last-child {
    margin-bottom: 0;
}

/* Closing Section */
.closing-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%);
    text-align: center;
}

.closing-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Hero Products Preview
   =================================== */
.hero-products-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    position: relative;
}

.hero-product-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.hero-product-card:hover {
    transform: translateY(-8px);
}

.hero-product-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(238, 203, 140, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.men-placeholder {
    background: linear-gradient(145deg, #111111 0%, #1c1c1c 50%, #0f0f0f 100%);
    border-color: rgba(180, 140, 80, 0.3);
}

.women-placeholder {
    background: linear-gradient(145deg, #1a0f14 0%, #261520 50%, #150b10 100%);
    border-color: rgba(210, 150, 170, 0.3);
}

.hero-product-card:hover .men-placeholder {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(180, 140, 80, 0.2);
}

.hero-product-card:hover .women-placeholder {
    border-color: #c9798a;
    box-shadow: 0 20px 50px rgba(180, 100, 130, 0.2);
}

.placeholder-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
    text-align: center;
    padding: 0 0.75rem;
    position: relative;
    z-index: 1;
}

.women-placeholder .placeholder-label {
    color: #c9788a;
}

.placeholder-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

/* ===================================
   Product Section - Shared
   =================================== */
.product-section {
    padding: 9rem 0;
    position: relative;
    overflow: hidden;
}

.product-theme-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.product-section .container {
    position: relative;
    z-index: 1;
}

.product-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.product-gender-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.product-section-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.product-section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 0.5px;
}

.product-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.women-layout {
    direction: ltr;
}

/* Product Placeholder */
.product-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 1.5rem;
}

.placeholder-icon {
    font-size: 2.5rem;
    line-height: 1;
    transition: var(--transition-smooth);
}

.placeholder-product-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.placeholder-product-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.placeholder-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    z-index: 1;
    border-radius: 12px;
    pointer-events: none;
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

.men-product-placeholder:hover .placeholder-bg-img,
.women-product-placeholder:hover .placeholder-bg-img {
    opacity: 0.6;
}

/* Colour tint overlay - sits on top of image, below text */
.placeholder-tint {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

.men-tint {
    background: rgba(200, 150, 30, 0.05);
}

.women-tint {
    background: rgba(190, 70, 110, 0.05);
}

.placeholder-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

/* Product Details */
.product-detail-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
}

.product-detail-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    text-align: justify;
}

.product-attributes {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.attribute {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.attribute-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.attribute-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.attribute-title {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.attribute-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-cta:hover::before {
    width: 400px;
    height: 400px;
}

.product-cta svg {
    transition: var(--transition-fast);
}

.product-cta:hover svg {
    transform: translateX(5px);
}

/* ===================================
   Men's Section Theme
   =================================== */
.men-section {
    background: linear-gradient(180deg, #000000 0%, #0d0d0d 40%, #080808 100%);
}

.men-theme-bg {
    background:
        radial-gradient(ellipse 80% 60% at 0% 50%, rgba(180, 140, 70, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 100% 20%, rgba(150, 110, 50, 0.04) 0%, transparent 60%);
}

.men-label {
    background: rgba(238, 203, 140, 0.08);
    border: 1px solid rgba(238, 203, 140, 0.25);
    color: var(--gold);
}

.men-section .product-section-title {
    color: var(--gold);
}

.men-section .product-section-subtitle {
    color: rgba(238, 203, 140, 0.4);
}

.men-product-placeholder {
    background: linear-gradient(145deg, #0e0e0e 0%, #181818 40%, #101010 100%);
    border: 1px solid rgba(238, 203, 140, 0.5);
}

.men-product-placeholder:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(180, 140, 70, 0.15), inset 0 0 60px rgba(180, 140, 70, 0.03);
    transform: scale(1.01);
}

.men-icon {
    color: var(--gold);
}

.men-product-placeholder .placeholder-product-name {
    color: var(--gold);
}

.men-section .product-detail-title {
    color: var(--gold);
}

.men-section .attribute {
    border-color: rgba(238, 203, 140, 0.08);
}

.men-section .attribute:hover {
    border-color: rgba(238, 203, 140, 0.25);
    background: rgba(238, 203, 140, 0.04);
}

.men-section .attribute-icon {
    color: var(--gold);
}

.men-section .attribute-title {
    color: rgba(255, 255, 255, 0.9);
}

.men-cta {
    background: var(--gold);
    color: var(--black);
}

.men-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 203, 140, 0.35);
}

/* ===================================
   Women's Section Theme
   =================================== */
:root {
    --rose: #c9788a;
    --rose-light: #e8a8b8;
    --rose-dark: #8b4a5a;
    --women-bg: #0d080a;
}

.women-section {
    background: linear-gradient(180deg, #080508 0%, #0f080b 40%, #080508 100%);
}

.women-theme-bg {
    background:
        radial-gradient(ellipse 80% 60% at 100% 50%, rgba(180, 90, 120, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 0% 20%, rgba(140, 60, 90, 0.05) 0%, transparent 60%);
}

.women-label {
    background: rgba(201, 120, 138, 0.08);
    border: 1px solid rgba(201, 120, 138, 0.3);
    color: var(--rose);
}

.women-section .product-section-title {
    color: var(--rose-light);
}

.women-section .product-section-subtitle {
    color: rgba(201, 120, 138, 0.5);
}

.women-product-placeholder {
    background: linear-gradient(145deg, #0d0709 0%, #160d11 40%, #0a0507 100%);
    border: 1px solid rgba(201, 120, 138, 0.5);
}

.women-product-placeholder:hover {
    border-color: var(--rose);
    box-shadow: 0 30px 80px rgba(180, 90, 120, 0.15), inset 0 0 60px rgba(180, 90, 120, 0.03);
    transform: scale(1.01);
}

.women-icon {
    color: var(--rose-light);
}

.women-product-placeholder .placeholder-product-name {
    color: var(--rose-light);
}

.women-section .product-detail-title {
    color: var(--rose-light);
}

.women-section .attribute {
    border-color: rgba(201, 120, 138, 0.08);
}

.women-section .attribute:hover {
    border-color: rgba(201, 120, 138, 0.25);
    background: rgba(201, 120, 138, 0.04);
}

.women-section .attribute-icon {
    color: var(--rose);
}

.women-section .attribute-title {
    color: rgba(255, 255, 255, 0.9);
}

.women-cta {
    background: var(--rose);
    color: var(--white);
}

.women-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(180, 90, 120, 0.35);
    background: var(--rose-light);
    color: #2a0f18;
}

/* ===================================
   Scroll-Reveal Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* Men Section - active theme pulse when in view */
.men-section.section-in-view .men-theme-bg {
    animation: men-glow-pulse 4s ease-in-out infinite;
}

@keyframes men-glow-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Women Section - active theme shimmer when in view */
.women-section.section-in-view .women-theme-bg {
    animation: women-glow-pulse 4s ease-in-out infinite;
}

@keyframes women-glow-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.55;
    }
}

/* Decorative top border lines per section */
.men-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(238, 203, 140, 0.4) 50%, transparent 100%);
}

.women-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 120, 138, 0.4) 50%, transparent 100%);
}

/* Animated corner accents on placeholders when section in view */
.men-section.section-in-view .men-product-placeholder::after,
.women-section.section-in-view .women-product-placeholder::after {
    animation: corner-trace 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.men-product-placeholder::after,
.women-product-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
}

.men-product-placeholder::after {
    background: linear-gradient(135deg, rgba(238, 203, 140, 0.06) 0%, transparent 50%);
}

.women-product-placeholder::after {
    background: linear-gradient(135deg, rgba(201, 120, 138, 0.06) 0%, transparent 50%);
}

@keyframes corner-trace {
    0%   { opacity: 0; }
    50%  { opacity: 1; }
    100% { opacity: 0.6; }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {

    .hero-content,
    .showcase-content,
    .notify-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-section-title {
        font-size: 3rem;
    }

    .product-image-col {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    /* Women layout image goes below on tablet */
    .women-layout .product-image-col {
        order: 2;
    }

    .women-layout .product-details-col {
        order: 1;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .showcase-content {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        order: -1;
    }

    /* Product Section Responsive */
    .preorder-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-display {
        position: relative;
        top: 0;
    }

    .product-name {
        font-size: 1.75rem;
    }

    .price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Responsive Navigation */
    .navbar {
        padding: 1rem 0;
    }

    .nav-content {
        gap: 0.5rem;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        gap: 0.75rem;
        flex-wrap: nowrap;
        overflow: visible;
    }

    .nav-link {
        font-size: 0.8rem;
        letter-spacing: 0;
    }

    .nav-link.active {
        display: none;
    }

    .lang-option.active,
    .lang-divider {
        display: none;
    }

    .lang-toggle {
        padding: 0.35rem 0.5rem;
        min-width: auto;
        flex-shrink: 0;
    }

    .lang-option {
        font-size: 0.8rem;
        letter-spacing: 0;
    }

    /* Hide important notice on mobile */
    .important-notice {
        display: none;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Reorder hero content - image below text */
    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-image {
        order: 0;
        margin-top: 2rem;
        display: none;
    }

    .hero-text {
        order: 1;
    }

    /* Reduce section padding on mobile */
    .features,
    .showcase,
    .notify-section,
    .product-section {
        padding: 5rem 0;
    }

    .product-section-header {
        margin-bottom: 3rem;
    }

    .product-section-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .product-detail-title {
        font-size: 1.9rem;
    }

    .hero-products-preview {
        gap: 0.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Stats in 2 columns on mobile */
    .showcase-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer links align to start on mobile */
    .footer-links {
        justify-content: flex-start;
        gap: 2rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .notify-title {
        font-size: 2.5rem;
    }

    .notify-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    /* Extra small screen navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-content {
        gap: 0.4rem;
    }

    .logo {
        height: 35px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 0;
        padding: 0;
    }

    .lang-toggle {
        padding: 0.3rem 0.4rem;
        border-width: 1px;
    }

    .lang-option {
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-cta {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    /* Hide scroll indicator on mobile to prevent overlap with CTA button */
    .scroll-indicator {
        display: none;
    }

    /* Pre-Order Page Responsive */
    .preorder-main-title {
        font-size: 2.5rem;
    }

    .preorder-intro {
        font-size: 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .receive-grid {
        grid-template-columns: 1fr;
    }

    .preorder-form {
        padding: 2rem;
    }

    .form-row.two-columns {
        grid-template-columns: 1fr;
    }

    .closing-text {
        font-size: 1.2rem;
    }

    /* Product Section Mobile */
    .product-details {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .color-selector {
        flex-direction: column;
    }

    .color-option {
        flex-direction: row;
        justify-content: flex-start;
    }

    .package-description {
        margin-left: 1rem;
        font-size: 0.85rem;
    }

    /* Product Gallery Mobile */
    .product-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .main-image-container {
        height: 350px;
        max-height: 50vh;
        order: 1;
    }

    .main-product-image {
        max-height: 50vh;
    }

    .thumbnail-selector {
        flex-direction: row;
        width: 100%;
        max-height: none;
        overflow-x: auto;
        order: 2;
        justify-content: flex-start;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .how-it-works-subsection {
        padding: 2rem 1.5rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    /* Image Modal Mobile */
    .modal-content {
        width: 95%;
        height: 95%;
        padding: 10px;
        gap: 10px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }

    .modal-zoom-controls {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.4rem 1rem;
        gap: 0.75rem;
        height: fit-content !important;
    }

    .zoom-btn {
        width: 32px;
        height: 32px;
    }

    .zoom-level {
        font-size: 0.85rem;
        min-width: 45px;
    }
}