@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-base: #F5F2ED;
    --bg-surface: #EDE8E2;
    --gold: #b8924f;
    --gold-light: #d4b47a;
    --gold-dark: #8c6a2d;
    --text-primary: #2C2C2C;
    --text-secondary: #5F5F5F;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(0, 0, 0, 0.04);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Responsive Typography */
    --h1: clamp(28px, 5vw, 56px);
    --h2: clamp(22px, 3.5vw, 40px);
    --h3: clamp(18px, 2.5vw, 28px);
    --body: clamp(14px, 1.5vw, 18px);
    --small: clamp(12px, 1vw, 14px);
}

/* Base Styles targeting mainly home structure without breaking app layout */
h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
    font-family: var(--font-heading);
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s linear infinite;
}

@keyframes gradientText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: #fff;
}

/* Ambient Glows */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
}

.glow-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}

.glow-2 {
    top: 40%;
    right: -20%;
    background: radial-gradient(circle, #4A5568 0%, transparent 70%);
    opacity: 0.05;
}

.glow-3 {
    bottom: -10%;
    left: 30%;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    opacity: 0.05;
}

/* Buttons & Interactive Elements */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--small);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-glow {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(184, 146, 79, 0.2);
}

.primary-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 35px rgba(184, 146, 79, 0.4);
    color: #fff;
}

.secondary-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.secondary-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-premium:hover .icon-arrow {
    transform: translateX(5px);
}

