:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #2997ff;
    /* Adjusted for better visibility on dark */
    --accent-hover: #4facfe;
    --secondary-text: #d1d1d6;
    --section-bg: #111111;
    --glass-bg: rgba(10, 10, 10, 0.8);
    --border-color: #222222;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --spacing-xxl: 80px;
    --spacing-huge: 120px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-input: 0 1px 2px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --header-height: 110px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-hidden {
    display: block;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
        margin-bottom: 20px !important;
    }

    .display-text {
        font-size: clamp(2rem, 12vw, 4rem) !important;
    }

    .section {
        padding: var(--spacing-xl) 0 !important;
    }

    .container {
        padding: 0 16px;
    }
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.015em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none !important;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Lighter border for dark mode */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-btn {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    transition: opacity 0.2s;
}

.nav-btn:hover {
    opacity: 0.8;
}

/* Buttons */
.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 28px;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(41, 151, 255, 0.3);
    background-color: var(--accent-hover);
}

/* Trust Badges */
.trust-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-color);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.trust-item:hover {
    opacity: 1;
}

.trust-icon {
    font-size: 2rem;
}

.trust-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.trust-text p {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

/* Reviews Section */
.reviews-section {
    background: #0f0f0f;
    padding: var(--spacing-xxl) 0;
}

.review-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid #333;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Product Card Actions (Quick View) */
.card-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    width: 90%;
}

.card:hover .card-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.action-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.action-btn:hover {
    background: #fff;
}

.badge-bestseller {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffd700;
    color: #000;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section - Expanded */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 200px 20px 60px;
    background: var(--bg-color);
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.2s;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--secondary-text);
    margin-bottom: 40px;
    max-width: 680px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.6s;
}

.hero-visual {
    margin-top: 60px;
    width: 100%;
    max-width: 1000px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    animation: zoomIn 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.8s;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    display: block;
    transition: transform 1s;
}

