/* Font imports - Using 'block' for ALL fonts to prevent layout shifts */
@font-face {
    font-family: 'OCR-A';
    src: url('../assets/fonts/OCR-a___.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'OCR-B';
    src: url('../assets/fonts/OCR-B.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'DrukSuper';
    src: url('../assets/fonts/DrukText-Medium-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'DrukSuperItalic';
    src: url('../assets/fonts/DrukText-SuperItalic-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'DrukMedium';
    src: url('../assets/fonts/DrukText-Medium-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #faf8f5;
}

/* Fullpage.js will handle section sizing */
.section {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Container for components - fills entire section */
.section-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* ========== SECTION 1: TIMELINE ========== */
#timeline-section {
    background: #faf8f5;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#nolimitVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#barsContainer {
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 100vw;
    height: 100px;
    mask: linear-gradient(
        to right,
        white 0%,
        white 30%,
        transparent 40%,
        transparent 60%,
        white 70%,
        white 100%
    );
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}

.bar {
    position: absolute;
    width: 4px;
    background: rgba(255, 255, 255, 1);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 1px;
    transition: height 0.1s ease-out;
}

.text-overlay {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'OCR-A', monospace;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-container {
    position: fixed;
    top: 30px;
    left: 70px;
    width: 220px;
    height: auto;
    font-family: 'OCR-A', monospace;
    font-size: 12px;
    color: white;
    z-index: 1002;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Stats box animated borders - draw from corners */
.stats-border-top-left,
.stats-border-left-top,
.stats-border-bottom-right,
.stats-border-right-bottom {
    position: absolute;
    background: white;
}

/* Top-left corner borders */
.stats-border-top-left {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform-origin: left;
    transform: scaleX(0);
}

.stats-border-left-top {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    transform-origin: top;
    transform: scaleY(0);
}

/* Bottom-right corner borders */
.stats-border-bottom-right {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transform-origin: right;
    transform: scaleX(0);
}

.stats-border-right-bottom {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100%;
    transform-origin: bottom;
    transform: scaleY(0);
}

/* Stats content */
.stats-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
}

.stat-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 30px;
    opacity: 0;
    transform: translateX(-10px);
}

.stat-label {
    font-family: 'OCR-A', monospace;
    font-size: 13px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
}

.stat-value {
    font-family: 'OCR-A', monospace;
    font-size: 13px;
    font-weight: normal;
    color: white;
    letter-spacing: 1px;
}

.scroll-hint {
    display: none;
}

/* Navigation box with animated borders */
.nav-container {
    position: fixed;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    font-family: 'OCR-A', monospace;
    font-size: 12px;
    color: white;
    z-index: 1002;
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Nav box animated borders - draw from corners */
.nav-border-top-left,
.nav-border-left-top,
.nav-border-bottom-right,
.nav-border-right-bottom {
    position: absolute;
    background: white;
}

/* Top-left corner borders for nav */
.nav-container .nav-border-top-left {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform-origin: left;
    transform: scaleX(0);
}

.nav-container .nav-border-left-top {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    transform-origin: top;
    transform: scaleY(0);
}

/* Bottom-right corner borders for nav */
.nav-container .nav-border-bottom-right {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transform-origin: right;
    transform: scaleX(0);
}

.nav-container .nav-border-right-bottom {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100%;
    transform-origin: bottom;
    transform: scaleY(0);
}

/* Nav links */
.nav-link {
    font-family: 'OCR-A', monospace;
    font-size: 13px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(10px);
    cursor: pointer;
    font-weight: normal;
}

.nav-link:hover {
    color: #a855f7;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

/* Sticky Top Nav Bar (centered glassy) */
#sticky-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 2000;
    display: flex;
    gap: 40px;
    padding: 14px 44px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    opacity: 0;
    white-space: nowrap;
}

.sticky-nav-link {
    font-family: 'OCR-B', monospace;
    font-size: 11px;
    font-weight: normal;
    color: #1D1617;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    opacity: 0.75;
}

.sticky-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 4px;
    height: 4px;
    background: #a855f7;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-nav-link:hover {
    color: #a855f7;
    opacity: 1;
}

.sticky-nav-link:hover::after,
.sticky-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.sticky-nav-link.active {
    color: #a855f7;
    opacity: 1;
}

.timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

/* ========== SECTION 2: TYPEWRITER ========== */
#typewriter-section {
    background: #faf8f5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.typewriter-container,
.typewriter-container *,
#typed-output {
    font-family: 'OCR-B', monospace !important;
}

.typewriter-container {
    position: fixed;
    left: 5vw;
    top: 24vh;
    width: 38vw;
    max-width: 500px;
    height: auto;
    color: #333;
    font-family: 'OCR-B', monospace;
    font-size: 16px;
    line-height: 1.8;
    z-index: 15;
    padding: 0;
    padding-right: 40px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#typed-output {
    display: inline;
    vertical-align: top;
    text-align: left;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-family: 'OCR-B', monospace;
    font-size: 16px;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
}

.typed-cursor {
    display: inline-block;
    vertical-align: baseline;
    line-height: 1.8;
    font-family: 'OCR-B', monospace;
    font-size: 16px;
    opacity: 1;
    margin-left: 2px;
}

.typed-cursor.blinking {
    animation: cursorBlink 0.8s ease-in-out infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Scroll Chevron Indicator */
.scroll-chevron {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scroll-chevron svg {
    width: 24px;
    height: 24px;
    color: #1D1617;
}

/* Timeline Chevron - appears below scrambling text */
.timeline-scroll-chevron {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.timeline-scroll-chevron svg {
    width: 18px;
    height: 18px;
    color: white;
}

@keyframes chevronBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(5px);
    }
}


/* ========== SECTION 1: PRODUCT ========== */
#product-section {
    background: #faf8f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 60px 40px 60px;
    overflow: hidden;
}

.product-container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

/* Header Section */
.product-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.product-title {
    font-family: 'DrukMedium', Arial, sans-serif;
    font-size: 38px;
    color: #1D1617;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #372528;
    line-height: 1.6;
    opacity: 0.85;
}

/* Product Cards Container */
.product-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 10px;
}

/* Retro Product Card */
.product-card {
    position: relative;
    background: #ffffff;
    border: 3px solid #1D1617;
    box-shadow: 8px 8px 0 #1D1617;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #1D1617;
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Product Image Area */
.product-image-area {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #e0d9ff 0%, #f5f0ff 100%);
    border-bottom: 3px solid #1D1617;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-image-large {
    padding: 5px;
    transform: scale(1.15);
}

/* Preorder Badge */
.preorder-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-block;
    padding: 3px 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #1D1617;
    box-shadow: 2px 2px 0 #1D1617;
    z-index: 10;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #a855f7;
    border-radius: 50%;
    animation: glowPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(168, 85, 247, 1), 0 0 16px rgba(168, 85, 247, 0.6);
    flex-shrink: 0;
}

@keyframes glowPulse {
    0%, 100% {
        background: #a855f7;
        box-shadow: 0 0 8px rgba(168, 85, 247, 1), 0 0 16px rgba(168, 85, 247, 0.6);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        background: #c084fc;
        box-shadow: 0 0 16px rgba(168, 85, 247, 1), 0 0 32px rgba(168, 85, 247, 0.8), 0 0 48px rgba(168, 85, 247, 0.4);
        transform: scale(1.3);
        opacity: 0.9;
    }
}

.badge-text {
    font-family: 'OCR-B', monospace;
    font-size: 8px;
    color: #1D1617;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: normal;
    white-space: nowrap;
}

.product-image-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(168, 85, 247, 0.03) 2px,
            rgba(168, 85, 247, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(168, 85, 247, 0.03) 2px,
            rgba(168, 85, 247, 0.03) 4px
        );
    pointer-events: none;
}

/* Product Info Section */
.product-info {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
}

.product-name {
    font-family: 'DrukMedium', Arial, sans-serif;
    font-size: 20px;
    color: #1D1617;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.product-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #372528;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 0;
}

.product-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #1D1617;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.free-shipping {
    font-size: 16px;
    color: #1D1617;
    font-weight: 500;
}

/* Pre-Order Button */
.preorder-button {
    display: inline-block;
    padding: 10px 28px;
    background: #1D1617;
    color: #faf8f5;
    font-family: 'OCR-B', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #1D1617;
    transition: all 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 4px;
}

.preorder-button:hover {
    background: #a855f7;
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.5), 0 0 24px rgba(168, 85, 247, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-title {
        font-size: 42px;
    }
}

/* ========== SECTION 6: TEAMS ========== */
#teams-section {
    background: #faf8f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    padding-top: 100px;
    overflow: hidden;
}

