/* ===== CSS Variables — Design System ===== */
:root {
    /* Color Palette */
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-dark-blue: #0a0a14;
    --color-gray: #141414;
    --color-gray-light: #1e1e1e;
    --color-white: #f5f5f5;
    --color-white-pure: #ffffff;
    --color-white-dim: rgba(255, 255, 255, 0.55);
    --color-accent: #FFD700;
    --color-accent-hover: #FFE44D;
    --color-accent-muted: rgba(255, 215, 0, 0.15);
    --color-blue-glow: rgba(0, 8, 120, 0.2);
    --color-card-border: rgba(255, 255, 255, 0.06);
    --color-error: #DC2626;
    --color-success: #34D399;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --lh-tight: 1.15;
    --lh-normal: 1.6;
    --lh-relaxed: 1.8;

    /* Transitions */
    --transition-micro: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-entrance: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing (8pt grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;

    --header-height: 80px;

    /* Effects */
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-elevated: 0 24px 64px rgba(0, 0, 0, 0.35);
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.06);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: var(--font-main);
    font-weight: 500;
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    line-height: var(--lh-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Header / Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-8);
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-white-pure);
    transition: var(--transition-micro);
}

.logo:hover {
    opacity: 0.7;
}

.nav {
    display: flex;
    gap: var(--space-5);
}

.nav-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white-dim);
    transition: color 0.25s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 0.5px;
    background: var(--color-white-pure);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link--shop {
    color: var(--color-accent);
}

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

.nav-link--shop::after {
    background: var(--color-accent);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--color-white-pure);
    transition: var(--transition-base);
    border-radius: 1px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--color-white-dim);
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
    color: var(--color-white-pure);
}

