/* ===== RESET & BASE (Light Theme) ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --gray-50: #fafafa;
    --gray-100: #f0f0f0;
    --gray-200: #e0e0e0;
    --gray-300: #cccccc;
    --gray-400: #999999;
    --gray-500: #777777;
    --gray-600: #555555;
    --gray-800: #222222;
    --gray-900: #111111;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.drop-page {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-900);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 20px 48px;
    font-size: 0.95rem;
}

/* ===== NAVIGATION (Light) ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    filter: invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

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

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ===== DROP HERO ===== */
.drop-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.drop-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.drop-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.drop-tee-img {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.drop-hero-content {
    position: relative;
    z-index: 1;
}

.drop-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: var(--black);
}

.drop-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Product Details */
.drop-details {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
}

.drop-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.drop-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    font-weight: 500;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--gray-800);
    font-weight: 400;
}

.detail-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    letter-spacing: 0.05em;
}

/* Countdown */
.drop-countdown {
    margin-bottom: 32px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    line-height: 1;
    min-width: 56px;
    text-align: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 12px 8px 8px;
    color: var(--black);
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.countdown-lbl {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-400);
    font-weight: 500;
}

.countdown-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 400;
}

/* ===== DROP STORY ===== */
.drop-story {
    padding: 140px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.drop-story-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.story-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 48px;
    color: var(--black);
}

.drop-story-text {
    margin-bottom: 40px;
}

.drop-story-text p {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 24px;
}

.drop-story-quote {
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    position: relative;
    margin-bottom: 40px;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gray-200);
    line-height: 1;
    position: absolute;
    top: 12px;
    left: 24px;
}

.drop-story-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.5;
    font-weight: 400;
}

.drop-story-closing {
    margin-top: 8px;
}

.drop-story-closing p {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--black);
    line-height: 1.3;
}

/* ===== ORDER SECTION ===== */
.order-section {
    padding: 140px 0;
}

.order-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Order Visual */
.order-visual {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.order-tee-img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.order-info-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-600);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Order Form */
.order-form-wrapper {
    max-width: 500px;
}

.order-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    color: var(--black);
}

.order-price-display {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    color: var(--black);
}

.order-price-note {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-left: 8px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.form-group-small {
    max-width: 100px;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-section-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--black);
    padding-top: 16px;
    padding-bottom: 4px;
    border-top: 1px solid var(--gray-200);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-900);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-input:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

/* Size Selector */
.size-selector {
    display: flex;
    gap: 8px;
}

.size-option input {
    display: none;
}

.size-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-box:hover {
    border-color: var(--black);
    color: var(--black);
}

.size-option input:checked + .size-box {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Quantity Selector */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 48px;
    height: 48px;
    background: var(--gray-50);
    border: none;
    color: var(--gray-800);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    font-family: var(--font-body);
}

.qty-btn:hover {
    background: var(--gray-200);
}

.qty-input {
    width: 56px;
    height: 48px;
    background: var(--white);
    border: none;
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
}

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

/* Order Total */
.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin: 8px 0;
}

.total-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    font-weight: 600;
}

.total-value {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--black);
}

.order-form .btn {
    border-radius: 12px;
    padding: 18px 36px;
    margin-top: 4px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 8px;
}

/* Order Success */
.order-success {
    text-align: center;
    padding: 60px 0;
}

.order-success h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--black);
}

.order-success p {
    color: var(--gray-500);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

.order-success .order-confirmation {
    margin-top: 24px;
    padding: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    display: inline-block;
}

.order-success .order-confirmation span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    text-transform: uppercase;
}

/* ===== FOOTER (Dark) ===== */
.footer {
    padding: 60px 0;
    background: var(--black);
    color: var(--white);
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .drop-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .drop-hero-visual {
        order: -1;
    }

    .drop-subtitle {
        max-width: 100%;
    }

    .countdown-timer {
        justify-content: center;
    }

    .drop-hero-content .btn {
        width: 100%;
        justify-content: center;
    }

    .order-card {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .order-visual {
        position: static;
    }
}

@media (max-width: 640px) {
    .drop-hero {
        padding: 100px 0 60px;
    }

    .drop-title {
        font-size: 3.5rem;
    }

    .drop-tee-img {
        max-width: 320px;
    }

    .countdown-num {
        font-size: 2rem;
        min-width: 48px;
        padding: 10px 6px 6px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group-small {
        max-width: 100%;
    }

    .order-title {
        font-size: 2.5rem;
    }

    .order-tee-img {
        max-width: 280px;
    }

    .size-box {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }

    .story-heading {
        font-size: 3rem;
    }

    .drop-story-closing p {
        font-size: 1.4rem;
    }
}
