/* =========================================================
   ELARIA FAM
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --purple: #9380B5;
    --lavender: #C7BEDA;
    --plum: #523B74;

    --white: #FFFFFF;
    --cream: #FFFDEF;

    --text: #29232F;
    --text-muted: #77707C;

    --border: rgba(82, 59, 116, 0.14);

    --font-display: "Amstelvar", Georgia, "Times New Roman", serif;
    --font-body: "LT Superior", Arial, Helvetica, sans-serif;
    --font-accent: "French Kiss KG script", cursive;
    --font-data: "Jun", Arial, sans-serif;

    --header-height: 80px;

    --page-padding: 6vw;
    --section-space: 140px;

    --transition: 0.3s ease;
}


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--white);
    color: var(--text);

    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {
    margin-top: 0;

    color: var(--plum);

    font-family: var(--font-display);
    font-weight: 400;
}

h1 {
    font-size: clamp(48px, 6vw, 94px);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 26px;
}

p {
    margin-top: 0;
}

.section-label {
    display: block;

    margin-bottom: 22px;

    color: var(--purple);

    font-size: 12px;
    letter-spacing: 0.16em;

    text-transform: uppercase;
}


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

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    height: var(--header-height);

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

    gap: 40px;

    padding: 0 var(--page-padding);

    background: rgba(255, 253, 239, 0.94);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-logo {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    text-decoration: none;
}

.site-logo img {
    width: auto;
    height: 38px;

    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;

    gap: 26px;
}

.site-nav a {
    position: relative;

    white-space: nowrap;

    color: var(--text);

    font-size: 12px;
    letter-spacing: 0.07em;

    text-decoration: none;
    text-transform: uppercase;

    transition: color var(--transition);
}

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

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--purple);

    transition: width var(--transition);
}

.site-nav a:hover {
    color: var(--purple);
}

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

.site-main {
    padding-top: var(--header-height);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button-primary {
    min-height: 52px;

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

    padding: 0 30px;

    border: 1px solid var(--plum);

    background: var(--plum);
    color: var(--white);

    font-size: 12px;
    letter-spacing: 0.12em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition);
}

.button-primary:hover {
    background: transparent;
    color: var(--plum);
}


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

.hero {
    position: relative;

    height: calc(100svh - var(--header-height));
    min-height: 640px;

    overflow: hidden;

    background: var(--lavender);
}

.hero > img,
.hero > video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.33)
        );
}

.hero > .visual-placeholder {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;

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

    padding:
        60px
        var(--page-padding)
        8vh;

    text-align: center;
}

.hero-content h1 {
    margin-bottom: 34px;

    color: var(--white);

    font-size: clamp(56px, 7vw, 112px);
}

.hero-content .button-primary {
    border-color: var(--white);

    background: var(--white);
    color: var(--plum);
}

.hero-content .button-primary:hover {
    background: transparent;
    color: var(--white);
}


/* =========================================================
   BRAND
   ========================================================= */

.brand-intro {
    min-height: calc(100svh - var(--header-height));

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: stretch;

    gap: clamp(50px, 7vw, 120px);

    padding:
        var(--section-space)
        var(--page-padding);
}

.brand-text {
    max-width: 650px;

    align-self: center;
}

.brand-text > h1 {
    margin-bottom: 76px;
}

.brand-part {
    margin-bottom: 44px;
}

.brand-part:last-child {
    margin-bottom: 0;
}

