/* =============================================
   SPYRE Homepage Styles
   Page-specific CSS for the homepage/landing page
   ============================================= */

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

/* Hero Background with Parallax */
.hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('https://spyreco.com/wp-content/uploads/2025/10/unnamed-41-topaz-upscale-4x.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    will-change: transform;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Removed shake animation for smooth loading */
}

/* Random shutter effect on entry - REMOVED for smooth loading */
/* @keyframes hero-shutter animation removed */

/* Background Overlay Effects */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10,10,10,0.4) 0%,
        rgba(10,10,10,0.3) 50%,
        rgba(26,26,26,0.35) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
}

/* Glitch Overlay for Entry Animation */
.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    animation: glitch-entry 3s ease-out forwards;
}

@keyframes glitch-entry {
    0% {
        opacity: 1;
        background: linear-gradient(
            0deg,
            transparent 48%,
            rgba(255, 255, 255, 0.8) 49%,
            rgba(255, 255, 255, 0.8) 51%,
            transparent 52%
        );
        background-size: 100% 10px;
        transform: translateY(0) scaleY(1);
        filter: contrast(2) brightness(1.5);
    }
    10% {
        transform: translateY(-100vh) scaleY(0.1);
        background: repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.5) 2px,
            transparent 2px,
            transparent 4px
        );
    }
    20% {
        transform: translateY(100vh) scaleY(2);
        background: repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px,
            transparent 3px
        );
    }
    30%, 100% {
        opacity: 0;
        transform: translateY(0) scaleY(1);
    }
}

/* Cinematic Entry Bars - REMOVED for smooth loading */
/* Cinema bars and animation removed */

/* Digital Noise Animation */
.digital-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 2;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
    animation: noise-shift 0.2s infinite;
}

@keyframes noise-shift {
    0%, 100% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-2px);
    }
    40% {
        transform: translateX(2px);
    }
    60% {
        transform: translateX(-1px);
    }
    80% {
        transform: translateX(1px);
    }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
    animation: scan 3s linear infinite;
    z-index: 2;
}

@keyframes scan {
    0% { top: 0; opacity: 1; }
    50% { opacity: 0.3; }
    100% { top: 100vh; opacity: 1; }
}

/* Japanese text styles - REMOVED for cleaner look */
/* Japanese text and animation removed */

.glitch-container {
    text-align: center;
    z-index: 3;
    animation: container-entry 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

@keyframes container-entry {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px) brightness(2);
    }
    20% {
        opacity: 0.3;
        transform: translateY(20px) scale(0.97);
        filter: blur(5px) brightness(1.5) hue-rotate(180deg);
    }
    40% {
        opacity: 0.6;
        transform: translateY(10px) scale(0.99);
        filter: blur(2px) brightness(1.2) hue-rotate(-90deg);
    }
    60% {
        opacity: 0.9;
        transform: translateY(-5px) scale(1.02);
        filter: blur(0px) brightness(1.1) hue-rotate(0deg);
    }
    80% {
        opacity: 1;
        transform: translateY(2px) scale(0.99);
        filter: blur(0px) brightness(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px) brightness(1);
    }
}

.brand-title {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--cyber-green);
}

.tagline {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--text-white);
    border: 1px solid var(--cyber-green);
    padding: 0.5rem 2rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
}

/* =============================================
   COLLECTION SECTION
   ============================================= */
.collection {
    padding: 8rem 2rem 12rem 2rem;
    background: linear-gradient(180deg,
        var(--primary-black) 0%,
        rgba(26, 26, 26, 0.95) 50%,
        var(--primary-black) 100%);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

/* Background texture pattern */
.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.01) 35px,
            rgba(255, 255, 255, 0.01) 70px
        ),
        url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cfilter id="noise"%3E%3CfeTurbulence baseFrequency="0.9" numOctaves="4" /%3E%3C/filter%3E%3C/defs%3E%3Crect width="100" height="100" filter="url(%23noise)" opacity="0.02"/%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: 0;
    animation: texture-shift 20s linear infinite, stripe-pulse 6s ease-in-out infinite;
}

@keyframes texture-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(35px, 35px); }
}