.teams-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow-y: auto;
    overflow-x: hidden;
}

.teams-title {
    font-family: 'DrukMedium', Arial, sans-serif;
    font-size: 42px;
    color: #1D1617;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.teams-video-container {
    width: 72vw;
    height: auto;
    max-height: calc(90vh - 180px);
    aspect-ratio: 1920 / 1300;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #1D1617;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(29, 22, 23, 0.1) inset;
    position: relative;
    background: #000;
    flex-shrink: 1;
}

.teams-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.teams-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
    flex-shrink: 1;
}

.teams-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #372528;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

.teams-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 0;
}

.teams-feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #1D1617;
    box-shadow: 4px 4px 0 #1D1617;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.teams-feature-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #1D1617;
    background: rgba(255, 255, 255, 0.85);
}

.teams-feature-item h3 {
    font-family: 'DrukMedium', Arial, sans-serif;
    font-size: 15px;
    color: #1D1617;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.teams-feature-item p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #372528;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Teams Section */
@media (max-width: 1200px) {
    #teams-section {
        padding: 50px 60px;
    }

    .teams-title {
        font-size: 46px;
    }

    .teams-features {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    #teams-section {
        padding: 40px 30px;
    }

    .teams-title {
        font-size: 36px;
    }

    .teams-video-container {
        border-radius: 20px;
        border-width: 3px;
    }

    .teams-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .teams-description {
        font-size: 15px;
    }
}