.brand-part h2 {
    margin-bottom: 14px;

    color: var(--purple);

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;

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

.brand-part p {
    margin: 0;

    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.7;
}

.brand-visual {
    min-height: 720px;

    overflow: hidden;

    background: var(--cream);
}

.brand-visual img,
.brand-visual video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   PHILOSOPHY
   ========================================================= */

.philosophy {
    padding:
        var(--section-space)
        var(--page-padding);

    background: var(--cream);
}

.philosophy-header {
    max-width: 900px;

    margin-bottom: 80px;
}

.philosophy-header h2 {
    margin-bottom: 30px;
}

.philosophy-header p {
    max-width: 760px;

    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 52px 24px;
}

.value-card {
    margin: 0;
}

.value-card-image {
    aspect-ratio: 4 / 5;

    margin-bottom: 22px;

    overflow: hidden;

    background: var(--lavender);
}

.value-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.value-card:hover .value-card-image img {
    transform: scale(1.025);
}

.value-card h3 {
    margin-bottom: 8px;

    font-size: 26px;
}

.value-card p {
    max-width: 92%;

    color: var(--text-muted);

    line-height: 1.6;
}


/* =========================================================
   BESTSELLERS
   ========================================================= */

.bestsellers-page {
    padding:
        var(--section-space)
        var(--page-padding);
}

.bestsellers-page > h1 {
    margin-bottom: 80px;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 66px 24px;
}

.bestseller-image {
    aspect-ratio: 3 / 4;

    margin-bottom: 20px;

    overflow: hidden;

    background: var(--cream);
}

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

    object-fit: cover;

    transition: transform 0.7s ease;
}

.bestseller-card:hover .bestseller-image img {
    transform: scale(1.025);
}

.bestseller-card h2 {
    margin-bottom: 6px;

    color: var(--text);

    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
}

.bestseller-article {
    margin-bottom: 18px;

    color: var(--text-muted);

    font-size: 13px;
}

/* =========================================================
   DROP — HERO
   ========================================================= */

.drop-hero {
    position: relative;

    width: 100%;
    height: calc(100svh - var(--header-height));
    min-height: 650px;

    overflow: hidden;

    background: var(--purple);
}

.drop-hero > img,
.drop-hero > video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.drop-hero-placeholder {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--lavender)
        );
}

.drop-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(20, 10, 30, 0.04),
            rgba(20, 10, 30, 0.38)
        );
}

.drop-navigation {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: grid;
    grid-template-columns: 120px 1fr 120px;

    align-items: center;

    padding: 0 var(--page-padding);
}

.drop-navigation-side {
    display: flex;
    align-items: center;
}

.drop-navigation-left {
    justify-content: flex-start;
}

.drop-navigation-right {
    justify-content: flex-end;
}

.drop-arrow {
    width: 66px;
    height: 66px;

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

    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;

    color: var(--white);

    font-size: 30px;
    font-weight: 300;

    text-decoration: none;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.drop-arrow:hover {
    background: var(--white);
    color: var(--plum);

    transform: scale(1.05);
}

.drop-arrow-disabled {
    opacity: 0.28;

    cursor: default;
}

.drop-arrow-disabled:hover {
    background: transparent;
    color: var(--white);

    transform: none;
}

.drop-heading {
    text-align: center;
}

.drop-current-label {
    display: block;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 11px;
    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.drop-heading h1 {
    margin: 0;

    color: var(--white);

    font-size: clamp(52px, 7vw, 110px);
    line-height: 0.95;

    text-transform: uppercase;
}

.drop-heading h1 span {
    color: var(--lavender);
}


/* =========================================================
   DROP — STORY
   ========================================================= */

.drop-story {
    padding:
        var(--section-space)
        var(--page-padding);

    background: var(--cream);
}

.drop-story-header {
    max-width: 760px;

    margin-bottom: 70px;
}

.drop-story-header h2 {
    margin: 0;
}

.drop-story-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(220px, 0.65fr)
        minmax(280px, 1fr);

    gap: 28px;

    align-items: stretch;
}

.drop-collection-media,
.drop-designer-media {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    background: var(--lavender);
}

.drop-collection-media video,
.drop-designer-media video,
.drop-designer-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.drop-media-label {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;

    padding: 9px 13px;

    background: rgba(255, 255, 255, 0.88);
    color: var(--plum);

    font-size: 10px;
    letter-spacing: 0.12em;

    text-transform: uppercase;

    backdrop-filter: blur(5px);
}

.drop-media-placeholder {
    width: 100%;
    height: 100%;

    min-height: 560px;

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

    padding: 30px;

    color: var(--plum);

    font-size: 12px;
    letter-spacing: 0.12em;

    text-align: center;
    text-transform: uppercase;
}

.drop-designer-story {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        60px
        clamp(20px, 3vw, 60px);
}

.drop-designer-story .section-label {
    margin-bottom: 26px;
}

.drop-story-text {
    color: var(--text);

    font-family: var(--font-display);
    font-size: clamp(21px, 1.8vw, 30px);
    line-height: 1.55;
}

.drop-story-text p:last-child {
    margin-bottom: 0;
}

.drop-empty-text {
    color: var(--text-muted);

    font-size: 17px;
}


/* =========================================================
   DROP — PRODUCTS
   ========================================================= */

.drop-products {
    padding:
        var(--section-space)
        var(--page-padding);

    background: var(--white);
}

.drop-products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 72px;
}