/* Subtle pulsing animation for white stripes */
@keyframes stripe-pulse {
    0%, 100% {
        opacity: 0.5;
        filter: brightness(1) contrast(1);
    }
    25% {
        opacity: 0.6;
        filter: brightness(1.1) contrast(1.05);
    }
    50% {
        opacity: 0.4;
        filter: brightness(0.95) contrast(0.95);
    }
    75% {
        opacity: 0.55;
        filter: brightness(1.05) contrast(1.02);
    }
}

/* Floating light accent */
.collection::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 40%
    );
    z-index: 0;
    animation: float-light 15s ease-in-out infinite;
}

@keyframes float-light {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10%, -10%) scale(1.1); }
    66% { transform: translate(-10%, 10%) scale(0.9); }
}

.collection.animate-in {
    animation: collection-glitch-in 2s ease-out forwards;
}

@keyframes collection-glitch-in {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(4px);
    }
    10% {
        opacity: 0.8;
        transform: translateY(15px) scale(0.99);
        filter: blur(2px) hue-rotate(180deg);
    }
    15% {
        opacity: 0.2;
        transform: translateY(10px) scale(1.01);
        filter: blur(0px) hue-rotate(-90deg);
    }
    20% {
        opacity: 0.9;
        transform: translateY(5px) scale(0.98);
        filter: blur(1px) hue-rotate(90deg);
    }
    25% {
        opacity: 0.3;
        transform: translateY(-2px) scale(1.02);
        filter: blur(3px);
    }
    30% {
        opacity: 1;
        transform: translateY(0) scale(0.99);
        filter: blur(0px);
    }
    35% {
        opacity: 0.4;
        transform: translateY(2px) scale(1.01);
        filter: blur(2px);
    }
    40% {
        opacity: 0.95;
        transform: translateY(-1px) scale(0.98);
        filter: blur(0px);
    }
    45% {
        opacity: 0.5;
        transform: translateY(1px) scale(1.01);
        filter: blur(1px);
    }
    50%, 100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* Homepage section-header overrides */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 1px;
    background: var(--cyber-green);
    box-shadow: 0 0 10px var(--cyber-green);
    animation: header-scan 3s linear infinite;
}

@keyframes header-scan {
    0% { left: -100px; }
    100% { left: calc(100% + 100px); }
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Collection section title - matching Lookbook styling */
.collection .section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.barcode {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--cyber-green);
    animation: barcode-pulse 4s ease-in-out infinite;
    position: relative;
}

