/* =========================================================
   NOIRÉ — OLGD 175K
   Premium Fashion E-commerce
   Mobile First
   ========================================================= */

:root {

    --black: #111111;
    --black-soft: #1B1B1B;

    --white: #FFFFFF;
    --cream: #F6F3EE;
    --grey: #E8E5E0;
    --muted: #77736D;

    --wine: #7D2434;
    --wine-light: #A44757;

    --text: #161616;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --border: rgba(17,17,17,.12);

    --ease: cubic-bezier(.22,.61,.36,1);
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;

    color: var(--text);
    background: var(--white);

    font-family: var(--sans);
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    color: white;
    background: var(--wine);
}


/* ================= HEADER ================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 68px;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    color: white;

    mix-blend-mode: normal;

    transition:
        background .35s ease,
        color .35s ease,
        box-shadow .35s ease;
}

.header.scrolled {
    color: var(--black);

    background: rgba(255,255,255,.94);

    backdrop-filter: blur(16px);

    box-shadow: 0 5px 30px rgba(0,0,0,.06);
}

.logo {
    font-family: var(--serif);

    font-size: 24px;
    font-weight: 600;

    letter-spacing: 4px;
}

.desktop-nav {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-button,
.menu-button {
    position: relative;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 0;

    color: inherit;
    background: transparent;

    font-size: 21px;
}

.cart-button span {
    position: absolute;

    top: 2px;
    right: 0;

    width: 15px;
    height: 15px;

    display: grid;
    place-items: center;

    color: white;
    background: var(--wine);

    border-radius: 50%;

    font-size: 8px;
}

.menu-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-button span {
    width: 21px;
    height: 1px;

    background: currentColor;

    transition: .3s;
}

.menu-button.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-button.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}


/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 900;

    color: white;
    background: var(--black);

    transform: translateY(-100%);

    transition: transform .55s var(--ease);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-inner {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 28px;
}

.mobile-label {
    margin-bottom: 30px;

    color: var(--wine-light);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

.mobile-menu a {
    width: max-content;

    margin-bottom: 18px;

    font-family: var(--serif);
    font-size: 37px;
}

.mobile-socials {
    display: flex;
    gap: 20px;

    margin-top: 30px;
}

.mobile-socials a {
    margin: 0;

    color: rgba(255,255,255,.5);

    font-family: var(--sans);
    font-size: 11px;
}


/* ================= SEARCH ================= */

.search-panel {
    position: fixed;

    top: 68px;
    left: 0;

    width: 100%;

    z-index: 850;

    padding: 25px 20px 30px;

    background: white;

    border-bottom: 1px solid var(--border);

    transform: translateY(-120%);

    transition: .4s var(--ease);
}

.search-panel.active {
    transform: translateY(0);
}

.search-inner > span {
    color: var(--wine);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.search-box {
    display: flex;
    align-items: center;

    margin-top: 10px;

    border-bottom: 1px solid var(--black);
}

.search-box input {
    width: 100%;

    padding: 12px 0;

    border: 0;
    outline: 0;

    font-family: var(--serif);
    font-size: 23px;
}

.search-box button {
    border: 0;
    background: none;

    font-size: 25px;
}

#searchResult {
    margin-top: 10px;

    color: var(--muted);

    font-size: 11px;
}


/* ================= HERO ================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    color: white;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    height: 100%;

    object-fit: cover;

    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 25%,
            rgba(0,0,0,.78) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 0 20px 90px;
}

.hero-season {
    display: block;

    margin-bottom: 18px;

    color: rgba(255,255,255,.72);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    max-width: 700px;

    font-family: var(--serif);
    font-size: clamp(55px, 15vw, 110px);
    font-weight: 500;
    line-height: .91;
}

.hero h1 em {
    display: block;

    color: #D9A9B2;

    font-style: italic;
}

.hero-content p {
    max-width: 450px;

    margin: 25px 0;

    color: rgba(255,255,255,.78);

    font-size: 14px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
}

.button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    padding: 0 20px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;

    transition: .3s;
}

.button-light {
    color: var(--black);
    background: white;
}

.button-light:hover {
    color: white;
    background: var(--wine);
}

.hero-link {
    padding-bottom: 4px;

    border-bottom: 1px solid rgba(255,255,255,.6);

    font-size: 10px;
    font-weight: 700;
}

.hero-bottom {
    position: absolute;

    bottom: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    justify-content: space-between;

    color: rgba(255,255,255,.55);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* ================= MARQUEE ================= */

