/* ============================================
   THE TERRIBLE HOODIE - MAIN STYLESHEET
   ============================================ */

:root {
    --gold: #FFB81C;
    --gold-dark: #D99A00;
    --gold-light: #FFD166;
    --black: #101820;
    --black-light: #1a2530;
    --black-lighter: #2a3540;
    --white: #ffffff;
    --gray: #8892a0;
    --gray-light: #c5cad1;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --font-display: 'Oswald', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    --shadow-gold: 0 0 60px rgba(255,184,28,0.3);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(16, 24, 32, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 184, 28, 0.1);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.logo-text { display: flex; flex-direction: column; }

.logo-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-tagline {
    font-family: var(--font-condensed);
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

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

.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cart-btn:hover { background: var(--gold-light); }

@media (max-width: 768px) {
    .nav, .logo-text { display: none; }
    .header-inner { padding: 0.5rem 1rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255,184,28,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255,184,28,0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
}

.hero-text { animation: fadeInUp 0.8s ease-out; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,184,28,0.1);
    border: 1px solid rgba(255,184,28,0.3);
    margin-bottom: 1.5rem;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge span {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.hero-title .gold {
    color: var(--gold);
    display: block;
    text-shadow: 0 0 80px rgba(255,184,28,0.4);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .hero-subtitle { margin: 0 auto 2rem; }
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .hero-cta { justify-content: center; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-mockup-container {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.hero-mockup-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(255,184,28,0.2) 0%, transparent 70%);
    filter: blur(30px);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255,184,28,0.2);
    transition: var(--transition);
}

.hero-mockup-img:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.hero-color-toggle { display: flex; gap: 0.5rem; margin-top: 1.5rem; }

.color-toggle-btn {
    padding: 0.6rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--gray);
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.color-toggle-btn:hover { border-color: rgba(255,184,28,0.5); }

.color-toggle-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255,184,28,0.1);
    border-bottom: 1px solid rgba(255,184,28,0.2);
}

.proof-icon { font-size: 1.1rem; animation: pulse 2s infinite; }

.proof-text {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    color: var(--gold);
}

/* ============================================
   CUSTOMIZER SECTION
   ============================================ */
.customizer-section {
    padding: 5rem 2rem;
    background: var(--black-light);
    position: relative;
}

.customizer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header { text-align: center; margin-bottom: 3rem; }

.section-tag {
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    text-transform: uppercase;
}

/* Funnel */
.funnel { max-width: 1100px; margin: 0 auto; }

.funnel-progress {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    background: var(--black);
    padding: 0.75rem;
    border: 1px solid rgba(255,184,28,0.1);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    opacity: 0.4;
    transition: var(--transition);
    cursor: pointer;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.progress-step:last-child { border-right: none; }
.progress-step:hover { opacity: 0.7; }
.progress-step.active { opacity: 1; background: rgba(255,184,28,0.1); }
.progress-step.completed { opacity: 0.8; }

.step-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.progress-step.active .step-number { background: var(--gold); color: var(--black); }
.progress-step.completed .step-number { background: var(--success); }

.step-label {
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .step-label { display: none; }
    .progress-step { padding: 0.6rem 0.8rem; }
}

/* Funnel Layout */
.funnel-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .funnel-layout { grid-template-columns: 1fr; }
}

/* Preview Panel */
.preview-panel {
    background: var(--black);
    padding: 1.5rem;
    border: 1px solid rgba(255,184,28,0.1);
    position: sticky;
    top: 90px;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.6rem;
    background: rgba(255,184,28,0.1);
    border: 1px solid rgba(255,184,28,0.3);
    margin-bottom: 1rem;
}

.preview-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.preview-badge span {
    font-family: var(--font-condensed);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
}

.preview-mockup-wrap { position: relative; margin-bottom: 1.5rem; }

.preview-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid rgba(255,184,28,0.2);
}

.preview-name-overlay {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.preview-mockup-wrap.gold .preview-name-overlay { color: var(--black); }
.preview-mockup-wrap.black .preview-name-overlay { color: var(--gold); }

.preview-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,184,28,0.2);
}

