:root {
    --red: #e3262e;
    --red-dark: #b7151c;
    --red-soft: #fff0f1;
    --ink: #181818;
    --ink-2: #282828;
    --text: #343434;
    --muted: #6f737b;
    --line: #dfe2e8;
    --canvas: #eef1f7;
    --surface: #ffffff;
    --warm: #fff6ef;
    --shadow-sm: 0 2px 8px rgba(18, 20, 28, 0.08);
    --shadow-md: 0 12px 32px rgba(18, 20, 28, 0.12);
    --container: 1320px;
    --radius: 8px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--canvas);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 3000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    background: #fff;
    color: #111;
    border-radius: 4px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.promo-strip {
    position: sticky;
    top: 0;
    z-index: 1100;
    min-height: 48px;
    background: linear-gradient(90deg, #7f0d12 0%, var(--red) 48%, #9d1017 100%);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .12) inset;
}

.promo-strip__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
}

.promo-strip a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    background: var(--ink);
    border-radius: 4px;
    font-weight: 700;
}

.site-header {
    position: relative;
    z-index: 1000;
}

.site-header__utility,
.site-header__market {
    background: var(--ink);
    color: #fff;
}

.utility-row {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand,
.mobile-brand {
    display: inline-flex;
    align-items: center;
}

.brand__logo {
    width: 174px;
    height: 36px;
    object-fit: contain;
    object-position: left center;
}

.utility-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: #d8d8d8;
}

.utility-nav a:hover,
.utility-nav a:focus-visible {
    color: #fff;
}

.utility-nav__button,
.cart-button {
    min-height: 38px;
    border: 0;
    background: #242424;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border-radius: 4px;
    cursor: pointer;
}

.cart-button {
    position: relative;
    font-size: 17px;
}

.cart-count {
    min-width: 18px;
    height: 18px;
    padding-inline: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.account-menu {
    position: absolute;
    top: 52px;
    right: 34px;
    z-index: 1200;
    width: 300px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-md);
}

.account-menu strong {
    color: var(--ink);
    font-size: 18px;
}

.account-menu p {
    margin: 6px 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.account-menu__link {
    display: block;
    margin-top: 13px;
    text-align: center;
    color: var(--red-dark);
    font-weight: 700;
    font-size: 14px;
}

.site-header__market {
    border-top: 1px solid #2e2e2e;
}

.market-row {
    min-height: 62px;
    display: flex;
    align-items: center;
}

.market-nav {
    display: flex;
    align-items: stretch;
    gap: 36px;
    height: 62px;
}

.market-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #bfc0c2;
    font-size: 15px;
    white-space: nowrap;
}

.market-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.market-nav a:hover,
.market-nav a:focus-visible,
.market-nav a.is-active {
    color: #fff;
}

.market-nav a:hover::after,
.market-nav a:focus-visible::after,
.market-nav a.is-active::after {
    transform: scaleX(1);
}

.category-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.category-nav__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav__inner::-webkit-scrollbar {
    display: none;
}

.category-nav a {
    color: #555a61;
    font-size: 13px;
    white-space: nowrap;
}

.category-nav a:hover,
.category-nav a:focus-visible {
    color: var(--red-dark);
}

.mobile-brand,
.mobile-actions,
.mobile-icon-button,
.mobile-drawer {
    display: none;
}