.marquee {
    overflow: hidden;

    padding: 14px 0;

    color: white;
    background: var(--wine);
}

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;
    gap: 22px;

    animation: marquee 25s linear infinite;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.marquee-track i {
    font-style: normal;
    opacity: .5;
}

@keyframes marquee {

    to {
        transform: translateX(-50%);
    }

}


/* ================= GLOBAL ================= */

.section {
    padding: 80px 20px;
}

.section-number {
    margin-bottom: 25px;

    color: var(--wine);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.eyebrow {
    display: block;

    margin-bottom: 15px;

    color: var(--wine);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

h2 {
    font-family: var(--serif);

    font-size: clamp(42px, 11vw, 75px);
    font-weight: 500;
    line-height: 1;
}

h2 em {
    display: block;

    color: var(--wine);

    font-style: italic;
}

.under-link {
    display: inline-flex;
    gap: 18px;

    margin-top: 25px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--black);

    font-size: 10px;
    font-weight: 800;
}


/* ================= INTRO ================= */

.intro {
    background: var(--cream);
}

.intro-grid {
    display: grid;
    gap: 40px;
}

.intro-copy {
    max-width: 550px;
}

.intro-copy p {
    margin-bottom: 17px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.85;
}


/* ================= PRODUCTS ================= */

.products {
    background: white;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 25px;

    margin-bottom: 40px;
}

.section-heading h2 {
    max-width: 550px;
}

.products-grid,
.catalog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.product-image,
.catalog-image {
    position: relative;

    overflow: hidden;

    background: var(--grey);
}

.product-image {
    aspect-ratio: .74;
}

.catalog-image {
    aspect-ratio: .76;
}

.product-image img,
.catalog-image img {
    height: 100%;

    object-fit: cover;

    transition: transform .7s var(--ease);
}

.product-card:hover img,
.catalog-product:hover img {
    transform: scale(1.045);
}

.product-badge {
    position: absolute;

    top: 10px;
    left: 10px;

    z-index: 3;

    padding: 6px 8px;

    color: white;
    background: var(--wine);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-badge.dark {
    background: var(--black);
}

.wishlist {
    position: absolute;

    top: 8px;
    right: 8px;

    z-index: 3;

    width: 33px;
    height: 33px;

    display: grid;
    place-items: center;

    border: 0;

    color: var(--black);
    background: rgba(255,255,255,.9);

    border-radius: 50%;

    font-size: 18px;
}

.wishlist.active {
    color: white;
    background: var(--wine);
}

.quick-add {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    padding: 13px;

    color: white;
    background: var(--black);

    border: 0;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .5px;

    transform: translateY(100%);

    transition: .35s var(--ease);
}

.product-card:hover .quick-add,
.catalog-product:hover .quick-add {
    transform: translateY(0);
}

.product-info,
.catalog-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;

    padding-top: 12px;
}

.product-category,
.catalog-info span {
    display: block;

    margin-bottom: 4px;

    color: var(--muted);

    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.product-info h3,
.catalog-info h3 {
    font-family: var(--serif);

    font-size: 16px;
    font-weight: 500;
}

.product-info strong,
.catalog-info strong {
    white-space: nowrap;

    font-size: 10px;
}


/* ================= CATEGORIES ================= */

.categories {
    background: var(--cream);
}

.category-filters {
    display: flex;
    gap: 7px;

    overflow-x: auto;

    margin-bottom: 30px;
    padding-bottom: 5px;

    scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-filter {
    flex: 0 0 auto;

    padding: 10px 16px;

    border: 1px solid var(--border);
    border-radius: 100px;

    color: var(--muted);
    background: transparent;

    font-size: 9px;
    font-weight: 700;
}

.category-filter.active {
    color: white;
    background: var(--black);
    border-color: var(--black);
}

.catalog-product.hidden {
    display: none;
}


/* ================= LOOKBOOK ================= */

.lookbook {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    color: white;
}

.lookbook-image {
    position: absolute;
    inset: 0;
}

.lookbook-image img {
    height: 100%;

    object-fit: cover;
}

.lookbook::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 25%,
        rgba(0,0,0,.85)
    );
}

.lookbook-content {
    position: relative;
    z-index: 2;

    padding: 0 20px 70px;
}

.lookbook-content .eyebrow {
    color: #D9A9B2;
}

.lookbook h2 {
    font-size: clamp(60px, 17vw, 130px);
}

.lookbook h2 em {
    color: #D9A9B2;
}

.lookbook-content p {
    max-width: 430px;

    margin: 20px 0 25px;

    color: rgba(255,255,255,.7);

    font-size: 13px;
    line-height: 1.7;
}

.lookbook .button {
    color: var(--black);
}


/* ================= EXPERIENCE ================= */

.experience {
    background: white;
}

.experience-grid {
    display: grid;
    gap: 50px;
}

.experience-items {
    border-top: 1px solid var(--border);
}

.experience-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 15px;

    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}