.preview-price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.preview-price-original {
    font-size: 0.95rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.preview-savings {
    padding: 0.35rem 0.6rem;
    background: var(--success);
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Options Panel */
.options-panel {
    background: var(--black);
    border: 1px solid rgba(255,184,28,0.1);
}

.option-step {
    display: none;
    padding: 1.75rem;
    animation: fadeIn 0.4s ease;
}

.option-step.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header { margin-bottom: 1.75rem; }

.step-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0;
    background: none;
    border: none;
    color: var(--gray);
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.step-back:hover { color: var(--gold); }

.step-tag {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.step-desc { font-size: 0.9rem; color: var(--gray); }

/* Color Options */
.color-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

@media (max-width: 500px) {
    .color-options { grid-template-columns: 1fr; }
}

.color-option {
    padding: 1rem;
    background: var(--black-light);
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-option:hover { border-color: rgba(255,184,28,0.5); }
.color-option.active { border-color: var(--gold); background: rgba(255,184,28,0.1); }

.color-swatches { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.75rem; }

.color-swatch { width: 32px; height: 32px; border-radius: 4px; }
.color-swatch.gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); }
.color-swatch.black { background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%); border: 1px solid rgba(255,255,255,0.1); }

.color-arrow { color: var(--gray); font-size: 0.9rem; }

.color-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.color-print { font-size: 0.75rem; color: var(--gray); }

.color-check {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.color-check svg { width: 11px; height: 11px; fill: var(--black); }
.color-option.active .color-check { opacity: 1; transform: scale(1); }

/* Form Fields */
.field-group { margin-bottom: 1.25rem; }

.field-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
}

.field-included {
    margin-left: auto;
    padding: 0.15rem 0.4rem;
    background: var(--success);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
}

.input-wrap { position: relative; }

.text-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    background: var(--black-light);
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.text-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255,184,28,0.2);
}

.text-input::placeholder {
    color: var(--gray);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.char-count {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    color: var(--gray);
}

.field-help { margin-top: 0.4rem; font-size: 0.75rem; color: var(--gray); }

/* Size Options */
.size-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

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

.size-option {
    padding: 0.85rem 0.4rem;
    background: var(--black-light);
    border: 2px solid rgba(255,255,255,0.1);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover { border-color: rgba(255,184,28,0.5); }
.size-option.active { background: var(--gold); border-color: var(--gold); }

.size-label { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.size-option.active .size-label { color: var(--black); }

.size-range { font-family: var(--font-condensed); font-size: 0.6rem; color: var(--gray); margin-top: 0.15rem; }
.size-option.active .size-range { color: var(--black); opacity: 0.7; }

/* Order Summary */
.order-summary {
    background: var(--black-light);
    padding: 1.1rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--gold);
}

.summary-item { display: flex; justify-content: space-between; padding: 0.5rem 0; }

.summary-label {
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-value { font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 600; }
.summary-name { font-family: var(--font-display); font-style: italic; color: var(--gold); }

.summary-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0.35rem 0; }

.summary-total .summary-label { color: var(--white); }
.summary-total .summary-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gold); }

/* Rush Option */
.rush-option { margin-bottom: 1.25rem; }

.rush-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    background: var(--black-light);
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
}

.rush-card:hover { border-color: rgba(255,184,28,0.5); }
.rush-card.active { border-color: var(--gold); background: rgba(255,184,28,0.1); }

.rush-icon { font-size: 1.3rem; }
.rush-info { flex: 1; }

.rush-name {
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rush-desc { font-size: 0.75rem; color: var(--gray); }
.rush-price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--gold); }

/* Quantity */
.quantity-wrap { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }

.qty-label {
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qty-controls { display: flex; }

.qty-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-light);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover { background: var(--gold); color: var(--black); }

.qty-value {
    width: 45px;
    height: 34px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: none;
    border-right: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

/* Buttons */
.next-btn, .add-cart-btn {
    width: 100%;
    padding: 1.1rem 1.75rem;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.next-btn:hover, .add-cart-btn:hover {
    background: var(--gold-light);
    transform: translateX(4px);
}

.next-btn:disabled, .add-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.add-cart-btn { margin-bottom: 1.25rem; }

.btn-price {
    margin-left: auto;
    padding-left: 0.85rem;
    border-left: 2px solid rgba(0,0,0,0.2);
}

/* Trust Badges */
.trust-badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--gray);
}

.trust-icon { font-size: 0.9rem; }

/* Urgency Bar */
.urgency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem;
    background: var(--error);
}

.urgency-icon { font-size: 1rem; animation: pulse 1s infinite; }
.urgency-text { font-family: var(--font-condensed); font-size: 0.85rem; }

