/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f5f3ef;
    color: #111111;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =====================================================
   PAGE LOADER
===================================================== */

.page-loader {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #111111;
    color: #ffffff;

    z-index: 200000;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.2em;

    animation: loaderPulse 1.2s infinite alternate;
}

@keyframes loaderPulse {

    from {
        opacity: 0.35;
    }

    to {
        opacity: 1;
    }

}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;

    top: 0;
    left: 0;
    width: 100%;

    z-index: 5000;

    color: #ffffff;

    transition:
        background 0.4s ease,
        color 0.4s ease;
}

.header.scrolled {
    background: rgba(245, 243, 239, 0.96);
    color: #111111;

    backdrop-filter: blur(12px);

    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
    height: 80px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    padding: 0 40px;
}

.logo {
    font-size: 23px;
    font-weight: 700;

    letter-spacing: 0.18em;

    justify-self: center;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    position: relative;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: currentColor;

    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    justify-self: end;
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 8px;

    border: none;

    background: transparent;
    color: inherit;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cart-count {
    min-width: 19px;
    height: 19px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: currentColor;
    color: #111111;

    font-size: 9px;
}

.header:not(.scrolled) .cart-count {
    color: #111111;
    background: #ffffff;
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-button {
    display: none;

    width: 35px;
    height: 30px;

    flex-direction: column;
    justify-content: center;

    gap: 6px;

    border: none;
    background: transparent;
    color: inherit;
}

.menu-button span {
    display: block;

    width: 24px;
    height: 1px;

    background: currentColor;

    transition: 0.3s ease;
}


/* =====================================================
   MOBILE SIDEBAR
===================================================== */

.sidebar-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    z-index: 8000;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

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

.mobile-sidebar {
    position: fixed;

    top: 0;
    left: 0;

    width: min(82vw, 380px);
    height: 100vh;

    padding: 25px;

    display: flex;
    flex-direction: column;

    background: #f5f3ef;

    z-index: 9000;

    transform: translateX(-100%);

    transition: transform 0.45s cubic-bezier(.77, 0, .18, 1);

    box-shadow: 15px 0 50px rgba(0, 0, 0, 0.12);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 25px;

    border-bottom: 1px solid #d8d5cf;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.sidebar-close {
    width: 38px;
    height: 38px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #111111;

    background: transparent;

    font-size: 25px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.sidebar-close:hover {
    background: #111111;
    color: #ffffff;
}

.mobile-nav {
    display: flex;
    flex-direction: column;

    margin-top: 45px;
}

.mobile-nav a {
    padding: 18px 0;

    border-bottom: 1px solid #d8d5cf;

    font-family: "Playfair Display", serif;

    font-size: 32px;

    transition:
        padding-left 0.3s ease;
}

.mobile-nav a:hover {
    padding-left: 10px;
}

.sidebar-footer {
    margin-top: auto;

    display: flex;
    flex-direction: column;

    gap: 10px;

    color: #777;

    font-size: 9px;
    line-height: 1.5;

    letter-spacing: 0.1em;
}


/* =====================================================
   CART
===================================================== */

.cart-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 10000;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

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

.cart-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(450px, 92vw);
    height: 100vh;

    display: flex;
    flex-direction: column;

    background: #f5f3ef;

    z-index: 11000;

    transform: translateX(100%);

    transition:
        transform 0.45s cubic-bezier(.77, 0, .18, 1);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 28px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    border-bottom: 1px solid #d8d5cf;
}

.cart-label {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.15em;

    color: #777;
}

.cart-header h2 {
    margin-top: 7px;

    font-family: "Playfair Display", serif;

    font-size: 30px;
}

.cart-close {
    width: 38px;
    height: 38px;

    border: 1px solid #111111;

    background: transparent;

    font-size: 25px;

    transition: 0.3s ease;
}

.cart-close:hover {
    background: #111111;
    color: #ffffff;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 25px;
}

.empty-cart {
    min-height: 300px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    color: #777;
}

.empty-cart span {
    margin-bottom: 15px;

    font-size: 10px;
    letter-spacing: 0.15em;
}

.cart-item {
    display: grid;
    grid-template-columns: 85px 1fr auto;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #d8d5cf;
}

.cart-item-image {
    width: 85px;
    height: 100px;

    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cart-item-info h3 {
    margin-bottom: 6px;

    font-family: "Playfair Display", serif;

    font-size: 17px;
}

.cart-item-info p {
    margin-bottom: 14px;

    color: #777;

    font-size: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;

    width: fit-content;

    border: 1px solid #ccc;
}

.quantity-controls button {
    width: 28px;
    height: 28px;

    border: none;

    background: transparent;

    font-size: 15px;
}

.quantity-controls span {
    min-width: 28px;

    text-align: center;

    font-size: 11px;
}

.cart-item-price {
    font-size: 12px;
    font-weight: 700;
}

.remove-item {
    margin-top: 8px;

    border: none;
    background: transparent;

    color: #777;

    font-size: 9px;

    text-decoration: underline;
}

.cart-footer {
    padding: 25px;

    border-top: 1px solid #d8d5cf;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;

    margin-bottom: 20px;

    font-size: 13px;
}

.checkout-button {
    width: 100%;

    padding: 17px;

    border: 1px solid #111111;

    background: #111111;
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;

    transition: 0.3s ease;
}

.checkout-button:hover {
    background: transparent;
    color: #111111;
}

.cart-note {
    margin-top: 12px;

    text-align: center;

    color: #777;

    font-size: 9px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    height: 100vh;
    min-height: 700px;

    overflow: hidden;

    color: #ffffff;
}

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

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    animation: heroZoom 12s ease forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.15)
        );
}