.mobile-nav-link--shop {
    color: var(--color-accent);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to bottom, transparent 0%, var(--color-black) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Blue Glow Effect */
.hero-glow {
    position: absolute;
    left: -15%;
    top: 35%;
    transform: translateY(-50%);
    width: 90%;
    height: 160%;
    background: radial-gradient(ellipse at center, var(--color-blue-glow) 0%, rgba(0, 10, 153, 0.2) 35%, rgba(0, 10, 153, 0.05) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.hero.animated .hero-glow {
    opacity: 1;
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    transition: var(--transition-entrance);
    will-change: transform, opacity;
}

.hero-logo img {
    width: auto;
    max-width: 90vw;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-logo-by {
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 800;
    letter-spacing: 10px;
    background: linear-gradient(180deg, #e0e0e0 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-logo-production {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: clamp(10px, 2vw, 25px);
    background: linear-gradient(180deg, #e0e0e0 0%, #808080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -10px;
}

/* Animated state - logo subtle scale-up */
.hero.animated .hero-logo {
    transform: scale(1.05);
}

/* Hero Cards */
.hero-cards {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    pointer-events: none;
}

.hero-card {
    position: absolute;
    width: 308px;
    height: 415px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.hero-card:hover {
    transform: translateY(-50%) scale(1.02) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left Card - rotated -4deg per SVG */
.hero-card--left {
    left: 8%;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg) translateX(-100px) scale(0.8);
}

.hero.animated .hero-card--left {
    opacity: 1;
    transform: translateY(-50%) rotate(-4deg) translateX(0) scale(1);
}

/* Center Card - no rotation per SVG */
.hero-card--center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(50px) scale(0.8);
    z-index: 5;
}

.hero.animated .hero-card--center {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
}

.hero-card--center img {
    /* Counter-rotate image to perfectly align with upright frame */
    transform: rotate(4deg) scale(1.12);
}

/* Right Card - rotated +4deg per SVG */
.hero-card--right {
    right: 8%;
    top: 50%;
    transform: translateY(-50%) rotate(8deg) translateX(100px) scale(0.8);
}

.hero.animated .hero-card--right {
    opacity: 1;
    transform: translateY(-50%) rotate(4deg) translateX(0) scale(1);
}

.hero-card--right img {
    /* Align image with frame */
    transform: rotate(-4deg) scale(1.12);
}

.hero-card-credit {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== About Section ===== */
.about {
    position: relative;
    padding: var(--space-10) var(--space-8);
    background: var(--color-black);
    overflow: hidden;
}



.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: var(--space-3);
    color: var(--color-white-pure);
    display: inline-block;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.about-card {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-elevated);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.about-portrait {
    flex-shrink: 0;
    width: 220px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}



.about-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-name {
    font-family: var(--font-main);
    font-size: clamp(26px, 3.3vw, 40px);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--color-white-pure);
    letter-spacing: -0.5px;
    line-height: var(--lh-tight);
}

.about-text {
    font-size: 14px;
    line-height: var(--lh-relaxed);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    width: 100%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}



.footer-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-submit {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-submit:hover {
    color: var(--color-accent);
}

.footer-submit span {
    font-size: 20px;
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.contact-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.contact-modal {
    width: 90%;
    max-width: 550px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-overlay.active .contact-modal {
    transform: translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-modal-close:hover {
    color: var(--color-white);
}

.contact-modal-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.contact-modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-submit {
    margin-top: var(--space-2);
    padding: var(--space-2);
    background: var(--color-accent);
    color: var(--color-black);
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-submit:hover {
    opacity: 0.9;
}

.contact-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-feedback {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    min-height: 20px;
}

.contact-feedback.success {
    color: var(--color-success);
}

.contact-feedback.error {
    color: var(--color-error);
}

/* Stats Bar */
.stats {
    position: relative;
    margin-top: var(--space-8);
    padding: var(--space-6) 0;
    background: linear-gradient(180deg, var(--color-gray) 0%, var(--color-dark) 100%);
    border-radius: 0;
    overflow: hidden;
}

.stats-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top center, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.stats-content {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-main);
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 700;
    color: var(--color-white-pure);
    line-height: var(--lh-tight);
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-1);
}

/* ===== Collaborations Section ===== */
.collaborations {
    padding: var(--space-8);
    background: var(--color-black);
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: var(--space-2);
    max-width: 1400px;
    margin: 0 auto;
}

/* ---- Card Base ---- */
.collab-card {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    height: 100%;
    transition: border-color 0.3s ease;
}

.collab-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* ---- Featured / First Card: EXACT 2x height (2*280px + 20px gap = 580px) ---- */
.collab-card--featured {
    grid-row: span 2;
}

/* ---- Logo Header: black bar, logo CENTERED ---- */
.collab-card-logo {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 64px;
    padding: var(--space-2) var(--space-3);
}

.collab-card--featured .collab-card-logo {
    height: var(--space-12);
    padding: var(--space-2) var(--space-3);
}

.collab-card-logo img {
    max-width: 120px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1 !important;
}

.collab-card--featured .collab-card-logo img {
    max-width: 160px;
    max-height: 60px;
}

/* ---- Main Image: fills remaining card height below logo ---- */
.collab-card-image {
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.collab-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    padding: var(--space-10) var(--space-8) var(--space-5);
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark-blue) 100%);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60%;
    background: radial-gradient(ellipse at bottom center, var(--color-blue-glow) 0%, transparent 60%);
    pointer-events: none;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    padding: 0 var(--space-5);
}

.footer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
    align-items: center;
}

#logo_footer {
    width: 120px;
    flex-shrink: 0;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto var(--space-8);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: var(--space-1);
    color: var(--color-white-pure);
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s ease, opacity 0.25s ease;
    position: relative;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 0.5px;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.footer-link:hover::before {
    transform: scaleX(1);
}

.footer-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--space-1);
    padding: 14px var(--space-3);
    color: var(--color-white-pure);
    font-size: 13px;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1.5px;
    font-size: 11px;
}

.footer-input:focus::placeholder {
    opacity: 0.4;
}

.footer-input:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 1px;
}

/* ===== Shop Section ===== */

/* Outer container */
.shop {
    position: relative;
    background: var(--color-black);
}

/* Sticky UI Overlay — stays pinned while images scroll behind */
.shop-ui-overlay {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Let scroll pass through to the page */
    z-index: 10;
}

/* Column Base */
.shop-col {
    position: absolute;
    pointer-events: auto;
    /* Enable clicks on buttons/text */
}

/* Left Column — Title & Subtitle */
.shop-col--left {
    left: var(--space-8);
    top: 50%;
    transform: translateY(-50%);
    max-width: 320px;
}

.shop-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white-pure);
    line-height: 1.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.shop-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-2);
    line-height: 1.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Image Scroller (Native CSS Snap) */
.shop-images-scroller {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Height is determined by the slides */
}

.shop-image-slide {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.shop-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shimmer preload placeholder */
.shop-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 12px;
    background: linear-gradient(110deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.02) 60%);
    background-size: 200% 100%;
    animation: shopShimmer 1.5s ease-in-out infinite;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.shop-image-wrapper.loaded::before {
    opacity: 0;
}

@keyframes shopShimmer {
    0% {
        background-position: 200% 0;
    }

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

.shop-image {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.shop-image.loaded {
    opacity: 1;
}

/* Right Column — Specs & View Button */
.shop-col--right {
    right: var(--space-8);
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 300px;
    display: flex;
    flex-direction: column;
}

/* Text container — takes remaining space, text adapts */
.shop-specs-text {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.shop-specs-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white-pure);
    line-height: 1.3;
    transition: opacity 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.shop-specs-desc {
    font-size: 12px;
    line-height: var(--lh-relaxed);
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: opacity 0.25s ease, transform 0.25s ease;
    /* Clamp to max 4 lines — text adapts, button stays */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* VIEW Button — permanently anchored at bottom, fixed width */
.shop-btn-view {
    width: 200px;
    padding: 14px 0;
    background: var(--color-accent);
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: auto;
    flex-shrink: 0;
    text-transform: uppercase;
}

.shop-btn-view:hover {
    opacity: 0.9;
}

.shop-btn-view:active {
    transform: scale(0.98);
}

/* Cross-fade transition classes for Text */
.shop-fade-out {
    opacity: 0 !important;
    transform: translateY(-15px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease !important;
}

.shop-fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s !important;
}

/* Product Dots */
.shop-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    pointer-events: auto;
    /* Enable clicks */
}

.shop-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.shop-dot:hover {
    background: rgba(255, 255, 255, 0.45);
}

.shop-dot--active {
    background: var(--color-accent);
    transform: scale(1.25);
}

/* Loading State */
.shop-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: var(--color-black);
    transition: opacity 0.5s ease;
}

.shop-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.shop-loading-spinner {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: shopSpin 0.8s linear infinite;
}

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



/* ===== Header Actions (Bag Icon) ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.bag-toggle {
    position: relative;
    background: none;
    border: none;
    color: var(--color-white-pure);
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s ease;
}

.bag-toggle:hover {
    opacity: 0.6;
}

.bag-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-accent);
    color: var(--color-black);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.bag-count.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== PDP Header Variant ===== */
.header--pdp .logo {
    /* Inherits from base .logo */
}

.logo-divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
    font-weight: 300;
}

/* ===== Product Detail Page ===== */
.pdp {
    min-height: 100vh;
    background: var(--color-black);
    padding-top: 80px;
}

.pdp-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

/* 404 State */
.pdp-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: var(--space-5);
}

