/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: flex-end;
}

.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(200,16,46,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(200,16,46,0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f0f 0%, #1c1008 40%, #0a0a0a 100%);
}

.hero-slide:nth-child(2) {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(200,16,46,0.1) 0%, transparent 60%),
        linear-gradient(160deg, #0a0a0a 0%, #111820 50%, #0a0a0a 100%);
}

.hero-slide:nth-child(3) {
    background:
        radial-gradient(ellipse at 80% 60%, rgba(200,16,46,0.15) 0%, transparent 55%),
        linear-gradient(120deg, #0a0a0a 0%, #180c0c 50%, #0a0a0a 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(244,240,235,0.008) 3px,
            rgba(244,240,235,0.008) 4px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2.5rem 5rem;
    max-width: 900px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--red);
}

.hero-eyebrow-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--white-dim);
}

.hero-title .accent { color: var(--red); }

.hero-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--white-dim);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-decoration {
    position: absolute;
    right: 2.5rem;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.hero-slide-counter {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white-dim);
}

.hero-slide-dots {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-dot {
    width: 1px;
    height: 20px;
    background: rgba(244,240,235,0.2);
    cursor: pointer;
    transition: background 0.3s, height 0.3s;
}

.hero-dot.active {
    background: var(--red);
    height: 32px;
}

.hero-corner {
    position: absolute;
    top: calc(var(--nav-height) + 2rem);
    right: 2.5rem;
    width: 120px;
    height: 120px;
    border-top: 1px solid rgba(244,240,235,0.08);
    border-right: 1px solid rgba(244,240,235,0.08);
    z-index: 2;
}

/* Hero animations */
.hero-content > * {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.hero-content .hero-eyebrow { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.25s; }
.hero-content .hero-subtitle { animation-delay: 0.4s; }
.hero-content .hero-actions { animation-delay: 0.55s; }

/* ============================================
   RED STRIP
============================================ */
.strip {
    background: var(--red);
    padding: 0.6rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
}

.strip-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    opacity: 0.9;
}

.strip-divider {
    width: 4px;
    height: 4px;
    background: rgba(244,240,235,0.5);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ============================================
   BEST SELLERS
============================================ */
.section {
    padding: 5rem 2.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    cursor: pointer;
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--black-mid);
    margin-bottom: 1rem;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
    transition: opacity 0.3s;
}

.product-card:hover .product-image::after { opacity: 0.4; }

.product-card:hover .product-image {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 0.25rem 0.6rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}

.product-card:hover .product-name { color: var(--white-dim); }

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

.product-category {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244,240,235,0.35);
}

.product-price {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

/* ============================================
   COLLECTIONS
============================================ */
.collections {
    padding: 0 2.5rem 5rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.collection-card:first-child { grid-row: 1 / 3; }

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transition: transform 0.6s ease;
}

.collection-card:hover::before { transform: scale(1.04); }

.collection-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
    z-index: 1;
}

.collection-card:nth-child(1) {
    background: linear-gradient(135deg, #1a0808 0%, #2d1010 40%, #0f0505 100%);
}
.collection-card:nth-child(2) {
    background: linear-gradient(145deg, #080f1a 0%, #0f1828 50%, #05080f 100%);
}
.collection-card:nth-child(3) {
    background: linear-gradient(125deg, #100f08 0%, #1a1a0a 50%, #080805 100%);
}
.collection-card:nth-child(4) {
    background: linear-gradient(150deg, #0a100a 0%, #121a10 50%, #060a06 100%);
}
.collection-card:nth-child(5) {
    background: linear-gradient(140deg, #14080a 0%, #200c10 50%, #0a0508 100%);
}

.collection-card-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(244,240,235,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244,240,235,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.collection-info {
    position: relative;
    z-index: 2;
}

.collection-eyebrow {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.4rem;
}

.collection-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.collection-card:first-child .collection-name { font-size: 2.2rem; }

.collection-count {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--white-dim);
}