/* Subtle pulsing glow for barcode elements */
@keyframes barcode-pulse {
    0%, 100% {
        opacity: 0.8;
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        opacity: 1;
        text-shadow:
            0 0 15px rgba(255, 255, 255, 0.5),
            0 0 30px rgba(255, 255, 255, 0.2),
            0 0 40px rgba(255, 255, 255, 0.1);
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.product-card {
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(42, 42, 42, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Glass reflection effect */
.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.product-card.animate-in:nth-child(1) {
    animation: card-glitch-in 1.5s ease-out forwards;
    animation-delay: 0.2s;
}

.product-card.animate-in:nth-child(2) {
    animation: card-glitch-in 1.5s ease-out forwards;
    animation-delay: 0.4s;
}

.product-card.animate-in:nth-child(3) {
    animation: card-glitch-in 1.5s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes card-glitch-in {
    0% {
        opacity: 0;
        transform: translateX(-20px) scale(0.95);
        filter: brightness(2) contrast(0.5);
    }
    10% {
        opacity: 0.7;
        transform: translateX(10px) scale(0.97);
        filter: brightness(0.5) contrast(2);
    }
    20% {
        opacity: 0.2;
        transform: translateX(-5px) scale(1.02);
        filter: brightness(1.5) contrast(1);
    }
    30% {
        opacity: 0.9;
        transform: translateX(2px) scale(0.98);
        filter: brightness(0.8) contrast(1.2);
    }
    40% {
        opacity: 0.4;
        transform: translateX(-1px) scale(1.01);
        filter: brightness(1.2) contrast(0.9);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(0.99);
        filter: brightness(1) contrast(1);
    }
    60% {
        opacity: 0.6;
        transform: translateX(1px) scale(1);
        filter: brightness(1.1) contrast(1);
    }
    70%, 100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: brightness(1) contrast(1);
    }
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(255, 255, 255, 0.04),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(26, 26, 26, 0.9) 100%);
}

.product-card:hover::before {
    opacity: 1;
    animation: shine-sweep 0.6s ease;
}

@keyframes shine-sweep {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--grid-gray);
    position: relative;
    overflow: hidden;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

.product-code {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    color: var(--cyber-green);
    font-weight: bold;
}

/* =============================================
   MANIFESTO SECTION
   ============================================= */
.manifesto {
    padding: 10rem 2rem;
    background: url('https://spyreco.com/wp-content/uploads/2025/09/DSC03046-min-1-scaled.jpg') center/cover fixed;
    position: relative;
    opacity: 1;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay with gradient for text readability */
.manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.85) 40%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

/* Animated grid overlay */
.manifesto::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(0deg,
            transparent 24%,
            rgba(255, 255, 255, 0.01) 25%,
            rgba(255, 255, 255, 0.01) 26%,
            transparent 27%,
            transparent 74%,
            rgba(255, 255, 255, 0.01) 75%,
            rgba(255, 255, 255, 0.01) 76%,
            transparent 77%,
            transparent
        ),
        linear-gradient(90deg,
            transparent 24%,
            rgba(255, 255, 255, 0.01) 25%,
            rgba(255, 255, 255, 0.01) 26%,
            transparent 27%,
            transparent 74%,
            rgba(255, 255, 255, 0.01) 75%,
            rgba(255, 255, 255, 0.01) 76%,
            transparent 77%,
            transparent
        );
    background-size: 50px 50px;
    z-index: 2;
    animation: grid-flow 10s linear infinite;
}

@keyframes grid-flow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.manifesto-content {
    width: 100%;
    margin: 0;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 6rem 8rem 6rem 8rem;
    background: rgba(10, 10, 10, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.manifesto-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--text-white);
    text-shadow:
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.3);
    letter-spacing: 8px;
    position: relative;
    display: inline-block;
}

.manifesto-title::before,
.manifesto-title::after {
    content: '\00B7';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyber-green);
    font-size: 2rem;
    opacity: 0.5;
}

.manifesto-title::before {
    left: -3rem;
}

.manifesto-title::after {
    right: -3rem;
}

.manifesto-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.5px;
    padding: 0 8rem;
    max-width: 900px;
}

/* =============================================
   LOOKBOOK SECTION
   ============================================= */
.lookbook {
    padding: 0;
    padding-bottom: 6rem;
    min-height: 100vh;
    background: url('https://spyreco.com/wp-content/uploads/2025/09/DSC03046-min-1-scaled.jpg') center/cover fixed;
    opacity: 1;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Subtle dark gradient overlay for readability */
.lookbook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.15) 50%,
        rgba(10, 10, 10, 0.4) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Scan line effect for lookbook */
.lookbook::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.01) 2px,
        rgba(255, 255, 255, 0.01) 4px
    );
    pointer-events: none;
    z-index: 1;
    animation: scan-lines 8s linear infinite;
}

@keyframes scan-lines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.lookbook > * {
    position: relative;
    z-index: 2;
}