.hero-content {
    position: absolute;

    left: 7%;
    bottom: 13%;

    max-width: 650px;
}

.hero-kicker {
    margin-bottom: 25px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.hero h1 {
    margin-bottom: 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(65px, 9vw, 140px);
    font-weight: 500;

    line-height: 0.82;
    letter-spacing: -0.05em;
}

.hero-description {
    max-width: 430px;

    margin-bottom: 30px;

    font-size: 14px;
    line-height: 1.7;
}

.primary-button {
    display: inline-flex;

    padding: 16px 25px;

    border: 1px solid #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    transition: 0.3s ease;
}

.primary-button:hover {
    background: #ffffff;
    color: #111111;
}

.hero-bottom {
    position: absolute;

    bottom: 30px;
    left: 7%;
    right: 7%;

    display: flex;
    justify-content: space-between;

    font-size: 9px;
    letter-spacing: 0.15em;
}


/* =====================================================
   MARQUEE
===================================================== */

.marquee-section {
    overflow: hidden;

    padding: 20px 0;

    background: #111111;
    color: #ffffff;
}

.marquee-track {
    display: flex;

    width: max-content;

    gap: 30px;

    animation: marquee 25s linear infinite;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =====================================================
   GENERAL
===================================================== */

.section-padding {
    padding: 120px 7%;
}

.section-kicker {
    margin-bottom: 20px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;

    color: #777;
}

.text-link {
    display: inline-block;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    border-bottom: 1px solid #111111;

    padding-bottom: 5px;
}


/* =====================================================
   INTRO
===================================================== */

.intro {
    display: grid;

    grid-template-columns: 25% 1fr;

    gap: 40px;
}

.intro-small {
    display: flex;
    flex-direction: column;

    gap: 10px;

    color: #777;

    font-size: 9px;

    letter-spacing: 0.15em;
}

.intro-content {
    max-width: 850px;
}

.intro h2 {
    margin-bottom: 35px;

    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 7vw, 90px);
    font-weight: 500;

    line-height: 0.95;
}

.intro h2 em,
.about h2 em,
.split-content em {
    font-style: italic;
}

.intro-text {
    max-width: 550px;

    margin-bottom: 30px;

    color: #555;

    font-size: 16px;
    line-height: 1.7;
}


/* =====================================================
   SHOP
===================================================== */

.shop {
    background: #eeece7;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 60px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 80px);
    font-weight: 500;

    line-height: 0.9;
}

.product-counter {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;

    height: 550px;

    overflow: hidden;

    background: #ddd;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

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

.product-number {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.quick-add {
    position: absolute;

    bottom: 20px;
    left: 20px;
    right: 20px;

    padding: 16px;

    border: 1px solid #ffffff;

    background: rgba(255, 255, 255, 0.92);

    color: #111111;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    opacity: 0;
    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    display: flex;
    justify-content: space-between;

    padding: 18px 0 10px;
}

.product-info h3 {
    margin-bottom: 5px;

    font-family: "Playfair Display", serif;

    font-size: 20px;
}

.product-info p {
    color: #777;

    font-size: 10px;
}

.product-price {
    font-size: 12px;
    font-weight: 700;
}

.product-description {
    max-width: 400px;

    color: #666;

    font-size: 11px;
    line-height: 1.6;
}


/* =====================================================
   VISUAL STORY
===================================================== */

.visual-story {
    position: relative;

    min-height: 800px;

    overflow: hidden;

    color: #ffffff;
}

.visual-story-image {
    position: absolute;
    inset: 0;
}

.visual-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.visual-story::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.38);
}

.visual-story-content {
    position: relative;

    z-index: 2;

    min-height: 800px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 8%;
}

.visual-story-content h2 {
    margin-bottom: 30px;

    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 8vw, 110px);

    font-weight: 500;

    line-height: 0.85;
}

