/* ===========================
   OFFLINE™ — Global Styles
   ========================= */

:root {
    --bg:            #0a0a0a;
    --bg-elevated:   #111111;
    --bg-card:       #161616;
    --surface:       #1a1a1a;
    --border:        #222222;
    --border-light:  #333333;
    --text:          #ffffff;
    --text-secondary:#999999;
    --text-muted:    #666666;
    --accent:        #3b82f6;
    --accent-glow:   rgba(59, 130, 246, 0.3);
    --accent-hot:    #60a5fa;
    --gradient:      linear-gradient(135deg, #3b82f6, #60a5fa);
    --radius:        12px;
    --radius-sm:     8px;
    --radius-lg:     20px;
    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce:   cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --font-primary:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display:  'Space Grotesk', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

::selection {
    background: var(--accent);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

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

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

/* ===========================
   Custom Cursor
   ========================= */
.cursor,
.cursor-follower {
    display: none;
}

@media (pointer: fine) {
    .cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10001;
        mix-blend-mode: difference;
        transition: transform 0.1s var(--ease);
    }

    .cursor-follower {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 36px;
        height: 36px;
        border: 1.5px solid rgba(59, 130, 246, 0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transition: transform 0.25s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
    }

    .cursor.hovering {
        transform: scale(2.5);
    }

    .cursor-follower.hovering {
        width: 50px;
        height: 50px;
        border-color: var(--accent);
    }
}

/* ===========================
   Noise Overlay
   ========================= */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ===========================
   Preloader
   ========================= */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10002;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.preloader-logo .tm {
    font-size: 0.4em;
    vertical-align: super;
    color: var(--accent);
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s var(--ease);
}

.preloader-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

/* ===========================
   Navigation
   ========================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

.nav-logo .tm {
    font-size: 0.5em;
    vertical-align: super;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 10px 24px;
    background: var(--gradient);
    border-radius: 100px;
    color: #fff;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Mobile Menu
   ========================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s var(--ease);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link::before {
    content: attr(data-index);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

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

.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.mobile-socials {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    justify-content: center;
}

.mobile-socials a {
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-socials a:hover {
    color: var(--accent);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s var(--ease);
}

.hero.visible .hero-bg-img {
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-hot);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-word {
    display: inline-block;
}

.hero-word.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 25px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-hot);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-indicator {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    position: relative;
}

.scroll-line {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(10,10,10,0.5);
    backdrop-filter: blur(10px);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    padding-right: 24px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   Section Shared
   ========================= */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1.5px;
    background: var(--accent);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

/* ===========================
   About Section
   ========================= */
.about {
    padding: 140px 0;
    position: relative;
}

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

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===========================
   Products / Drop Section
   ========================= */
.drop {
    padding: 140px 0;
    background: var(--bg-elevated);
    position: relative;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
}

.product-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    background: var(--text);
    color: var(--bg);
    border-radius: 100px;
}

.product-badge.featured {
    background: var(--gradient);
    color: #fff;
}

.product-image-wrap {
    position: relative;
    height: 380px;
    background: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.bundle-wrap {
    flex-direction: row;
    gap: 0;
}

.bundle-img-1 {
    width: 50%;
    height: 60%;
    object-fit: contain;
    transform: translateX(10px);
}

.bundle-img-2 {
    width: 50%;
    height: 60%;
    object-fit: contain;
    transform: translateX(-10px);
}

.product-card:hover .bundle-img-1 {
    transform: translateX(5px) scale(1.05);
}

.product-card:hover .bundle-img-2 {
    transform: translateX(-5px) scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-quickview {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s var(--ease);
}

.product-quickview:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.product-info {
    padding: 24px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.product-colors {
    display: flex;
    gap: 6px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s var(--ease);
}

.color-dot:hover {
    transform: scale(1.3);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.price-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

.product-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 10px 20px;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-light);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.product-add:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* ===========================
   Lookbook Section
   ========================= */
.lookbook {
    padding: 140px 0;
    overflow: hidden;
}

.lookbook-marquee {
    overflow: hidden;
    width: 100%;
}

.lookbook-track {
    display: flex;
    gap: 24px;
    animation: lookbook-scroll 35s linear infinite;
    width: max-content;
}

.lookbook-item {
    flex-shrink: 0;
    width: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s var(--ease);
}

.lookbook-item:hover {
    transform: scale(1.03);
}

.lookbook-item img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.lookbook-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.8);
}

@keyframes lookbook-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 2.5 - 60px)); }
}

/* ===========================
   Countdown / Newsletter
   ========================= */
.countdown-section {
    padding: 140px 0;
    background: var(--bg-elevated);
    position: relative;
}

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

.countdown-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.countdown-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 32px;
    min-width: 100px;
    transition: all 0.3s var(--ease);
}

.countdown-block:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-4px);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.countdown-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.signup-form {
    max-width: 520px;
    margin: 0 auto;
}

.input-wrap {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.signup-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text);
    outline: none;
}

.signup-input::placeholder {
    color: var(--text-muted);
}

.signup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--gradient);
    color: #fff;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 100px;
    margin: 4px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.signup-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 500;
    animation: fadeInUp 0.5s var(--ease);
}

.signup-success.show {
    display: flex;
}

/* ===========================
   Footer
   ========================= */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.footer-logo .tm {
    font-size: 0.4em;
    vertical-align: super;
    color: var(--accent);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links-grid {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

/* ===========================
   Product Modal
   ========================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10003;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image-wrap {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
    min-height: 500px;
}

.modal-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.modal-details {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 4px;
}

.modal-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
}

.modal-original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.modal-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.modal-option {
    margin-bottom: 16px;
}

.modal-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.size-selector {
    display: flex;
    gap: 8px;
}

.size-btn {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

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

.size-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

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

.qty-value {
    width: 48px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    border-left: 1.5px solid var(--border-light);
    border-right: 1.5px solid var(--border-light);
    line-height: 48px;
}

.modal-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-top: 8px;
    box-shadow: 0 4px 25px var(--accent-glow);
}

.modal-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.modal-cart-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: var(--radius);
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 8px;
    animation: fadeInUp 0.4s var(--ease);
}

.modal-cart-success.show {
    display: flex;
}

.modal-extras {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.modal-extra {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.modal-extra svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* -- Modal Responsive -- */
@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-image-wrap {
        min-height: 300px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal-details {
        padding: 28px 24px;
    }

    .modal-name {
        font-size: 1.4rem;
    }

    .modal-price {
        font-size: 1.6rem;
    }

    .size-btn {
        width: 42px;
        height: 42px;
        font-size: 0.75rem;
    }
}

/* ===========================
   Animations
   ========================= */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

/* ===========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-scroll {
        bottom: 60px;
    }

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

    .product-image-wrap {
        height: 300px;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-block {
        min-width: 70px;
        padding: 16px 20px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .input-wrap {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .signup-btn {
        border-radius: var(--radius-sm);
        margin: 0 4px 4px;
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-grid {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .lookbook-item {
        width: 280px;
    }

    .lookbook-item img {
        height: 340px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.6rem;
        padding: 6px 14px;
    }

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

    .footer-links-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
}