/* Modern minimal header - Full width flush with top */
.lookbook .section-header {
    max-width: none;
    width: 100%;
    margin: 0;
    margin-bottom: 6rem;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(10, 10, 10, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.lookbook .section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* Asymmetric Grid Layout */
.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    height: 550px;
}

/* Large featured item - Streetwear Essentials */
.lookbook-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lookbook-item:first-child {
    grid-row: 1 / 2;
    transform: translateY(-20px);
}

/* Smaller item - Cityscape Posters */
.lookbook-item:last-child {
    grid-row: 1 / 2;
    transform: translateY(40px);
    height: 80%;
    align-self: center;
}

/* Glass morphism card backgrounds */
.lookbook-card {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover state - reveal background more */
.lookbook-item:hover .lookbook-card {
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(5px) saturate(200%);
    -webkit-backdrop-filter: blur(5px) saturate(200%);
    border-color: var(--cyber-green);
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
}

/* Content overlay with modern typography */
.lookbook-content {
    position: absolute;
    inset: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Collection number */
.lookbook-number {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--cyber-green);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.lookbook-item:hover .lookbook-number {
    opacity: 1;
    transform: translateX(10px);
}

/* Main label with editorial style */
.lookbook-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.7rem;
    line-height: 1;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
}

.lookbook-item:last-child .lookbook-label {
    font-size: 2.95rem;
}

/* Solid red shadow on hover - easier on the eyes */
.lookbook-item:hover .lookbook-label {
    text-shadow:
        3px 3px 0 var(--danger-red),
        0 0 20px rgba(255, 0, 64, 0.3);
    /* Removed animation for solid effect */
}

/* Text glitch animation removed - using solid hover effect instead */

/* Description text */
.lookbook-description {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lookbook-item:hover .lookbook-description {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Button */
.lookbook-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--cyber-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    border: 1px solid var(--cyber-green);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    width: fit-content;
}

.lookbook-item:hover .lookbook-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.lookbook-cta:hover {
    background: var(--cyber-green);
    color: var(--primary-black);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.lookbook-cta::after {
    content: '\2192';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.lookbook-cta:hover::after {
    transform: translateX(5px);
}

/* Corner accents */
.lookbook-item::before,
.lookbook-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--cyber-green);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.lookbook-item::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.lookbook-item::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.lookbook-item:hover::before,
.lookbook-item:hover::after {
    opacity: 1;
}

.lookbook-item:hover::before {
    top: 10px;
    left: 10px;
}

.lookbook-item:hover::after {
    bottom: 10px;
    right: 10px;
}

/* =============================================
   Lookbook — single-item "Shop All" CTA variant
   Overrides the legacy two-item layout rules above.
   ============================================= */

/* When the lookbook section contains only the Shop All CTA, shrink it
   down. Content stays top-aligned (header at top, container right below)
   — only the section height and padding are adjusted. */
.lookbook:has(.lookbook-grid--single) {
    min-height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 6rem !important;
    justify-content: flex-start !important;
}

/* Tighter internal padding on the Lookbook section header in the CTA
   variant — the section-header's 2rem top/bottom padding was stacking
   with the section's top padding. */
.lookbook:has(.lookbook-grid--single) .section-header {
    padding: 1rem 4rem !important;
    margin-bottom: 2rem !important;
}

/* Add explicit breathing room around the CTA container itself */
.lookbook-grid--single {
    margin-top: 7rem !important;
    margin-bottom: 4rem !important;
}

.lookbook-grid--single {
    grid-template-columns: 1fr !important;
    max-width: 900px !important;
    height: 280px !important;
    gap: 0 !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.lookbook-grid--single .lookbook-item,
.lookbook-item--cta {
    transform: none !important;
    height: auto !important;
    grid-row: auto !important;
    align-self: stretch !important;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: visible !important;
}

/* The base .lookbook-content is position: absolute; inset: 0 which was
   designed for the legacy two-item layout where the parent had a fixed
   height and the background spanned the item. For the CTA variant we
   let content flow in-line so the container grows to fit (no inner
   scroll on mobile) and the glass card is painted by .lookbook-card
   behind the content. */
.lookbook-item--cta .lookbook-content {
    position: relative !important;
    inset: auto !important;
    padding: 3rem 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    min-height: inherit;
    box-sizing: border-box;
}

.lookbook-item--cta .lookbook-number {
    opacity: 1;
    margin-bottom: 0;
}

.lookbook-item--cta .lookbook-label {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

/* Always-visible CTA pill (no hover required) */
.lookbook-cta--static {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--cyber-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.lookbook-item--cta:hover .lookbook-cta--static {
    background: var(--cyber-green);
    color: var(--primary-black);
    border-color: var(--cyber-green);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .lookbook-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 3rem;
    }

    .lookbook-grid--single {
        height: auto !important;
        min-height: 240px !important;
    }

    .lookbook-item--cta .lookbook-label {
        font-size: 3rem !important;
    }

    .lookbook-item:first-child,
    .lookbook-item:last-child {
        transform: none;
        height: 450px;
    }

    .lookbook-label {
        font-size: 2.5rem;
    }

    .lookbook-item:last-child .lookbook-label {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .lookbook {
        padding: 4rem 1rem;
        min-height: auto;
    }

    .lookbook .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .lookbook-grid {
        padding: 0 1rem;
    }

    .lookbook-item:first-child,
    .lookbook-item:last-child {
        height: 350px;
    }

    .lookbook-content {
        padding: 2rem;
    }

    .lookbook-label {
        font-size: 2rem;
    }

    .lookbook-item:last-child .lookbook-label {
        font-size: 2rem;
    }

    .lookbook-description {
        font-size: 0.9rem;
    }

    .lookbook-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .lookbook-grid--single {
        height: auto !important;
        min-height: 220px !important;
    }

    .lookbook-item--cta .lookbook-label {
        font-size: 2.5rem !important;
    }

    .lookbook-cta--static {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}

/* =============================================
   PHOTOGRAPHY POSTERS / PRINTS SECTION
   ============================================= */
.prints-section {
    padding: 8rem 2rem 10rem 2rem;
    background: linear-gradient(180deg,
        var(--primary-black) 0%,
        rgba(10, 10, 10, 0.98) 30%,
        rgba(15, 15, 15, 0.95) 70%,
        #000000 100%);
    position: relative;
    opacity: 1;
    overflow: hidden;
    min-height: 100vh;
}

/* Animated background grid pattern */
.prints-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 64, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
    animation: particle-drift 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes particle-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20px, -30px) scale(1.1); }
    50% { transform: translate(30px, 20px) scale(0.9); }
    75% { transform: translate(-10px, 30px) scale(1.05); }
}

/* Tech grid overlay */
.prints-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.01) 80px,
            rgba(255, 255, 255, 0.01) 81px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.01) 80px,
            rgba(255, 255, 255, 0.01) 81px
        );
    z-index: 0;
    animation: grid-scan 15s linear infinite;
}

@keyframes grid-scan {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Header Styling */
.prints-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.prints-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.prints-title .glitch {
    text-shadow:
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.3);
}

.prints-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--text-gray);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.prints-header .barcode {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--cyber-green);
    opacity: 0.5;
    animation: barcode-pulse 4s ease-in-out infinite;
}