.pdp-404-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-white-pure);
    margin-bottom: var(--space-2);
}

.pdp-404-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.pdp-404-btn {
    display: inline-block;
    padding: 14px var(--space-6);
    background: var(--color-accent);
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
}

.pdp-404-btn:hover {
    opacity: 0.9;
}

/* PDP Content — 55/45 Split */
.pdp-content {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: calc(100vh - 80px);
    max-width: 1400px;
    margin: 0 auto;
}

/* Left: Gallery */
.pdp-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) var(--space-5) var(--space-8) var(--space-8);
}

.pdp-image-main {
    width: 100%;
    max-width: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-image-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 70vh;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pdp-image-main img.loaded {
    opacity: 1;
}

.pdp-image-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.pdp-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.45;
}

.pdp-thumb:hover {
    opacity: 0.75;
}

.pdp-thumb.active {
    border-color: var(--color-accent);
    opacity: 1;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right: Product Info */
.pdp-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-8) var(--space-8) var(--space-8) var(--space-5);
    max-width: 520px;
}

.pdp-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.pdp-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-white-pure);
    line-height: 1.3;
    flex: 1;
}

.pdp-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pdp-sku {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-top: 6px;
}

/* Stars */
.pdp-rating {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    margin-top: var(--space-3);
}

.pdp-stars {
    display: flex;
    gap: 2px;
}

.pdp-star {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
}

.pdp-star.filled {
    color: var(--color-accent);
}

