/**
 * LOUIZO Maison — Athletic luxury overlay
 * Nike / Adidas energy × Louis Vuitton editorial
 */

/* ─── Base refinements ──────────────────────────────────────── */
.cursor,
.scroll-progress {
    display: none !important;
}

body {
    background: var(--color-white);
    letter-spacing: 0;
}

h1, h2, h3 {
    letter-spacing: -0.02em;
}

.display-title {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

::selection {
    background: var(--color-gold);
    color: #fff;
}

/* ─── Custom cursor ─────────────────────────────────────────── */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    pointer-events: none;
    mix-blend-mode: difference;
    opacity: 0;
}

.cursor.is-visible { opacity: 1; }

.cursor__ring,
.cursor__dot {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor__ring {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.85);
}

.cursor__dot {
    width: 6px;
    height: 6px;
    background: #fff;
}

.cursor__label {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) scale(0.4);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
}

.cursor.is-hover .cursor__ring,
.cursor.is-hover .cursor__dot { opacity: 0; }

.cursor.is-hover .cursor__label {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (hover: none), (max-width: 991px) {
    .cursor { display: none !important; }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--color-gold);
    z-index: 1100;
    transform-origin: left center;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    border-radius: 0;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.btn-gold {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.btn-gold:hover {
    background: #fff;
    border-color: #fff;
    color: #050505;
    box-shadow: none;
    transform: none;
}

.hero .btn-gold:hover,
.bg-dark-section .btn-gold:hover {
    background: #fff;
    color: #050505;
}

.btn-outline-light:hover {
    background: #fff;
    color: #050505;
}

.btn-dark:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-primary);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-black);
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 2px;
}

.text-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

/* ─── Section headers ───────────────────────────────────────── */
.section-header--split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    text-align: left;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-header--split .section-title,
.section-header--split .section-subtitle {
    text-align: left;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--color-gold);
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0.35rem 0 0;
}

.section-title--light { color: #fff; }

.section-desc--left {
    margin: 0;
    max-width: 340px;
    text-align: left;
}

.section-desc--light { color: rgba(255,255,255,0.62); }

.gold-line {
    width: 48px;
    height: 2px;
    background: var(--color-gold);
}

/* ─── Header ────────────────────────────────────────────────── */
.top-bar {
    background: #050505;
    color: rgba(255,255,255,0.72);
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: 12px;
}

.top-bar__links a:hover { color: #fff; }

.site-header--solid,
.site-header.scrolled {
    background: var(--color-white);
    box-shadow: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo__text {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 0.08em;
}

.nav-link,
.main-nav .nav-link,
.navbar-nav .nav-link {
    font-family: var(--font-secondary) !important;
    font-size: 13px;
    letter-spacing: 0 !important;
    white-space: nowrap;
}

.nav-link::after {
    display: none;
}

.nav-link--accent { color: var(--color-gold) !important; }

.nav-badge {
    background: var(--color-gold);
    color: #fff;
}

.nav-action-btn:hover { color: var(--color-gold); }

.site-header--transparent .navbar-toggler {
    border-color: rgba(255,255,255,0.35);
}

.site-header--transparent .navbar-toggler-icon {
    filter: invert(1);
}

.site-header.scrolled .navbar-toggler-icon,
.site-header--solid .navbar-toggler-icon {
    filter: none;
}

.mega-dropdown {
    border-radius: 0;
    border-top: 2px solid var(--color-gold);
}

.mega-dropdown .dropdown-item:hover {
    color: var(--color-gold);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
    min-height: 100svh;
    align-items: stretch;
    justify-content: stretch;
    background: #050505;
}

.hero__video,
.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--fallback {
    background:
        radial-gradient(circle at 70% 30%, rgba(255,46,0,0.28), transparent 42%),
        linear-gradient(135deg, #111 0%, #050505 55%, #1a100c 100%);
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.45) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 30%, rgba(0,0,0,0.55) 100%);
}

.hero__grid {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: end;
    padding: calc(var(--header-height) + 3rem) 4vw 8rem;
    gap: 2rem;
}

.hero__meta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-bottom: 0.4rem;
}

.hero__index {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 0.8;
    color: #fff;
    letter-spacing: 0;
}

.hero__content {
    max-width: 920px;
    text-align: left;
    padding: 0;
}

.hero__subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255,255,255,0.78);
    margin-bottom: 1rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 12vw, 11rem);
    line-height: 0.82;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.hero__line {
    display: block;
}

