:root {
    --pink: #f7babb;
    --pink-light: #ffdce3;
    --pink-soft: #ffe9ed;
    --pink-pale: #fff3f5;
    --pink-dark: #e493a6;
    --pink-deep: #c96882;

    --ink: #17171c;
    --ink-soft: #222228;
    --ink-light: #303038;

    --white: #ffffff;
    --off-white: #f7f5f2;
    --grey: #8e8e92;
    --line: rgba(23, 23, 28, 0.16);

    --font-title: "Archivo Black", sans-serif;
    --font-body: "Inter", sans-serif;

    --header-height: 92px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--off-white);
    color: var(--ink);
    font-family: var(--font-body);
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.announcement {
    position: relative;
    z-index: 100;
    overflow: hidden;
    height: 32px;
    background: var(--pink);
    color: var(--ink);
}

.announcement__track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: announcementScroll 28s linear infinite;
}

.announcement__track a {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

@keyframes announcementScroll {
    from {
        transform: translateX(0);
    }

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

.header {
    position: absolute;
    top: 32px;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    min-height: var(--header-height);
    padding: 0 34px;
    color: var(--white);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.header.is-fixed {
    position: fixed;
    top: 0;
    background: var(--off-white);
    color: var(--ink);
    box-shadow: 0 1px 0 var(--line);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header__nav a,
.header__action {
    position: relative;
    background: transparent;
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.header__nav a::after {
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transition: width 0.25s ease;
}

.header__nav a:hover::after {
    width: 100%;
}

.header__logo {
    width: 92px;
}

.header__logo img {
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.header.is-fixed .header__logo img {
    filter: none;
}

.header__actions {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.header__action span {
    margin-left: 4px;
}

.header__mobile-button {
    display: none;
    width: 30px;
    background: transparent;
}

.header__mobile-button span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background: currentColor;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    background: var(--pink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.mobile-menu__top button {
    background: transparent;
    color: var(--ink);
    font-size: 35px;
    font-weight: 300;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu__nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(23, 23, 28, 0.25);
    font-family: var(--font-title);
    font-size: clamp(38px, 12vw, 70px);
    line-height: 0.95;
}

.mobile-menu__footer {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.08) 68%,
            rgba(0, 0, 0, 0.22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.35) 0%,
            transparent 42%
        );
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100svh;
    max-width: 1300px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 150px 6vw 100px;
}

.hero__eyebrow,
.section-label {
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.hero h1 {
    max-width: 950px;
    font-family: var(--font-title);
    font-size: clamp(64px, 11vw, 175px);
    line-height: 0.81;
    letter-spacing: -0.07em;
}

.hero__description {
    margin: 32px 0;
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 500;
    line-height: 1.5;
}

.hero__bottom {
    position: absolute;
    right: 35px;
    bottom: 25px;
    left: 35px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    border: 1px solid;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--light {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.button--light:hover {
    background: transparent;
    color: var(--white);
}

.button--dark {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.button--dark:hover {
    background: transparent;
    color: var(--ink);
}

.button--full {
    width: 100%;
}

.statement {
    display: flex;
    min-height: 85vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 110px 7vw;
    background: var(--pink);
    text-align: center;
}

.statement__small {
    margin-bottom: 35px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.statement h2 {
    max-width: 1200px;
    font-family: var(--font-title);
    font-size: clamp(42px, 7.6vw, 112px);
    line-height: 0.91;
    letter-spacing: -0.055em;
}

.statement__text {
    max-width: 610px;
    margin: 45px auto 28px;
    font-size: 15px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    gap: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.featured-drop {
    display: grid;
    min-height: 900px;
    grid-template-columns: 1.25fr 0.75fr;
    background: var(--off-white);
}

.featured-drop__media {
    min-height: 800px;
    overflow: hidden;
}

.featured-drop__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-drop:hover .featured-drop__media img {
    transform: scale(1.025);
}

.featured-drop__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8vw;
}

.featured-drop__content h2 {
    margin-bottom: 35px;
    font-family: var(--font-title);
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.83;
    letter-spacing: -0.065em;
}

.featured-drop__content > p:not(.section-label) {
    max-width: 430px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
}

.featured-drop__content .button {
    margin-top: 25px;
}

.shop {
    padding: 100px 25px 70px;
    background: var(--off-white);
}

.shop__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.shop__header h2 {
    font-family: var(--font-title);
    font-size: clamp(50px, 7vw, 95px);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.shop__controls {
    display: flex;
    gap: 20px;
}

.shop__filter {
    padding: 0 0 7px;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: var(--grey);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.shop__filter.active {
    border-color: var(--ink);
    color: var(--ink);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 2px;
}

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

.product-card.is-hidden {
    display: none;
}

.product-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #e9e6e2;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-card__media img {
    transform: scale(1.035);
}

.product-card__label {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 8px 10px;
    background: var(--pink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.product-card__quick {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    min-height: 44px;
    background: var(--white);
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

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

.product-card__information {
    display: flex;
    min-height: 120px;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 12px;
}

.product-card__information h3 {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
}

.product-card__description {
    max-width: 360px;
    color: #66666a;
    font-size: 11px;
    line-height: 1.5;
}

.product-card__price {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
}

.product-card__add {
    display: flex;
    width: calc(100% - 24px);
    min-height: 43px;
    align-items: center;
    justify-content: space-between;
    margin: 0 12px;
    padding: 0 15px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.product-card__add:hover {
    background: var(--ink);
    color: var(--white);
}

.manifesto {
    display: grid;
    min-height: 900px;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    color: var(--white);
}

.manifesto__image {
    overflow: hidden;
}

.manifesto__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manifesto__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 9vw;
}

.manifesto__content h2 {
    font-family: var(--font-title);
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.82;
    letter-spacing: -0.065em;
}

.manifesto__content > p:not(.section-label) {
    max-width: 470px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.8;
}

.manifesto__signature {
    position: absolute;
    right: 35px;
    bottom: 30px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.ticker {
    overflow: hidden;
    padding: 26px 0;
    background: var(--pink);
}

.ticker__track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: tickerScroll 25s linear infinite;
}

.ticker__track span {
    margin: 0 20px;
    font-family: var(--font-title);
    font-size: clamp(35px, 5vw, 75px);
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.ticker__track .ticker__symbol {
    font-family: var(--font-body);
    font-size: 25px;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

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

.newsletter {
    display: grid;
    min-height: 600px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 8vw;
    padding: 100px 7vw;
    background: var(--pink-light);
}

.newsletter__content h2 {
    font-family: var(--font-title);
    font-size: clamp(56px, 7vw, 110px);
    line-height: 0.86;
    letter-spacing: -0.06em;
}

.newsletter__content > p:last-child {
    max-width: 470px;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.7;
}

.newsletter__form > label:first-child {
    display: block;
    margin-bottom: 15px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.newsletter__input {
    display: grid;
    grid-template-columns: 1fr 55px;
    border-bottom: 2px solid var(--ink);
}

.newsletter__input input {
    min-width: 0;
    height: 62px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-title);
    font-size: clamp(18px, 2vw, 28px);
    text-transform: uppercase;
}

.newsletter__input input::placeholder {
    color: rgba(23, 23, 28, 0.35);
}

.newsletter__input button {
    background: transparent;
    color: var(--ink);
    font-size: 30px;
}

.newsletter__legal {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    font-size: 9px;
    line-height: 1.5;
}

.newsletter__legal input {
    margin-top: 1px;
    accent-color: var(--ink);
}

.newsletter__message {
    min-height: 18px;
    margin-top: 15px;
    font-size: 11px;
    font-weight: 700;
}

.footer {
    padding: 80px 35px 25px;
    background: var(--ink);
    color: var(--white);
}

.footer__brand {
    display: flex;
    min-height: 210px;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__brand img {
    width: min(440px, 45vw);
    filter: brightness(0) invert(1);
}

.footer__brand p {
    font-family: var(--font-title);
    font-size: clamp(20px, 2.5vw, 38px);
    line-height: 0.95;
    text-align: right;
}

.footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer__column h3 {
    margin-bottom: 10px;
    color: var(--pink);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.footer__column a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.footer__column a:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 299;
    background: rgba(0, 0, 0, 0.48);
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;
    display: grid;
    width: min(500px, 100%);
    height: 100%;
    grid-template-rows: auto 1fr auto;
    background: var(--off-white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

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

.cart-drawer__header {
    display: flex;
    min-height: 85px;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    border-bottom: 1px solid var(--line);
}

.cart-drawer__header h2 {
    font-family: var(--font-title);
    font-size: 20px;
}

.cart-drawer__header h2 span {
    font-family: var(--font-body);
    font-size: 11px;
}

.cart-drawer__header button,
.quick-view__close {
    background: transparent;
    color: var(--ink);
    font-size: 34px;
    font-weight: 300;
}

.cart-drawer__content {
    overflow-y: auto;
    padding: 20px 25px;
}

.cart-empty {
    display: flex;
    height: 100%;
    min-height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cart-empty p {
    margin-bottom: 10px;
    font-family: var(--font-title);
    font-size: 20px;
}

.cart-empty span {
    color: var(--grey);
    font-size: 11px;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item__image {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.cart-item__information h3 {
    margin-bottom: 8px;
    font-size: 12px;
}

.cart-item__information p {
    font-size: 11px;
}

.cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.cart-item__quantity button {
    width: 25px;
    height: 25px;
    background: transparent;
    border: 1px solid var(--ink);
}

.cart-item__remove {
    align-self: flex-start;
    background: transparent;
    font-size: 16px;
}

.cart-drawer__footer {
    padding: 25px;
    border-top: 1px solid var(--line);
}

.cart-drawer__total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.cart-drawer__footer > p {
    margin-bottom: 20px;
    color: var(--grey);
    font-size: 9px;
}

.quick-view {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.quick-view.is-visible {
    visibility: visible;
    opacity: 1;
}

.quick-view__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.quick-view__panel {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(950px, 100%);
    max-height: calc(100vh - 50px);
    grid-template-columns: 1fr 1fr;
    overflow-y: auto;
    background: var(--off-white);
}

.quick-view__close {
    position: absolute;
    top: 12px;
    right: 18px;
    z-index: 3;
}

.quick-view__image {
    min-height: 620px;
}

.quick-view__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.quick-view__content h2 {
    margin-bottom: 15px;
    font-family: var(--font-title);
    font-size: clamp(35px, 5vw, 68px);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.quick-view__price {
    margin-bottom: 35px;
    font-size: 14px;
    font-weight: 700;
}

.quick-view__description {
    margin-bottom: 35px;
    color: #5c5c61;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .header {
        grid-template-columns: 1fr auto 1fr;
        padding: 0 20px;
    }

    .header__nav {
        display: none;
    }

    .header__mobile-button {
        display: block;
        color: inherit;
    }

    .header__account {
        display: none;
    }

    .featured-drop,
    .manifesto {
        grid-template-columns: 1fr;
    }

    .featured-drop__media,
    .manifesto__image {
        min-height: 70svh;
    }

    .featured-drop__content,
    .manifesto__content {
        min-height: 650px;
        padding: 80px 7vw;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 700px) {
    :root {
        --header-height: 72px;
    }

    .announcement {
        height: 29px;
    }

    .header {
        top: 29px;
        min-height: 72px;
    }

    .header__logo {
        width: 74px;
    }

    .header__actions {
        gap: 0;
    }

    .header__action {
        font-size: 9px;
    }

    .hero__content {
        justify-content: flex-end;
        padding: 130px 20px 100px;
    }

    .hero h1 {
        font-size: clamp(58px, 20vw, 98px);
    }

    .hero__description {
        margin: 22px 0;
        font-size: 13px;
    }

    .hero__bottom {
        right: 20px;
        bottom: 18px;
        left: 20px;
    }

    .hero__bottom span:nth-child(2) {
        display: none;
    }

    .statement {
        min-height: 80svh;
        padding: 80px 20px;
    }

    .statement h2 {
        font-size: clamp(43px, 14vw, 72px);
    }

    .statement__text {
        margin-top: 30px;
        font-size: 13px;
    }

    .featured-drop {
        min-height: auto;
    }

    .featured-drop__media {
        min-height: 70svh;
    }

    .featured-drop__content {
        min-height: auto;
        padding: 70px 20px;
    }

    .featured-drop__content h2 {
        font-size: 60px;
    }

    .shop {
        padding: 75px 10px 50px;
    }

    .shop__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
        padding: 0 10px;
    }

    .shop__controls {
        width: 100%;
        gap: 15px;
        overflow-x: auto;
    }

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

    .product-card__information {
        min-height: 125px;
        flex-direction: column;
        gap: 10px;
        padding: 13px 8px;
    }

    .product-card__information h3 {
        font-size: 10px;
        line-height: 1.35;
    }

    .product-card__description {
        display: none;
    }

    .product-card__price {
        font-size: 10px;
    }

    .product-card__add {
        width: calc(100% - 16px);
        margin: 0 8px;
        padding: 0 9px;
        font-size: 7px;
    }

    .product-card__quick {
        display: none;
    }

    .product-card__label {
        top: 8px;
        left: 8px;
        padding: 6px 7px;
        font-size: 7px;
    }

    .manifesto {
        min-height: auto;
    }

    .manifesto__image {
        min-height: 70svh;
    }

    .manifesto__content {
        min-height: 650px;
        padding: 80px 20px;
    }

    .manifesto__content h2 {
        font-size: clamp(58px, 18vw, 90px);
    }

    .newsletter {
        min-height: auto;
        padding: 80px 20px;
    }

    .newsletter__content h2 {
        font-size: clamp(52px, 16vw, 80px);
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer__brand {
        min-height: 180px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 35px;
    }

    .footer__brand img {
        width: 220px;
    }

    .footer__brand p {
        text-align: left;
    }

    .footer__columns {
        grid-template-columns: 1fr 1fr;
        gap: 50px 20px;
    }

    .footer__bottom {
        gap: 15px;
        flex-wrap: wrap;
    }

    .quick-view {
        padding: 0;
    }

    .quick-view__panel {
        width: 100%;
        height: 100%;
        max-height: none;
        grid-template-columns: 1fr;
    }

    .quick-view__image {
        min-height: 48svh;
    }

    .quick-view__content {
        padding: 40px 20px;
    }
}