:root {
    --bg: #eef3f1;
    --surface: #ffffff;
    --surface-soft: #f7f9f8;
    --text: #3f4247;
    --ink: #3f4247;
    --muted: #747b83;
    --line: #dde5e2;
    --primary: #18aaa0;
    --primary-dark: #42908b;
    --primary-soft: #e4f4f2;
    --accent: #c7d4d0;
    --info-soft: #eef7f8;
    --radius: 4px;
    --radius-sm: 3px;
    --control-radius: 6px;
    --control-radius-sm: 4px;
    --control-height: 48px;
    --control-padding-x: 16px;
    --shadow: 0 20px 54px rgba(39, 52, 58, 0.08);
    --container: 1440px;
    --container-wide: 1840px;
    --wn-header-container: var(--container-wide);
    --font-head: "Space Grotesk", sans-serif;
    --font-body: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(238, 243, 241, 0.96) 38%, #ffffff 100%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.container-wide {
    width: min(var(--container-wide), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    margin: 54px 0;
}

.hero {
    padding: 44px 0 28px;
    border-bottom: 1px solid rgba(221, 229, 226, 0.82);
    background:
        linear-gradient(135deg, rgba(15, 176, 160, 0.08), rgba(255, 255, 255, 0.88)),
        #f7f9f8;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 34px;
    align-items: center;
}

.marketplace-hero-copy {
    max-width: 880px;
}

.marketplace-hero-search {
    max-width: 920px;
    display: flex;
    align-items: center;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(39, 52, 58, 0.10);
}

.marketplace-hero-search input {
    width: 100%;
    height: 58px;
    border: 0;
    outline: 0;
    padding: 0 18px;
    background: transparent;
}

.marketplace-hero-search button {
    height: 58px;
    padding: 0 26px;
    border: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.hero-featured {
    min-height: 420px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    transition: 0.18s ease;
}

.hero-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 80px rgba(39, 52, 58, 0.12);
}

.hero-featured-kicker {
    width: fit-content;
    padding: 8px 11px;
    border-radius: var(--control-radius-sm);
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.hero-featured-media {
    min-height: 290px;
    border-radius: var(--radius-sm);
    background:
        linear-gradient(135deg, rgba(15, 176, 160, 0.08), rgba(255, 255, 255, 0.88)),
        #f7f9f8;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 20px;
}

.hero-featured-media img {
    width: 100%;
    height: 100%;
    max-height: 330px;
    object-fit: contain;
}

.hero-featured-media span {
    color: var(--primary-dark);
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
    text-align: center;
}

.hero-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hero-featured-footer strong {
    font-size: 17px;
    line-height: 1.25;
}

.hero-featured-footer span {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: var(--control-radius-sm);
    background: var(--text);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.grid {
    display: grid;
    gap: 24px;
}

.market-grid {
    gap: 16px;
}

.market-card {
    border-radius: var(--radius-sm);
    box-shadow: 0 14px 34px rgba(39, 52, 58, 0.07);
}

.market-card:hover {
    border-color: rgba(15, 176, 160, 0.32);
    transform: translateY(-2px);
}

.marketplace-band {
    padding: 22px 0;
    border-block: 1px solid rgba(221, 229, 226, 0.80);
    background: rgba(255, 255, 255, 0.48);
}

.marketplace-filter {
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(39, 52, 58, 0.06);
}

.marketplace-filter form {
    display: grid;
    grid-template-columns: minmax(460px, 2fr) repeat(3, minmax(170px, 1fr)) auto auto;
    gap: 10px;
    align-items: center;
}

.marketplace-search-field {
    position: relative;
    display: block;
}

.marketplace-search-field svg {
    position: absolute;
    left: 17px;
    top: 50%;
    z-index: 1;
    width: 19px;
    height: 19px;
    transform: translateY(-50%);
    fill: none;
    stroke: var(--muted);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.marketplace-search-field .field {
    padding-left: 48px;
}

.marketplace-filter-free form {
    grid-template-columns: minmax(460px, 2fr) repeat(2, minmax(180px, 1fr)) auto auto;
}

.marketplace-filter-collection form {
    grid-template-columns: minmax(460px, 2fr) minmax(180px, 1fr) auto auto;
}

.marketplace-page-hero,
.category-hero-section {
    margin: 22px 0 18px;
}

.marketplace-page-hero .stack,
.category-hero-section .stack {
    gap: 10px;
}

.marketplace-page-hero .product-breadcrumbs,
.category-hero-section .product-breadcrumbs {
    margin-bottom: 8px;
}

.marketplace-page-filter-band,
.category-marketplace-band {
    padding: 14px 0;
}

.marketplace-page-filter-band .marketplace-filter,
.category-marketplace-band .marketplace-filter {
    padding: 14px;
}

.marketplace-results-section,
.category-results-section {
    margin: 18px 0 54px;
}

.marketplace-results-section .section-head,
.category-results-section .section-head {
    margin-bottom: 12px;
}

.category-results-count {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.marketplace-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.marketplace-filter-chips a {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(24, 170, 160, 0.24);
    border-radius: var(--control-radius);
    background: rgba(228, 244, 242, 0.72);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
}

.marketplace-filter-chips a:hover {
    border-color: rgba(24, 170, 160, 0.44);
    background: #fff;
}

.marketplace-filter-chips span[aria-hidden="true"] {
    font-size: 18px;
    line-height: 1;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.narrow {
    max-width: 820px;
}

.stack {
    display: grid;
    gap: 16px;
}

.cluster {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-contact-reply-actions {
    margin-bottom: 18px;
}

.between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.section-head {
    margin-bottom: 24px;
}

.asset-results-tools {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 14px;
    min-width: min(100%, 360px);
}

.asset-results-tools .small {
    margin: 0 0 11px;
    white-space: nowrap;
}

.asset-sort-form label {
    display: grid;
    gap: 6px;
}

.asset-sort-form span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.asset-sort-form .field {
    min-width: 220px;
}

.asset-sort-form .marketplace-sort-label,
.asset-sort-form .category-sort-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.asset-sort-form .marketplace-sort-label span,
.asset-sort-form .category-sort-label span {
    white-space: nowrap;
}

.eyebrow {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.h1,
.h2,
.h3 {
    font-family: var(--font-head);
    letter-spacing: -0.055em;
    margin: 0;
}

.h1 {
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 0.98;
}

.h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
}

.h3 {
    font-size: 22px;
    line-height: 1.08;
}

.lead {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
    margin: 0;
    max-width: 720px;
}

.text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

.small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

/* Public marketplace header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(210, 222, 218, 0.84);
    background: rgba(250, 252, 251, 0.96);
    backdrop-filter: blur(22px);
    box-shadow: 0 8px 22px rgba(40, 49, 53, 0.035);
}

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

.site-nav-main {
    min-height: 80px;
    display: grid;
    grid-template-columns: auto minmax(420px, 780px) auto;
    align-items: center;
    gap: 24px;
}

.site-nav-secondary {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(221, 229, 226, 0.72);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    min-width: max-content;
    color: #34383d;
    outline-offset: 6px;
}

.brand small {
    display: block;
    margin-top: 1px;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: block;
}

.site-header .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

.site-header .brand-logo-header {
    width: 164px;
    height: auto;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4c555c;
    font-size: 14px;
    font-weight: 700;
    overflow-x: auto;
    scrollbar-width: none;
}

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

.nav-links a {
    flex: 0 0 auto;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #505a60;
    outline-offset: 3px;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary-dark);
    box-shadow: 0 8px 22px rgba(39, 52, 58, 0.055);
}

.header-search {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(198, 213, 208, 0.92);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(39, 52, 58, 0.075);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.header-search:focus-within {
    border-color: rgba(24, 170, 160, 0.62);
    box-shadow: 0 16px 34px rgba(39, 52, 58, 0.08), 0 0 0 4px rgba(24, 170, 160, 0.10);
}

.header-search-icon {
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding-left: 17px;
    color: #7a858a;
}

.header-search input {
    width: 100%;
    height: 100%;
    padding: 0 16px 0 10px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
}

.header-search input::placeholder {
    color: #858f94;
}

.header-search button {
    height: 100%;
    min-width: 112px;
    padding: 0 24px;
    border: 0;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    transition: background 0.18s ease;
}

.header-search button:hover {
    background: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.header-action-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    border-radius: var(--control-radius);
    border: 1px solid rgba(204, 217, 213, 0.95);
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    outline-offset: 3px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.header-icon-link {
    position: relative;
    width: 42px;
    padding: 0;
}

.header-icon-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-icon-link[href*="favorites"] svg {
    fill: currentColor;
    stroke-width: 0;
}

.header-action-link:hover,
.header-action-link:focus-visible {
    border-color: rgba(24, 170, 160, 0.38);
    background: #fff;
    box-shadow: 0 9px 20px rgba(39, 52, 58, 0.06);
}

.header-account-link {
    border-color: transparent;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 12px rgba(24, 170, 160, 0.10);
}

.header-account-link:hover,
.header-account-link:focus-visible {
    background: var(--primary-dark);
    box-shadow: 0 6px 14px rgba(66, 144, 139, 0.12);
}

.header-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 12px;
    line-height: 1;
    border: 1px solid #fff;
}

.card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card-pad {
    padding: 26px;
}

.card-soft {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.btn {
    min-height: var(--control-height);
    padding: 0 20px;
    border-radius: var(--control-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: none;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 14px rgba(15, 176, 160, 0.12);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-light {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
    box-shadow: 0 10px 24px rgba(39, 52, 58, 0.05);
}

.btn-danger {
    background: #b91c1c;
    color: #fff;
    box-shadow: 0 16px 30px rgba(185, 28, 28, 0.16);
}

.btn-danger:hover {
    background: #991b1b;
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.btn-full {
    width: 100%;
}

.field {
    width: 100%;
    min-height: var(--control-height);
    padding: 0 var(--control-padding-x);
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    background: #fff;
    color: var(--text);
    outline: none;
    box-shadow: 0 8px 20px rgba(39, 52, 58, 0.035);
}

select.field,
.home-search select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 46px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5.25 7 8.75l3.5-3.5' fill='none' stroke='%233F4247' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px 14px;
}

select.field::-ms-expand,
.home-search select::-ms-expand {
    display: none;
}

.field:focus {
    border-color: rgba(15, 176, 160, 0.62);
    box-shadow: 0 0 0 4px rgba(15, 176, 160, 0.12);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.form-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex: 0 0 auto;
}

.field-area {
    min-height: 150px;
    padding: 16px;
    border-radius: var(--control-radius);
    resize: vertical;
}

.badge {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    width: fit-content;
}

.badge-dark {
    background: var(--text);
    color: #fff;
}

.badge-green {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.badge-blue {
    background: var(--info-soft);
    color: #16537e;
}

.pill {
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
}

.preview-card {
    padding: 18px;
}

.preview-box {
    min-height: 560px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(15, 122, 95, 0.08), transparent 36%),
        linear-gradient(180deg, #fffdf8, #f4efe4);
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
    padding: 28px;
}

.preview-box::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px dashed rgba(15, 122, 95, 0.20);
    border-radius: 12px;
    pointer-events: none;
}

.ratio-frame {
    width: min(100%, 560px);
    max-height: min(74vh, 590px);
    aspect-ratio: var(--asset-ratio, 4 / 5);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.ratio-square {
    --asset-ratio: 1 / 1;
}

.ratio-portrait {
    --asset-ratio: 4 / 5;
}

.ratio-poster {
    --asset-ratio: 2 / 3;
}

.ratio-landscape {
    --asset-ratio: 16 / 9;
    width: min(100%, 660px);
}

.ratio-vertical {
    --asset-ratio: 9 / 16;
    width: min(86%, 430px);
}

.asset-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mock-cloud {
    width: 100%;
    height: 100%;
    position: relative;
    transform: rotate(-1deg);
}

.mock-word {
    position: absolute;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--primary-dark);
    white-space: nowrap;
}

.mw-main {
    font-size: 54px;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text);
}

.mw-1 {
    font-size: 28px;
    top: 25%;
    left: 28%;
    transform: rotate(-9deg);
}

.mw-2 {
    font-size: 24px;
    top: 30%;
    right: 19%;
    transform: rotate(7deg);
    color: #2f6fbb;
}

.mw-3 {
    font-size: 19px;
    top: 58%;
    left: 18%;
    transform: rotate(8deg);
}

.mw-4 {
    font-size: 22px;
    top: 63%;
    right: 18%;
    transform: rotate(-7deg);
    color: #9a6422;
}

.mw-5 {
    font-size: 16px;
    top: 16%;
    left: 45%;
    color: var(--muted);
}

.mw-6 {
    font-size: 17px;
    bottom: 23%;
    left: 35%;
    transform: rotate(-4deg);
}

.mw-7 {
    font-size: 15px;
    bottom: 17%;
    right: 30%;
    color: var(--muted);
}

.asset-masonry {
    columns: 7 210px;
    column-gap: 16px;
}

.asset-card {
    display: block;
    break-inside: avoid;
    margin: 0 0 16px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(231, 223, 209, 0.78);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
    transition: 0.18s ease;
}

.asset-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.asset-card-media {
    position: relative;
    background:
        radial-gradient(circle at 55% 38%, rgba(242, 184, 75, 0.12), transparent 30%),
        linear-gradient(135deg, #fffdf8, #edf7f2);
}

.asset-card-media img {
    width: 100%;
    height: auto;
    display: block;
}

.asset-card-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    padding: 18px;
    color: var(--primary-dark);
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-align: center;
}

.asset-card-price {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.88);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.16);
}

.asset-card-body {
    display: grid;
    gap: 5px;
    padding: 9px 10px 11px;
}

.asset-card-title {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.28;
}

.asset-card-meta {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.visual-asset-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.visual-asset-masonry::after {
    content: "";
    flex-grow: 999;
    min-width: 220px;
}

.visual-asset-card {
    position: relative;
    flex: var(--asset-ratio, 1) 1 var(--asset-basis, 220px);
    aspect-ratio: var(--asset-ratio, 1);
    min-width: 170px;
    max-height: 310px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(39, 52, 58, 0.08);
}

.product-related-section .visual-asset-card {
    flex-basis: max(150px, calc(var(--asset-basis, 220px) * 0.86));
    min-width: 150px;
    max-height: 270px;
}

.visual-asset-media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(15, 176, 160, 0.08), rgba(255, 255, 255, 0.88)),
        #f7f9f8;
}

.visual-asset-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.visual-asset-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    padding: 20px;
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    font-family: var(--font-head);
    font-weight: 700;
    text-align: center;
}

.visual-save-form {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 8;
    margin: 0;
    pointer-events: auto;
}

.visual-save-button {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--control-radius-sm);
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    display: grid;
    place-items: center;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(39, 52, 58, 0.12);
    cursor: pointer;
    transition:
        transform 160ms ease,
        color 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.visual-save-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linejoin: round;
}

.visual-save-button:hover {
    transform: translateY(-1px);
    color: #d12f5a;
    background: #fff;
}

.visual-save-button.is-saved {
    color: #d12f5a;
    border-color: rgba(209, 47, 90, 0.26);
    background: rgba(255, 246, 249, 0.98);
}

.visual-save-button.is-saved svg {
    fill: currentColor;
    stroke: currentColor;
}

.visual-asset-price {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;
    padding: 7px 9px;
    border-radius: var(--control-radius-sm);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    font-size: 12px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(39, 52, 58, 0.12);
    opacity: 0;
    transition: opacity 0.16s ease;
}

.visual-asset-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 12px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(32, 35, 40, 0.66), rgba(32, 35, 40, 0.06) 45%, rgba(32, 35, 40, 0.70)),
        rgba(32, 35, 40, 0.06);
    opacity: 0;
    transform: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
    pointer-events: none;
}

.visual-asset-title {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 56px;
    max-width: calc(100% - 78px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.22;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.visual-asset-actions {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    pointer-events: auto;
}

.visual-asset-actions form {
    margin: 0;
}

.visual-asset-button {
    position: relative;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--control-radius-sm);
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(39, 52, 58, 0.12);
}

.visual-asset-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.visual-asset-cart-button svg {
    width: 21px;
    height: 21px;
}

.visual-asset-button::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 50%;
    bottom: calc(100% + 8px);
    z-index: 6;
    min-width: max-content;
    max-width: 150px;
    padding: 7px 9px;
    border-radius: var(--control-radius-sm);
    background: rgba(16, 18, 22, 0.96);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(50%, 4px);
    transition: opacity 0.14s ease, transform 0.14s ease;
    white-space: nowrap;
}

.visual-asset-button:hover::after,
.visual-asset-button:focus-visible::after {
    opacity: 1;
    transform: translate(50%, 0);
}

.visual-asset-button-primary {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.visual-asset-card:hover .visual-asset-overlay,
.visual-asset-card:focus-within .visual-asset-overlay,
.visual-asset-card:hover .visual-asset-price,
.visual-asset-card:focus-within .visual-asset-price {
    opacity: 1;
}

@media (hover: none) {
    .visual-asset-price {
        opacity: 1;
    }

    .visual-asset-overlay {
        background: none;
        opacity: 1;
        pointer-events: none;
    }

    .visual-asset-title,
    .visual-asset-actions {
        display: none;
    }

    .visual-save-form {
        pointer-events: auto;
    }
}

.home-section-action {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.asset-thumb {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    background:
        radial-gradient(circle at 55% 38%, rgba(242, 184, 75, 0.24), transparent 30%),
        linear-gradient(135deg, #fffdf8, #edf7f2);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-align: center;
    padding: 18px;
    overflow: hidden;
}

.asset-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.asset-thumb.ratio-square {
    aspect-ratio: 1 / 1;
}

.asset-thumb.ratio-portrait {
    aspect-ratio: 4 / 5;
}

.asset-thumb.ratio-poster {
    aspect-ratio: 2 / 3;
}

.asset-thumb.ratio-landscape {
    aspect-ratio: 16 / 9;
}

.asset-thumb.ratio-vertical {
    aspect-ratio: 9 / 16;
}

.asset-thumb-large {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    font-size: clamp(28px, 5vw, 58px);
}

.asset-title {
    font-size: 16px;
    margin: 14px 4px 7px;
    line-height: 1.25;
    font-weight: 700;
}

.asset-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    margin: 0 4px 2px;
}

.asset-meta strong {
    color: var(--text);
}

.detail-grid {
    align-items: center;
}

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

.meta-list div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.meta-list span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 5px;
}

.meta-list strong {
    font-size: 15px;
}

.home-container {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

.home-hero {
    padding: 64px 0 46px;
    border-bottom: 1px solid rgba(221, 229, 226, 0.82);
    background:
        linear-gradient(180deg, rgba(247, 249, 248, 0.98), rgba(238, 243, 241, 0.84)),
        #f7f9f8;
}

.home-hero-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 18px;
}

.home-hero-title {
    max-width: 980px;
    margin: 0;
    font-family: var(--font-head);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
}

.home-hero-copy {
    max-width: 760px;
    margin: 0;
    color: #5d666d;
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.55;
}

.home-search {
    width: min(100%, 920px);
    min-height: 64px;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(39, 52, 58, 0.12);
    border-radius: var(--control-radius);
    background: #fff;
    box-shadow: 0 26px 58px rgba(39, 52, 58, 0.12);
}

.home-search select,
.home-search input {
    width: 100%;
    min-height: 64px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.home-search select {
    padding: 0 46px 0 16px;
    border-right: 1px solid var(--line);
    font-weight: 700;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5.25 7 8.75l3.5-3.5' fill='none' stroke='%233F4247' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px 14px;
}

.home-search input {
    padding: 0 18px;
}

.home-search button {
    min-height: 64px;
    padding: 0 28px;
    border: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.home-search button:hover {
    background: var(--primary-dark);
}

.home-hero-actions,
.home-badge-row,
.home-chip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.home-badge-row span,
.home-chip-row a {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    background: rgba(255, 255, 255, 0.88);
    color: #4c555c;
    font-size: 13px;
    font-weight: 700;
}

.home-chip-row a {
    background: var(--surface-soft);
    color: var(--primary-dark);
}

.home-chip-row a:hover {
    border-color: rgba(15, 176, 160, 0.35);
    background: var(--primary-soft);
}

.home-free-note {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.home-section {
    margin: 118px 0;
}

.home-hero + .home-section {
    margin-top: 118px;
}

.home-section-head {
    margin-bottom: 22px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.home-section-head-centered {
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.home-type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(36px, 4.2vw, 72px);
}

.public-type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 28px);
}

.home-collection-card,
.home-info-card,
.home-category-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 12px 28px rgba(39, 52, 58, 0.035);
    transition:
        transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.home-type-card {
    display: grid;
    gap: 12px;
    text-align: center;
}

.public-type-card {
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(39, 52, 58, 0.045);
    transition:
        transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.home-type-card:hover,
.home-collection-card:hover,
.home-category-card:hover {
    transform: translateY(-1px);
}

.public-type-card:hover {
    border-color: rgba(24, 170, 160, 0.24);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 38px rgba(39, 52, 58, 0.065);
}

.home-type-card:hover .home-type-preview,
.home-collection-card:hover,
.home-category-card:hover {
    border-color: rgba(24, 170, 160, 0.22);
    box-shadow: 0 18px 38px rgba(39, 52, 58, 0.065);
}

.home-type-preview {
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 0;
    max-height: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(135deg, rgba(15, 176, 160, 0.08), rgba(255, 255, 255, 0.84)),
        #f7f9f8;
    box-shadow: 0 14px 32px rgba(39, 52, 58, 0.06);
}

.home-type-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-type-preview span {
    padding: 20px;
    color: var(--primary-dark);
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}

.home-type-card div:last-child {
    padding: 0 8px;
}

.home-type-card h2,
.home-type-card h3,
.home-account-cta h2 {
    margin: 0;
    font-family: var(--font-head);
    letter-spacing: 0;
}

.home-type-card h2,
.home-type-card h3 {
    font-size: 16px;
    line-height: 1.2;
}

.public-type-card h2 {
    color: var(--primary-dark);
    font-size: clamp(18px, 1.4vw, 22px);
    line-height: 1.1;
}

.home-type-card p,
.home-info-card p,
.home-account-cta p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.public-type-card p {
    max-width: 360px;
    margin: 8px auto 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.product-types-section {
    margin: 18px 0 54px;
}

.public-type-card-copy {
    display: grid;
    gap: 7px;
}

.public-type-count {
    width: fit-content;
    min-height: 28px;
    margin: 0 auto;
    padding: 0 10px;
    border-radius: var(--control-radius);
    background: rgba(228, 244, 242, 0.88);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.public-type-link {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.home-collection-grid,
.home-category-grid,
.home-info-grid {
    display: grid;
    gap: 14px;
}

.home-collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.home-collection-card {
    min-height: 0;
    position: relative;
    overflow: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-color: rgba(221, 229, 226, 0.72);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.54)),
        rgba(255, 255, 255, 0.50);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.82) inset,
        0 16px 38px rgba(39, 52, 58, 0.045);
}

.home-collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.34), transparent 34%),
        radial-gradient(circle at 92% 100%, rgba(24, 170, 160, 0.055), transparent 36%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.home-collection-card:hover {
    transform: translateY(-2px);
    border-color: rgba(24, 170, 160, 0.24);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64)),
        rgba(255, 255, 255, 0.58);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 20px 46px rgba(39, 52, 58, 0.075);
}

.home-collection-card:hover::before {
    opacity: 1;
}

.home-collection-card span,
.home-category-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.home-collection-card span {
    position: relative;
    z-index: 1;
}

.home-collection-card strong {
    display: block;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.14;
    position: relative;
    z-index: 1;
}

.home-collection-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.home-collection-copy span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-collection-copy .home-collection-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    overflow: visible;
    white-space: normal;
}

.home-collection-copy .home-collection-category,
.home-collection-copy .home-collection-type {
    width: fit-content;
    max-width: 100%;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-collection-copy .home-collection-category {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.home-collection-copy .home-collection-type {
    border: 1px solid rgba(24, 170, 160, 0.24);
    background: rgba(255, 255, 255, 0.72);
    color: #5e6870;
}

.home-collection-card .home-collection-link {
    align-items: center;
    align-self: flex-start;
    background: var(--primary);
    border: 1px solid rgba(24, 170, 160, 0.78);
    border-radius: var(--radius-sm);
    box-shadow:
        0 10px 22px rgba(24, 170, 160, 0.13),
        0 1px 0 rgba(255, 255, 255, 0.22) inset;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    line-height: 1.1;
    margin-top: auto;
    min-height: 40px;
    padding: 0 16px;
    position: relative;
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
    z-index: 1;
}

.home-collection-card:hover .home-collection-link {
    background: #3ba9a2;
    box-shadow:
        0 12px 24px rgba(24, 170, 160, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.24) inset;
    transform: translateY(-1px);
}

.home-collection-collage {
    flex: 0 0 auto;
    aspect-ratio: 1.9 / 1;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(92px, 0.78fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    position: relative;
    z-index: 1;
}

.home-collection-media {
    min-width: 0;
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.66);
    background:
        linear-gradient(135deg, rgba(24, 170, 160, 0.92), rgba(66, 144, 139, 0.84));
    box-shadow:
        0 10px 22px rgba(39, 52, 58, 0.075),
        0 1px 0 rgba(255, 255, 255, 0.30) inset;
    transition:
        transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 220ms ease;
}

.home-collection-media-large {
    grid-row: 1 / span 2;
}

.home-collection-media-small {
    min-height: 0;
}

.home-collection-card:hover .home-collection-media {
    transform: translateY(-1px);
    box-shadow:
        0 12px 24px rgba(39, 52, 58, 0.09),
        0 1px 0 rgba(255, 255, 255, 0.32) inset;
}

.home-collection-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-collection-media-small img {
    object-position: center bottom;
}

.home-collection-media em {
    display: -webkit-box;
    max-width: 100%;
    padding: 12px;
    color: #fff;
    font-family: var(--font-head);
    font-size: clamp(13px, 1.35vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: balance;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-why-band {
    padding: 88px 0 96px;
    background: transparent;
    border-block: 0;
}

.home-why-band .home-section-head {
    margin-bottom: 46px;
}

.home-info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(34px, 4vw, 72px);
}

.home-info-card {
    min-height: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 17px;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.home-info-card strong {
    display: block;
    max-width: 260px;
    margin: 8px auto 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.22;
}

.home-info-card p {
    max-width: 285px;
    font-size: 15px;
    line-height: 1.62;
}

.home-info-icon {
    --why-icon-size: clamp(40px, calc(34px + (var(--why-icon-scale, 62) * 0.9px)), 128px);
    width: var(--why-icon-size);
    height: var(--why-icon-size);
    display: grid;
    place-items: center;
    color: var(--primary);
}

.home-info-icon svg {
    width: var(--why-icon-size);
    height: var(--why-icon-size);
}

.home-info-icon img {
    width: var(--why-icon-size);
    height: var(--why-icon-size);
    object-fit: contain;
}

.home-info-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.home-info-card:hover .home-info-icon {
    color: var(--primary-dark);
}

.home-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

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

.home-category-card {
    --category-icon-size: clamp(38px, calc(34px + (var(--category-icon-scale, 62) * 0.36px)), 72px);
    min-height: 218px;
    padding: 20px;
    display: grid;
    grid-template-rows: var(--category-icon-size) minmax(0, 1fr) auto;
    align-items: start;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
    border-color: rgba(221, 229, 226, 0.68);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.66)),
        rgba(255, 255, 255, 0.64);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.82) inset,
        0 12px 30px rgba(39, 52, 58, 0.045);
}

.home-category-card:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
        rgba(255, 255, 255, 0.72);
}

.public-category-card {
    --category-icon-size: clamp(48px, calc(42px + (var(--category-icon-scale, 62) * 0.44px)), 86px);
    min-height: 258px;
    padding: 24px;
    gap: 18px;
}

.home-category-card strong {
    display: block;
    color: var(--ink);
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.15;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-category-icon {
    width: var(--category-icon-size);
    height: var(--category-icon-size);
    display: grid;
    place-items: center;
    color: var(--primary);
}

.home-category-icon svg,
.home-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-category-copy {
    min-height: 0;
    display: grid;
    gap: 9px;
    align-content: start;
    min-width: 0;
}

.home-category-copy small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.42;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-category-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.home-category-footer > span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
}

.home-faq-shell {
    max-width: 1140px;
    margin: 0 auto;
}

.home-faq-list {
    border-top: 1px solid rgba(46, 61, 56, 0.16);
}

.home-faq-list details {
    border-bottom: 1px solid rgba(46, 61, 56, 0.16);
}

.home-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    padding: 24px 0;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
}

.home-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.home-faq-list details[open] summary::after {
    content: "-";
}

.home-faq-list p {
    max-width: 920px;
    margin: -6px 0 0;
    padding: 0 64px 26px 0;
    color: var(--muted);
    line-height: 1.72;
}

.home-account-cta {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(24, 170, 160, 0.18);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(135deg, rgba(228, 244, 242, 0.88), rgba(255, 255, 255, 0.86)),
        #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.home-account-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px 12px;
}

.home-account-signin {
    flex-basis: 100%;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: right;
}

.home-account-signin span {
    color: var(--primary);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-account-signin:hover {
    color: var(--primary-dark);
}

.home-account-signin:hover span {
    color: var(--primary-dark);
}

.product-section {
    margin-top: 54px;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 36px;
    align-items: start;
}

.product-main {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.product-media {
    position: relative;
    height: min(74vh, 760px);
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at top left, rgba(15, 122, 95, 0.08), transparent 34%),
        #fffdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-preview-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-preview-open-button {
    position: absolute;
    top: var(--preview-fit-top, 0);
    left: var(--preview-fit-left, 0);
    z-index: 1;
    width: var(--preview-fit-width, 100%);
    height: var(--preview-fit-height, 100%);
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-preview-open-button:focus-visible {
    outline: 4px solid rgba(24, 170, 160, 0.18);
    outline-offset: -8px;
}

.product-preview-placeholder {
    width: min(100%, 640px);
    min-height: 420px;
    border-radius: var(--radius-sm);
    background:
        radial-gradient(circle at 55% 38%, rgba(242, 184, 75, 0.20), transparent 30%),
        linear-gradient(135deg, #fffdf8, #edf7f2);
    display: grid;
    place-items: center;
    padding: 28px;
    color: var(--primary-dark);
    font-family: var(--font-head);
    font-size: clamp(28px, 5vw, 62px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
    text-align: center;
}

.product-detail-block,
.purchase-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.product-detail-block {
    padding: 24px;
    display: grid;
    gap: 18px;
}

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

.product-info-grid div {
    min-height: 86px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.product-info-grid span,
.purchase-summary span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 7px;
}

.product-info-grid strong {
    font-size: 15px;
    line-height: 1.25;
}

.product-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.purchase-panel {
    position: sticky;
    top: 104px;
    padding: 28px;
    display: grid;
    gap: 16px;
    border-color: rgba(24, 170, 160, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.96));
    box-shadow: 0 24px 70px rgba(27, 47, 51, 0.12);
}

.product-title {
    margin: 0;
    font-family: var(--font-head);
    font-size: clamp(23px, 2vw, 30px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.product-description {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.purchase-summary {
    padding: 18px;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.purchase-summary strong {
    display: block;
    font-family: var(--font-head);
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 2px;
}

.product-keyword-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.product-keyword-chips::-webkit-scrollbar {
    display: none;
}

.product-keyword-chips .pill {
    flex: 0 0 auto;
}

.product-keyword-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(378px, 495px);
    gap: 32px;
    align-items: stretch;
}

.product-keyword-main {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.product-keyword-title {
    margin: 0;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-keyword-rail {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 8px;
}

.product-keyword-rail.has-prev {
    grid-template-columns: auto minmax(0, 1fr);
}

.product-keyword-rail.has-next {
    grid-template-columns: minmax(0, 1fr) auto;
}

.product-keyword-rail.has-prev.has-next {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.product-keyword-arrow {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    background: #fff;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.product-keyword-arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-keyword-arrow:hover,
.product-keyword-arrow:focus-visible {
    border-color: rgba(24, 170, 160, 0.32);
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.product-keyword-arrow.is-hidden {
    display: none;
    pointer-events: none;
}

.product-description-block {
    display: grid;
    gap: 14px;
    min-height: 96px;
    padding-top: 18px;
    border-top: 1px solid rgba(45, 58, 65, 0.08);
}

.product-description-block h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-description-block p {
    width: 100%;
    max-width: none;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.product-keyword-block .pill {
    border-radius: var(--control-radius);
}

.product-feature-slot {
    display: grid;
    gap: 12px;
    align-content: center;
    padding: 22px;
    border: 1px solid rgba(24, 170, 160, 0.18);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 247, 245, 0.52));
}

.product-feature-slot strong {
    color: var(--ink);
    font-family: var(--font-head);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.product-feature-slot p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.product-feature-slot .btn {
    justify-self: start;
}

@media (max-width: 980px) {
    .product-keyword-layout {
        grid-template-columns: 1fr;
    }
}

.product-v1-section {
    margin-top: 30px;
}

.product-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-breadcrumbs::-webkit-scrollbar {
    display: none;
}

.product-breadcrumbs a {
    color: var(--primary-dark);
    white-space: nowrap;
}

.product-breadcrumbs span {
    white-space: nowrap;
}

.product-v1-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(378px, 495px);
    gap: 32px;
    align-items: center;
}

.product-preview-shell {
    display: grid;
    gap: 10px;
}

.product-preview-actions {
    position: absolute;
    top: calc(var(--preview-fit-top, 0px) + 18px);
    left: calc(var(--preview-fit-left, 0px) + var(--preview-fit-width, 100%) - 110px);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.product-preview-actions .product-favorite-button,
.product-pinterest-share {
    width: 42px;
    height: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 58, 65, 0.10);
    border-radius: var(--control-radius);
    background: rgba(255, 255, 255, 0.96);
    color: #e60023;
    box-shadow: 0 12px 30px rgba(27, 47, 51, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.product-pinterest-share svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.product-pinterest-share:hover,
.product-pinterest-share:focus-visible {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(27, 47, 51, 0.16);
}

.product-media-zoomable {
    width: 100%;
    height: min(74vh, 760px);
    min-height: 520px;
    border: 1px solid var(--line);
    cursor: zoom-in;
}

.product-media-zoomable:focus-visible {
    outline: 4px solid rgba(24, 170, 160, 0.18);
    outline-offset: 4px;
}

.product-v1-panel {
    display: grid;
    gap: 20px;
    align-content: start;
}

.product-title-stack {
    display: grid;
    gap: 16px;
}

.product-identity-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.product-asset-code {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    border: 1px solid rgba(24, 170, 160, 0.2);
    border-radius: var(--control-radius);
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.product-asset-code span {
    color: var(--text);
    letter-spacing: 0;
}

.product-favorite-button {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border: 1px solid rgba(45, 58, 65, 0.14);
    border-radius: var(--control-radius);
    background: #fff;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    cursor: pointer;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(27, 47, 51, 0.05);
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.product-favorite-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linejoin: round;
}

.product-favorite-button:hover,
.product-favorite-button.is-saved {
    border-color: rgba(209, 47, 90, 0.26);
    background: rgba(255, 246, 249, 0.98);
    color: #d12f5a;
    transform: none;
    box-shadow: 0 10px 24px rgba(209, 47, 90, 0.12);
}

.product-favorite-button.is-saved svg {
    fill: currentColor;
    stroke: currentColor;
}

.product-price-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 6px;
    border-top: 1px solid rgba(45, 58, 65, 0.08);
}

.product-price-block span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-price-block strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.product-benefit-list {
    display: grid;
    gap: 5px;
    margin-bottom: 4px;
}

.product-benefit-list span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin: 0;
    color: #657078;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    text-align: right;
    text-transform: none;
    letter-spacing: 0;
    outline: 0;
}

.product-benefit-list span::before {
    content: "✓";
    flex: 0 0 auto;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.product-benefit-list span::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    z-index: 5;
    width: min(260px, 72vw);
    padding: 9px 10px;
    border: 1px solid rgba(45, 58, 65, 0.12);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
    box-shadow: 0 14px 32px rgba(27, 47, 51, 0.12);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.product-benefit-list span:hover::after,
.product-benefit-list span:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

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

.product-price-license div {
    border: 1px solid rgba(24, 170, 160, 0.22);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #fff, rgba(232, 247, 245, 0.68));
}

.product-price-license div {
    min-height: 94px;
    padding: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-price-license span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-price-license strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.25;
}

.product-price-license div:first-child strong {
    font-family: var(--font-head);
    font-size: 28px;
    letter-spacing: -0.04em;
}

.product-cta-stack {
    display: grid;
    gap: 11px;
    padding-top: 2px;
}

.product-cta-stack .btn {
    min-height: 50px;
}

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

.product-delivery-list {
    display: grid;
    border: 1px solid rgba(24, 170, 160, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(250, 252, 252, 0.92);
    overflow: hidden;
}

.product-delivery-row {
    min-height: 42px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.product-delivery-row + .product-delivery-row {
    border-top: 1px solid rgba(45, 58, 65, 0.08);
}

.product-delivery-row span:last-child {
    color: var(--muted);
    text-align: right;
}

.product-v1-content {
    margin-top: 28px;
}

.product-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

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

.product-meta-details {
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.product-meta-details summary {
    cursor: pointer;
    color: var(--primary-dark);
    font-weight: 900;
}

.product-meta-details .product-info-grid {
    margin-top: 14px;
}

.product-horizontal-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 270px);
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x proximity;
}

.asset-mini-card {
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: 0 14px 34px rgba(39, 52, 58, 0.07);
}

.asset-mini-media {
    height: 190px;
    display: grid;
    place-items: center;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(15, 176, 160, 0.08), rgba(255, 255, 255, 0.88)),
        #f7f9f8;
}

.asset-mini-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.asset-mini-media span {
    color: var(--primary-dark);
    font-family: var(--font-head);
    font-size: 22px;
    line-height: 1.05;
    text-align: center;
}

.asset-mini-body {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.asset-mini-title {
    color: var(--ink);
    font-weight: 900;
    line-height: 1.25;
}

.asset-mini-title:hover {
    color: var(--primary-dark);
}

.asset-mini-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.asset-mini-footer strong {
    color: var(--ink);
}

.asset-mini-button {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--control-radius-sm);
    background: #fff;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.asset-mini-button-primary {
    border-color: transparent;
    background: var(--primary);
    color: #fff;
}

.product-tag-groups {
    display: grid;
    gap: 18px;
}

.product-tag-groups section {
    display: grid;
    gap: 10px;
}

.product-tag-groups h3 {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-tag-link {
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.product-tag-link:hover,
.product-tag-link:focus-visible {
    border-color: rgba(24, 170, 160, 0.42);
    background: var(--primary-soft);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.product-dialog {
    width: min(100% - 32px, 1120px);
    max-height: min(90vh, 920px);
    padding: 54px 22px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 30px 90px rgba(39, 52, 58, 0.28);
}

.product-dialog::backdrop {
    background: rgba(18, 24, 28, 0.72);
}

.product-dialog img {
    width: 100%;
    max-height: calc(90vh - 90px);
    object-fit: contain;
}

.product-license-dialog {
    width: min(100% - 32px, 620px);
}

.product-dialog-close {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--control-radius-sm);
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font-weight: 900;
}

.product-preview-dialog {
    width: min(calc(100vw - 28px), var(--preview-dialog-width, 1280px));
    height: auto;
    max-height: none;
    padding: 0;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.18);
    background: #11151b;
    flex-direction: column;
}

.product-preview-dialog[open] {
    display: flex;
}

.product-preview-dialog-header {
    min-height: 58px;
    padding: 8px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(17, 21, 27, 0.96);
    color: #fff;
}

.product-preview-dialog-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.product-preview-dialog-brand img {
    width: 150px;
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
}

.product-preview-dialog-meta {
    display: grid;
    justify-items: end;
    gap: 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.2;
}

.product-preview-dialog-meta strong {
    color: #fff;
    font-size: 14px;
}

.product-preview-dialog-close {
    position: static;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-preview-dialog-close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.product-preview-dialog-stage {
    min-height: 0;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: #0e1116;
}

.product-preview-dialog-stage img {
    width: var(--preview-dialog-width, 100%);
    height: var(--preview-dialog-image-height, calc(100dvh - 86px));
    max-width: calc(100vw - 28px);
    max-height: calc(100dvh - 86px);
    object-fit: contain;
    box-shadow: none;
}

.product-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 24;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 28px rgba(39, 52, 58, 0.08);
}

.product-sticky-cta span {
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
}

.product-sticky-cta .btn {
    min-height: 42px;
}

.pagination-wrap {
    margin-top: 32px;
}

.account-mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.account-mini-row:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.account-mini-row strong {
    display: block;
    color: var(--ink);
}

.account-mini-row .btn {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 14px;
}

.account-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.account-logout-button {
    min-height: 42px;
    color: var(--muted);
    box-shadow: none;
}

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

.account-activity-section {
    margin-top: 28px;
}

.account-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.account-order-list {
    display: grid;
    gap: 0;
}

.account-order-row {
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.account-order-row:first-child {
    border-top: 0;
}

.account-order-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.account-order-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.account-order-copy h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
}

.account-order-copy .small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-order-action {
    display: flex;
    justify-content: flex-end;
}

.account-order-action .btn {
    min-height: 40px;
    min-width: 116px;
    font-size: 14px;
}

.account-free-head {
    gap: 8px;
}

.account-free-list {
    display: grid;
    gap: 0;
}

.account-free-row {
    display: grid;
    gap: 3px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.account-free-row:first-child {
    border-top: 0;
}

.account-free-row strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.3;
}

.account-free-row span {
    color: var(--muted);
    font-size: 13px;
}

.account-library-list {
    display: grid;
    gap: 14px;
}

.account-library-card {
    padding: 22px 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(39, 52, 58, 0.06);
}

.account-library-card-compact {
    padding: 18px 20px;
}

.account-library-copy {
    min-width: 0;
    display: grid;
    gap: 9px;
}

.account-library-card .btn {
    min-width: 128px;
}

.account-save-order-cta {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.saved-asset-toast {
    position: fixed;
    top: 118px;
    left: 50%;
    z-index: 80;
    width: min(420px, calc(100vw - 28px));
    transform: translate(-50%, 0);
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(24, 170, 160, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(39, 52, 58, 0.18);
    animation: savedToastIn 0.22s ease-out both;
}

.saved-asset-toast.is-hiding {
    animation: savedToastOut 0.2s ease-in both;
}

.saved-asset-toast-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 246, 249, 0.98);
    color: #d12f5a;
}

.saved-asset-toast-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.saved-asset-toast-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.saved-asset-toast-copy strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.saved-asset-toast-copy span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.saved-asset-toast-action {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(24, 170, 160, 0.24);
    border-radius: var(--control-radius-sm);
    background: #fff;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.saved-asset-toast-close {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.saved-asset-toast-close svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

@keyframes savedToastIn {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes savedToastOut {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -8px);
    }
}

@media (max-width: 640px) {
    .saved-asset-toast {
        top: 96px;
        left: 50%;
        right: auto;
        bottom: auto;
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 14px;
    }

    .saved-asset-toast-action {
        grid-column: 1 / -1;
        width: 100%;
    }
}

.pagination-wrap nav {
    display: grid;
    gap: 12px;
}

.pagination-wrap nav > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.pagination-wrap nav > div:first-child {
    display: none;
}

.pagination-wrap p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.pagination-wrap a,
.pagination-wrap span {
    font-size: 14px;
    line-height: 1.2;
}

.pagination-wrap a[rel="prev"],
.pagination-wrap a[rel="next"],
.pagination-wrap span[aria-disabled="true"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--control-radius);
    background: #fff;
    color: var(--text);
}

.pagination-wrap svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px;
    max-height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.site-footer {
    margin-top: 64px;
    padding: 54px 0 0;
    background:
        linear-gradient(135deg, rgba(24, 170, 160, 0.10), transparent 32%),
        linear-gradient(180deg, #30343a 0%, #25292f 100%);
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell {
    width: min(1560px, calc(100% - 32px));
    margin: 0 auto;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(360px, 470px) repeat(4, minmax(138px, 170px));
    align-items: start;
    justify-content: space-between;
    gap: clamp(28px, 3vw, 54px);
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 470px;
    display: grid;
    align-content: start;
    gap: 14px;
}

.footer-logo {
    color: #fff;
    font-size: 29px;
    letter-spacing: -0.035em;
    gap: 11px;
    line-height: 1;
}

.footer-logo:hover {
    color: #fff;
}

.site-footer .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
}

.site-footer .brand-logo-footer {
    width: 172px;
    height: auto;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.65;
}

.footer-brand .footer-supporting {
    color: rgba(255, 255, 255, 0.52);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 6px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--control-radius);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.84);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(24, 170, 160, 0.58);
    background: rgba(24, 170, 160, 0.16);
    color: #fff;
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-col {
    display: grid;
    gap: 10px;
    align-content: start;
    justify-items: start;
    padding-top: 6px;
}

.footer-col h2 {
    margin: 0 0 8px;
    color: #fff;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-col a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.35;
}

.footer-col a:hover,
.footer-col a:focus-visible {
    color: #fff;
    transform: translateX(2px);
}

.footer-bottom {
    min-height: 58px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.52);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom p:last-child {
    text-align: right;
}

@media (max-width: 980px) {
    .wn-header-container {
        width: min(var(--wn-header-container), calc(100% - 32px));
    }

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

    .marketplace-search-field {
        grid-column: 1 / -1;
    }

    .marketplace-filter-free form {
        grid-template-columns: 1fr 1fr;
    }

    .marketplace-filter-collection form {
        grid-template-columns: 1fr 1fr;
    }

    .asset-results-tools {
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }

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

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

    .home-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }

    .public-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
    }

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

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

    .home-account-cta {
        grid-template-columns: 1fr;
    }

    .site-nav-main {
        grid-template-columns: 1fr auto;
        gap: 16px;
        padding: 14px 0;
    }

    .header-search {
        grid-column: 1 / -1;
        order: 3;
    }

    .hero-grid,
    .grid-2,
    .product-layout,
    .product-v1-hero,
    .product-content-layout {
        grid-template-columns: 1fr;
    }

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

    .account-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .preview-box {
        min-height: 480px;
    }

    .hero-featured {
        min-height: 480px;
    }

    .purchase-panel {
        position: static;
    }

    .product-v1-panel {
        height: auto;
        min-height: 0;
    }

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

    .product-media {
        height: min(64vh, 620px);
        min-height: 520px;
    }

    .product-media-zoomable {
        height: min(64vh, 620px);
        min-height: 520px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        justify-content: stretch;
        gap: 30px 42px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 560px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .container-wide {
        width: min(100% - 20px, var(--container-wide));
    }

    .wn-header-container {
        width: min(var(--wn-header-container), calc(100% - 32px));
    }

    .home-container {
        width: min(100% - 32px, 1440px);
    }

    .home-hero {
        padding: 46px 0 34px;
    }

    .home-hero-title {
        font-size: 40px;
    }

    .home-search {
        grid-template-columns: 1fr;
    }

    .home-search select {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-search button {
        width: 100%;
    }

    .home-section {
        margin: 48px 0;
    }

    .home-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-section-head-centered {
        align-items: center;
        text-align: center;
    }

    .home-type-grid,
    .public-type-grid,
    .home-collection-grid,
    .home-info-grid,
    .home-category-grid,
    .public-category-grid {
        grid-template-columns: 1fr;
    }

    .home-type-grid {
        grid-template-columns: minmax(0, 300px);
        justify-content: center;
        gap: 28px;
    }

    .home-faq-list summary {
        gap: 16px;
        padding: 20px 0;
    }

    .home-faq-list p {
        padding: 0 42px 22px 0;
    }

    .home-type-card {
        grid-template-rows: auto;
    }

    .home-hero-actions {
        width: 100%;
    }

    .home-hero-actions .btn {
        width: 100%;
    }

    .home-account-actions {
        justify-content: stretch;
        width: 100%;
    }

    .home-account-actions .btn {
        width: 100%;
    }

    .home-account-signin {
        text-align: center;
    }

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

    .marketplace-filter-free form {
        grid-template-columns: 1fr;
    }

    .marketplace-filter-collection form {
        grid-template-columns: 1fr;
    }

    .asset-results-tools {
        display: grid;
        gap: 10px;
    }

    .asset-results-tools .small {
        margin: 0;
    }

    .asset-sort-form .field {
        min-width: 0;
        width: 100%;
    }

    .account-mini-row,
    .account-library-card,
    .account-order-summary,
    .account-order-item {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .account-mini-row {
        flex-direction: column;
    }

    .account-actions {
        justify-content: flex-start;
    }

    .account-stat-grid {
        grid-template-columns: 1fr;
    }

    .account-order-summary,
    .account-order-item {
        flex-direction: column;
    }

    .account-mini-row .btn,
    .account-library-card .btn,
    .account-order-item .btn {
        width: 100%;
    }

    .account-save-order-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .account-save-order-cta .btn {
        width: 100%;
    }

    .asset-masonry {
        columns: 2 150px;
        column-gap: 10px;
    }

    .asset-card {
        margin-bottom: 10px;
    }

    .visual-asset-masonry {
        gap: 10px;
    }

    .visual-asset-card {
        flex-basis: max(145px, calc(var(--asset-basis, 180px) * 0.72));
        min-width: 140px;
        max-height: 230px;
    }

    .product-related-section .visual-asset-card {
        flex-basis: max(125px, calc(var(--asset-basis, 180px) * 0.64));
        min-width: 125px;
        max-height: 210px;
    }

    .visual-asset-badge {
        opacity: 1;
    }

    .visual-asset-overlay {
        display: none;
    }

    .site-nav-main {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: auto;
        padding: 14px 0 12px;
    }

    .site-header .brand {
        font-size: 22px;
    }

    .site-header .brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .site-header .brand-logo-header {
        width: 136px;
    }

    .header-search {
        height: 48px;
    }

    .header-search button {
        min-width: 88px;
        padding: 0 16px;
    }

    .header-actions {
        justify-content: flex-start;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .header-actions::-webkit-scrollbar {
        display: none;
    }

    .header-action-link {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 13px;
    }

    .header-icon-link {
        width: 40px;
        padding: 0;
    }

    .site-nav-secondary {
        min-height: auto;
        padding: 10px 0 12px;
    }

    .nav-links {
        padding-bottom: 2px;
    }

    .site-footer {
        margin-top: 44px;
        padding-top: 38px;
    }

    .footer-shell {
        width: min(100% - 28px, 1560px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 26px 24px;
        padding-bottom: 30px;
    }

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

    .footer-logo {
        font-size: 26px;
        gap: 9px;
    }

    .site-footer .brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .site-footer .brand-logo-footer {
        width: 156px;
    }

    .footer-col {
        gap: 8px;
        padding-top: 0;
    }

    .footer-col h2 {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .footer-col a {
        font-size: 13px;
    }

    .footer-bottom {
        min-height: auto;
        padding: 16px 0;
    }

    .hero {
        padding: 48px 0 28px;
    }

    .hero-featured {
        min-height: 400px;
        padding: 16px;
    }

    .hero-featured-media {
        min-height: 300px;
    }

    .hero-featured-footer {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

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

    .meta-list {
        grid-template-columns: 1fr;
    }

    .product-section {
        margin-top: 34px;
    }

    .product-media {
        height: min(58vh, 430px);
        min-height: 360px;
        padding: 0;
    }

    .product-media-zoomable {
        height: min(58vh, 430px);
        min-height: 360px;
    }

    .product-v1-section {
        margin-top: 22px;
    }

    .product-v1-hero,
    .product-content-layout {
        gap: 18px;
    }

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

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

    .product-horizontal-strip {
        grid-auto-columns: minmax(190px, 76vw);
    }

    .product-preview-dialog-header {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
    }

    .product-preview-dialog-meta {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-items: start;
    }

    .product-preview-dialog-close {
        grid-column: 2;
        grid-row: 1;
    }

    .product-detail-block,
    .purchase-panel {
        padding: 18px;
    }

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

    .product-sticky-cta {
        display: flex;
    }

    .preview-box {
        min-height: 400px;
    }

    .mw-main {
        font-size: 38px;
    }

    .h1 {
        font-size: 42px;
    }
}