.hero__desc {
    max-width: 480px;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.78;
    margin-bottom: 2.25rem;
}

.hero__actions {
    justify-content: flex-start;
}

.hero__orb {
    align-self: end;
    width: 132px;
    height: 132px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.hero__orb i { font-size: 18px; }

.hero__orb:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: rotate(12deg);
}

.hero__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 4vw 1.75rem;
    color: #fff;
}

.hero__scroll {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    flex-direction: row;
    gap: 0.75rem;
    animation: none;
    font-family: var(--font-primary);
    letter-spacing: 0.2em;
}

.hero__scroll i {
    animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero__stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    line-height: 1;
}

.hero__stats span {
    font-size: 12px;
    opacity: 0.65;
}

@media (max-width: 991px) {
    .hero__grid {
        grid-template-columns: 1fr;
        padding: calc(var(--header-height) + 2rem) 1.25rem 10rem;
        align-items: center;
    }

    .hero__meta {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.85rem 1.25rem;
    }

    .hero__index { font-size: 2rem; }

    .hero__orb { display: none; }

    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 0 1.25rem 1.25rem;
    }

    .hero__stats { gap: 1.25rem; }
}

/* ─── Marquee ───────────────────────────────────────────────── */
.marquee {
    overflow: hidden;
    background: var(--color-gold);
    color: #fff;
    border-top: 1px solid #050505;
    border-bottom: 1px solid #050505;
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    padding: 0.85rem 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: marqueeSlide 28s linear infinite;
}

.marquee__track i {
    font-style: normal;
    opacity: 0.45;
}

@keyframes marqueeSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track { animation: none; }
}

/* ─── Collections ───────────────────────────────────────────── */
.collections-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.collection-banner--tall {
    height: min(82vh, 820px);
    min-height: 460px;
}

.collection-banner__fallback {
    position: absolute;
    inset: 0;
}

.collection-banner__fallback--homme {
    background: linear-gradient(160deg, #1a1a1a, #0a0a0a 60%, #2a1a14);
}

.collection-banner__fallback--femme {
    background: linear-gradient(160deg, #2a1614, #12090a 55%, #3a1c18);
}

.collection-banner__index {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.35rem;
}

.collection-banner__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
}

.collection-banner__link {
    color: #fff;
    font-family: var(--font-primary);
    letter-spacing: 0.16em;
}

@media (max-width: 767px) {
    .collections-split__grid { grid-template-columns: 1fr; }
    .collection-banner--tall { height: 62vh; min-height: 380px; }
}

/* ─── Product cards ─────────────────────────────────────────── */
.product-card {
    background: transparent;
}

.product-card:hover { transform: none; }

.product-card__image-wrap {
    aspect-ratio: 1 / 1.08;
    background: #ece7dc;
    border-radius: 0;
}

.product-card:hover .product-card__image {
    transform: scale(1.06);
}

.product-card__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    text-align: left;
    padding: 0.9rem 0 0;
}

.product-card__category {
    font-family: var(--font-secondary);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.product-card__title {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    line-height: 1.3;
    margin: 0;
    width: 100%;
}

.product-card__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem 0.65rem;
    margin-top: 0.15rem;
}

.product-card__price-current {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.product-card__price-old {
    white-space: nowrap;
}

.product-badge {
    font-family: var(--font-primary);
    letter-spacing: 0.12em;
}

.product-card--on-dark .product-card__image-wrap {
    background: #161616;
}

/* ─── Spotlight ─────────────────────────────────────────────── */
.spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    max-height: none;
    background: #0a0a0a;
    color: #fff;
}

.spotlight__media {
    overflow: hidden;
    background: #111;
    max-height: 420px;
}

.spotlight__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 420px;
    object-fit: cover;
}

.spotlight__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.5rem;
}

.spotlight__kicker {
    font-family: var(--font-secondary);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.55;
    margin: 0.35rem 0 0;
}

.spotlight__title {
    font-family: var(--font-secondary);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: none;
    font-weight: 600;
    color: #fff;
    margin: 0.4rem 0 0.75rem;
}

.spotlight__text {
    max-width: 420px;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    margin-bottom: 1rem;
}

