/* ─────────────────────────────────────── */
/* MAIN STYLES - MOOLE Website            */
/* ─────────────────────────────────────── */

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    height: 64px;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 255, 0, 0.1);
    transition: border-color var(--transition-normal);
}

.navbar.scrolled {
    border-bottom-color: rgba(200, 255, 0, 0.25);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--lime);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--lime);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.nav-icon:hover {
    opacity: 1;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--lime);
    color: var(--black);
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast), transform 0.1s;
}

.cart-btn:hover {
    background: #d4ff1e;
    transform: scale(1.02);
}

.cart-count {
    background: var(--black);
    color: var(--lime);
    font-size: 10px;
    padding: 1px 5px;
    font-weight: 800;
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--spacing-lg) var(--spacing-2xl);
    position: relative;
    overflow: hidden;
    background: var(--black);
    margin-top: 64px;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    background: var(--black);
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-100%);
    transition: transform 1s cubic-bezier(0.8, 0, 0.2, 1);
}

.hero-slider .slide.active {
    transform: translateX(0);
}

.hero-slider .slide.exit {
    transform: translateX(100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1550614000-4b9ebd45e3c1?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    opacity: 0.3;
}

.hero-number {
    position: absolute;
    top: 80px;
    right: -20px;
    font-family: var(--font-display);
    font-size: clamp(300px, 40vw, 600px);
    color: rgba(200, 255, 0, 0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.hero-tag {
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--lime);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(80px, 16vw, 240px);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-top: auto;
    margin-bottom: auto;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s ease forwards;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.hero-title span {
    color: var(--lime);
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-lg);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s ease forwards;
    position: relative;
    z-index: 2;
}

.hero-desc {
    width: 50vw;
    max-width: 50vw;
    padding-right: 40px;
    font-size: clamp(16px, 1.8vw, 32px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(240, 237, 232, 0.8);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--lime);
    color: var(--black);
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 2px solid var(--lime);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--lime);
}

.btn-secondary {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(240, 237, 232, 0.4);
    padding-bottom: 2px;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.btn-secondary:hover {
    color: var(--lime);
    border-color: var(--lime);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    opacity: 0;
    animation: fadeIn 1s 1.2s ease forwards;
}

.hero-scroll span {
    font-family: var(--font-condensed);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--lime), transparent);
    animation: scrollPulse 1.5s infinite;
}

/* ─── TICKER ─── */
.ticker {
    background: var(--lime);
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── SECTIONS ─── */
section {
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 56px;
    gap: 16px;
}

.section-label {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-link {
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    border-bottom: 1px solid var(--gray2);
    padding-bottom: 2px;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-bottom: 12px;
}

.section-link:hover {
    color: var(--lime);
    border-color: var(--lime);
}

/* ─── PRODUCTS ─── */
.products-section {
    background: var(--black);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--black2);
}

.product-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(200, 255, 0, 0.08);
    letter-spacing: 4px;
    transition: transform var(--transition-slow) ease;
    background: var(--black3);
}

.product-card:hover .product-placeholder {
    transform: scale(1.04);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-condensed);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
}

.tag-new {
    background: var(--lime);
    color: var(--black);
}

.tag-hot {
    background: var(--red);
    color: var(--white);
}

.tag-sold {
    background: var(--gray2);
    color: var(--white);
}

.product-info {
    padding: 16px;
    background: var(--black2);
}

.product-name {
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-condensed);
    font-size: 18px;
    font-weight: 700;
    color: var(--lime);
}

.product-category {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    background: var(--lime);
    color: var(--black);
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.overlay-btn:hover {
    transform: scale(1.04);
}

/* ─── CATEGORIES ─── */
.categories-section {
    background: var(--black);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
}

.cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: var(--black3);
    transition: all var(--transition-normal);
}

.cat-card:first-child {
    grid-row: span 2;
    min-height: 500px;
}

.cat-bg {
    position: absolute;
    inset: 0;
    font-family: var(--font-display);
    font-size: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(200, 255, 0, 0.04);
    pointer-events: none;
    transition: transform var(--transition-slow) ease, color var(--transition-normal);
}

.cat-card:hover .cat-bg {
    transform: scale(1.1);
    color: rgba(200, 255, 0, 0.07);
}

.cat-info {
    position: relative;
    z-index: 1;
}