.experience-item > span {
    color: var(--wine);

    font-size: 9px;
    font-weight: 800;
}

.experience-item h3 {
    margin-bottom: 8px;

    font-family: var(--serif);

    font-size: 24px;
    font-weight: 500;
}

.experience-item p {
    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}


/* ================= NEWSLETTER ================= */

.newsletter {
    padding: 100px 20px;

    color: white;
    background: var(--black);

    text-align: center;
}

.newsletter-inner {
    max-width: 700px;
    margin: auto;
}

.newsletter .eyebrow {
    color: #D9A9B2;
}

.newsletter h2 em {
    color: #D9A9B2;
}

.newsletter p {
    max-width: 470px;

    margin: 22px auto 30px;

    color: rgba(255,255,255,.55);

    font-size: 13px;
    line-height: 1.7;
}

.newsletter form {
    display: flex;

    max-width: 500px;

    margin: auto;

    border-bottom: 1px solid rgba(255,255,255,.4);
}

.newsletter input {
    width: 100%;

    padding: 15px 0;

    border: 0;
    outline: 0;

    color: white;
    background: transparent;

    font-size: 12px;
}

.newsletter input::placeholder {
    color: rgba(255,255,255,.4);
}

.newsletter button {
    flex: 0 0 auto;

    border: 0;

    color: #D9A9B2;
    background: transparent;

    font-size: 10px;
    font-weight: 800;
}

.newsletter small {
    display: block;

    margin-top: 15px;

    color: rgba(255,255,255,.3);

    font-size: 8px;
}


/* ================= CONTACT ================= */

.contact {
    background: var(--cream);
}

.contact-heading {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    gap: 10px;
}

.contact-card {
    padding: 30px;

    background: white;

    border: 1px solid var(--border);
}

.contact-card > span {
    color: var(--wine);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-card h3 {
    margin: 25px 0 12px;

    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}

.contact-card p {
    color: var(--muted);

    font-size: 12px;
    line-height: 1.7;
}

.contact-card a {
    display: inline-block;

    margin-top: 22px;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--black);

    font-size: 10px;
    font-weight: 800;
}


/* ================= FOOTER ================= */

.footer {
    padding: 60px 20px 30px;

    color: white;
    background: #0B0B0B;
}

.footer-top {
    display: grid;
    gap: 40px;
}