.spotlight__price {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    letter-spacing: 0;
    margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
    .spotlight { grid-template-columns: 1fr; }
    .spotlight__media,
    .spotlight__media img { max-height: 280px; min-height: 220px; }
    .spotlight__copy { padding: 1.5rem 1.25rem 2rem; }
}

/* ─── Categories rail ───────────────────────────────────────── */
.category-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.category-card {
    aspect-ratio: 3 / 4;
}

.category-card__fallback {
    width: 100%;
    height: 100%;
}

.category-card__overlay {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.25rem;
    background: linear-gradient(transparent 35%, rgba(0,0,0,0.72));
}

.category-card__index {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.12em;
}

.category-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0.15rem 0 0;
}

@media (max-width: 991px) {
    .category-rail { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Features ──────────────────────────────────────────────── */
.features-bar {
    padding: 2.5rem 0;
    background: #050505;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.features-grid {
    gap: 0;
}

.feature-item {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.feature-item:last-child { border-right: none; }

.feature-item__icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin: 0;
}

.feature-item__title {
    color: #fff;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 15px;
    margin-bottom: 0.2rem;
}

.feature-item__text {
    color: rgba(255,255,255,0.55);
    margin: 0;
}

@media (max-width: 991px) {
    .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ─── Lookbook / Instagram ──────────────────────────────────── */
.lookbook-item__caption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lookbook-item__caption span {
    font-family: var(--font-display);
    opacity: 0.7;
}

.lookbook-item__caption strong {
    font-family: var(--font-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.lookbook-item__placeholder,
.insta-item__placeholder {
    width: 100%;
    height: 100%;
    background: var(--tone, #222);
}

.insta-item__placeholder {
    background: hsl(20, 8%, var(--tone, 18%));
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer-newsletter {
    background: #0a0a0a;
}

.footer-newsletter__kicker {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 0.35rem;
}

.footer-newsletter__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.newsletter-form__input:focus { border-color: var(--color-gold); }

.footer-wordmark {
    display: none;
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

/* ─── Inner pages ───────────────────────────────────────────── */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

.page-header {
    background: var(--color-gray-100);
    color: var(--color-dark);
    text-align: center;
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    overflow: visible;
}

.page-header::after { content: none; }

.page-header__title {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: none;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.page-header .breadcrumb,
.page-header .section-desc {
    justify-content: center;
    color: var(--color-gray-500);
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item.active { color: var(--color-gray-500); }

.page-header .breadcrumb-item a:hover { color: var(--color-dark); }

.about-hero {
    height: 46vh;
    min-height: 320px;
    background: #111;
    text-align: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.about-hero .display-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: none;
}

.about-hero__desc {
    font-size: 16px;
    opacity: 0.78;
    max-width: 560px;
    margin: 1rem auto 0;
    color: #fff;
}

.about-content .section-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-align: center;
    text-transform: none;
}

.product-gallery__main {
    background: #ece7dc;
}

.auth-page { background: var(--color-gray-100); }

.auth-card {
    box-shadow: none;
    border: 1px solid var(--color-gray-300);
}

.auth-card__title {
    font-family: var(--font-secondary);
    text-transform: none;
    letter-spacing: -0.02em;
}

.search-form__input {
    font-family: var(--font-secondary);
    text-transform: none;
    letter-spacing: 0;
}

.search-tag:hover,
.search-tag.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.contact-info-card {
    background: var(--color-gray-100);
    text-align: left;
    height: auto !important;
    min-height: 0;
}

.contact-info-card i {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.contact-info-card h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    margin-bottom: 0;
}

/* ─── Header split on small screens ─────────────────────────── */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border-color: #050505;
}

/* ─── Product page ──────────────────────────────────────────── */
.page-product .product-info__title {
    font-family: var(--font-secondary);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: none;
    font-weight: 600;
}

.page-product .product-info__price,
.page-product .product-option__label,
.page-product .product-actions .btn {
    font-family: var(--font-secondary);
    letter-spacing: 0;
}

.page-product .product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
}

.page-product .product-actions__buy {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 0.75rem;
    min-width: min(100%, 260px);
}

.page-product .product-actions__buy .btn {
    flex: 1;
    min-width: 180px;
    width: auto;
}

.page-product .product-tabs .nav-link {
    font-family: var(--font-secondary);
    letter-spacing: 0.04em;
}

.cart-page .section-title,
.wishlist-page .section-title,
.checkout-page .section-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
}

@media (max-width: 767px) {
    .section-header--split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