.cat-name {
    font-family: var(--font-display);
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cat-card:first-child .cat-name {
    font-size: 56px;
}

.cat-count {
    font-family: var(--font-condensed);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.cat-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 16px;
    transition: all var(--transition-fast);
    transform: rotate(45deg);
}

.cat-card:hover .cat-arrow {
    background: var(--lime);
    color: var(--black);
    transform: rotate(0deg);
}

/* ─── BRAND STRIP ─── */
.brand-strip {
    background: var(--black2);
    padding: var(--spacing-2xl) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    border-top: 1px solid rgba(200, 255, 0, 0.08);
    border-bottom: 1px solid rgba(200, 255, 0, 0.08);
    overflow: hidden;
}

.brand-stat {
    flex-shrink: 0;
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.brand-divider {
    width: 1px;
    height: 80px;
    background: rgba(200, 255, 0, 0.15);
    flex-shrink: 0;
}

.brand-manifesto {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.manifesto-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.1;
    text-transform: uppercase;
}

.manifesto-text span {
    color: var(--lime);
}

/* ─── LOOKBOOK ─── */
.lookbook-section {
    background: var(--black);
    padding: var(--spacing-3xl) 0;
}

.lookbook-header {
    padding: 0 var(--spacing-lg);
    margin-bottom: 48px;
}

.lookbook-scroll {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    padding: 0 var(--spacing-lg);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.lookbook-scroll::-webkit-scrollbar {
    display: none;
}

.lookbook-item {
    flex-shrink: 0;
    width: 340px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    background: var(--black3);
    cursor: pointer;
}

.lookbook-img {
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 100px;
    color: rgba(200, 255, 0, 0.06);
    transition: transform var(--transition-slow);
    background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
}

.lookbook-item:hover .lookbook-img {
    transform: scale(1.03);
}

.lookbook-caption {
    padding: 20px;
    background: var(--black2);
}

.lookbook-season {
    font-family: var(--font-condensed);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 6px;
}

.lookbook-title {
    font-family: var(--font-condensed);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── ABOUT ─── */
.about-section {
    background: var(--black);
    padding: var(--spacing-3xl) var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-left {
    position: relative;
}

.about-tag-big {
    font-family: var(--font-display);
    font-size: clamp(80px, 14vw, 200px);
    color: rgba(200, 255, 0, 0.05);
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -20px;
    pointer-events: none;
    user-select: none;
}

.about-image-box {
    position: relative;
    z-index: 1;
    background: var(--black3);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 120px;
    color: rgba(200, 255, 0, 0.08);
    border: 1px solid rgba(200, 255, 0, 0.06);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--lime);
    color: var(--black);
    padding: 20px 24px;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
    max-width: 160px;
    text-align: center;
}

.about-intro {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-intro::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--lime);
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.about-heading span {
    color: var(--lime);
}

.about-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(240, 237, 232, 0.65);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.feature-item {
    padding: 20px;
    border: 1px solid rgba(200, 255, 0, 0.1);
    transition: border-color var(--transition-normal);
    cursor: default;
}

.feature-item:hover {
    border-color: rgba(200, 255, 0, 0.35);
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: var(--lime);
    font-size: 20px;
}

.feature-title {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray);
}

/* ─── STORES ─── */
.stores-section {
    background: var(--black2);
    padding: var(--spacing-3xl) var(--spacing-lg);
    border-top: 1px solid rgba(200, 255, 0, 0.06);
    border-bottom: 1px solid rgba(200, 255, 0, 0.06);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200, 255, 0, 0.08);
    margin-top: 56px;
}

.store-card {
    background: var(--black2);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background var(--transition-normal);
    cursor: default;
}

.store-card:hover {
    background: var(--black3);
}

.store-city-num {
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(200, 255, 0, 0.04);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    transition: color var(--transition-normal);
}

.store-card:hover .store-city-num {
    color: rgba(200, 255, 0, 0.08);
}

.store-pin {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lime);
    margin-bottom: 16px;
    box-shadow: 0 0 8px var(--lime);
}

.store-city {
    font-family: var(--font-display);
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.store-address {
    font-family: var(--font-condensed);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 4px;
}

.store-hours {
    font-family: var(--font-condensed);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 255, 0, 0.5);
    margin-top: 12px;
}

/* ─── REVIEWS ─── */
.reviews-section {
    background: var(--black);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
}

.review-card {
    background: var(--black2);
    padding: 36px 32px;
    border-top: 2px solid transparent;
    transition: border-color var(--transition-normal);
    cursor: default;
}

.review-card:hover {
    border-top-color: var(--lime);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--lime);
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(240, 237, 232, 0.75);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black3);
    border: 1px solid rgba(200, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    color: var(--lime);
    flex-shrink: 0;
}