.visual-story-content h2 em {
    font-style: italic;
}

.visual-story-content p:last-child {
    max-width: 450px;

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: #f5f3ef;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.about-title h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 7vw, 90px);

    font-weight: 500;

    line-height: 0.9;
}

.about-text {
    max-width: 600px;
}

.large-text {
    margin-bottom: 30px;

    font-family: "Playfair Display", serif;

    font-size: 35px;

    line-height: 1.1;
}

.about-text p:not(.large-text) {
    margin-bottom: 20px;

    color: #555;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   SPLIT VISUAL
===================================================== */

.split-visual {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 650px;
}

.split-image {
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}

.split-visual:hover .split-image img {
    transform: scale(1.03);
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 10%;

    background: #111111;
    color: #ffffff;
}

.split-number {
    margin-bottom: 30px;

    color: #777;

    font-size: 10px;
    letter-spacing: 0.15em;
}

.split-content h2 {
    margin-bottom: 30px;

    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 6vw, 80px);

    font-weight: 500;

    line-height: 0.9;
}

.split-content p {
    max-width: 400px;

    margin-bottom: 35px;

    color: #aaa;

    font-size: 14px;
    line-height: 1.7;
}

.dark-button {
    width: fit-content;

    padding: 15px 22px;

    border: 1px solid #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;

    transition: 0.3s ease;
}

.dark-button:hover {
    background: #ffffff;
    color: #111111;
}


/* =====================================================
   FAQ
===================================================== */

.faq {
    background: #eeece7;
}

.faq-list {
    max-width: 1000px;

    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid #c9c6bf;
}

.faq-item:last-child {
    border-bottom: 1px solid #c9c6bf;
}

.faq-question {
    width: 100%;

    padding: 25px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border: none;

    background: transparent;

    text-align: left;

    font-size: 14px;
    font-weight: 600;
}