/* Prints Grid */
.prints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Print Card */
.print-card {
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(42, 42, 42, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.print-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.print-card:hover::before {
    opacity: 1;
    animation: shine-sweep 0.8s ease;
}

/* Image Wrapper */
.print-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--grid-gray);
}

.print-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay Effects */
.print-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: all 0.6s ease;
}

.scan-effect {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    z-index: 2;
    opacity: 0;
    transition: all 0.8s ease;
}

.print-glitch-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Hover Effects on Image */
.print-card:hover .print-image {
    transform: scale(1.1);
    filter: contrast(1.1) brightness(0.95);
}

.print-card:hover .print-overlay {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%);
}

.print-card:hover .scan-effect {
    animation: scan-down 1.5s ease-out;
}

@keyframes scan-down {
    0% {
        top: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.print-card:hover .print-glitch-layer {
    animation: glitch-static 0.3s ease-in-out;
}

@keyframes glitch-static {
    0%, 100% {
        opacity: 0;
    }
    20% {
        opacity: 0.8;
        background: repeating-linear-gradient(
            0deg,
            rgba(255, 0, 64, 0.1),
            rgba(255, 0, 64, 0.1) 1px,
            transparent 1px,
            transparent 2px
        );
    }
    40% {
        opacity: 0.8;
        background: repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px,
            transparent 2px
        );
    }
}

/* Print Info */
.print-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.print-category {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--cyber-green);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.print-card:hover .print-category {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.print-info .print-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.print-card:hover .print-info .print-title {
    color: var(--cyber-green);
    transform: translateX(5px);
}

.print-description {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.print-card:hover .print-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Print Meta */
.print-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.print-code {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.print-edition {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--danger-red);
    letter-spacing: 1px;
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--danger-red);
    background: rgba(255, 0, 64, 0.05);
}

/* Print CTA Button */
.print-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--cyber-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--cyber-green);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.print-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-green);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.print-cta:hover {
    color: var(--primary-black);
    border-color: var(--text-white);
    transform: translateY(-2px);
    box-shadow:
        0 10px 30px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
}

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

.cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.print-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Card hover elevation */
.print-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 20px 40px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(255, 255, 255, 0.05),
        inset 0 0 30px rgba(255, 255, 255, 0.02);
}