.pdp-star.half {
    background: linear-gradient(90deg, var(--color-accent) 50%, rgba(255, 255, 255, 0.12) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pdp-rating-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* Description */
.pdp-description {
    font-size: 14px;
    line-height: var(--lh-relaxed);
    color: rgba(255, 255, 255, 0.55);
    margin-top: var(--space-4);
    letter-spacing: 0.2px;
}

/* Accordion */
.pdp-accordion {
    margin-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pdp-accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.pdp-accordion-toggle:hover {
    color: var(--color-accent);
}

.pdp-accordion-icon {
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
}

.pdp-accordion.open .pdp-accordion-icon {
    transform: rotate(45deg);
}

.pdp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease;
    opacity: 0;
}

.pdp-accordion.open .pdp-accordion-body {
    max-height: 500px;
    opacity: 1;
}

.pdp-features-list {
    list-style: none;
    padding: 0 0 var(--space-2) 0;
    margin: 0;
}

.pdp-features-list li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    padding-left: var(--space-2);
    position: relative;
    letter-spacing: 0.2px;
    line-height: var(--lh-normal);
}

.pdp-features-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Add to Bag Button */
.pdp-add-to-bag {
    width: 100%;
    padding: var(--space-2) 0;
    background: var(--color-accent);
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: var(--space-4);
    text-transform: uppercase;
}

.pdp-add-to-bag:hover {
    opacity: 0.9;
}

.pdp-add-to-bag.adding {
    background: rgba(212, 168, 83, 0.7);
    pointer-events: none;
}

.pdp-add-to-bag.added {
    background: var(--color-success);
    color: #fff;
    pointer-events: none;
}

/* ===== Reviews Section ===== */
.pdp-reviews {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pdp-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.pdp-reviews-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-white);
}

.pdp-reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pdp-reviews-avg {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.pdp-reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pdp-rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.pdp-rating-bar-fill {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.pdp-rating-bar-fill span {
    display: block;
    height: 100%;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Review Cards */
.pdp-reviews-list {
    display: grid;
    gap: 24px;
}

.pdp-review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px;
}

.pdp-review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pdp-review-card-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pdp-review-card-stars {
    display: flex;
    gap: 2px;
    font-size: 14px;
}

.pdp-review-card-stars .pdp-star {
    font-size: 14px;
}

.pdp-review-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.pdp-review-card-content {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.pdp-review-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.pdp-verified-badge {
    color: var(--color-success);
    font-weight: 600;
}

/* Review Form */
.pdp-review-form-wrapper {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pdp-review-form-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.pdp-review-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 600px;
}

.pdp-form-row {
    display: flex;
    gap: 14px;
    align-items: center;
}

.pdp-review-form input,
.pdp-review-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 13px;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.2s ease;
}

.pdp-review-form input::placeholder,
.pdp-review-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
}

.pdp-review-form input:focus,
.pdp-review-form textarea:focus {
    border-color: var(--color-accent);
}

.pdp-star-input {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.pdp-star-input span {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.pdp-star-input span:hover {
    transform: scale(1.2);
}

.pdp-star-input span.active {
    color: var(--color-accent);
}

.pdp-review-submit {
    padding: 14px 48px;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    align-self: flex-start;
}

.pdp-review-submit:hover {
    background: var(--color-accent);
    color: var(--color-black);
}

.pdp-review-feedback {
    font-size: 13px;
    letter-spacing: 0.5px;
    min-height: 20px;
}

.pdp-review-feedback.success {
    color: var(--color-success);
}

.pdp-review-feedback.error {
    color: var(--color-error);
}

/* ===== Shopping Bag Panel ===== */
.bag-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.bag-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.bag-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #0a0a0a;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bag-panel.open {
    transform: translateX(0);
}

.bag-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bag-panel-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
}

.bag-panel-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
}

.bag-panel-close:hover {
    opacity: 0.6;
}

.bag-panel-items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.bag-item {
    display: flex;
    gap: 16px;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bag-item-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
}

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

.bag-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.bag-item-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bag-item-sku {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}

.bag-item-price {
    font-size: 14px;
    color: var(--color-white);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.bag-item-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    align-self: flex-start;
    padding: 0;
    transition: color 0.2s;
}

.bag-item-remove:hover {
    color: var(--color-error);
}