.faq-icon {
    font-size: 22px;

    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {
    max-width: 700px;

    padding-bottom: 25px;

    color: #666;

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    padding: 150px 7%;

    background: #111111;
    color: #ffffff;

    text-align: center;
}

.contact-inner {
    max-width: 1000px;

    margin: auto;
}

.contact h2 {
    margin-bottom: 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(60px, 10vw, 130px);

    font-weight: 500;

    line-height: 0.85;
}

.contact-inner > p:not(.section-kicker) {
    max-width: 500px;

    margin: 0 auto 35px;

    color: #aaa;

    font-size: 14px;
    line-height: 1.7;
}

.contact-email {
    display: inline-block;

    margin-bottom: 80px;

    padding-bottom: 8px;

    border-bottom: 1px solid #ffffff;

    font-size: 14px;

    letter-spacing: 0.08em;
}

.contact-details {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    text-align: left;

    border-top: 1px solid #333;

    padding-top: 30px;
}

.contact-details span {
    color: #777;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.contact-details p {
    margin-top: 10px;

    color: #ddd;

    font-size: 12px;
    line-height: 1.6;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 70px 7% 25px;

    background: #080808;
    color: #ffffff;
}

.footer-top {
    display: grid;

    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 80px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.footer-brand p {
    max-width: 250px;

    margin-top: 15px;

    color: #777;

    font-size: 11px;
    line-height: 1.6;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column span {
    margin-bottom: 8px;

    color: #777;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.footer-column a {
    color: #ccc;

    font-size: 11px;

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 20px;

    border-top: 1px solid #222;

    color: #555;

    font-size: 8px;

    letter-spacing: 0.12em;
}


/* =====================================================
   NEWSLETTER
===================================================== */

.newsletter-overlay {
    position: fixed;
    inset: 0;

    display: none;

    justify-content: center;
    align-items: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(5px);

    z-index: 100000;
}

.newsletter-overlay.show {
    display: flex;
}

.newsletter-modal {
    position: relative;

    width: min(900px, 100%);

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #f5f3ef;

    overflow: hidden;

    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);

    animation: newsletterReveal 0.55s ease forwards;
}

.newsletter-image {
    min-height: 470px;
}

.newsletter-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.newsletter-eyebrow {
    margin-bottom: 20px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.newsletter-content h2 {
    margin-bottom: 20px;

    font-family: "Playfair Display", serif;

    font-size: clamp(35px, 5vw, 55px);

    font-weight: 500;

    line-height: 0.9;
}

.newsletter-content p {
    margin-bottom: 30px;

    color: #666;

    font-size: 13px;
    line-height: 1.7;
}

.newsletter-content form {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.newsletter-content input {
    width: 100%;

    padding: 15px 0;

    border: none;
    border-bottom: 1px solid #111111;

    outline: none;

    background: transparent;

    font-size: 11px;

    letter-spacing: 0.08em;
}

.newsletter-content form button {
    padding: 16px;

    border: 1px solid #111111;

    background: #111111;
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;

    transition: 0.3s ease;
}

.newsletter-content form button:hover {
    background: transparent;
    color: #111111;
}

.newsletter-content small {
    margin-top: 15px;

    color: #888;

    font-size: 8px;

    line-height: 1.5;
}

.newsletter-close {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    color: #111111;

    font-size: 32px;

    z-index: 5;

    transition: transform 0.3s ease;
}

.newsletter-close:hover {
    transform: rotate(90deg);
}

@keyframes newsletterReveal {

    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* =====================================================
   COOKIE
===================================================== */

.cookie-banner {
    position: fixed;

    left: 20px;
    right: 20px;
    bottom: 20px;

    display: none;

    justify-content: center;

    z-index: 99999;
}

.cookie-banner.show {
    display: flex;

    animation: cookieSlideUp 0.5s ease forwards;
}

.cookie-content {
    width: min(900px, 100%);

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 25px;

    padding: 18px 22px;

    background: #111111;
    color: #ffffff;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-content p {
    max-width: 600px;

    margin: 0;

    color: #ddd;

    font-size: 11px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    align-items: center;

    gap: 15px;

    flex-shrink: 0;
}

.cookie-link {
    color: #ffffff;

    font-size: 9px;

    text-decoration: underline;

    letter-spacing: 0.05em;
}

.cookie-accept {
    padding: 12px 18px;

    border: 1px solid #ffffff;

    background: #ffffff;
    color: #111111;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.1em;

    transition: 0.3s ease;
}

.cookie-accept:hover {
    background: transparent;
    color: #ffffff;
}

@keyframes cookieSlideUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .header-inner {
        height: 70px;

        padding: 0 22px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .header-inner {
        grid-template-columns: 1fr auto 1fr;
    }

    .header-actions {
        justify-self: end;
    }

    .intro {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-image {
        height: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .split-visual {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 600px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .header-inner {
        padding: 0 18px;
    }

    .logo {
        font-size: 19px;
    }

    .cart-button span:first-child {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        left: 7%;
        right: 7%;
        bottom: 15%;
    }

    .hero h1 {
        font-size: 67px;
    }

    .hero-description {
        font-size: 12px;
    }

    .section-padding {
        padding: 80px 7%;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 50px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 500px;
    }

    .quick-add {
        opacity: 1;
        transform: translateY(0);
    }

    .visual-story {
        min-height: 650px;
    }

    .visual-story-content {
        min-height: 650px;
    }

    .about-title h2 {
        font-size: 55px;
    }

    .large-text {
        font-size: 28px;
    }

    .split-image {
        min-height: 500px;
    }

    .split-content {
        min-height: 500px;

        padding: 12%;
    }

    .contact {
        padding: 100px 7%;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-email {
        margin-bottom: 55px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }


    /* NEWSLETTER MOBILE */

    .newsletter-overlay {
        padding: 12px;
    }

    .newsletter-modal {
        grid-template-columns: 1fr;

        width: 100%;
        max-height: 92vh;

        overflow-y: auto;
    }

    .newsletter-image {
        height: 210px;
        min-height: 210px;
    }

    .newsletter-content {
        padding: 32px 24px 35px;
    }

    .newsletter-content h2 {
        font-size: 38px;
    }

    .newsletter-close {
        top: 8px;
        right: 8px;

        width: 38px;
        height: 38px;

        border-radius: 50%;

        background: rgba(255, 255, 255, 0.95);
    }


    /* COOKIE MOBILE */

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;

        padding: 18px;
    }

    .cookie-actions {
        width: 100%;

        justify-content: space-between;
    }

    .cookie-accept {
        padding: 11px 13px;
    }

    /* SIDEBAR */

    .mobile-sidebar {
        width: min(82vw, 340px);
    }

    .mobile-nav a {
        font-size: 28px;
    }

}