.icon-sm {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

/* Glass Panels - Light mode adjustments */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.glass-panel-heavy {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Badges */
.badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(184, 146, 79, 0.1);
    border: 1px solid rgba(184, 146, 79, 0.2);
    border-radius: 50px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
}

.gold-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(184, 146, 79, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(184, 146, 79, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(184, 146, 79, 0);
    }
}

/* Premium Sections */
.premium-section {
    padding: 60px 20px;
    position: relative;
    z-index: 2;
    background: var(--bg-base);
    color: var(--text-primary);
}

.bg-surface {
    background: var(--bg-surface);
}

.premium-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: var(--h2);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 30px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Hero Section - Full Screen Slider */
.premium-hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 20px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

.hero-bg-img.active {
    opacity: 1;
    animation: kenBurns 6s ease-in-out forwards;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.premium-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text-wrapper {
    flex: 1;
}

.hero-title {
    font-size: var(--h1);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 600px;
}

.hero-description {
    font-size: var(--body);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    font-family: var(--font-body);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

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

.stat-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollArrow 2s infinite;
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Slider Dots */
.slider-dots-container {
    position: absolute;
    bottom: 50px;
    right: 8%;
    z-index: 3;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--gold);
    width: 40px;
    box-shadow: 0 0 20px rgba(184, 146, 79, 0.4);
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

/* Vertical Nav */
.premium-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.vertical-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vertical-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vertical-link:hover,
.vertical-link.active {
    color: var(--gold);
    opacity: 1;
}

.profile-item {
    position: relative;
}

.glass-dropdown {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    min-width: 180px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-item:hover .glass-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.dropdown-item {
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.dropdown-item:hover {
    color: var(--gold);
}

.text-danger {
    color: #ef4444;
}

/* Marquee Ticker */
.brand-marquee {
    background: #000;
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    padding: 0 50px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .premium-hero {
        padding: 0 30px;
        text-align: center;
        justify-content: center;
    }

    .premium-hero-content {
        flex-direction: column;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
    }

    .slider-dots-container {
        right: 50%;
        transform: translateX(50%);
        bottom: 120px;
    }

    /* Mobile Hamburger Nav */
    .premium-nav {
        top: 20px;
        right: 20px;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
        padding: 10px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vertical-menu {
        display: none;
        /* Hide for now, can implement toggle later */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Default for mobile/tablet */
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .collection-grid {
        grid-template-columns: repeat(5, 1fr);
        /* 5 columns for desktop to show all 5 cards in one row */
    }
}

.collection-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collection-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-media {
    transform: scale(1.05);
}

.collection-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.collection-title {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: #111;
    margin: 0 0 4px 0;
}

.collection-desc {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Expand Grid (Deprecating but keeping for reference if needed elsewhere) */
.expand-grid {
    display: flex;
    gap: 20px;
    height: 500px;
    margin-top: 50px;
}

.expand-card {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.expand-card:hover {
    flex: 3;
}

.expand-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9);
}

.expand-card:hover .expand-img {
    filter: brightness(1);
}

.expand-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: 0.1s;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expand-card:hover .expand-content {
    transform: translateY(0);
    opacity: 1;
}

.expand-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #111;
    margin: 0 0 5px 0;
}

.expand-desc {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Studio Layout */
.studio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.studio-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 20px 0 40px;
}

.feature-ticks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tick-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.tick-icon {
    width: 32px;
    height: 32px;
    background: rgba(184, 146, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tick-icon svg {
    width: 18px;
}

.studio-visual {
    position: relative;
}

.glass-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--gold), #f3f4f6);
    border-radius: 50%;
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.studio-video-container {
    position: relative;
    z-index: 2;
    padding: 15px;
    transform: rotate(2deg);
    transition: transform 0.5s;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.studio-video-container:hover {
    transform: rotate(0deg);
}

/* Customization Studio - Full Background Experience */
.studio-bg-experience {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.studio-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.studio-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.studio-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.studio-bg-video.active {
    opacity: 1;
    animation: kenBurnsStudio 12.5s linear forwards;
}

@keyframes kenBurnsStudio {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.studio-active-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.studio-content-overlay {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100% !important;
    /* Allow full screen width for edge-to-edge cinematic feel */
    padding: 0 4%;
    /* Base padding for responsiveness */
}

.studio-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
}

.studio-info-col {
    padding-left: 80px;
    /* 80-100px from left edge as requested */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.heading-accent-wrapper {
    border-left: 4px solid #C9973A;
    padding-left: 20px;
    text-align: left;
    width: 100%;
}

.section-title.text-white {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Ensure all sub-links/buttons also align left */
.studio-action {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

/* UI Elements & Controls */
.studio-ui-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

/* Floating Trust Badge */
.trust-floating-badge {
    position: absolute;
    bottom: 120px;
    right: 8%;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #fff;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.animate-float {
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {

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

    50% {
        transform: translateY(-8px);
    }
}

/* Progress Tracking */
.studio-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.studio-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.6);
}

/* Video Counter & Group Controls */
.studio-controls {
    position: absolute;
    bottom: 40px;
    right: 8%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    pointer-events: auto;
}

.video-counter-pill {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    letter-spacing: 1px;
}

.audio-controls-group {
    display: flex;
    gap: 12px;
}

.audio-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #fff;
    padding: 0;
    opacity: 0;
    transform: scale(0.5);
}

.pulse-delay {
    animation: pulseEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 3s;
}

@keyframes pulseEntry {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    70% {
        transform: scale(1.1);
    }

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

.audio-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) !important;
}

.studio-desc.text-white {
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 550px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.studio-badge {
    background: rgba(201, 151, 58, 0.15) !important;
    border: 1px solid #C9973A !important;
    color: #C9973A !important;
}

.tick-item.text-white {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.floating-stats-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: 15%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stats-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #C9973A;
}

.stats-content {
    display: flex;
    flex-direction: column;
}

.stats-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.stats-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.white-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.newsletter-btn.dark-btn {
    background: #1a1a1a;
    color: #fff;
}

.newsletter-btn.dark-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    background: #fff;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 146, 79, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.process-num {
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    transition: color 0.4s ease;
}

.process-card:hover .process-num {
    color: rgba(184, 146, 79, 0.1);
}

.process-icon {
    width: 50px;
    height: 50px;
    color: var(--gold);
    margin-bottom: 25px;
}

.process-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    color: #111;
}

.process-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Trending */
.trending-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 50px;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .trending-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1199px) {
    .trending-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trending-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.trend-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.trend-info {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    text-align: center;
    align-items: center;
}

.trend-info h4 {
    font-size: var(--h3);
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.4;
    min-height: 3rem; /* Height for ~2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trend-price-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.trend-price-box .text-gold {
    font-size: var(--body);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
}

.btn-cart-trend {
    width: 100%;
    padding: 10px 18px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--small);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(184, 146, 79, 0.2);
}

.btn-cart-trend:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 146, 79, 0.4);
}

.trend-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    z-index: 2;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: #C9973A;
    color: #fff;
}

.badge-red {
    background: #ef4444;
    color: #fff;
}

.trend-info {
    padding: 20px;
    text-align: center;
}

.trend-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #111;
    font-weight: 600;
}

.trend-info p {
    margin: 0 0 15px 0;
    font-weight: 700;
    color: var(--gold-dark);
}

.btn-cart-trend {
    width: 100%;
    padding: 10px;
    background: #C9973A;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cart-trend:hover {
    background: #b08532;
    transform: translateY(-2px);
}

.view-all-shop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gold);
}

.view-all-shop .arrow-icon {
    transition: transform 0.3s ease;
}

.view-all-shop:hover .arrow-icon {
    transform: translateX(4px);
}

.link-animate::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.link-animate:hover::after {
    width: 100%;
}

.text-sm {
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* CTA Banner */
.cta-banner-wrapper {
    padding: 100px 20px;
    background: var(--bg-surface);
}

.dark-gradient-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2410 100%);
    border-radius: 40px;
    padding: 80px 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 151, 58, 0.1);
}

.centered-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.micro-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-sep {
    color: #C9973A;
    font-size: 18px;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.centered-actions {
    justify-content: center;
}

.secondary-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    box-shadow: none;
}

.secondary-outline:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--gold), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
    opacity: 0.1;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: 200px;
    opacity: 0.08;
}

/* Modal */
.hidden-form {
    display: none;
}

.login-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-popup-overlay.show {
    opacity: 1;
}

.glass-modal {
    background: #fff;
    border: 1px solid rgba(184, 146, 79, 0.3);
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.login-popup-overlay.show .glass-modal {
    transform: translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.popup-title {
    font-size: 1.5rem;
    margin: 0;
}

.glass-btn {
    background: #f3f4f6;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #111;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glass-btn:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.popup-body {
    text-align: center;
    color: #111;
}

.popup-icon-glow {
    margin-bottom: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(184, 146, 79, 0.1);
}

.popup-message {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-family: var(--font-heading);
    color: #111;
}

.popup-subtext {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 30px;
}

.justify-center {
    justify-content: center;
}

.w-full {
    width: 100%;
    box-sizing: border-box;
}

/* Utilities & Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInAnim 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

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

@keyframes fadeInAnim {
    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .premium-nav {
        display: none;
    }

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

@media (max-width: 992px) {
    .premium-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-wrapper {
        padding-top: 50px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .studio-layout-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .studio-info-col {
        padding-left: 20px;
        padding-right: 20px;
        align-items: center;
        text-align: center;
    }

    .heading-accent-wrapper {
        border-left: none;
        padding-left: 0;
    }

    .floating-stats-card {
        margin: 40px auto 0;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expand-grid {
        flex-direction: column;
        height: 800px;
    }

    .trending-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .divider {
        display: none;
    }

@media (max-width: 768px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: clamp(22px, 6vw, 32px);
    }

    .hero-description {
        font-size: 14px;
    }

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

    .cta-inner {
        padding: 40px 20px;
    }

    .section-title {
        font-size: clamp(20px, 5vw, 28px);
    }
}
}
/* Header & Global UI Overrides */
.site-header {
    position: fixed;
    top: 15px;
    left: 30px;
    width: auto;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    transition: all 0.3s ease;
    padding: 0;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 0 0 12px 0;
    padding: 12px 20px;
}

.ft-logo {
    font-size: 24px;
    font-weight: 700;
    color: #C9973A;
    text-decoration: none;
    letter-spacing: 2px;
}

.cart-icon {
    color: #ffffff;
    position: relative;
    text-decoration: none;
    padding: 5px;
}

/* Redefine toggleDrawer as global in script.js later, but here's CSS fix */
.ft-logo {
    font-family: var(--font-heading);
    font-size: var(--h3);
    font-weight: 700;
    letter-spacing: 2px;
    color: #C9973A;
    text-decoration: none;
}

.header-actions-inline {
    display: flex;
    align-items: center;
}

.cart-btn {
    position: relative;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    color: #C9973A;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #C9973A;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.vertical-nav {
    z-index: 600 !important;
}