.review-name {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-location {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
    background: var(--lime);
    padding: var(--spacing-3xl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    font-family: var(--font-display);
    font-size: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    user-select: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-label {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 20px;
}

.newsletter-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 2px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    background: var(--black);
    border: none;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--gray);
}

.newsletter-btn {
    background: var(--black);
    color: var(--lime);
    border: none;
    padding: 16px 28px;
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: #0d0d0d;
}

.sub-msg {
    margin-top: 16px;
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.5);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--black);
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
    border-top: 1px solid rgba(200, 255, 0, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(200, 255, 0, 0.08);
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 4px;
    color: var(--lime);
    margin-bottom: 16px;
    line-height: 1;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(240, 237, 232, 0.5);
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(200, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
}

.social-btn:hover {
    border-color: var(--lime);
    color: var(--lime);
    background: rgba(200, 255, 0, 0.05);
}

.footer-col h4 {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(240, 237, 232, 0.5);
    transition: color var(--transition-fast);
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(240, 237, 232, 0.3);
    text-transform: uppercase;
}

.footer-country {
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(200, 255, 0, 0.5);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-flag {
    font-size: 16px;
}

/* ─── COLLECTIONS ─── */
.collections-section {
    background: var(--black);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-3xl);
}

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--black3);
    border: 1px solid rgba(200, 255, 0, 0.1);
    transition: all var(--transition-normal);
}

.collection-card:hover {
    border-color: var(--lime);
    background: var(--black2);
}

.collection-img {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 120px;
    color: rgba(200, 255, 0, 0.08);
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    transition: transform var(--transition-slow);
}

.collection-card:hover .collection-img {
    transform: scale(1.05);
}

.collection-info {
    padding: var(--spacing-md);
}

.collection-season {
    font-family: var(--font-condensed);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: var(--spacing-xs);
}

.collection-title {
    font-family: var(--font-display);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.collection-card:hover .collection-title {
    color: var(--lime);
}

.collection-items {
    font-family: var(--font-condensed);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* ─── INFLUENCERS ─── */
.influencers-section {
    background: var(--black2);
    padding: var(--spacing-3xl) var(--spacing-lg);
    border-top: 1px solid rgba(200, 255, 0, 0.08);
    border-bottom: 1px solid rgba(200, 255, 0, 0.08);
}

.influencers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.influencer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--black);
    border: 1px solid rgba(200, 255, 0, 0.1);
    transition: all var(--transition-normal);
}

.influencer-card:hover {
    border-color: var(--lime);
    background: var(--black3);
}

.influencer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8FF00, #9AC500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: var(--spacing-lg);
}

.influencer-name {
    font-family: var(--font-condensed);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--lime);
}

.influencer-title {
    font-family: var(--font-condensed);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: var(--spacing-xs);
}

.influencer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(240, 237, 232, 0.7);
    margin-bottom: var(--spacing-lg);
}

.influencer-link {
    font-family: var(--font-condensed);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    border-bottom: 1px solid var(--lime);
    padding-bottom: 2px;
    transition: all var(--transition-fast);
}

.influencer-link:hover {
    color: #d4ff1e;
    border-color: #d4ff1e;
}

/* ─── SUSTAINABILITY ─── */
.sustainability-section {
    background: var(--black);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.sustainability-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(240, 237, 232, 0.7);
    margin-bottom: var(--spacing-lg);
}

.sustainability-list {
    list-style: none;
}

.sustainability-list li {
    font-size: 15px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(240, 237, 232, 0.75);
    border-bottom: 1px solid rgba(200, 255, 0, 0.05);
}

.sustainability-list .check {
    color: var(--lime);
    font-weight: 700;
    font-size: 18px;
}

.sustainability-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.1) 0%, rgba(200, 255, 0, 0.05) 100%);
    border: 1px solid rgba(200, 255, 0, 0.2);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    min-height: 300px;
}

.sustainability-stat {
    text-align: center;
}

.stat-big {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 16px;
}

.sustainability-stat p {
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

/* ─── SIZE GUIDE ─── */
.size-guide-section {
    background: var(--black2);
    padding: var(--spacing-3xl) var(--spacing-lg);
    border-top: 1px solid rgba(200, 255, 0, 0.08);
}

.size-guide-content {
    margin-top: var(--spacing-3xl);
}

.size-tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.size-tab {
    background: transparent;
    border: 1px solid rgba(200, 255, 0, 0.2);
    padding: 12px 24px;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.size-tab:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.size-tab.active {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
}

.size-table {
    overflow-x: auto;
    margin-bottom: var(--spacing-2xl);
}

.size-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--black);
}