.bag-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.bag-panel-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bag-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.bag-checkout-btn {
    width: 100%;
    padding: 16px 0;
    background: var(--color-accent);
    color: var(--color-black);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.bag-checkout-btn:hover {
    opacity: 0.9;
}

.bag-legal {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.bag-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

/* ===== PDP Responsive ===== */
@media (max-width: 992px) {
    .pdp-content {
        grid-template-columns: 1fr;
    }

    .pdp-gallery {
        padding: 40px 30px 20px;
    }

    .pdp-info {
        padding: 20px 30px 40px;
        max-width: 100%;
    }

    .pdp-reviews {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .pdp-info-header {
        flex-direction: column;
        gap: 8px;
    }

    .pdp-gallery {
        padding: 20px 16px 10px;
    }

    .pdp-info {
        padding: 16px 16px 30px;
    }

    .pdp-reviews {
        padding: 30px 16px;
    }

    .pdp-name {
        font-size: 18px;
    }

    .pdp-price {
        font-size: 18px;
    }

    .bag-panel {
        width: 100vw;
        max-width: 100vw;
    }
}

/* ===== Shop Responsive ===== */
@media (max-width: 1200px) {
    .shop-col--left {
        left: 40px;
        max-width: 240px;
    }

    .shop-col--right {
        right: 40px;
        max-width: 240px;
    }

    .shop-col--center {
        max-width: 440px;
    }

    .shop-title,
    .shop-specs-title {
        font-size: 18px;
    }
}

/* Mobile shop: kill the entire scroll-snap sticky mechanism */
@media (max-width: 992px) {

    /* Disable scroll-snap globally on mobile */
    html {
        scroll-snap-type: none !important;
    }

    /* Shop section: fixed height is set by JS. Reset it to auto. */
    .shop {
        height: auto !important;
        min-height: auto;
    }

    /* Hide the desktop UI overlay — each card has its own info now */
    .shop-ui-overlay {
        display: none !important;
    }

    .shop-dots {
        display: none;
    }

    /* Fix loader position so it's centered on screen instead of top container */
    .shop-loading {
        position: fixed;
        z-index: 9999;
    }

    /* Image scroller → product card grid */
    .shop-images-scroller {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 100px 20px 40px;
    }

    /* === Mobile Product Card === */
    .shop-mobile-card {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        overflow: hidden;
        transition: border-color 0.3s ease;
    }

    .shop-mobile-card:active {
        border-color: rgba(255, 215, 0, 0.3);
    }

    .shop-mobile-card-img {
        width: 100%;
        aspect-ratio: 3 / 4;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.02);
    }

    .shop-mobile-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .shop-mobile-card-info {
        padding: 14px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .shop-mobile-card-title {
        font-family: var(--font-main);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: #fff;
        text-transform: uppercase;
        line-height: 1.3;
    }

    .shop-mobile-card-price {
        font-family: var(--font-main);
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.5px;
    }

    .shop-mobile-card-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
        padding: 10px 0;
        background: rgba(255, 215, 0, 0.08);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 8px;
        color: #FFD700;
        font-family: var(--font-main);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        text-decoration: none;
        text-align: center;
        transition: background 0.2s ease;
    }

    .shop-mobile-card-btn:active {
        background: rgba(255, 215, 0, 0.15);
    }
}

@media (max-width: 480px) {
    .shop-images-scroller {
        padding: 80px 16px 32px;
        gap: 12px;
    }

    .shop-mobile-card-info {
        padding: 12px;
    }

    .shop-mobile-card-title {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .shop-mobile-card-price {
        font-size: 12px;
    }

    .shop-mobile-card-btn {
        padding: 9px 0;
        font-size: 9px;
    }
}

@media (max-width: 390px) {
    .shop-images-scroller {
        gap: 10px;
        padding: 80px 14px 28px;
    }

    .shop-mobile-card-info {
        padding: 10px;
    }

    .shop-mobile-card-title {
        font-size: 10px;
    }

    .shop-mobile-card-price {
        font-size: 11px;
    }
}

/* =============================================================
   RESPONSIVE DESIGN — INDEX PAGE
   Complete mobile overhaul. Desktop is 100% UNTOUCHED.
   ============================================================= */

/* --- Tablet Landscape: ≤1200px --- */
@media (max-width: 1200px) {
    .hero-card {
        width: 240px;
        height: 320px;
    }

    .hero-card--left {
        left: 3%;
    }

    .hero-card--right {
        right: 3%;
    }

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

    .about-image {
        height: 300px;
    }
}

/* --- Tablet Portrait: ≤992px --- */
@media (max-width: 992px) {
    .header {
        padding: 0 30px;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-card {
        width: 200px;
        height: 270px;
    }

    .hero-card--left {
        left: 1%;
    }

    .hero-card--right {
        right: 1%;
    }

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

    .collab-card--large {
        grid-row: span 1;
    }

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

/* --- Mobile: ≤768px --- */
@media (max-width: 768px) {

    /* ===== HERO ===== */
    /* Hide all cards — logo-only hero like Apple launch page */
    .hero-cards {
        display: none !important;
    }

    .hero-glow {
        width: 120%;
        left: -10%;
        top: 35%;
        height: 100%;
    }

    .hero.animated .hero-logo {
        transform: translateY(-20px);
    }

    .hero-logo img {
        max-width: 75vw;
    }

    /* ===== ABOUT ===== */
    .about {
        padding: 48px 20px;
    }

    .section-title {
        font-size: 26px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .about-content {
        gap: 20px;
    }

    .about-card {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 0;
        gap: 0;
        border-radius: 20px;
        overflow: hidden;
    }

    .about-portrait {
        width: 100%;
        height: 280px;
        border-radius: 0;
        border: none;
    }

    .about-info {
        padding: 32px 24px;
        gap: 16px;
    }

    .about-name {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.75);
    }

    .about-image {
        height: 250px;
        border-radius: 16px;
    }

    /* ===== STATS ===== */
    .stats {
        margin-top: 40px;
        padding: 40px 20px;
    }

    .stats-content {
        flex-direction: row;
        gap: 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-top: 6px;
    }

    /* ===== COLLABORATIONS ===== */
    .collaborations {
        padding: 48px 20px;
    }

    .collab-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 14px;
    }

    /* ===== FOOTER ===== */
    .footer {
        padding: 32px 20px 24px;
    }

    .footer-logo-section {
        gap: 12px;
        margin-bottom: 32px;
        padding: 0;
    }

    #logo_footer {
        width: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 32px 16px;
    }

    .footer-column {
        align-items: flex-start;
    }

    .footer-column:nth-child(3) {
        grid-column: 1 / -1;
    }

    .footer-input-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .footer-copyright {
        font-size: 10px;
        padding-top: 24px;
    }

    /* ===== CONTACT MODAL — sheet style ===== */
    .contact-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .contact-modal {
        width: 100%;
        max-width: 100%;
        padding: 40px 24px 32px;
        border-radius: 24px 24px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .contact-modal-title {
        font-size: 24px;
    }

    .contact-modal-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        /* Prevents iOS zoom */
        padding: 14px 16px;
        border-radius: 10px;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-submit {
        padding: 16px;
        font-size: 13px;
        border-radius: 14px;
    }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
        gap: 48px;
    }

    .mobile-nav-link {
        font-size: 26px;
        letter-spacing: 6px;
    }

    .mobile-nav-link--shop {
        color: var(--color-accent);
    }
}

/* --- Phone: ≤480px --- */
@media (max-width: 480px) {
    .header {
        padding: 0 16px;
        height: 64px;
    }

    .logo {
        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .hero-logo img {
        max-width: 68vw;
    }

    .about {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .about-card {
        border-radius: 16px;
    }

    .about-portrait {
        height: 240px;
    }

    .about-info {
        padding: 24px 18px;
        gap: 12px;
    }

    .about-name {
        font-size: 22px;
    }

    .about-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-image {
        height: 200px;
        border-radius: 14px;
    }

    .stats {
        margin-top: 32px;
        padding: 32px 16px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .collaborations {
        padding: 40px 16px;
    }

    .collab-grid {
        grid-auto-rows: 270px;
        gap: 12px;
    }

    .footer {
        padding: 40px 16px 20px;
    }

    #logo_footer {
        width: 72px;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-heading {
        font-size: 11px;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer-input {
        font-size: 16px;
        padding: 12px 16px;
    }

    .footer-input-wrapper {
        max-width: 260px;
    }

    .footer-copyright {
        font-size: 9px;
    }

    .contact-modal {
        padding: 32px 18px 28px;
    }

    .contact-modal-title {
        font-size: 20px;
    }

    .mobile-nav {
        gap: 40px;
    }

    .mobile-nav-link {
        font-size: 22px;
        letter-spacing: 5px;
    }
}

/* --- Small Phone: ≤390px --- */
@media (max-width: 390px) {
    .logo {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-logo img {
        max-width: 62vw;
    }

    .section-title {
        font-size: 20px;
    }

    .about-card {
        border-radius: 12px;
    }

    .about-portrait {
        height: 200px;
    }

    .about-info {
        padding: 20px 16px;
        gap: 10px;
    }

    .about-name {
        font-size: 20px;
    }

    .about-text {
        font-size: 12px;
    }

    .about-image {
        height: 170px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 7px;
    }

    .collab-grid {
        grid-auto-rows: 240px;
    }

    #logo_footer {
        width: 60px;
    }

    .footer-input-wrapper {
        max-width: 230px;
    }

    .mobile-nav-link {
        font-size: 20px;
        letter-spacing: 4px;
    }
}

/* ===== Collaboration Detail Modal ===== */
.collab-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: collabFadeIn 0.3s ease;
}

@keyframes collabFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.collab-modal {
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    max-height: 90vh;
    overflow-y: auto;
}

/* Apple-like close button */
.collab-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    color: #FFD700;
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-main);
    cursor: pointer;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    transition: background 0.2s ease;
}

.collab-modal-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Media area — fills entire modal */
.collab-modal-media {
    position: relative;
    width: 100%;
    min-height: 500px;
    max-height: 80vh;
    background: #000;
    overflow: hidden;
}

.collab-modal-media img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
}

.collab-modal-media video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Content: ALWAYS overlaid at bottom with dark gradient shadow */
.collab-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 40px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.collab-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.collab-modal-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* ===== Responsive: Collaborations ===== */
@media (max-width: 1200px) {
    .collab-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .collab-card--featured {
        grid-row: span 2;
    }
}

@media (max-width: 992px) {
    .collab-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

    .collab-card--featured {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .collab-card--featured {
        grid-row: span 1;
    }

    .collab-modal-overlay {
        padding: 12px;
    }

    .collab-modal {
        border-radius: 14px;
    }

    .collab-modal-media {
        min-height: 400px;
    }

    .collab-modal-content {
        padding: 50px 20px 20px;
    }

    .collab-modal-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .collab-modal-desc {
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .collab-modal-media {
        min-height: 320px;
    }

    .collab-modal-content {
        padding: 40px 16px 16px;
    }

    .collab-modal-title {
        font-size: 16px;
    }

    .collab-modal-desc {
        font-size: 12px;
    }
}

/* ===========================================================
   CHECKOUT PAGE
   =========================================================== */
.co {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px 80px;
    min-height: 100vh;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Checkout page: header gets solid background so content scrolls behind */
[data-page="checkout"] .header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.co-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.co-back-link:hover {
    color: #fff;
}

/* Sections */
.co-section {
    margin-bottom: 40px;
}

.co-section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 24px;
}

/* Form Fields */
.co-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.co-field {
    margin-bottom: 20px;
}

.co-field--full {
    margin-bottom: 20px;
}

.co-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.co-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    letter-spacing: 0.5px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.co-input:focus {
    border-color: rgba(212, 168, 83, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.co-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.co-input--error {
    border-color: var(--color-error) !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.co-field-error {
    display: block;
    color: var(--color-error);
    font-size: 11px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    pointer-events: none;
    font-weight: 500;
}

.co-field-error.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Select Dropdown */
.co-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.co-select option {
    background: #0a0a0a;
    color: #fff;
}

/* Shipping Section */
.co-shipping-section {
    overflow: hidden;
}

/* Payment Method Tabs */
.co-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.co-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.co-method:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.co-method--active,
.co-method--active:hover {
    border-color: #FFD700 !important;
    color: #FFD700 !important;
    background: rgba(212, 168, 83, 0.06) !important;
}

.co-method-icon {
    flex-shrink: 0;
}

.co-method-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Stripe Elements Container */
.co-card-section {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 10;
}

.co-card-fields {
    position: relative;
    z-index: 11;
    pointer-events: auto !important;
}

.co-stripe-element {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: border-color 0.3s ease;
    min-height: 48px;
    position: relative;
    cursor: text;
}

.co-stripe-element.StripeElement--focus {
    border-color: rgba(212, 168, 83, 0.5);
}

.co-stripe-element.StripeElement--invalid {
    border-color: var(--color-error);
}

/* PayPal Section */
.co-paypal-section {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 48px 28px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.co-paypal-logo {
    margin-bottom: 20px;
}

.co-paypal-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.co-paypal-subtext {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    letter-spacing: 0.3px;
}

.co-paypal-subtext strong {
    color: #FFD700;
}

/* Error Display */
.co-error {
    padding: 14px 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    color: var(--color-error);
    font-size: 13px;
    letter-spacing: 0.3px;
    margin-top: 8px;
}

/* Cart Summary Sidebar */
.co-cart-wrapper {
    position: sticky;
    top: 100px;
}

.co-cart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px;
}

.co-cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.co-cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.co-cart-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.co-cart-item-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.co-cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.co-cart-item-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.co-cart-item-sku {
    font-size: 11px;
    color: rgba(212, 168, 83, 0.7);
    letter-spacing: 0.5px;
}

.co-cart-item-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* Cart Footer */
.co-cart-footer {
    padding-top: 20px;
    margin-top: 4px;
}

.co-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.co-cart-total span:first-child {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.co-cart-total span:last-child {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Pay Button */
.co-pay-btn {
    width: 100%;
    padding: 16px;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.co-pay-btn:hover:not(:disabled) {
    opacity: 0.9;
}

.co-pay-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.co-pay-btn--loading {
    background: rgba(212, 168, 83, 0.7);
    pointer-events: none;
}

.co-pay-btn--loading .co-pay-btn-text {
    display: none;
}

.co-pay-btn--loading .co-pay-btn-spinner {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

/* ===========================================================
   THANK YOU PAGE
   =========================================================== */
.ty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 40px 80px;
    text-align: center;
}

/* Loading */
.ty-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ty-loading p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    letter-spacing: 1px;
}

.ty-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #FFD700;
    border-radius: 50%;
    animation: ty-spin 0.8s linear infinite;
}

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

/* Animated Checkmark */
.ty-checkmark {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
}

.ty-checkmark-svg {
    width: 80px;
    height: 80px;
}

.ty-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #FFD700;
    animation: ty-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.ty-checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #FFD700;
    animation: ty-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes ty-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.ty-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 8px;
}

.ty-order-number {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* Email Message Box */
.ty-message {
    max-width: 480px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.ty-message-icon {
    color: #FFD700;
    margin-bottom: 16px;
}

.ty-message-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
}

.ty-message-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 12px;
}

.ty-message-text strong {
    color: #FFD700;
}

.ty-email {
    color: #FFD700;
    font-weight: 600;
}

.ty-message-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}

.ty-message-hint strong {
    color: rgba(255, 255, 255, 0.5);
}

/* Order Details */
.ty-details {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.ty-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ty-detail-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

.ty-detail-value {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Back Button */
.ty-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
}

.ty-btn:hover {
    opacity: 0.9;
}

/* Error State */
.ty-error {
    text-align: center;
}

.ty-error h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 12px;
}

.ty-error p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-bottom: 32px;
}

/* ===========================================================
   CHECKOUT + THANK YOU — RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
    .co {
        grid-template-columns: 1fr;
        padding: 100px 24px 140px;
        gap: 32px;
    }

    .co-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .co-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .co-method {
        padding: 18px 20px;
    }

    .co-card-section {
        padding: 20px;
    }

    /* Mobile: form on top, cart below, pay button sticky at bottom */
    .co-cart-wrapper {
        position: static;
        order: 1;
        margin-bottom: 40px;
    }

    .co-cart-footer {
        display: none;
    }

    .co-mobile-pay {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .co {
        padding: 90px 16px 140px;
    }

    .co-section-title {
        font-size: 12px;
    }

    .co-input {
        font-size: 16px;
        /* Prevent iOS zoom */
        padding: 14px 16px;
    }

    .co-cart {
        padding: 20px;
    }

    .co-cart-item-img {
        width: 72px;
        height: 72px;
    }

    .ty {
        padding: 100px 20px 60px;
    }

    .ty-title {
        font-size: 22px;
    }

    .ty-message {
        padding: 24px;
    }

    .ty-details {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===========================================================
   INLINE FIELD VALIDATION
   =========================================================== */
.co-input.co-input--error,
.co-stripe-element.co-stripe-element--error {
    border-color: var(--color-error) !important;
    background: rgba(231, 76, 60, 0.06) !important;
}

.co-field-error {
    display: none;
    font-size: 11px;
    color: var(--color-error);
    margin-top: 6px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.co-field-error.visible {
    display: block;
}

.co-input.co-input--error+.co-field-error,
.co-input--error~.co-field-error {
    display: block;
}

/* Shake animation for invalid fields */
@keyframes co-shake {

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

    20%,
    60% {
        transform: translateX(-6px);
    }

    40%,
    80% {
        transform: translateX(6px);
    }
}

.co-shake {
    animation: co-shake 0.4s ease;
}

/* ===========================================================
   MOBILE: STICKY PAY BUTTON AT BOTTOM
   =========================================================== */
.co-mobile-pay {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.co-mobile-pay .co-mobile-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.co-mobile-pay .co-mobile-total-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.co-mobile-pay .co-mobile-total-value {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.co-mobile-pay .co-pay-btn {
    margin-top: 0;
}