.countdown {
    font-family: var(--font-display);
    font-weight: 700;
    background: rgba(0,0,0,0.3);
    padding: 0.15rem 0.4rem;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--black-light);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-drawer.open { right: 0; }

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,184,28,0.2);
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-close:hover { background: var(--gold); color: var(--black); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    color: var(--gray);
    padding: 3rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid rgba(255,184,28,0.2);
}

.cart-item-info { flex: 1; }

.cart-item-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.cart-item-details {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

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

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,184,28,0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-total span:last-child { color: var(--gold); }

.checkout-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.checkout-btn:hover { background: var(--gold-light); }

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open { opacity: 1; visibility: visible; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(255,184,28,0.1);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

.footer-brand { display: flex; align-items: flex-start; gap: 0.85rem; }

@media (max-width: 768px) {
    .footer-brand { flex-direction: column; align-items: center; }
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.footer-info p { font-size: 0.85rem; color: var(--gray); max-width: 280px; }

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.85rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

.footer-copyright { font-size: 0.75rem; color: var(--gray); }

.footer-tagline {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SIZE GRID FIX - 4 per row */
.size-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.size-option {
    min-width: unset;
    padding: 0.5rem 0.25rem;
}

@media (max-width: 480px) {
    .size-options {
        grid-template-columns: repeat(3, 1fr);
    }
}
.nav-vip{color:var(--gold) !important;font-weight:600;border:1px solid var(--gold);padding:0.4rem 0.8rem !important;border-radius:3px;}.nav-vip:hover{background:var(--gold);color:var(--black) !important;}

/* Mobile Customizer Fixes */
@media (max-width: 1024px) {
    .preview-panel {
        position: relative;
        top: auto;
        margin-bottom: 1.5rem;
    }
    .funnel-layout {
        display: flex;
        flex-direction: column;
    }
    .options-panel {
        width: 100%;
    }
    .color-options {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .color-option {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .customizer-section {
        padding: 2rem 1rem;
    }
    .funnel {
        padding: 0;
    }
    .funnel-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .progress-step {
        flex: 1 1 auto;
        min-width: 100px;
    }
    .preview-panel {
        padding: 1rem;
    }
    .preview-price-value {
        font-size: 1.5rem;
    }
    .option-step {
        padding: 1.25rem;
    }
    .step-title {
        font-size: 1.25rem;
    }
    .next-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    .preview-mockup-wrap {
        margin-bottom: 1rem;
    }
    .preview-name-overlay {
        font-size: 1rem;
    }
    .color-swatches {
        justify-content: flex-start;
    }
    .size-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .size-option {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* MOBILE CUSTOMIZER COMPLETE REWRITE */
@media (max-width: 1024px) {
    /* Hide preview panel on mobile - show inline instead */
    .funnel-layout {
        display: block;
    }
    
    .preview-panel {
        display: none;
    }
    
    /* Show compact preview inside options panel */
    .options-panel {
        width: 100%;
    }
    
    /* Fix progress steps */
    .funnel-progress {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .progress-step {
        flex: 1;
        text-align: center;
        padding: 0.75rem 0.25rem;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        margin: 0 0.25rem;
    }
    
    .progress-step.active {
        background: rgba(255,184,28,0.2);
        border-color: var(--gold);
    }
    
    .progress-step .step-number {
        display: block;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--gold);
    }
    
    .progress-step .step-label {
        display: block;
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0.25rem;
        color: var(--gray-light);
    }
    
    .progress-step.active .step-label {
        color: var(--gold);
    }
    
    /* Color options side by side */
    .color-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .color-option {
        padding: 0.75rem;
    }
    
    .color-name {
        font-size: 0.8rem;
    }
    
    .color-print {
        font-size: 0.65rem;
    }
    
    .color-swatch {
        width: 24px;
        height: 24px;
    }
}

/* Create mobile-only inline preview */
@media (max-width: 1024px) {
    .mobile-preview {
        display: block !important;
        background: var(--black);
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid rgba(255,184,28,0.2);
    }
    
    .mobile-preview img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .mobile-preview-price {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 0.75rem;
    }
    
    .mobile-preview-price .price {
        font-family: var(--font-display);
        font-size: 1.5rem;
        color: var(--gold);
        font-weight: 700;
    }
    
    .mobile-preview-price .original {
        text-decoration: line-through;
        color: var(--gray);
        font-size: 0.9rem;
    }
    
    .mobile-preview-price .savings {
        background: var(--success);
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        font-weight: 700;
    }
}

/* Hide mobile preview on desktop */
@media (min-width: 1025px) {
    .mobile-preview {
        display: none !important;
    }
}

/* ============================================
   MOBILE CUSTOMIZER - COMPLETE OVERHAUL
   ============================================ */
@media (max-width: 1024px) {
    /* Section cleanup */
    .customizer-section {
        padding: 1.5rem 1rem;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .section-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Funnel container */
    .funnel {
        max-width: 100%;
        padding: 0;
    }
    
    /* Progress steps - horizontal compact */
    .funnel-progress {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        padding: 0;
    }
    
    .progress-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.6rem 0.25rem;
        background: rgba(255,255,255,0.03);
        border: 2px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        cursor: pointer;
    }
    
    .progress-step.active {
        background: rgba(255,184,28,0.15);
        border-color: var(--gold);
    }
    
    .progress-step.completed {
        background: rgba(255,184,28,0.1);
        border-color: rgba(255,184,28,0.5);
    }
    
    .progress-step .step-number {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--gray-light);
    }
    
    .progress-step.active .step-number {
        background: var(--gold);
        color: var(--black);
    }
    
    .progress-step.completed .step-number {
        background: var(--gold);
        color: var(--black);
    }
    
    .progress-step .step-label {
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin-top: 0.4rem;
        color: var(--gray);
        text-align: center;
        line-height: 1.2;
    }
    
    .progress-step.active .step-label {
        color: var(--gold);
    }
    
    /* Hide desktop preview panel completely */
    .preview-panel {
        display: none !important;
    }
    
    /* Mobile preview - compact and always visible */
    .mobile-preview {
        display: block !important;
        background: var(--black);
        border: 2px solid rgba(255,184,28,0.3);
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .mobile-preview img {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0 auto;
        display: block;
        border-radius: 4px;
    }
    
    .mobile-preview-price {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 0.75rem;
        flex-wrap: wrap;
    }
    
    .mobile-preview-price .price {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gold);
    }
    
    .mobile-preview-price .original {
        font-size: 0.9rem;
        color: var(--gray);
        text-decoration: line-through;
    }
    
    .mobile-preview-price .savings {
        background: var(--success);
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 700;
    }
    
    /* Options panel */
    .options-panel {
        background: transparent;
        border: none;
    }
    
    .option-step {
        background: var(--black);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        padding: 1.25rem;
    }
    
    /* Step header */
    .step-header {
        margin-bottom: 1rem;
    }
    
    .step-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    .step-desc {
        font-size: 0.85rem;
        color: var(--gray-light);
    }
    
    .step-back {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    /* Color options - side by side */
    .color-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .color-option {
        padding: 1rem 0.75rem;
        border-radius: 8px;
        text-align: center;
    }
    
    .color-swatches {
        justify-content: center;
        margin-bottom: 0.6rem;
    }
    
    .color-swatch {
        width: 28px;
        height: 28px;
    }
    
    .color-arrow {
        font-size: 0.8rem;
    }
    
    .color-name {
        font-size: 0.85rem;
    }
    
    .color-print {
        font-size: 0.7rem;
    }
    
    .color-check {
        top: 0.5rem;
        right: 0.5rem;
        width: 18px;
        height: 18px;
    }
    
    /* Name input */
    .field-group {
        margin-bottom: 1.25rem;
    }
    
    .field-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .text-input {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
    
    .field-help {
        font-size: 0.75rem;
    }
    
    /* Size grid */
    .size-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .size-option {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .size-price-diff {
        font-size: 0.65rem;
    }
    
    /* Rush option */
    .rush-option {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .rush-name {
        font-size: 0.9rem;
    }
    
    .rush-desc {
        font-size: 0.7rem;
    }
    
    .rush-price {
        font-size: 0.85rem;
    }
    
    /* Quantity */
    .quantity-wrap {
        margin-bottom: 1rem;
    }
    
    .qty-label {
        font-size: 0.85rem;
    }
    
    .qty-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .qty-value {
        width: 50px;
        font-size: 1rem;
    }
    
    /* Next/Add buttons - BIG and clear */
    .next-btn,
    .add-cart-btn {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 8px;
        font-weight: 700;
    }
    
    .next-btn {
        background: var(--gold);
        color: var(--black);
        border: none;
        cursor: pointer;
    }
    
    /* Trust badges */
    .trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .trust-icon {
        font-size: 0.9rem;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .size-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .color-options {
        grid-template-columns: 1fr;
    }
    
    .mobile-preview img {
        max-width: 160px;
    }
}