/* Staggered animation on scroll - Desktop only */
@media (min-width: 1024px) {
    .print-card {
        opacity: 0;
        transform: translateY(30px);
        animation: print-card-enter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
}

/* Mobile: no animation for better performance */
@media (max-width: 1023.98px) {
    .print-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

.print-card:nth-child(1) {
    animation-delay: 0.1s;
}

.print-card:nth-child(2) {
    animation-delay: 0.2s;
}

.print-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes print-card-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   REDUCED MOTION & ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    .glitch-overlay,
    .digital-noise {
        animation: none !important;
        display: none;
    }

    .hero-bg {
        background-attachment: scroll;
    }

    .glitch-container {
        animation: simple-fade-in 1s ease-out forwards !important;
    }

    @keyframes simple-fade-in {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

/* =============================================
   MOBILE-ONLY OVERRIDES
   All changes below 1024px ONLY
   Desktop remains unchanged
   ============================================= */

/* Prevent horizontal scrolling on all mobile devices */
@media (max-width: 1023.98px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100%;
        position: relative;
    }

    /* Ensure all sections respect viewport width */
    section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Prevent iOS input zoom */
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* ===== TABLET STYLES (768px - 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .brand-title {
        font-size: clamp(4rem, 8vw, 5.5rem);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }

    .lookbook-grid {
        gap: 2rem;
    }

    .manifesto-content {
        padding: 4rem 3rem;
        max-width: 700px;
    }

    .prints-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        padding: 0 1rem;
    }

    /* Disable complex animations on tablet */
    .grid-bg {
        animation: none !important;
    }
}

/* ===== MOBILE LARGE (641px - 767px) ===== */
@media (max-width: 767px) {
    /* Hero Section Mobile Optimizations */
    .hero {
        min-height: 100vh;
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-bg {
        background-attachment: scroll !important;
        animation: none !important;
        transform: none !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

    /* Simplify animations for performance */
    .glitch-overlay,
    .digital-noise,
    .scan-line {
        display: none !important;
    }

    .glitch-container {
        animation: simple-mobile-fade 1s ease-out forwards !important;
        opacity: 1 !important;
        transform: none !important;
        padding: 1rem;
        position: relative;
        z-index: 3;
        text-align: center;
    }

    @keyframes simple-mobile-fade {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .brand-title {
        font-size: clamp(3rem, 12vw, 4.5rem);
        letter-spacing: 4px;
        margin-bottom: 0.5rem;
    }

    .tagline {
        font-size: clamp(1rem, 3vw, 1.3rem);
        padding: 0.4rem 1.5rem;
        letter-spacing: 2px;
    }

    /* Hide Japanese text on mobile for cleaner look */
    .japanese-text {
        display: none !important;
    }

    /* Fix grid background on mobile */
    .grid-bg {
        display: none !important;
    }

    /* Collection Section Mobile */
    .collection {
        padding: 4rem 1rem 6rem 1rem;
        position: relative;
        background: var(--primary-black);
    }

    /* Disable complex background animations on mobile */
    .collection::before,
    .collection::after {
        display: none !important;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 1rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        letter-spacing: 3px;
    }

    .barcode {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .product-card {
        margin: 0;
        opacity: 1 !important;
        transform: none !important;
    }

    .product-image {
        aspect-ratio: 1 / 1;
    }

    .product-info {
        padding: 1.2rem;
    }

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

    /* Manifesto Section Mobile */
    .manifesto {
        /* Align side margins with hero on mobile */
        padding: 4rem 0;
        min-height: auto;
        background-attachment: scroll !important;
    }

    .manifesto-content {
        /* Use inner padding for 1rem side margins; reset abs offsets */
        padding: 3rem 1rem;
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        width: 100%;
        height: auto;
        margin: 0 auto;
        max-width: 600px;
    }

    .manifesto-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        margin-bottom: 2rem;
        letter-spacing: 4px;
    }

    .manifesto-title::before,
    .manifesto-title::after {
        display: none;
    }

    .manifesto-text {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        line-height: 1.8;
        margin-bottom: 0;
        padding: 0; /* match hero text width */
        max-width: 100%;
    }

    /* Lookbook Section Mobile */
    .lookbook {
        padding: 0 0 4rem 0;
        min-height: auto;
        background-attachment: scroll !important;
    }

    .lookbook .section-header {
        padding: 1.5rem 1rem;
        margin-bottom: 3rem;
        width: 100%;
        box-sizing: border-box;
    }

    .lookbook .section-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
        letter-spacing: 3px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        height: auto;
    }

    .lookbook-item {
        height: 400px !important;
        transform: none !important;
    }

    .lookbook-item:last-child {
        height: 400px !important;
        align-self: auto;
    }

    .lookbook-content {
        padding: 2rem;
    }

    .lookbook-number {
        font-size: 0.85rem;
        opacity: 1;
    }

    .lookbook-label {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        margin-bottom: 1rem;
    }

    .lookbook-item:last-child .lookbook-label {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
    }

    /* Show content by default on mobile (no hover) */
    .lookbook-description,
    .lookbook-cta {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Solid hover effects on mobile for touch devices */
    .lookbook-item:hover .lookbook-label {
        text-shadow:
            2px 2px 0 var(--danger-red),
            0 0 15px rgba(255, 0, 64, 0.2) !important;
        /* No animation for better performance */
    }

    .lookbook-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .lookbook-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Photography Posters Section Mobile */
    .prints-section {
        padding: 4rem 1rem 5rem 1rem;
        min-height: auto;
    }

    .prints-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    .prints-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .prints-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .print-image-wrapper {
        height: 250px;
    }

    .print-info {
        padding: 1.5rem;
    }

    .print-info .print-title {
        font-size: 1.5rem;
    }

    .print-description {
        font-size: 0.85rem;
    }

    .print-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Disable print animations on mobile */
    .prints-section::before,
    .prints-section::after {
        animation: none !important;
    }

    .print-card::before {
        display: none !important;
    }

    /* Disable complex glitch effects on mobile */
    .glitch::before,
    .glitch::after {
        display: none;
    }
}

/* ===== MOBILE MEDIUM (481px - 640px) ===== */
@media (max-width: 640px) {
    .brand-title {
        font-size: clamp(2.8rem, 11vw, 4rem);
    }

    /* Keep manifesto text aligned with hero margins */
    .manifesto-text { padding: 0; }

    .lookbook-label {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    }
}

/* ===== MOBILE SMALL (320px - 480px) ===== */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .glitch-container {
        padding: 0.5rem;
    }

    .brand-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0.3rem 1rem;
    }

    .collection {
        padding: 3rem 0.75rem 5rem 0.75rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .product-grid {
        gap: 1.5rem;
        max-width: 350px;
    }

    .product-image {
        aspect-ratio: 1 / 1;
    }

    .manifesto-content {
        padding: 2.5rem 1rem;
    }

    .manifesto-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .manifesto-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .lookbook .section-header {
        padding: 1.2rem 0.75rem;
    }

    .lookbook-item {
        height: 350px !important;
    }

    .lookbook-content {
        padding: 1.5rem;
    }

    .lookbook-label {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    }

    .lookbook-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .lookbook-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .prints-section {
        padding: 3rem 0.75rem 4rem 0.75rem;
    }

    .prints-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .print-image-wrapper {
        height: 220px;
    }

    .print-info .print-title {
        font-size: 1.3rem;
    }

    .print-cta {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .prints-grid {
        max-width: 320px;
    }
}

/* ===== IPHONE SE / VERY SMALL SCREENS (320px - 390px) ===== */
@media (max-width: 390px) {
    .brand-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
        letter-spacing: 1px;
    }

    .section-title {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
    }

    .product-image {
        aspect-ratio: 1 / 1;
    }

    .manifesto-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
        letter-spacing: 2px;
    }

    .lookbook-item {
        height: 320px !important;
    }

    .lookbook-label {
        font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
    }

    .prints-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .print-image-wrapper {
        height: 200px;
    }

    .print-info .print-title {
        font-size: 1.2rem;
    }

    .prints-header .barcode {
        font-size: 0.8rem;
    }
}

/* Ensure desktop remains unchanged */
@media (min-width: 1024px) {
    /* All desktop styles remain as originally defined */
    /* No changes applied at or above 1024px */
}