/* ========== SECTION 7: LAPTOP ========== */
#laptop-section {
    background: #faf8f5;
    position: relative;
}

#laptop-scene-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#laptop-title {
    font-family: 'DrukMedium', Arial, sans-serif;
    letter-spacing: 2px;
    color: #1D1617;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    backface-visibility: hidden;
}

#laptop-title span {
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.3), 0 0 16px rgba(168, 85, 247, 0.15);
}

#laptop-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #372528;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== SECTIONS 3-6: FEATURE SECTIONS ========== */
#feature-1, #feature-2, #feature-3, #feature-4 {
    background: #faf8f5;
}

/* Fixed Feature Overlay */
#feature-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: transparent;
    visibility: hidden;
    opacity: 0;
}

/* Reactive grid will be added via JavaScript canvas */

/* Vertical Timeline - Left Side */
#vertical-timeline {
    position: fixed;
    left: 30px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 1002;
    pointer-events: auto;
}

.timeline-track-container {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 2px;
    height: 100%;
    background: rgba(168, 85, 247, 0.25);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.2);
    opacity: 0;
}

#timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 0%;
    background: #a855f7;
    border-radius: 2px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

.timeline-dot {
    display: none;
}

/* Content Container - Top Left (reuse existing styles) */
#timeline-content {
    position: fixed;
    left: 90px;
    top: 90px;
    max-width: 437px;
    z-index: 1003;
    pointer-events: none;
    padding-right: 20px;
}

#section-title {
    font-family: 'DrukMedium', Arial, sans-serif;
    font-size: 42px;
    color: #1D1617;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
}

#section-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #372528;
    line-height: 1.6;
    opacity: 0.85;
}

/* Phone Container - Center */
#feature-phone-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1004;
    pointer-events: none;
    overflow: visible;
}

/* Video Frame - Right Side */
#feature-video-frame {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 42vw;
    height: 60vh;
    max-width: 720px;
    max-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1005;
    background: #1D1617;
    border: 1px solid rgba(168, 85, 247, 0.2);
    pointer-events: none;
}

#feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== SECTION 8: CONTACT ========== */
#contact-section {
    background: #faf8f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

.contact-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    pointer-events: none;
}

/* NOLIMIT text at top */
#nolimit-text-container {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.nolimit-text {
    font-family: 'DrukSuperItalic', Arial, sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    color: #1D1617;
    font-weight: bold;
    letter-spacing: 2px;
    transform: scaleX(0.8);
    line-height: 1;
}

/* Contact button */
#contact-container {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

#contact-button {
    display: inline-block;
    padding: 18px 60px;
    background: #1D1617;
    color: #faf8f5;
    font-family: 'DrukMedium', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2px solid #1D1617;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#contact-button:hover {
    background: #a855f7;
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.4), 0 0 24px rgba(168, 85, 247, 0.2), 0 8px 16px rgba(168, 85, 247, 0.2);
}