.footer-brand p {
    margin-top: 20px;

    color: rgba(255,255,255,.4);

    font-size: 11px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 5px;

    color: #D9A9B2;

    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255,255,255,.58);

    font-size: 11px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 50px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.3);

    font-size: 8px;
}

.footer-bottom a {
    color: rgba(255,255,255,.55);
}


/* ================= CART ================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 1100;

    background: rgba(0,0,0,.55);

    opacity: 0;
    visibility: hidden;

    transition: .3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(100%, 430px);
    height: 100vh;

    z-index: 1200;

    display: flex;
    flex-direction: column;

    background: white;

    transform: translateX(100%);

    transition: transform .5s var(--ease);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;

    padding: 25px;

    border-bottom: 1px solid var(--border);
}

.cart-header span {
    color: var(--wine);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cart-header h2 {
    margin-top: 6px;

    font-size: 30px;
}

.cart-header button {
    width: 35px;
    height: 35px;

    border: 0;

    background: var(--cream);

    border-radius: 50%;

    font-size: 22px;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px;
}

.empty-cart {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--muted);

    text-align: center;
}

.empty-cart span {
    margin-bottom: 15px;

    font-size: 40px;
    color: var(--grey);
}

.empty-cart p {
    font-size: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.cart-item img {
    width: 75px;
    height: 90px;

    object-fit: cover;
}

.cart-item-info h4 {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
}

.cart-item-info span {
    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 9px;
}

.remove-item {
    align-self: start;

    border: 0;
    background: none;

    color: var(--muted);

    font-size: 18px;
}

.cart-footer {
    padding: 20px;

    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;

    margin-bottom: 15px;
}

.cart-total span {
    color: var(--muted);

    font-size: 11px;
}

.cart-total strong {
    font-size: 15px;
}

.checkout-button {
    width: 100%;

    padding: 16px;

    color: white;
    background: var(--wine);

    border: 0;

    font-size: 10px;
    font-weight: 800;
}

.cart-footer small {
    display: block;

    margin-top: 10px;

    color: var(--muted);

    text-align: center;

    font-size: 8px;
}


/* ================= REVEAL ================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================= TABLET ================= */

@media (min-width: 700px) {

    .header {
        padding: 0 35px;
    }

    .hero-content {
        padding-left: 50px;
        padding-bottom: 100px;
    }

    .hero-bottom {
        left: 50px;
        right: 50px;
    }

    .section {
        padding: 100px 50px;
    }

    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: end;
    }

    .products-grid,
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-info h3,
    .catalog-info h3 {
        font-size: 18px;
    }

    .lookbook-content {
        padding-left: 50px;
        padding-bottom: 90px;
    }

    .experience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer {
        padding-left: 50px;
        padding-right: 50px;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

}


/* ================= DESKTOP ================= */

@media (min-width: 1050px) {

    .header {
        height: 80px;

        padding: 0 65px;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 35px;

        margin-left: auto;
        margin-right: 60px;
    }

    .desktop-nav a {
        font-size: 10px;
        font-weight: 700;
    }

    .desktop-nav a:hover {
        color: var(--wine);
    }

    .menu-button {
        display: none;
    }

    .hero {
        min-height: 900px;
    }

    .hero-content {
        padding-left: 8vw;
        padding-bottom: 120px;
    }

    .hero-bottom {
        left: 8vw;
        right: 8vw;
        bottom: 30px;
    }

    .hero h1 {
        font-size: clamp(80px, 9vw, 135px);
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
    }

    .section {
        padding: 140px 8vw;
    }

    .section-heading {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }

    .desktop-only {
        margin-bottom: 5px;
    }

    .lookbook {
        min-height: 850px;
    }

    .lookbook-content {
        padding-left: 8vw;
        padding-bottom: 110px;
    }

    .newsletter {
        padding: 150px 20px;
    }

    .footer {
        padding: 80px 8vw 35px;
    }

}