.drop-products-header h2 {
    margin: 0;
}

.drop-products-count {
    padding-bottom: 8px;

    color: var(--text-muted);

    font-size: 12px;
    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.drop-products-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 70px 24px;
}

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

.drop-product-image {
    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: var(--cream);
}

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

    object-fit: cover;

    transition: transform 0.7s ease;
}

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

.drop-product-placeholder {
    width: 100%;
    height: 100%;

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

    background: var(--lavender);
    color: var(--plum);

    font-family: var(--font-display);
    font-size: 24px;
}

.drop-product-info {
    padding-top: 18px;
}

.drop-product-info h3 {
    margin-bottom: 6px;

    color: var(--text);

    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
}

.drop-product-article {
    margin-bottom: 18px;

    color: var(--text-muted);

    font-size: 12px;
}

.drop-product-button {
    width: 100%;

    min-height: 46px;

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

    gap: 20px;

    padding: 0 18px;

    background: var(--plum);
    color: var(--white);

    font-size: 11px;
    letter-spacing: 0.08em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background var(--transition),
        transform var(--transition);
}

.drop-product-button span {
    font-size: 18px;
}

.drop-product-button:hover {
    background: var(--purple);

    transform: translateY(-2px);
}

.drop-products-empty {
    padding: 80px;

    background: var(--cream);
    color: var(--text-muted);

    text-align: center;
}


/* =========================================================
   DROP — MARKETPLACES
   ========================================================= */

.drop-marketplaces {
    padding:
        120px
        var(--page-padding);

    background: var(--cream);

    text-align: center;
}

.drop-marketplaces-inner {
    max-width: 1100px;

    margin: 0 auto;
}

.drop-marketplaces .section-label {
    margin-bottom: 24px;
}

.drop-marketplaces h2 {
    max-width: 900px;

    margin:
        0
        auto
        52px;

    font-size: clamp(34px, 4vw, 60px);
}

.drop-marketplace-buttons {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
}

.drop-marketplace-button {
    min-height: 56px;

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

    padding: 0 20px;

    background: var(--plum);
    color: var(--white);

    border: 1px solid var(--plum);

    font-size: 12px;
    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.drop-marketplace-button:hover {
    background: transparent;
    color: var(--plum);

    transform: translateY(-2px);
}


/* =========================================================
   DROP — EMPTY
   ========================================================= */

.drop-not-found {
    min-height: calc(100svh - var(--header-height));

    display: flex;
    flex-direction: column;

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

    padding: var(--page-padding);

    text-align: center;
}


/* =========================================================
   GENERIC PAGES
   ========================================================= */

.community-page,
.shop-page,
.social-page,
.company-page,
.contacts-page,
.subscribe-page {
    min-height: calc(100svh - var(--header-height));

    padding:
        var(--section-space)
        var(--page-padding);
}

.community-page > h1,
.shop-page > h1,
.social-page > h1,
.company-page > h1,
.contacts-page > h1 {
    margin-bottom: 80px;
}


/* =========================================================
   COMMUNITY
   ========================================================= */

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 64px 24px;
}

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