.size-table th,
.size-table td {
    border: 1px solid rgba(200, 255, 0, 0.1);
    padding: 16px;
    text-align: left;
    font-family: var(--font-body);
}

.size-table th {
    background: var(--black3);
    font-family: var(--font-condensed);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lime);
}

.size-table td {
    font-size: 14px;
    color: rgba(240, 237, 232, 0.75);
}

.size-table tr:hover {
    background: var(--black3);
}

.size-note {
    font-size: 14px;
    color: rgba(200, 255, 0, 0.7);
    padding: 20px;
    background: rgba(200, 255, 0, 0.05);
    border-left: 2px solid var(--lime);
    line-height: 1.6;
}

/* ─── FAQ ─── */
.faq-section {
    background: var(--black);
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.faq-item {
    border: 1px solid rgba(200, 255, 0, 0.1);
    background: var(--black2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--black2);
    border: none;
    border-bottom: 1px solid rgba(200, 255, 0, 0.1);
    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--black3);
    color: var(--lime);
}

.faq-icon {
    display: inline-block;
    font-size: 20px;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(240, 237, 232, 0.7);
}

/* ─── CONTACT ─── */
.contact-section {
    background: var(--black2);
    padding: var(--spacing-3xl) var(--spacing-lg);
    border-top: 1px solid rgba(200, 255, 0, 0.08);
    border-bottom: 1px solid rgba(200, 255, 0, 0.08);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-3xl);
}

.contact-info h3,
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-2xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.contact-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.contact-label {
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: rgba(240, 237, 232, 0.7);
    line-height: 1.6;
}

.contact-details a {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--lime);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(200, 255, 0, 0.2);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    transition: border-color var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
    border-color: rgba(200, 255, 0, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 0 2px rgba(200, 255, 0, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23C8FF00' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.contact-form button[type="submit"] {
    display: inline-block;
    align-self: flex-start;
    width: auto;
    margin-top: var(--spacing-md);
}

/* ─── SIDEBARS (CART & SEARCH) ─── */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

[data-theme="light"] .sidebar-overlay {
    background: rgba(255, 255, 255, 0.7);
}

.sidebar {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 400px;
    background: var(--black);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex; flex-direction: column;
    border-left: 1px solid var(--gray2);
}
.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--gray2);
}
.sidebar-header h3 {
    font-family: var(--font-display);
    font-size: 24px; color: var(--lime); letter-spacing: 2px; text-transform: uppercase;
}
.close-sidebar {
    background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer;
    transition: color 0.2s;
}
.close-sidebar:hover { color: var(--red); }

.sidebar-content {
    flex: 1; overflow-y: auto; padding: var(--spacing-md);
    display: flex; flex-direction: column; gap: var(--spacing-md);
}

.sidebar-footer {
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid var(--gray2);
    background: var(--black);
}

/* SEARCH ESPECÍFICO */
.search-input {
    width: 100%; padding: 16px;
    background: var(--black3); border: 1px solid var(--gray2);
    color: var(--white); font-family: var(--font-condensed); font-size: 16px;
    text-transform: uppercase; letter-spacing: 1px;
}
.search-input:focus { outline: 1px solid var(--lime); }
.search-results-grid {
    display: flex; flex-direction: column; gap: 16px;
}

/* CART ITEM */
.cart-item {
    display: flex; gap: 16px; padding-bottom: 16px; border-bottom: 1px dashed var(--gray2);
}
.cart-item-img {
    width: 80px; height: 100px;
    background: var(--black3); display: flex; align-items: center; justify-content: center;
}
.cart-item-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-title { font-family: var(--font-condensed); font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.cart-item-price { color: var(--lime); font-weight: bold; font-family: var(--font-condensed); letter-spacing: 1px; }
.cart-item-actions { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.qty-btn { background: var(--black3); border: 1px solid var(--gray2); color: var(--white); padding: 4px 10px; cursor: pointer; transition: 0.2s; }
.qty-btn:hover { border-color: var(--lime); color: var(--lime); }
.rm-btn { color: var(--red); font-size: 11px; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-condensed); font-weight: 700; transition: opacity 0.2s; }
.rm-btn:hover { opacity: 0.7; }

.checkout-btn {
    width: 100%; padding: 16px; background: var(--lime); color: var(--black);
    font-family: var(--font-condensed); font-weight: bold; text-transform: uppercase; letter-spacing: 2px;
    text-align: center; border: none; margin-top: 16px; cursor: pointer; transition: 0.2s;
}
.checkout-btn:hover { filter: brightness(1.2); }