/* Bottom section with divider and socials */
.bottom-section {
    position: absolute;
    bottom: 60px;
    width: 80%;
    max-width: 800px;
}

.divider {
    width: 0;
    height: 1px;
    background: #1D1617;
    margin: 0 auto 30px;
    opacity: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.social-link {
    position: relative;
    color: #1D1617;
    text-decoration: none;
    font-family: 'OCR-B', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: auto;
}

.social-text {
    display: block;
    transition: color 0.3s ease;
}

.social-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1D1617;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.social-link:hover .social-text {
    color: #a855f7;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.4), 0 0 16px rgba(168, 85, 247, 0.2);
}

.social-link:hover .social-underline {
    transform: scaleX(1);
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

/* ========== UTILITY CLASSES ========== */
.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== FULLPAGE.JS NAVIGATION DOTS ========== */
#fp-nav,
.fp-slidesNav {
    display: none !important;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: #a855f7;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    background: #a855f7;
    width: 12px;
    height: 12px;
}

#fp-nav ul li .fp-tooltip {
    color: #1a1a1a;
}

/* ========== HIDE FULLPAGE.JS BRANDING ========== */
.fp-watermark,
.fp-credits,
#fp-nav.fp-show-active a.active + .fp-tooltip,
a[href*="alvarotrigo"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ========== SHOPIFY INTEGRATION - FLOATING CART BUTTON ========== */
.floating-cart-button {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #000;
    border: 2px solid #000;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-cart-button:hover {
    background: #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-cart-button svg {
    width: 24px;
    height: 24px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff3333;
    color: #fff;
    font-size: 11px;
    font-family: 'OCR-A', monospace;
    font-weight: bold;
    padding: 4px 7px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    border: 2px solid #fff;
}

/* ========== SHOPIFY CART OVERLAY ========== */
.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cart-overlay.active {
    display: flex;
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    justify-content: flex-end;
    pointer-events: auto;
}

.cart-sidebar {
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #0a0a0a;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.cart-overlay.active .cart-sidebar {
    transform: translateX(0);
}

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

.cart-header h2 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.cart-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

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

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.cart-empty p {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    margin: 0 0 10px 0;
}

.cart-empty-subtitle {
    font-size: 14px !important;
    opacity: 0.7;
}

/* ========== CART ITEMS ========== */
.cart-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.cart-item-top {
    display: flex;
    gap: 20px;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.2px;
}

.cart-item-variant {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.cart-item-price {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cart-item-total {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-top: auto;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    overflow: hidden;
}

.qty-decrease,
.qty-increase {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 16px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 300;
}

.qty-decrease:hover:not(:disabled),
.qty-increase:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
}

.qty-decrease:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-input {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    width: 50px;
    height: 36px;
    text-align: center;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-remove {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
    font-family: 'Inter', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-remove:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: #fff;
}

/* ========== CART FOOTER ========== */
.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
}

.cart-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cart-total {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Inter', Arial, sans-serif;
    color: #fff;
}

.cart-total span:first-child {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.cart-total span:last-child {
    font-size: 18px;
    font-weight: 600;
}

.btn-checkout {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-checkout:hover {
    background: #e0e0e0;
}

/* ========== SHOPIFY INTEGRATION - LOADING STATES ========== */
/* Loading and error states for Shopify products */
.products-loading,
.shopify-error,
.shopify-not-configured {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    color: rgba(255, 255, 255, 0.7);
}

.products-loading p,
.shopify-error p,
.shopify-not-configured p {
    font-family: 'OCR-A', monospace;
    font-size: 16px;
    margin: 0 0 10px 0;
}

.error-detail,
.setup-note {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px !important;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* ========== NOTIFICATIONS ========== */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: 'OCR-A', monospace;
    font-size: 13px;
    z-index: 10001;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-color: rgba(0, 255, 0, 0.3);
}

.notification-error {
    border-color: rgba(255, 0, 0, 0.3);
}

/* ========== SHOPIFY RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    .cart-sidebar {
        max-width: 100%;
    }

    .floating-cart-button {
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
    }

    .floating-cart-button svg {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        font-size: 10px;
        padding: 3px 6px;
        min-width: 18px;
    }
}