.stylist-reel {
    width: 100%;
    aspect-ratio: 9 / 16;

    overflow: hidden;

    background: var(--cream);
}

.stylist-reel video {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.stylist-card h2 {
    margin: 20px 0 0;

    color: var(--text);

    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
}


/* =========================================================
   MARKETPLACES + SOCIAL
   ========================================================= */

.marketplaces-grid,
.social-grid {
    display: grid;

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

    gap: 24px;
}

.marketplace-card,
.social-card {
    min-height: 330px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: flex-end;

    padding: 42px;

    background: var(--cream);

    transition:
        background var(--transition),
        transform var(--transition);
}

.marketplace-card:hover,
.social-card:hover {
    background: var(--lavender);

    transform: translateY(-3px);
}

.marketplace-card img,
.social-card img {
    max-width: 140px;
    max-height: 70px;

    margin-bottom: auto;

    object-fit: contain;
}

.marketplace-card h2,
.social-card h2 {
    margin:
        40px
        0
        10px;

    font-size: 40px;
}

.marketplace-card p,
.social-card p {
    color: var(--text-muted);
}

.marketplace-card a {
    margin-top: 14px;

    color: var(--plum);

    font-size: 12px;
    letter-spacing: 0.08em;

    text-decoration: none;
    text-transform: uppercase;
}

.social-card {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.social-card-action {
    margin-top: 14px;

    color: var(--plum);

    font-size: 12px;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* =========================================================
   COMPANY
   ========================================================= */

.company-facts {
    display: grid;

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

    gap: 1px;

    background: var(--border);
}

.company-fact {
    min-height: 240px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 40px;

    background: var(--white);
}

.company-fact strong {
    margin-bottom: 18px;

    color: var(--plum);

    font-family: var(--font-data);
    font-size: clamp(40px, 5vw, 76px);
    font-weight: 400;
}

.company-fact span {
    color: var(--text-muted);

    font-size: 13px;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* =========================================================
   CONTACTS
   ========================================================= */

.contacts-page {
    max-width: 1200px;
}

.contacts-page > div {
    max-width: 700px;

    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.8;
}


/* =========================================================
   SUBSCRIBE
   ========================================================= */

.subscribe-page {
    display: flex;
    flex-direction: column;

    justify-content: center;

    background: var(--plum);
    color: var(--white);
}

.subscribe-page h1 {
    max-width: 980px;

    color: var(--white);
}

.subscribe-page > p {
    max-width: 680px;

    font-size: 20px;
}

.subscribe-page form {
    width: 100%;
    max-width: 720px;

    display: flex;

    margin-top: 40px;
}

.subscribe-page input {
    flex: 1;

    min-height: 58px;

    padding: 0 20px;

    border: 1px solid var(--white);
    outline: none;

    background: transparent;
    color: var(--white);
}

.subscribe-page input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.subscribe-page button {
    min-height: 58px;

    padding: 0 30px;

    border: 1px solid var(--white);

    background: var(--white);
    color: var(--plum);

    cursor: pointer;
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

.visual-placeholder {
    width: 100%;
    height: 100%;

    min-height: 220px;

    display: flex;

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

    background: var(--lavender);
    color: var(--plum);

    font-size: 12px;
    letter-spacing: 0.12em;

    text-transform: uppercase;
}


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

.site-footer {
    padding:
        96px
        var(--page-padding)
        32px;

    background: var(--plum);
    color: var(--white);
}

.footer-main {
    display: grid;

    grid-template-columns: 1.8fr 1fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 90px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 26px;
}

.footer-logo img {
    width: auto;

    max-width: 190px;
    max-height: 70px;

    object-fit: contain;
}

.footer-slogan {
    margin: 0;

    color: var(--lavender);

    font-family: var(--font-display);
    font-size: 22px;
}

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

    align-items: flex-start;

    gap: 14px;
}

.footer-column h3 {
    margin:
        0
        0
        18px;

    color: var(--lavender);

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.footer-column a {
    color: var(--white);

    font-size: 14px;

    text-decoration: none;

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--lavender);
}

.footer-bottom {
    display: flex;

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

    gap: 30px;

    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.18);

    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    letter-spacing: 0.05em;
}

.footer-bottom a {
    color: inherit;

    text-decoration: none;
}

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


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --page-padding: 4vw;
    }

    .site-nav {
        gap: 15px;
    }

    .site-nav a {
        font-size: 10px;
    }

    .bestsellers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .drop-navigation {
        grid-template-columns: 90px 1fr 90px;
    }

    .drop-story-grid {
        grid-template-columns: 1fr 0.7fr;
    }

    .drop-designer-story {
        grid-column: 1 / -1;

        max-width: 900px;

        padding:
            60px
            0
            0;
    }

    .drop-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .company-facts {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {

    :root {
        --header-height: 112px;

        --page-padding: 24px;
        --section-space: 90px;
    }

    .site-header {
        flex-direction: column;

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

        gap: 12px;
    }

    .site-logo img {
        height: 30px;
    }

    .site-nav {
        width: 100%;

        gap: 20px;

        overflow-x: auto;

        padding-bottom: 3px;

        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        flex-shrink: 0;

        font-size: 10px;
    }

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

    .brand-visual {
        min-height: 520px;
    }

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

    .bestsellers-grid,
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* DROP */

    .drop-hero {
        min-height: 620px;
    }

    .drop-navigation {
        grid-template-columns: 70px 1fr 70px;
    }

    .drop-arrow {
        width: 52px;
        height: 52px;

        font-size: 25px;
    }

    .drop-heading h1 {
        font-size: clamp(42px, 10vw, 72px);
    }

    .drop-story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .drop-collection-media,
    .drop-designer-media {
        min-height: 480px;
    }

    .drop-media-placeholder {
        min-height: 480px;
    }

    .drop-designer-story {
        grid-column: 1 / -1;
    }

    .drop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .drop-marketplace-buttons {
        grid-template-columns: repeat(2, 1fr);
    }


    .marketplaces-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);

        gap: 60px 30px;
    }

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

    .footer-column:last-child {
        grid-column: auto;
    }
}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 520px) {

    :root {
        --section-space: 72px;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 36px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .values-grid,
    .bestsellers-grid,
    .community-grid,
    .company-facts {
        grid-template-columns: 1fr;
    }


    /* DROP HERO */

    .drop-hero {
        height: calc(100svh - var(--header-height));
        min-height: 560px;
    }

    .drop-navigation {
        grid-template-columns: 48px 1fr 48px;

        padding:
            0
            14px;
    }

    .drop-arrow {
        width: 42px;
        height: 42px;

        font-size: 21px;
    }

    .drop-current-label {
        margin-bottom: 14px;

        font-size: 9px;
    }

    .drop-heading h1 {
        font-size: clamp(34px, 10vw, 50px);
    }


    /* DROP STORY */

    .drop-story-grid {
        grid-template-columns: 1fr;
    }

    .drop-collection-media {
        min-height: 520px;
    }

    .drop-designer-media {
        min-height: 440px;
    }

    .drop-media-placeholder {
        min-height: 440px;
    }

    .drop-designer-story {
        grid-column: auto;

        padding:
            45px
            0
            0;
    }

    .drop-story-text {
        font-size: 21px;
    }


    /* DROP PRODUCTS */

    .drop-products-header {
        flex-direction: column;

        align-items: flex-start;

        margin-bottom: 50px;
    }

    .drop-products-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .drop-product-info h3 {
        font-size: 20px;
    }

    .drop-product-button {
        min-height: 50px;
    }

    .drop-products-empty {
        padding:
            60px
            25px;
    }


    /* DROP MARKETPLACES */

    .drop-marketplaces {
        padding:
            90px
            var(--page-padding);
    }

    .drop-marketplace-buttons {
        grid-template-columns: 1fr;
    }


    .marketplace-card,
    .social-card {
        min-height: 280px;

        padding: 30px;
    }

    .subscribe-page form {
        flex-direction: column;
    }

    .subscribe-page button {
        margin-top: 12px;
    }

    .site-footer {
        padding-top: 72px;
    }

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

        padding-bottom: 60px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }
}