.hero-visual:hover img {
    transform: scale(1.02);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Sections */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-bg {
    background-color: var(--section-bg);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Enhanced Cards */
.card {
    background: var(--section-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f5f5f7;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image {
    transform: scale(1.08);
    /* Proper zoom */
}

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-price {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Steps (How it works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    text-align: left;
}

.step-card {
    padding: 30px;
    background: var(--section-bg);
    border-radius: var(--radius-lg);
    transition: background 0.3s;
    border: 1px solid var(--border-color);
}

.step-card:hover {
    background: var(--bg-color);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e5e5e7;
    margin-bottom: 16px;
    line-height: 1;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--secondary-text);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-scroller {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
}

.testimonials-scroller::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 300px;
    background: var(--section-bg);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    scroll-snap-align: center;
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

/* Auth Pages */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: var(--section-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.auth-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--secondary-text);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--bg-color);
    color: var(--text-color);
}

.form-input:focus {
    outline: none;
    background: var(--bg-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

/* Footer Enhanced */
.footer {
    background: var(--section-bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.footer h4 {
    margin-bottom: 24px;
    color: var(--text-color);
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: var(--secondary-text);
}

.footer-links a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    /* Mobile menu needed logic, simplified for now */
    .grid {
        grid-template-columns: 1fr;
    }

    .product-preview-container {
        flex-direction: column;
    }

    .preview-area {
        width: 100%;
    }
}

/* Frame Styles Fixes */
/* Frame Styles Fixes */
.poster-frame {
    transition: all 0.5s ease;
    width: fit-content;
    /* Ensure it wraps the image */
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    /* For glass effect overlay */
    display: inline-block;
    /* Helps with wrapping */
}

.frame-none {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: none;
}

.frame-black {
    border: 16px solid #111;
    /* Thicker frame */
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        /* Inner highlight */
        0 0 0 2px #333;
    /* Outer definition */
    background: #111;
}

.frame-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    z-index: 5;
}

/* Apple-style Animation Utilities */

/* Key Animation Bezier - The 'Apple' Feel */
:root {
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Base Reveal Class */
.reveal-element {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo), filter 1.2s var(--ease-out-expo);
    will-change: opacity, transform, filter;
    filter: blur(10px);
}

.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* New Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(79, 172, 254, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(79, 172, 254, 0.6), 0 0 10px rgba(79, 172, 254, 0.4);
    }

    100% {
        box-shadow: 0 0 5px rgba(79, 172, 254, 0.2);
    }
}

.anim-glow {
    animation: glow 3s infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 1s ease forwards;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-anim {
    animation: floatY 6s ease-in-out infinite;
}

/* Sticky Container for Animations */
.product-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    min-height: 120vh;
    /* Force scroll to show off sticky */
    position: relative;
    padding-top: 100px;
    /* Offset for header */
}

.sticky-image-container {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
}

.scroll-content {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Feature Blocks for Scrolling */
.feature-block {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out-expo);
    padding: 30px;
    background: var(--section-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.feature-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

@media (max-width: 900px) {
    .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-image-container {
        position: relative;
        top: 0;
        height: auto;
        margin-bottom: -20px;
    }
}

/* GEN Z / MODERN UPDATES */
:root {
    --primary-color: #111;


    /* Product Detail Options */
    .option-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
        margin-top: 10px;
    }

    .option-card {
        background: var(--section-bg);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 15px;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
        position: relative;
    }

    .option-card:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: var(--secondary-text);
    }

    .option-card.selected {
        border-color: var(--accent-color);
        background: rgba(41, 151, 255, 0.1);
        box-shadow: 0 0 0 1px var(--accent-color);
    }

    .option-card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
        opacity: 0.7;
        transition: opacity 0.2s;
        fill: currentColor;
    }

    .option-card.selected .option-card-icon {
        opacity: 1;
        color: var(--accent-color);
    }

    .option-card-label {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .option-card-sub {
        font-size: 0.75rem;
        color: var(--secondary-text);
        margin-top: 4px;
    }

    /* Design Thumbnails */
    .design-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
        /* Firefox */
    }

    .design-grid::-webkit-scrollbar {
        display: none;
    }

    .design-thumb {
        width: 70px;
        height: 70px;
        border-radius: var(--radius-md);
        border: 2px solid var(--border-color);
        cursor: pointer;
        overflow: hidden;
        flex-shrink: 0;
        transition: all 0.2s;
        position: relative;
    }

    .design-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .design-thumb:hover img {
        transform: scale(1.1);
    }

    .design-thumb.selected {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 2px rgba(41, 151, 255, 0.2);
    }

    .design-thumb.selected img {
        transform: scale(1.1);
    }

    --card-bg: #fff;
    --gradient-1: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    --gradient-2: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);
    --noise-bg: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnPjxmaWx0ZXIgaWQ9J25vaXNlJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC42JyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI25vaXNlKScgb3BhY2l0eT0nMC4wNScvPjwvc3ZnPg==');
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
    padding: 12px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-item {
    margin: 0 40px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Horizontal Swiper */
.swiper-section {
    position: relative;
    width: 100%;
    overflow-x: auto;
    padding: 20px 0 60px;
    display: flex;
    gap: 30px;
    scroll-snap-type: x mandatory;
    margin: 0 -20px;
    /* Offset container padding */
    padding: 20px 20px 60px;
    /* Restore padding */
}

.swiper-card {
    min-width: 280px;
    scroll-snap-align: center;
}

/* Gen Z Typography & Effects */
.display-text {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-weight: 800;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hover-tilt {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-tilt:hover {
    transform: rotate(-2deg) scale(1.05);
}

/* Category Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 250px;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f0f0f0;
    cursor: pointer;
}

.bento-item.large {
    grid-row: span 2;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--noise-bg);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}


/* MOTION & SCROLL EXTENSIONS */
.scroll-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-zoom-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-rotate-up {
    opacity: 0;
    transform: translateY(100px) rotate(10deg);
    transition: all 0.8s ease-out;
}

.scroll-rotate-up.is-visible {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* Parallax Container */
.parallax-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.6;
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.1s linear;
    /* Smooth JS scrolling */
}

/* Floating Elements */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.float-anim.delay-1 {
    animation-delay: 1s;
}

.float-anim.delay-2 {
    animation-delay: 2s;
}

/* Infinite Scroll Grid */
.infinite-scroll-wrapper {
    display: flex;
    overflow: hidden;
    gap: 20px;
    padding: 40px 0;
}

.infinite-scroll-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assuming duplicated content */
}

.infinite-card {
    min-width: 300px;
    height: 400px;
    border-radius: 20px;
    background: #333;
    flex-shrink: 0;
    overflow: hidden;
}

.infinite-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Updated Category Styles for Large Lists */
.bento-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    /* Smaller dense items */
    gap: 15px;
}

.bento-item {
    height: 200px;
    /* Uniform height for cleaner look */
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 415px;
}

/* Product Detail & Modal Styles (Missing) */
.option-group {
    margin-bottom: 24px;
}

.option-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 12px;
    font-weight: 500;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.option-btn {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    background: var(--section-bg);
    color: var(--text-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.option-btn:hover {
    border-color: var(--accent-color);
    background: var(--bg-color);
}

.option-btn.selected {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--section-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--border-color);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Mobile Navigation & Responsive Enhancements */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-overlay a {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s;
}

.mobile-nav-overlay a:active {
    transform: scale(0.9);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 400px;
    height: 64px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-bottom-item.active {
    color: var(--accent-color);
}

.mobile-bottom-item i {
    font-size: 1.2rem;
}

.mobile-bottom-item span {
    font-size: 0.65rem;
    font-weight: 600;
}

/* Mobile Options Selection Fix */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    .option-buttons {
        gap: 8px;
        justify-content: flex-start;
    }

    .option-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
        flex: 1 1 30%;
        /* 3 per row on small phones if needed */
        text-align: center;
    }

    .option-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-card {
        padding: 10px;
        min-height: 90px;
    }
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }

    .nav-links {
        display: none;
    }

    /* Mobile Header Fixes */
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-wrapper {
        display: flex;
        align-items: center;
        z-index: 1001;
        width: 40px;
        /* Consistent width to balance right side */
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 1000;
    }

    .navbar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Show hamburger */

    :root {
        --header-height: 60px;
        --spacing-xxl: 40px;
    }

    .display-text {
        font-size: 2.5rem !important;
        line-height: 1.1;
        /* Better line height for wrapping */
    }

    .section-title {
        font-size: 2rem !important;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .product-layout-grid {
        grid-template-columns: 1fr;
        padding-top: 40px !important;
        /* Reduced padding */
        gap: 30px;
    }

    .sticky-image-container {
        position: relative;
        top: 0;
        height: auto;
        min-height: auto;
        margin-bottom: 20px;
    }

    /* Admin Sidebar Mobile */
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
        width: 80%;
        box-shadow: 10px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 2000;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
        padding: 20px;
    }

    .desktop-search {
        display: none !important;
    }

    .mobile-search-btn {
        display: block !important;
    }

    .manifesto-line {
        font-size: 2.2rem !important;
        /* Smaller text for mobile */
        margin-top: 5px !important;
        /* Reset heavy negative margins */
        line-height: 1.1;
    }

    .manifesto-container {
        padding: 0 10px;
    }

    /* Smaller buttons for mobile */
    .cta-button {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        /* Stack buttons if needed, or keep row but smaller */
        gap: 12px;
    }

    .bento-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }

    .hero {
        padding: 80px 20px 40px;
    }

    .modal {
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        padding: 20px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .admin-mobile-toggle {
        display: block !important;
        margin-right: 10px;
    }
}

.admin-mobile-toggle {
    display: none;
}

/* Manifesto Text Base Styles */
.manifesto-line {
    font-size: 4rem;
    color: #666;
    margin-top: -20px;
    transition: all 0.5s ease;
}

.manifesto-line:first-child {
    margin-top: 0;
}

/* Chatbot Floating Button */
.chatbot-trigger-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #fca311;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(252, 163, 17, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.chatbot-trigger-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(252, 163, 17, 0.6);
}

@media (max-width: 768px) {
    .chatbot-trigger-btn {
        bottom: 100px;
        /* Move up to clear mobile bottom nav */
        right: 20px;
        width: 50px;
        height: 50px;
    }
}


/* Enhanced CTA */
.cta-button {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.badge-new {
    background: #ff3cac;
    color: white;
}

.badge-limited {
    background: #fca311;
    color: black;
}

/* Product Detail Options */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.option-card {
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--secondary-text);
}

.option-card.selected {
    border-color: var(--accent-color);
    background: rgba(41, 151, 255, 0.1);
    box-shadow: 0 0 0 1px var(--accent-color);
}

.option-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
    fill: currentColor;
}

.option-card.selected .option-card-icon {
    opacity: 1;
    color: var(--accent-color);
}

.option-card-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.option-card-sub {
    font-size: 0.75rem;
    color: var(--secondary-text);
    margin-top: 4px;
}

/* Design Thumbnails */
.design-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    /* Firefox */
}

.design-grid::-webkit-scrollbar {
    display: none;
}

.design-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.2s;
    position: relative;
}

.design-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.design-thumb:hover img {
    transform: scale(1.1);
}

.design-thumb.selected {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(41, 151, 255, 0.2);
}


/* Restore variables potentially blocked by syntax error */
:root {
    --card-bg: #fff;
    --gradient-1: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    --gradient-2: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);
    --noise-bg: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnPjxmaWx0ZXIgaWQ9J25vaXNlJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC42JyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI25vaXNlKScgb3BhY2l0eT0nMC4wNScvPjwvc3ZnPg==');
}