.button {
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 750;
    font-size: 14px;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 8px 18px rgba(227, 38, 46, .2);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.button--outline {
    border-color: #bfc4cb;
    background: #fff;
    color: #2e3237;
}

.button--outline:hover,
.button--outline:focus-visible {
    border-color: var(--red);
    color: var(--red-dark);
}

.button--light {
    background: #fff;
    color: var(--ink);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #ff7f83;
}

.hero {
    min-height: 560px;
    background:
        radial-gradient(circle at 79% 52%, rgba(227, 38, 46, .08), transparent 32%),
        linear-gradient(180deg, #f6f8fc 0%, #edf0f6 100%);
    overflow: hidden;
}

.hero__grid {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(540px, 1fr);
    align-items: center;
    gap: 44px;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 58px 0 62px;
}

.hero h1 {
    max-width: 690px;
    margin: 18px 0 16px;
    color: var(--ink);
    font-size: clamp(42px, 3.6vw, 54px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.hero__content > p {
    max-width: 620px;
    margin: 0 0 30px;
    color: #5f646d;
    font-size: 20px;
    line-height: 1.55;
}

.hero-search {
    width: min(100%, 660px);
    height: 76px;
    padding: 10px 11px 10px 22px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    border: 1px solid #e2e5ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(29, 34, 45, .12);
}

.hero-search > .bi {
    color: #9398a0;
    font-size: 20px;
}

.hero-search input {
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
}

.hero-search input::placeholder {
    color: #9b9fa7;
}

.hero-search button {
    height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.hero__trends {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 18px;
    color: #777c84;
    font-size: 13px;
}

.hero__trends a {
    color: #4a4e54;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero__art {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__art::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 0 0 1px rgba(255,255,255,.8);
}

.hero__art img {
    position: relative;
    z-index: 1;
    width: 770px;
    max-width: none;
    margin-left: -40px;
    filter: drop-shadow(0 26px 35px rgba(20, 24, 32, .12));
}

.hero__proof {
    position: absolute;
    z-index: 3;
    right: 34px;
    bottom: 62px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 7px;
    background: rgba(255,255,255,.94);
    color: #555a62;
    box-shadow: var(--shadow-md);
    font-size: 13px;
}

.hero__proof strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
}

.section-heading {
    margin-bottom: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading h2,
.curated-intro h2,
.seller-cta h2,
.creator-head h2 {
    margin: 9px 0 8px;
    color: var(--ink);
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.section-heading p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.section-heading--compact {
    align-items: center;
}

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

.section-heading--center {
    justify-content: center;
    text-align: center;
}

.section-heading--center p {
    margin-inline: auto;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-dark);
    font-weight: 750;
}

.search-results {
    padding: 64px 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.empty-state {
    padding: 56px 24px;
    border: 1px dashed #c7ccd3;
    border-radius: var(--radius);
    background: #f9fafc;
    text-align: center;
}

.empty-state > .bi {
    color: var(--red);
    font-size: 32px;
}

.empty-state h3 {
    margin: 12px 0 4px;
    color: var(--ink);
}

.empty-state p {
    margin: 0 0 18px;
    color: var(--muted);
}

.membership-banner {
    padding: 26px 0 30px;
    background: var(--canvas);
}

.membership-banner__inner {
    position: relative;
    min-height: 390px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
    color: #fff;
    box-shadow: 0 18px 44px rgba(16, 17, 21, .2);
}

.membership-banner__copy {
    position: relative;
    z-index: 2;
    padding: 62px 0 62px 62px;
}

.membership-banner h2 {
    max-width: 520px;
    margin: 12px 0 14px;
    font-size: clamp(38px, 3.3vw, 54px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.membership-banner p {
    max-width: 500px;
    color: #cfd0d2;
    font-size: 17px;
}

.membership-banner__actions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #aaaeb4;
    font-size: 13px;
}

.membership-banner img {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    object-fit: cover;
    object-position: 74% center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
}

.category-section,
.new-section,
.creator-section,
.bestseller-section,
.seller-cta {
    padding: 88px 0;
}

.category-section {
    background: var(--canvas);
}

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

.category-card {
    min-height: 386px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e5ea;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-4px);
    border-color: #f0b0b3;
    box-shadow: var(--shadow-md);
}

.category-card__copy {
    position: relative;
    z-index: 1;
    padding: 28px 30px 16px;
}

.category-card__copy > span {
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-card h3 {
    margin: 5px 0 3px;
    color: var(--ink);
    font-size: 27px;
    letter-spacing: -.025em;
}

.category-card p {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 14px;
}

.category-card strong {
    color: var(--red-dark);
    font-size: 14px;
}

.category-card img {
    width: calc(100% - 28px);
    height: 210px;
    margin: auto 14px 0;
    object-fit: cover;
    object-position: center;
    border-radius: 6px 6px 0 0;
}

.curated-section {
    padding: 88px 0;
    background: #fff;
    border-block: 1px solid var(--line);
}

.curated-layout {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.7fr);
    gap: 30px;
    align-items: start;
}

.curated-intro {
    position: sticky;
    top: 74px;
    min-height: 520px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fafafa;
}

.curated-intro p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 17px;
}

.curated-intro h2 {
    font-size: 40px;
}

.product-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dfe2e7;
    border-radius: 6px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.product-card__media {
    position: relative;
    aspect-ratio: 590 / 300;
    overflow: hidden;
    background: #dfe3e8;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

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

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 8px;
    border-radius: 3px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.product-card__media-actions {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.product-card:hover .product-card__media-actions,
.product-card:focus-within .product-card__media-actions {
    opacity: 1;
    transform: translateY(0);
}

.icon-button,
.cart-icon {
    width: 39px;
    height: 39px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 4px;
    background: rgba(20,20,20,.88);
    color: #fff;
    cursor: pointer;
}

.icon-button.is-active {
    background: var(--red);
    border-color: var(--red);
}

.product-card__body {
    padding: 17px 18px 15px;
}

.product-card h3 {
    margin: 0 0 5px;
    color: #30343a;
    font-size: 16px;
    line-height: 1.32;
}

.product-card h3 a:hover,
.product-card h3 a:focus-visible {
    color: var(--red-dark);
}

.product-card__byline {
    margin: 0;
    color: #9a9ea6;
    font-size: 12px;
}

.product-card__byline a {
    color: #747982;
}

.product-card__description {
    min-height: 42px;
    margin: 10px 0 12px;
    color: #6c7179;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-card__price {
    color: var(--ink);
    font-size: 22px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #92969d;
    font-size: 11px;
}

.rating__stars {
    display: flex;
    color: #f3a400;
    font-size: 10px;
}

.product-card__footer {
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid #eceef1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #8b9098;
    font-size: 11px;
}

.product-card__footer > div {
    display: flex;
    gap: 7px;
}

.product-card__footer .button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
}

.cart-icon {
    border-color: #ccd0d6;
    background: #fff;
    color: #4d5259;
}

.cart-icon:hover,
.cart-icon:focus-visible {
    border-color: var(--red);
    color: var(--red);
}

.trust-strip {
    padding: 34px 0;
    background: #f8f9fb;
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-grid article {
    padding: 21px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
}

.trust-grid article > .bi {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red-soft);
    color: var(--red);
    font-size: 17px;
}

.trust-grid h2 {
    margin: 0 0 2px;
    color: var(--ink);
    font-size: 15px;
}

.trust-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.new-section {
    background: var(--canvas);
}

.filter-pills {
    margin: 0 auto 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.filter-pills button {
    padding: 8px 14px;
    border: 1px solid #d3d7dd;
    border-radius: 99px;
    background: #fff;
    color: #555a62;
    font-size: 13px;
    cursor: pointer;
}

.filter-pills button.is-active,
.filter-pills button:hover,
.filter-pills button:focus-visible {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.filter-item[hidden] {
    display: none;
}

.section-cta {
    margin-top: 34px;
    text-align: center;
}

.creator-section {
    background: #fff;
    border-block: 1px solid var(--line);
}

.creator-head {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 50px;
}

.creator-identity {
    display: flex;
    align-items: center;
    gap: 20px;
}

.creator-avatar {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center 30%;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: var(--shadow-md);
}

.creator-head h2 {
    margin: 4px 0 0;
    font-size: 30px;
}

.creator-identity p,
.creator-head__copy p {
    margin: 2px 0 0;
    color: var(--muted);
}

.creator-head__copy {
    display: flex;
    align-items: center;
    gap: 24px;
}

.creator-head__copy p {
    flex: 1;
    font-size: 16px;
}

.bestseller-section {
    background: #f1f3f8;
}

.curated-layout--reverse {
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.7fr);
}

.curated-intro--light {
    background: #fff;
}

.seller-cta {
    background: var(--warm);
}

.seller-cta__inner {
    min-height: 430px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 54px;
}

.seller-cta h2 {
    max-width: 620px;
    margin-top: 12px;
    font-size: 48px;
}

.seller-cta p {
    max-width: 650px;
    color: #68635f;
    font-size: 18px;
}

.seller-cta__actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.seller-cta img {
    width: 100%;
    max-height: 390px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.site-footer {
    padding: 56px 0 24px;
    background: #181818;
    color: #d8d8d8;
}

.site-footer__top {
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #323232;
}

.brand--footer .brand__logo {
    width: 186px;
    height: 39px;
}

.footer-metrics {
    display: flex;
    gap: 38px;
    color: #8f9195;
    font-size: 12px;
}

.footer-metrics strong {
    display: block;
    color: #fff;
    font-size: 19px;
}

.footer-grid {
    padding: 42px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-grid h2 {
    margin: 0 0 15px;
    color: #85878a;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    margin: 10px 0;
    color: #efefef;
    font-size: 14px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: #ff7479;
}

.footer-grid p {
    margin: 0 0 14px;
    color: #a7a9ad;
    font-size: 14px;
}

.footer-form {
    height: 48px;
    display: grid;
    grid-template-columns: 1fr 48px;
    border: 1px solid #444;
    border-radius: 4px;
    overflow: hidden;
}

.footer-form input {
    min-width: 0;
    padding: 0 13px;
    border: 0;
    outline: 0;
    background: #242424;
    color: #fff;
}

.footer-form button {
    border: 0;
    background: var(--red);
    color: #fff;
    cursor: pointer;
}

.site-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid #323232;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    color: #8f9195;
    font-size: 12px;
}

.site-footer__bottom nav,
.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2c2c2c;
    color: #c9c9c9;
}

.toast {
    position: fixed;
    z-index: 2200;
    right: 24px;
    bottom: 24px;
    max-width: min(360px, calc(100vw - 32px));
    padding: 14px 18px;
    border-radius: 5px;
    background: #111;
    color: #fff;
    box-shadow: var(--shadow-md);
    font-size: 14px;
}

.preview-modal {
    width: min(920px, calc(100% - 40px));
    padding: 0;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    color: var(--text);
    box-shadow: 0 24px 70px rgba(0,0,0,.3);
}

.preview-modal::backdrop {
    background: rgba(10, 10, 12, .72);
    backdrop-filter: blur(4px);
}

.preview-modal__close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(15,15,15,.86);
    color: #fff;
    cursor: pointer;
}

.preview-modal__image {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.preview-modal__body {
    padding: 28px 30px 32px;
}

.preview-modal__body h2 {
    margin: 7px 0 6px;
    color: var(--ink);
    font-size: 30px;
}

.preview-modal__description {
    margin: 0 0 20px;
    color: var(--muted);
}

.preview-modal__body > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.preview-modal__price {
    color: var(--ink);
    font-size: 27px;
}

.simple-page {
    min-height: 65vh;
    display: grid;
    place-items: center;
    background: var(--canvas);
}

.simple-page__inner {
    padding: 80px 0;
    text-align: center;
}

.simple-page h1 {
    margin: 10px 0;
    color: var(--ink);
    font-size: 52px;
}

.simple-page p {
    margin: 0 0 22px;
    color: var(--muted);
}

/* Trust, policy and support pages */
.policy-page,
.contact-page {
    background: #f5f6f9;
}

.policy-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 25%, rgba(227, 38, 46, .28), transparent 25%),
        linear-gradient(118deg, #111 0%, #1d1d1f 72%, #2d1114 100%);
    color: #fff;
}

.policy-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(90deg, #000, transparent 85%);
    pointer-events: none;
}

.policy-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 360px;
    padding-block: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.policy-hero__inner > div {
    max-width: 790px;
}

.policy-hero .eyebrow {
    color: #ff7b81;
}

.policy-hero h1 {
    margin: 14px 0 15px;
    max-width: 820px;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: .99;
    letter-spacing: -.055em;
}

.policy-hero p {
    max-width: 720px;
    margin: 0;
    color: #c7c8cc;
    font-size: 18px;
    line-height: 1.65;
}

.policy-hero__inner > img {
    width: min(245px, 22vw);
    flex: 0 0 auto;
    opacity: .92;
    filter: drop-shadow(0 24px 34px rgba(0,0,0,.35));
    transform: rotate(4deg);
}

.policy-effective {
    display: inline-flex;
    margin-top: 24px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 99px;
    background: rgba(255,255,255,.06);
    color: #e4e4e6;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.policy-layout {
    padding-block: 62px 92px;
    display: grid;
    grid-template-columns: 230px minmax(0, 860px);
    justify-content: center;
    gap: 68px;
}

.policy-nav {
    position: sticky;
    top: 24px;
    align-self: start;
    padding: 20px 0;
    border-top: 3px solid var(--red);
}

.policy-nav > strong {
    display: block;
    margin-bottom: 11px;
    color: var(--ink);
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.policy-nav a {
    display: block;
    padding: 7px 0;
    color: #686c74;
    font-size: 14px;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
    color: var(--red-dark);
}

.policy-nav .policy-nav__contact {
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 5px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    font-weight: 750;
}

.policy-content {
    min-width: 0;
}

.policy-summary {
    margin-bottom: 22px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #f1c9cc;
    border-radius: 8px;
    background: var(--red-soft);
}

.policy-summary > i {
    color: var(--red);
    font-size: 25px;
}

.policy-summary strong,
.policy-summary p {
    display: block;
}

.policy-summary strong {
    color: var(--ink);
}

.policy-summary p {
    margin: 3px 0 0;
    color: #5e5f64;
    font-size: 14px;
}

.policy-section,
.policy-resources {
    margin-bottom: 18px;
    padding: 36px 40px;
    scroll-margin-top: 30px;
    border: 1px solid #e2e4e9;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(20,22,28,.035);
}

.policy-section h2,
.policy-resources h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 26px;
    letter-spacing: -.025em;
}

.policy-section p,
.policy-resources p {
    margin: 12px 0;
    color: #555961;
    line-height: 1.75;
}

.policy-section ul {
    margin: 14px 0 18px;
    padding-left: 21px;
}

.policy-section li {
    margin: 9px 0;
    padding-left: 4px;
    color: #555961;
    line-height: 1.65;
}

.policy-section li::marker {
    color: var(--red);
}

.policy-notice {
    margin: 20px 0 6px;
    padding: 18px 20px;
    border-left: 4px solid var(--red);
    border-radius: 0 5px 5px 0;
    background: #f6f6f8;
}

.policy-notice strong {
    color: var(--ink);
}

.policy-notice p {
    margin: 5px 0 0;
    font-size: 14px;
}

.policy-table-wrap {
    max-width: 100%;
    margin: 20px 0 8px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.policy-table th,
.policy-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.policy-table th {
    background: #f2f3f6;
    color: var(--ink);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.policy-table tr:last-child td {
    border-bottom: 0;
}

.policy-resources a {
    display: block;
    margin-top: 10px;
    color: var(--red-dark);
    font-weight: 700;
}

.policy-contact-cta {
    margin-top: 28px;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
}

.policy-contact-cta span {
    color: #ff7479;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.policy-contact-cta h2 {
    margin: 5px 0 4px;
    font-size: 27px;
}

.policy-contact-cta p {
    margin: 0;
    color: #aeb0b5;
    font-size: 14px;
}

/* Contact */
.contact-layout {
    padding-block: 64px 92px;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 48px;
    align-items: start;
}

.contact-details,
.contact-form-card {
    border: 1px solid #e1e3e8;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(20,22,28,.055);
}

.contact-details {
    padding: 34px;
}

.contact-logo {
    width: 215px;
    margin-bottom: 23px;
}

.contact-details > p {
    margin: 0 0 27px;
    color: #666a72;
}

.contact-details dl,
.contact-details dd {
    margin: 0;
}

.contact-details dl > div {
    padding: 16px 0;
    border-top: 1px solid #eceef1;
}

.contact-details dt {
    color: #878a91;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.contact-details dd {
    margin-top: 4px;
    color: var(--ink);
    font-weight: 650;
}

.contact-details dd a {
    color: var(--red-dark);
}

.contact-security {
    margin-top: 20px;
    padding: 16px;
    display: flex;
    gap: 12px;
    border-radius: 6px;
    background: #f4f5f7;
}

.contact-security i {
    color: var(--red);
    font-size: 20px;
}

.contact-security p {
    margin: 0;
    color: #666a72;
    font-size: 13px;
}

.contact-form-card {
    padding: 42px 44px 46px;
}

.contact-form-card__head > span {
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form-card__head h2 {
    margin: 7px 0 5px;
    color: var(--ink);
    font-size: 34px;
    letter-spacing: -.035em;
}

.contact-form-card__head p {
    margin: 0 0 28px;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #cfd2d9;
    border-radius: 5px;
    background: #fff;
    color: var(--ink);
    outline: 0;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.field input,
.field select {
    min-height: 48px;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227,38,46,.11);
}

.field-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #888c93;
    font-size: 11px;
}

.field-error {
    color: #b11118;
    font-size: 12px;
    font-weight: 650;
}

.form-alert,
.contact-success {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 6px;
}

.form-alert {
    border: 1px solid #edb8bb;
    background: var(--red-soft);
    color: #95131a;
}

.contact-success {
    display: flex;
    gap: 14px;
    border: 1px solid #aad8be;
    background: #eefaf3;
    color: #175d35;
}

.contact-success i {
    font-size: 23px;
}

.contact-success h2,
.contact-success p {
    margin: 0;
}

.contact-success h2 {
    font-size: 18px;
}

.contact-success p {
    margin-top: 3px;
    font-size: 14px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #62666e;
    font-size: 13px;
    cursor: pointer;
}

.form-consent input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--red);
}

.form-consent a {
    color: var(--red-dark);
    text-decoration: underline;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
}

/* Cookie controls */
.footer-cookie-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
}

.site-footer__bottom nav a:hover,
.site-footer__bottom nav a:focus-visible,
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
    color: #fff;
}

.cookie-banner {
    position: fixed;
    z-index: 2400;
    right: 22px;
    bottom: 22px;
    left: 22px;
    max-width: 1280px;
    margin-inline: auto;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 52px minmax(260px, 1fr) auto;
    align-items: center;
    gap: 17px;
    border: 1px solid #3b3b3d;
    border-radius: 9px;
    background: rgba(24,24,24,.98);
    color: #fff;
    box-shadow: 0 20px 55px rgba(0,0,0,.35);
    backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__mark {
    width: 52px;
    height: 52px;
    padding: 7px;
    border-radius: 8px;
    background: #0e0e0e;
}

.cookie-banner__copy strong {
    font-size: 16px;
}

.cookie-banner__copy p {
    margin: 3px 0 0;
    max-width: 660px;
    color: #bfc0c4;
    font-size: 13px;
}

.cookie-banner__copy a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cookie-banner .button {
    min-height: 42px;
    padding-inline: 16px;
    white-space: nowrap;
}

.button--ghost {
    border-color: transparent;
    background: transparent;
    color: #d7d8db;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: #5c5c60;
    background: #2c2c2e;
    color: #fff;
}

.cookie-banner .button--outline {
    border-color: #5a5a5e;
    background: transparent;
    color: #fff;
}

.cookie-banner .button--outline:hover,
.cookie-banner .button--outline:focus-visible {
    border-color: #8d8d92;
    background: #2c2c2e;
    color: #fff;
}

.cookie-modal {
    width: min(560px, calc(100% - 30px));
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.cookie-modal::backdrop {
    background: rgba(5,5,7,.72);
    backdrop-filter: blur(4px);
}

.cookie-modal__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f1f2f4;
    color: var(--ink);
    cursor: pointer;
}

.cookie-modal__logo {
    width: 174px;
    margin: 26px 28px 0;
}

.cookie-modal__head {
    padding: 28px 28px 22px;
}

.cookie-modal__head > span {
    color: var(--red-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cookie-modal__head h2 {
    margin: 6px 0;
    color: var(--ink);
    font-size: 32px;
    letter-spacing: -.035em;
}

.cookie-modal__head p {
    margin: 0;
    color: var(--muted);
}

.cookie-choice {
    min-height: 86px;
    margin-inline: 28px;
    padding-block: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-top: 1px solid var(--line);
}

.cookie-choice strong {
    color: var(--ink);
}

.cookie-choice p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.cookie-choice__required {
    flex: 0 0 auto;
    color: #666a72;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.switch {
    position: relative;
    width: 48px;
    height: 27px;
    flex: 0 0 48px;
}

.switch input {
    position: absolute;
    opacity: 0;
}

.switch > span {
    position: absolute;
    inset: 0;
    border-radius: 99px;
    background: #c6c9cf;
    cursor: pointer;
    transition: background .18s ease;
}

.switch > span::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.24);
    transition: transform .18s ease;
}

.switch input:checked + span {
    background: var(--red);
}

.switch input:checked + span::after {
    transform: translateX(21px);
}

.switch input:focus-visible + span {
    outline: 3px solid rgba(227,38,46,.35);
    outline-offset: 3px;
}

.cookie-modal__actions {
    padding: 20px 28px 26px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: #f5f6f8;
}

:focus-visible {
    outline: 3px solid rgba(227, 38, 46, .45);
    outline-offset: 3px;
}

@media (max-width: 1180px) {
    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .market-nav {
        gap: 22px;
    }

    .market-nav a:nth-last-child(-n+2) {
        display: none;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(450px, .9fr);
    }

    .hero__art img {
        width: 650px;
    }

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

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

    .cookie-banner {
        grid-template-columns: 48px minmax(260px, 1fr);
    }

    .cookie-banner__actions {
        grid-column: 2;
    }
}

@media (max-width: 900px) {
    .promo-strip__inner {
        justify-content: space-between;
    }

    .promo-strip__inner > span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .utility-nav a {
        display: none;
    }

    .market-nav {
        gap: 20px;
        overflow-x: auto;
        scrollbar-width: none;
    }

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

    .hero__content {
        padding-bottom: 15px;
    }

    .hero__art {
        min-height: 390px;
    }

    .hero__art img {
        width: min(820px, 110vw);
        margin-left: 0;
    }

    .hero__proof {
        right: 12%;
        bottom: 28px;
    }

    .membership-banner__inner {
        grid-template-columns: 1fr;
    }

    .membership-banner__copy {
        padding: 50px 42px 230px;
    }

    .membership-banner img {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 55%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 32%);
    }

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

    .curated-layout,
    .curated-layout--reverse {
        grid-template-columns: 1fr;
    }

    .curated-intro {
        position: static;
        min-height: auto;
    }

    .creator-head,
    .seller-cta__inner {
        grid-template-columns: 1fr;
    }

    .creator-head__copy {
        align-items: flex-start;
    }

    .seller-cta__inner {
        gap: 30px;
    }

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

    .policy-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 36px;
    }

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

    .contact-details {
        display: grid;
        grid-template-columns: minmax(240px, .8fr) minmax(300px, 1.2fr);
        gap: 10px 40px;
    }

    .contact-details dl,
    .contact-security {
        grid-column: 2;
    }

    .contact-details dl {
        grid-row: 1 / span 2;
    }
}

@media (max-width: 680px) {
    .container {
        width: calc(100% - 30px);
    }

    .promo-strip {
        min-height: 44px;
    }

    .promo-strip__inner {
        width: calc(100% - 24px);
        min-height: 44px;
        justify-content: center;
        gap: 8px;
        font-size: 12px;
        text-align: center;
    }

    .promo-strip__inner > span {
        white-space: normal;
        line-height: 1.2;
    }

    .promo-strip__inner strong,
    .promo-strip__inner a .bi {
        display: none;
    }

    .promo-strip a {
        flex: 0 0 auto;
        padding: 0;
        background: transparent;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .site-header__utility,
    .category-nav,
    .market-nav {
        display: none;
    }

    .site-header__market {
        border-top: 0;
    }

    .market-row {
        width: 100%;
        min-height: 54px;
        padding-inline: 10px;
        justify-content: space-between;
    }

    .mobile-brand,
    .mobile-actions,
    .mobile-icon-button {
        display: inline-flex;
    }

    .mobile-brand {
        align-items: center;
    }

    .mobile-brand .brand__logo {
        width: 132px;
        height: 28px;
    }

    .mobile-actions {
        align-items: center;
        gap: 6px;
    }

    .mobile-icon-button {
        position: relative;
        width: 37px;
        height: 37px;
        padding: 0;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 4px;
        background: #292929;
        color: #fff;
        cursor: pointer;
    }

    .mobile-icon-button > .bi {
        font-size: 19px;
    }

    .mobile-icon-button .cart-count {
        position: absolute;
        top: -5px;
        right: -4px;
    }

    .account-menu {
        position: fixed;
        top: 103px;
        right: 12px;
        width: min(310px, calc(100vw - 24px));
    }

    .mobile-drawer:not([hidden]) {
        position: fixed;
        inset: 44px 0 0;
        z-index: 1900;
        display: grid;
        grid-template-columns: min(84vw, 330px) 1fr;
    }

    .mobile-drawer__panel {
        position: relative;
        z-index: 2;
        height: 100%;
        overflow-y: auto;
        background: #242424;
        color: #fff;
        box-shadow: 14px 0 35px rgba(0,0,0,.25);
    }

    .mobile-drawer__head {
        height: 58px;
        padding: 0 14px 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #171717;
        font-weight: 800;
    }

    .drawer-search {
        height: 72px;
        padding: 13px 14px;
        display: grid;
        grid-template-columns: 1fr 42px;
        background: #2c2c2c;
    }

    .drawer-search input {
        min-width: 0;
        padding: 0 12px;
        border: 0;
        border-radius: 4px 0 0 4px;
        outline: 0;
    }

    .drawer-search button {
        border: 0;
        border-radius: 0 4px 4px 0;
        background: #fff;
        color: #555;
    }

    .mobile-drawer nav a {
        min-height: 54px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #333;
        color: #eee;
        font-size: 15px;
    }

    .mobile-drawer nav a span:last-child {
        color: #8d8f93;
        font-size: 12px;
    }

    .mobile-drawer__backdrop {
        z-index: 1;
        border: 0;
        background: rgba(0,0,0,.62);
    }

    .hero,
    .hero__grid {
        min-height: 0;
    }

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

    .hero__content,
    .hero__art {
        min-width: 0;
    }

    .hero__content {
        padding: 32px 10px 12px;
        text-align: left;
    }

    .hero h1 {
        margin: 14px 0 11px;
        font-size: 32px;
        line-height: 1.08;
        letter-spacing: -.04em;
    }

    .hero__content > p {
        margin-bottom: 19px;
        font-size: 16px;
        line-height: 1.45;
    }

    .hero-search {
        height: 66px;
        padding: 8px 8px 8px 15px;
        gap: 8px;
    }

    .hero-search button {
        width: 92px;
        height: 50px;
        padding: 0 12px;
    }

    .hero-search input {
        font-size: 14px;
    }

    .hero__trends {
        display: none;
    }

    .hero__art {
        min-height: 225px;
    }

    .hero__art::before {
        width: 235px;
        height: 235px;
    }

    .hero__art img {
        width: 365px;
        max-width: none;
        margin-left: -10px;
    }

    .hero__proof {
        right: 18px;
        bottom: 12px;
        padding: 9px 11px;
        font-size: 11px;
    }

    .hero__proof strong {
        font-size: 15px;
    }

    .search-results {
        padding: 46px 0;
    }

    .section-heading,
    .section-heading--compact {
        margin-bottom: 24px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .section-heading--center {
        align-items: center;
    }

    .section-heading h2,
    .curated-intro h2,
    .seller-cta h2 {
        font-size: 34px;
    }

    .section-heading p,
    .seller-cta p {
        font-size: 16px;
    }

    .membership-banner {
        padding: 14px 0 24px;
    }

    .membership-banner__inner {
        min-height: 610px;
        width: calc(100% - 20px);
        border-radius: 12px;
    }

    .membership-banner__copy {
        padding: 38px 27px 295px;
    }

    .membership-banner h2 {
        font-size: 37px;
    }

    .membership-banner p {
        font-size: 15px;
    }

    .membership-banner__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .membership-banner img {
        height: 55%;
        width: 135%;
        right: -28%;
        object-position: 68% center;
    }

    .category-section,
    .new-section,
    .creator-section,
    .bestseller-section,
    .seller-cta,
    .curated-section {
        padding: 58px 0;
    }

    .category-grid,
    .product-grid--three,
    .product-grid--featured {
        grid-template-columns: 1fr;
    }

    .category-grid {
        gap: 16px;
    }

    .category-card {
        min-height: 356px;
    }

    .category-card__copy {
        padding: 24px 23px 12px;
    }

    .category-card img {
        height: 190px;
    }

    .curated-intro {
        min-height: 360px;
        padding: 32px 28px;
        text-align: center;
        align-items: center;
    }

    .product-grid--four {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(82vw, 310px);
        grid-template-columns: none;
        gap: 14px;
        margin-inline: -15px;
        padding: 4px 15px 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scrollbar-color: #aeb3bb transparent;
    }

    .product-grid--four > *,
    .product-grid--four .filter-item {
        scroll-snap-align: start;
    }

    .product-card__media-actions {
        opacity: 1;
        transform: none;
    }

    .product-card__body {
        padding: 15px 15px 14px;
    }

    .product-card__description {
        min-height: 0;
        -webkit-line-clamp: 1;
    }

    .trust-strip {
        padding: 24px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust-grid article {
        padding: 17px;
    }

    .filter-pills {
        margin-inline: -15px;
        padding-inline: 15px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .filter-pills button {
        flex: 0 0 auto;
    }

    .creator-head {
        gap: 24px;
    }

    .creator-identity {
        align-items: flex-start;
        gap: 14px;
    }

    .creator-avatar {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
        font-size: 25px;
    }

    .creator-head__copy {
        flex-direction: column;
    }

    .seller-cta__inner {
        min-height: 0;
    }

    .seller-cta__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .seller-cta img {
        min-height: 220px;
    }

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

    .site-footer__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-metrics {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .site-footer__bottom nav {
        flex-wrap: wrap;
    }

    .policy-hero__inner {
        min-height: 315px;
        padding-block: 54px;
    }

    .policy-hero h1 {
        font-size: 42px;
    }

    .policy-hero p {
        font-size: 16px;
    }

    .policy-hero__inner > img {
        position: absolute;
        right: -35px;
        bottom: -35px;
        width: 180px;
        opacity: .26;
    }

    .policy-layout {
        padding-block: 32px 60px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .policy-nav {
        position: static;
        padding: 14px 0 4px;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        border-top-width: 2px;
        scrollbar-width: none;
    }

    .policy-nav > strong {
        display: none;
    }

    .policy-nav a,
    .policy-nav .policy-nav__contact {
        flex: 0 0 auto;
        margin: 0;
        padding: 8px 12px;
        border: 1px solid #dedfe4;
        border-radius: 99px;
        background: #fff;
        box-shadow: none;
        color: #5e626a;
        font-size: 12px;
    }

    .policy-section,
    .policy-resources {
        padding: 27px 23px;
    }

    .policy-section h2,
    .policy-resources h2 {
        font-size: 23px;
    }

    .policy-contact-cta {
        padding: 28px 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-layout {
        padding-block: 34px 60px;
        gap: 20px;
    }

    .contact-details {
        padding: 25px;
        display: block;
    }

    .contact-form-card {
        padding: 29px 23px 32px;
    }

    .contact-form-card__head h2 {
        font-size: 29px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 16px;
        grid-template-columns: 42px 1fr;
        gap: 11px;
    }

    .cookie-banner__mark {
        width: 42px;
        height: 42px;
        padding: 5px;
    }

    .cookie-banner__actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-banner__actions .button--ghost {
        grid-column: 1 / -1;
        order: 3;
    }

    .cookie-banner .button {
        width: 100%;
        min-height: 44px;
        padding-inline: 9px;
        font-size: 12px;
    }

    .cookie-modal__logo {
        width: 150px;
        margin: 22px 20px 0;
    }

    .cookie-modal__head,
    .cookie-modal__actions {
        padding-inline: 20px;
    }

    .cookie-modal__head {
        padding-top: 23px;
    }

    .cookie-modal__head h2 {
        font-size: 28px;
    }

    .cookie-choice {
        margin-inline: 20px;
    }

    .cookie-modal__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .preview-modal {
        width: calc(100% - 24px);
    }

    .preview-modal__image {
        aspect-ratio: 16 / 10;
    }

    .preview-modal__body {
        padding: 23px 20px 25px;
    }

    .preview-modal__body > div {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