/* =========================================================
   PRODUCT MARKETPLACE SELECTOR
   ========================================================= */

.product-marketplaces {
    position: relative;

    margin-top: 18px;
}

.product-marketplaces-toggle {
    width: 100%;
    min-height: 48px;

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

    gap: 20px;

    padding: 0 18px;

    border: 1px solid var(--plum);

    background: var(--plum);
    color: var(--white);

    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition);
}

.product-marketplaces-toggle:hover {
    background: var(--purple);

    border-color: var(--purple);
}

.product-marketplaces-icon {
    font-size: 19px;
    font-weight: 300;

    line-height: 1;

    transition: transform var(--transition);
}


/* выпадающее меню */

.product-marketplaces-menu {
    position: absolute;

    left: 0;
    right: 0;

    bottom: calc(100% + 8px);

    z-index: 30;

    padding: 8px;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow:
        0 18px 50px
        rgba(41, 35, 47, 0.14);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    pointer-events: none;

    transition:
        opacity var(--transition),
        transform var(--transition),
        visibility var(--transition);
}


/* открытое состояние */

.product-marketplaces.is-open
.product-marketplaces-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}

.product-marketplaces.is-open
.product-marketplaces-icon {
    transform: rotate(45deg);
}


/* ссылка конкретного маркетплейса */

.product-marketplaces-menu a {
    min-height: 47px;

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

    gap: 20px;

    padding: 0 14px;

    color: var(--text);

    border-bottom: 1px solid var(--border);

    font-size: 12px;
    letter-spacing: 0.05em;

    text-decoration: none;

    transition:
        background var(--transition),
        color var(--transition);
}

.product-marketplaces-menu a:last-child {
    border-bottom: 0;
}

.product-marketplaces-menu a:hover {
    background: var(--cream);
    color: var(--plum);
}

/* =========================================================
   DROP PRODUCT PHOTO GALLERY
   ========================================================= */

.drop-product-gallery {
    position: relative;

    width: 100%;
    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: var(--cream);
}

.drop-gallery-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    visibility: hidden;

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

.drop-gallery-image.is-active {
    opacity: 1;
    visibility: visible;
}


/* Стрелки прямо поверх фотографии */

.drop-gallery-arrow {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 44px;
    height: 58px;

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

    padding: 0;

    border: none;

    background: rgba(255, 255, 255, 0.42);
    color: var(--plum);

    font-size: 34px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    opacity: 0;

    transform: translateY(-50%);

    transition:
        opacity 0.25s ease,
        background 0.25s ease;
}

.drop-gallery-prev {
    left: 0;
}

.drop-gallery-next {
    right: 0;
}

.drop-product-gallery:hover .drop-gallery-arrow {
    opacity: 1;
}

.drop-gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.76);
}


/* Купить */

.drop-product-buy {
    width: 100%;
    min-height: 48px;

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

    gap: 20px;

    margin-top: 18px;
    padding: 0 18px;

    border: 1px solid var(--plum);

    background: var(--plum);
    color: var(--white);

    font-size: 11px;
    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background var(--transition),
        border-color var(--transition);
}

.drop-product-buy:hover {
    background: var(--purple);
    border-color: var(--purple);
}

.drop-product-buy span:last-child {
    font-size: 18px;
}


/* На телефоне hover нет — стрелки видны постоянно */

@media (max-width: 800px) {

    .drop-gallery-arrow {
        width: 40px;
        height: 52px;

        opacity: 0.72;
    }

}