@font-face {
    font-family: Manrope;
    src: url("/static/fonts/manrope-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Manrope;
    src: url("/static/fonts/manrope-600.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: Manrope;
    src: url("/static/fonts/manrope-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: Unbounded;
    src: url("/static/fonts/unbounded-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --ink: #1e1d20;
    --paper: #f3f1ee;
    --card: #e9e7e4;
    --violet: #7565b2;
    --green: #7a8c2e;
    --muted: #4d524a;
    --white: #fff;
    --line: #d8d4cf;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 400 16px/1.45 Manrope,
    sans-serif;
}

button,
input,
select {
    font: inherit;
}

a {
    color: inherit;
}

.site-header {
    height: 88px;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ink);
    color: #fff;
    position: relative;
    z-index: 20;
}

.logo {
    font: 700 24px/1 Unbounded,
    sans-serif;
    color: var(--violet);
    text-decoration: none;
    letter-spacing: -0.04em;
}

.site-header nav {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-header nav a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.site-header nav a:hover {
    color: #c7baf4;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.cart-trigger {
    min-height: 43px;
    border: 0;
    border-radius: 99px;
    padding: 0 18px;
    background: var(--violet);
    color: var(--ink);
    font-weight: 700;
    cursor: pointer;
}

.cart-trigger b {
    font-weight: 700;
}

.hero {
    height: 630px;
    padding: 56px 64px;
    display: flex;
    gap: 56px;
    align-items: center;
    overflow: hidden;
    background: var(--paper);
}

.hero-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
}

.hero-badge {
    margin: 0;
    border: 1px solid #0e110f;
    border-radius: 99px;
    padding: 8px 14px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.12;
    font-weight: 700;
}

.hero h1,
.section-heading h2,
.facts h2,
.status-card h1,
.legal-content h1 {
    font-family: Unbounded, sans-serif;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.hero h1 {
    width: 700px;
    max-width: 100%;
    margin: 0;
    font-size: 58px;
    line-height: 1.12;
}

.mobile-hero-title,
.mobile-title,
.product-mobile-title,
.product-mobile-copy,
.mobile-facts {
    display: none;
}

.hero-lead {
    width: 650px;
    max-width: 100%;
    min-height: 76px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.35;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}

.button {
    border: 0;
    border-radius: 99px;
    min-height: 41px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--violet);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.16s ease;
}

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

.button-dark {
    min-height: 52px;
    padding: 0 26px;
    background: var(--ink);
    color: var(--violet);
    font-size: 16px;
}

.button-primary {
    min-height: 52px;
    padding: 0 24px;
    background: var(--violet);
}

.button-small {
    font-size: 14px;
}

.hero-product {
    width: 500px;
    height: 570px;
    flex: 0 0 500px;
    border-radius: 40px;
    overflow: hidden;
    background: var(--paper);
    display: grid;
    place-items: center;
}

.hero-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transform: scale(1.25, 1.25) translateY(14px);
}

.market-proof {
    height: 200px;
    padding: 40px 64px;
    background: var(--ink);
    color: #fff;
}

.market-proof-inner {
    height: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.65fr;
    align-items: start;
}

.market-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.market-stat strong {
    color: var(--violet);
    font: 700 46px/1 Unbounded, sans-serif;
    letter-spacing: -0.04em;
}

.market-stat span,
.market-store > span {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.market-store {
    align-self: center;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.ozon-link-text {
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
    border-bottom: 2px solid currentColor;
    padding-bottom: 3px;
    transition: color 160ms ease, border-color 160ms ease;
}

.market-store:hover .ozon-link-text,
.market-store:focus-visible .ozon-link-text {
    color: var(--violet);
}

.section {
    padding: 72px 64px;
}

.products {
    min-height: 820px;
    background: #fff;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading .eyebrow {
    margin: 0 0 28px;
}

.section-heading h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.25;
}

.eyebrow {
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

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

.product-card {
    height: 560px;
    padding: 24px;
    border-radius: 28px;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.product-meta {
    height: 16px;
    display: flex;
    justify-content: space-between;
    font: 700 13px/1 Unbounded,
    sans-serif;
}

.product-meta span:last-child {
    font: 700 11px/1 Manrope,
    sans-serif;
    text-transform: uppercase;
}

.product-image {
    height: 260px;
    flex: 0 0 260px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--paper);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-card:first-child .product-image img {
    max-width: 332px;
}

.product-card:last-child .product-image img {
    max-width: 180px;
}

.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    font-size: 22px;
    line-height: 1.35;
    margin: 0 0 6px;
    font-weight: 700;
}

.product-body > p {
    width: 300px;
    max-width: 100%;
    min-height: 42px;
    margin: 0;
    font-size: 14px;
}

.product-action {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-action > strong {
    font: 700 13px/1 Unbounded,
    sans-serif;
}

.facts {
    height: 500px;
    padding: 74px 64px;
    background: var(--ink);
    color: #fff;
}

.facts-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.eyebrow-violet {
    color: var(--violet);
}

.facts h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.24;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    transform: translateX(-29px);
}

.fact-grid > div {
    height: 168px;
    padding: 26px;
    border-radius: 24px;
    background: #1a1c1a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.fact-grid strong {
    font: 700 42px/1 Unbounded,
    sans-serif;
    color: var(--violet);
}

.fact-grid span {
    font-size: 18px;
    font-weight: 700;
}

.fact-grid small {
    display: block;
    margin-top: 10px;
    color: #a6aba1;
    font-size: 14px;
    font-weight: 400;
}

.trust {
    min-height: 348px;
    padding: 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    background: var(--paper);
}

.trust article {
    min-height: 220px;
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.trust strong {
    font: 700 13px/1 Unbounded,
    sans-serif;
    color: var(--green);
}

.trust h3 {
    margin: 18px 0;
    font-size: 22px;
}

.trust p {
    width: 330px;
    max-width: 100%;
    margin: 0;
    font-size: 15px;
}

.trust-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--violet);
    font-size: 14px;
    font-weight: 700;
    align-self: flex-start;
}

.faq {
    background: #fff;
}

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

.faq-list {
    max-width: 900px;
    margin-left: 0;
}

.faq-list details {
    border-top: 1px solid var(--line);
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    font-size: 19px;
    font-weight: 700;
}

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

.faq-list summary span {
    font-size: 30px;
    font-weight: 400;
    transition: transform 0.2s;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    margin: -6px 50px 24px 0;
    color: var(--muted);
    font-size: 16px;
}

footer {
    min-height: 300px;
    background: var(--ink);
    color: #fff;
}

.footer-main {
    min-height: 250px;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    justify-content: space-between;
    gap: 54px;
}

.footer-main > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-main .logo {
    font-size: 28px;
}

.footer-main p,
.footer-main span {
    margin: 4px 0;
    color: #999e94;
}

.footer-main b {
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999e94;
    font-size: 11px;
}

.footer-main a:not(.logo) {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.footer-bottom {
    padding: 0 64px 26px;
    color: #999e94;
    font-size: 13px;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 17, 0.52);
    backdrop-filter: blur(4px);
    z-index: 40;
}

.cart-drawer {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(590px, 100%);
    padding: 28px 34px;
    background: #fff;
    z-index: 50;
    overflow: auto;
    transform: translateX(102%);
    transition: transform 0.3s ease;
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.18);
}

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

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

.drawer-head h2 {
    margin: 0;
    font: 700 30px/1.2 Unbounded,
    sans-serif;
}

.drawer-head button {
    border: 0;
    background: transparent;
    font-size: 38px;
    cursor: pointer;
}

.cart-line {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 16px 0;
}

.cart-line img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: var(--paper);
    border-radius: 12px;
}

.cart-line h4 {
    margin: 0 0 4px;
    font-size: 15px;
}

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

.cart-line .cart-stock {
    margin-top: 5px;
    color: var(--violet);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.cart-stock-notice {
    margin: 12px 0 0;
    border-radius: 12px;
    background: #f0ecfb;
    color: #55448f;
    padding: 11px 13px;
    font-size: 13px;
    line-height: 1.4;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.cart-empty {
    text-align: center;
    color: var(--muted);
    padding: 80px 20px;
}

.checkout {
    margin-top: 26px;
    border-top: 2px solid var(--ink);
    padding-top: 22px;
}

.checkout h3 {
    font-size: 18px;
    margin: 22px 0 12px;
}

.checkout label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
}

.checkout [hidden] {
    display: none !important;
}

.checkout input,
.checkout select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #faf9f7;
    padding: 0 13px;
    outline: none;
}

.checkout input:focus,
.checkout select:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(117, 101, 178, 0.12);
}

.checkout input[readonly] {
    color: var(--ink);
    cursor: default;
}

.pickup-field {
    margin-bottom: 12px;
}

.pickup-field label {
    margin-bottom: 8px;
}

.address-autocomplete,
.pickup-search-control {
    position: relative;
    display: block;
    min-width: 0;
}

.address-suggestions {
    position: absolute;
    z-index: 95;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 260px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(30, 29, 32, 0.18);
}

.address-suggestions[hidden] {
    display: none !important;
}

.address-suggestion {
    width: 100%;
    padding: 11px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--ink);
    font: 600 13px/1.35 Manrope, sans-serif;
    text-align: left;
    cursor: pointer;
}

.address-suggestion:hover,
.address-suggestion.is-active,
.address-suggestion:focus-visible {
    background: var(--paper);
    outline: none;
}

.address-suggestion-meta,
.address-suggestion-credit {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
}

.address-suggestion-credit {
    width: fit-content;
    padding: 7px 12px 5px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.address-suggestion-credit:hover {
    color: var(--violet);
}

.address-suggestion-credit:focus-visible {
    border-radius: 6px;
    outline: 2px solid var(--violet);
    outline-offset: 1px;
}

.address-suggest-note {
    margin: -3px 2px 12px;
    color: var(--muted);
    font-size: 12px;
}

.courier-details {
    min-width: 0;
    margin: 2px 0 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.courier-details legend {
    padding: 0 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.courier-details legend span {
    color: var(--muted);
    font-weight: 500;
}

.courier-details-row + .courier-details-row {
    margin-top: 12px;
}

.courier-details-row label {
    margin-bottom: 0;
}

.pickup-map-button {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--violet);
    color: var(--violet);
    background: #fff;
}

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

.quote {
    margin: 8px 2px 14px;
    color: var(--muted);
    font-size: 13px;
}

.checkout-summary {
    margin: 18px 0 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--paper);
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 8px 0;
    font-size: 15px;
}

.checkout-summary-row span {
    min-width: 0;
}

.checkout-summary-row strong {
    flex: 0 0 auto;
    white-space: nowrap;
}

.checkout-summary-total {
    align-items: center;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 20px;
}

.checkout-summary-total strong {
    font-size: 24px;
}

.checkout .consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    font-size: 13px;
    font-weight: 400;
}

.consent input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkout-button {
    width: 100%;
}

.form-error {
    min-height: 22px;
    color: #b52c36;
    font-size: 13px;
}

.status-page {
    min-height: 100vh;
}

.status-page .site-header {
    justify-content: space-between;
}

.header-account {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.status-card {
    max-width: 680px;
    margin: 80px auto;
    padding: 50px;
    border-radius: 28px;
    background: #fff;
}

.status-card h1 {
    margin: 0;
    font-size: 46px;
}

.status-card > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.order-summary {
    margin: 34px 0;
    padding: 20px;
    border-radius: 16px;
    background: var(--paper);
}

.order-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.order-summary .summary-total {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 20px;
}

.shipment-summary b {
    max-width: 62%;
    text-align: right;
    overflow-wrap: anywhere;
}

.status-card .tracking-note {
    font-size: 14px !important;
}

.order-title-row,
.account-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.order-title-row .eyebrow,
.account-heading .eyebrow {
    margin-top: 0;
}

.button-compact {
    flex: 0 0 auto;
    padding: 12px 20px;
}

.account-notice {
    padding: 16px 18px;
    border-radius: 14px;
    background: #ece8f8;
    color: var(--ink) !important;
    font-size: 14px !important;
}

.account-hint {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.order-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.cancel-box {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.cancel-box summary {
    cursor: pointer;
    font-weight: 700;
}

.cancel-box p {
    color: var(--muted);
    font-size: 14px;
}

.button-danger {
    border: 1px solid #d79ca1;
    background: #fff;
    color: #a52b35;
}

.account-card {
    width: min(920px, calc(100% - 40px));
    margin: 70px auto 120px;
    padding: 50px;
    border-radius: 28px;
    background: #fff;
}

.account-card h1 {
    margin: 0;
    font-size: 46px;
}

.account-heading p:not(.eyebrow),
.login-panel > p:not(.eyebrow) {
    color: var(--muted);
}

.account-orders {
    display: grid;
    gap: 12px;
    margin-top: 36px;
}

.account-order {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px;
    border-radius: 18px;
    background: var(--paper);
    text-decoration: none;
    transition: transform .15s ease, background .15s ease;
}

.account-order:hover {
    background: #ece8f8;
    transform: translateY(-1px);
}

.account-order > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.account-order > div:last-child {
    align-items: flex-end;
}

.account-order span {
    color: var(--muted);
    font-size: 14px;
}

.login-panel {
    max-width: 560px;
    margin: 0 auto;
}

.login-panel label {
    display: grid;
    gap: 8px;
    margin: 30px 0 18px;
    font-weight: 600;
}

.login-panel input {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.login-panel input:focus {
    border-color: var(--violet);
    outline: none;
}

.account-error {
    min-height: 0;
}

.admin-page {
    min-height: 100vh;
    background: var(--paper);
}

.admin-page .site-header {
    justify-content: space-between;
}

.admin-shell {
    width: min(1280px, calc(100% - 56px));
    margin: 64px auto 100px;
}

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

.admin-sections {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 44px;
    padding: 7px;
    border-radius: 20px;
    background: #fff;
}

.admin-sections a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 15px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
}

.admin-sections a span {
    color: var(--muted);
    font-size: 11px;
}

.admin-sections a.is-active {
    background: var(--ink);
    color: #fff;
}

.admin-sections a.is-active span {
    color: var(--violet);
}

.admin-login-card {
    max-width: 580px;
    padding: 48px;
    border-radius: 28px;
    background: #fff;
}

.admin-login-card h1 {
    margin: 0 0 12px;
    font-size: 52px;
}

.admin-user,
.admin-user form {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-user {
    color: #fff;
    font-size: 14px;
}

.admin-logout {
    border: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

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

.admin-heading h1 {
    margin: 4px 0 8px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.055em;
}

.admin-heading > div > p:last-child,
.admin-panel-heading > span {
    color: var(--muted);
}

.admin-orders-heading {
    align-items: center;
}

.admin-order-search {
    display: grid;
    width: min(560px, 48%);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.admin-order-search input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: none;
    background: #fff;
    font: 600 14px/1 Manrope, sans-serif;
}

.admin-order-search input:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(126, 105, 189, .14);
}

.admin-order-kpis {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 14px;
}

.admin-order-kpis article {
    display: flex;
    min-height: 116px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
}

.admin-order-kpis article.has-alert {
    background: #2a2023;
    color: #fff;
}

.admin-order-kpis span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.admin-order-kpis strong {
    font-size: 34px;
    line-height: 1;
}

.admin-order-kpis .has-alert strong {
    color: #ef9a9a;
}

.admin-period {
    display: flex;
    flex: 0 0 auto;
    gap: 5px;
    padding: 5px;
    border-radius: 999px;
    background: #fff;
}

.admin-period a {
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
}

.admin-period a.is-active {
    background: var(--violet);
}

.admin-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.admin-kpis article {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 26px;
    border-radius: 24px;
    background: var(--ink);
    color: #fff;
}

.admin-kpis span,
.admin-kpis small {
    color: #aaa7ad;
}

.admin-kpis strong {
    margin: auto 0 2px;
    color: var(--violet);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
}

.admin-panel {
    min-width: 0;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
}

.admin-panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.admin-panel-heading .eyebrow {
    margin: 0 0 8px;
}

.admin-panel h2 {
    margin: 0;
    font-size: 27px;
}

.admin-prices-panel {
    margin-bottom: 14px;
}

.admin-order-detail {
    margin-bottom: 14px;
    border: 1px solid rgba(126, 105, 189, .45);
}

.admin-order-detail-heading,
.admin-detail-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-order-detail-heading {
    margin-bottom: 24px;
}

.admin-order-detail-heading h2 {
    overflow-wrap: anywhere;
}

.admin-detail-actions a {
    color: var(--muted);
    font-weight: 700;
}

.admin-status {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 8px 11px;
    border-radius: 999px;
    background: #ece9e5;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.admin-status.is-progress {
    background: #eee8ff;
    color: #5a438e;
}

.admin-status.is-success {
    background: #e4f3e7;
    color: #285c2c;
}

.admin-status.is-error {
    background: #fde7e7;
    color: #912f36;
}

.admin-status.is-muted {
    color: var(--muted);
}

.admin-order-alert {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fde7e7;
    color: #76272d;
    overflow-wrap: anywhere;
}

.admin-order-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 18px;
    background: var(--line);
}

.admin-order-flow article {
    display: grid;
    min-height: 126px;
    align-content: space-between;
    gap: 5px;
    padding: 18px;
    background: var(--paper);
}

.admin-order-flow article > span {
    color: var(--violet-dark);
    font-size: 11px;
    font-weight: 800;
}

.admin-order-flow small {
    margin-top: auto;
    color: var(--muted);
}

.admin-order-flow strong {
    overflow-wrap: anywhere;
}

.admin-order-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-order-card {
    min-width: 0;
    padding: 22px;
    border-radius: 18px;
    background: var(--paper);
}

.admin-order-card .eyebrow {
    margin: 0 0 16px;
}

.admin-order-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
}

.admin-order-line.is-total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 18px;
}

.admin-order-card dl {
    display: grid;
    gap: 13px;
    margin: 0;
}

.admin-order-card dl > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
}

.admin-order-card dt {
    color: var(--muted);
    font-size: 13px;
}

.admin-order-card dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 700;
}

.admin-order-card a {
    color: inherit;
}

.admin-order-card code {
    font-size: 12px;
}

.admin-orders-panel {
    padding-bottom: 12px;
}

.admin-orders-list {
    display: grid;
}

.admin-order-row {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(250px, 1.4fr) minmax(210px, 1fr) minmax(190px, .85fr) auto;
    align-items: center;
    gap: 20px;
    padding: 18px 12px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
}

.admin-order-row:hover,
.admin-order-row.is-selected {
    border-radius: 14px;
    background: var(--paper);
}

.admin-order-row > div {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.admin-order-row span,
.admin-order-row small,
.admin-order-row strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.admin-order-primary > strong {
    font-size: 14px;
}

.admin-order-row small,
.admin-order-primary span,
.admin-order-contact span {
    color: var(--muted);
    font-size: 12px;
}

.admin-order-total {
    text-align: right;
    white-space: nowrap;
}

.admin-list-note,
.admin-empty {
    color: var(--muted);
}

.admin-price-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-price-fields label {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.admin-price-input {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
}

.admin-price-input:focus-within {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(126, 105, 189, .14);
}

.admin-price-input input {
    width: 100%;
    min-width: 0;
    padding: 17px 4px 17px 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: 700 24px/1 Manrope, sans-serif;
}

.admin-price-input b {
    padding: 0 18px 0 8px;
    color: var(--violet-dark);
    font-size: 22px;
}

.admin-price-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.admin-price-actions p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.admin-success {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #eaf5ea;
    color: #285c2c;
}

.admin-chart-panel {
    margin-bottom: 14px;
}

.admin-chart {
    display: flex;
    height: 280px;
    align-items: flex-end;
    gap: 6px;
    overflow-x: auto;
    padding: 12px 2px 0;
}

.admin-chart-column {
    display: grid;
    min-width: 24px;
    height: 100%;
    flex: 1 0 24px;
    grid-template-rows: 20px 1fr 20px;
    gap: 6px;
    text-align: center;
}

.admin-chart-value,
.admin-chart-column small {
    color: var(--muted);
    font-size: 11px;
}

.admin-chart-track {
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 8px 8px 3px 3px;
    background: var(--paper);
}

.admin-chart-track span {
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--violet), #56418e);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 14px;
}

.admin-list {
    display: grid;
}

.admin-list > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.admin-list span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.admin-list strong {
    color: var(--violet-dark);
}

.back-link {
    display: block;
    margin-top: 24px;
    color: var(--muted);
}

.mock-card {
    text-align: center;
}

.mock-card .order-summary {
    text-align: left;
}

.legal-page {
    background: #fff;
}

.legal-content {
    max-width: 850px;
    margin: 70px auto 120px;
    padding: 0 28px;
}

.legal-content h1 {
    margin-bottom: 60px;
    font-size: 54px;
}

.legal-content section {
    margin: 40px 0;
}

.legal-content h2 {
    font-size: 24px;
}

.legal-content p {
    color: #454249;
    font-size: 17px;
}

.legal-note {
    padding: 18px;
    border-radius: 12px;
    background: var(--paper);
    font-size: 14px !important;
}

.documents-page {
    min-height: 100vh;
    background: var(--paper);
}

.documents-back {
    margin-left: auto;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.documents-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 86px 64px 120px;
}

.documents-heading {
    max-width: 900px;
}

.documents-heading h1 {
    margin: 16px 0 28px;
    font: 700 clamp(52px, 7vw, 94px)/0.98 Unbounded, sans-serif;
    letter-spacing: -0.055em;
}

.documents-lead {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

.document-summary {
    margin: 56px 0 32px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 18px;
    border-radius: 26px;
    background: var(--ink);
    color: #fff;
}

.document-summary div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.document-summary span {
    color: #999e94;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.document-summary strong {
    font-size: 20px;
}

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

.document-gallery figure {
    margin: 0;
    padding: 18px;
    border-radius: 26px;
    background: #fff;
}

.document-gallery a {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.document-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.document-gallery figcaption {
    padding: 18px 4px 2px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
}

.document-gallery figcaption span {
    color: var(--violet);
}

.documents-hint {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 14px;
}

body.drawer-open,
body.pickup-map-open {
    overflow: hidden;
}

.pickup-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    padding: 24px;
    background: rgba(15, 14, 17, 0.68);
    backdrop-filter: blur(6px);
}

.pickup-modal[hidden] {
    display: none;
}

.pickup-dialog {
    width: min(1160px, 100%);
    height: min(780px, calc(100vh - 48px));
    margin: 0 auto;
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto auto;
    gap: 14px;
}

.pickup-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.pickup-dialog-head p {
    margin: 0 0 4px;
    color: var(--violet);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pickup-dialog-head h2 {
    margin: 0;
    font: 700 30px/1.2 Unbounded, sans-serif;
}

.pickup-dialog-head > button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--paper);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.pickup-search {
    position: relative;
    z-index: 1200;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.pickup-search-control,
.pickup-search input {
    width: 100%;
}

.pickup-search input {
    height: 48px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #faf9f7;
    outline: none;
}

.pickup-search input:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(117, 101, 178, 0.12);
}

.pickup-map-layout {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 14px;
}

.pickup-map {
    min-height: 420px;
    border-radius: 18px;
    background: var(--paper);
    overflow: hidden;
}

.pickup-point-card {
    min-width: 0;
    padding: 24px;
    border-radius: 18px;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.pickup-point-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
}

.pickup-point-card p {
    margin: 0 0 14px;
}

.pickup-point-card .pickup-address {
    font-weight: 600;
}

.pickup-point-card .pickup-hours,
.pickup-map-hint,
.pickup-map-status,
.map-attribution {
    color: var(--muted);
    font-size: 13px;
}

.pickup-point-card .button {
    margin-top: 10px;
}

.pickup-point-intro {
    color: var(--muted);
    font-size: 13px;
}

.pickup-point-options {
    display: grid;
    gap: 8px;
    max-height: 430px;
    overflow-y: auto;
}

.pickup-point-option {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.pickup-point-option:hover,
.pickup-point-option:focus-visible {
    border-color: var(--violet);
    outline: none;
}

.pickup-point-option strong,
.pickup-point-option span {
    display: block;
}

.pickup-point-option strong {
    margin-bottom: 4px;
    font: 700 13px/1.3 Manrope, sans-serif;
}

.pickup-point-option span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.pickup-choose-another {
    margin-top: 10px;
    padding: 8px 4px;
    border: 0;
    background: transparent;
    color: var(--violet);
    font: 700 13px/1.3 Manrope, sans-serif;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.pickup-map-status,
.map-attribution {
    min-height: 18px;
    margin: 0;
}

.map-attribution {
    text-align: right;
    font-size: 11px;
}

.pickup-pin {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 4px solid #fff;
    border-radius: 50% 50% 50% 8px;
    transform: rotate(-45deg);
    background: var(--violet);
    color: #fff;
    box-shadow: 0 6px 18px rgba(30, 29, 32, 0.35);
    font: 700 14px/1 Manrope, sans-serif;
}

.pickup-pin::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
}

.pickup-cluster {
    border-radius: 50%;
    transform: none;
}

.pickup-cluster::after {
    display: none;
}

@media (max-width: 800px) {

    .documents-back {
        font-size: 13px;
    }

    .documents-content {
        padding: 54px 20px 80px;
    }

    .documents-heading h1 {
        margin: 14px 0 22px;
        font-size: 42px;
        line-height: 1.03;
    }

    .documents-lead {
        font-size: 16px;
    }

    .document-summary {
        margin: 36px 0 18px;
        padding: 22px;
        grid-template-columns: 1fr;
        gap: 22px;
        border-radius: 22px;
    }

    .document-summary strong {
        font-size: 18px;
    }

    .document-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .document-gallery figure {
        padding: 10px;
        border-radius: 20px;
    }

    .document-gallery a {
        border-radius: 12px;
    }

    .documents-hint {
        line-height: 1.45;
    }
    .site-header {
        height: 72px;
        padding: 0 20px;
    }

    .logo {
        font-size: 18px;
    }

    .site-header nav,
    .header-actions > span {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .cart-trigger {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }

    .hero {
        height: 651px;
        padding: 38px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .hero-copy {
        display: contents;
    }

    .desktop-hero-title,
    .desktop-title {
        display: none;
    }

    .mobile-hero-title,
    .mobile-title {
        display: inline;
    }

    .hero-badge {
        order: 1;
        padding: 0;
        border: 0;
        border-radius: 0;
        font-size: 11px;
    }

    .hero h1 {
        order: 2;
        width: auto;
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

    .hero-lead {
        order: 3;
        width: 100%;
        min-height: 52px;
        font-size: 14px;
        color: var(--ink);
    }

    .hero-product {
        order: 4;
        width: 100%;
        height: 300px;
        flex: 0 0 300px;
        border-radius: 28px;
    }

    .hero-product img {
        border-radius: 28px;
    }

    .hero-actions {
        order: 5;
        display: block;
    }

    .hero-actions > span {
        display: none;
    }

    .hero-actions .button {
        width: 100%;
        height: 52px;
    }

    .market-proof {
        height: auto;
        min-height: 234px;
        padding: 34px 20px;
    }

    .market-proof-inner {
        height: auto;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 24px;
        row-gap: 24px;
    }

    .market-stat {
        gap: 8px;
    }

    .market-stat strong {
        font-size: clamp(27px, 8.4vw, 36px);
        white-space: nowrap;
    }

    .market-stat span,
    .market-store > span {
        font-size: 15px;
    }

    .market-proof-inner > .market-store {
        grid-column: 1 / 3;
        grid-row: 2;
        width: max-content;
        margin: 0;
        justify-self: start;
        align-self: start;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }

    .ozon-link-text {
        font-size: 24px;
    }

    .section {
        padding: 44px 20px;
    }

    .products {
        min-height: 856px;
    }

    .section-heading {
        margin-bottom: 16px;
    }

    .section-heading .eyebrow {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .section-heading h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .product-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .product-card {
        height: 335px;
        padding: 18px;
        gap: 12px;
        border: 1px solid var(--violet);
        border-radius: 22px;
        background: #e9e7e4;
    }

    .product-card:nth-child(2) {
        background: #e1dfdc;
    }

    .product-meta {
        display: none;
    }

    .product-mobile-title {
        height: 20px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

    .product-mobile-title h3 {
        margin: 0;
        font-size: 15px;
        line-height: 20px;
    }

    .product-mobile-title strong {
        font: 700 10px/1.2 Unbounded,
      sans-serif;
        white-space: nowrap;
    }

    .product-image {
        height: 180px;
        flex: 0 0 180px;
        border-radius: 14px;
        background: var(--paper);
    }

    .product-card:first-child .product-image img,
    .product-card:last-child .product-image img {
        max-width: none;
    }

    .product-card:first-child .product-image img {
        width: 80%;
    }

    .product-card:last-child .product-image img {
        width: 48%;
    }

    .product-body {
        display: block;
    }

    .product-body > h3,
    .product-body > p:not(.product-mobile-copy),
    .product-action > strong {
        display: none;
    }

    .product-mobile-copy {
        display: block !important;
        width: auto !important;
        min-height: 18px !important;
        margin: 0 0 12px !important;
        font-size: 13px !important;
    }

    .product-action {
        display: block;
        margin: 0;
    }

    .product-action .button {
        width: 100%;
        height: 45px;
    }

    .facts {
        height: 214px;
        padding: 44px 20px;
    }

    .facts-inner {
        display: block;
    }

    .facts .eyebrow,
    .facts h2,
    .fact-grid {
        display: none;
    }

    .mobile-facts {
        display: block;
    }

    .mobile-facts strong {
        font: 700 34px/1.2 Unbounded,
      sans-serif;
        color: var(--violet);
    }

    .mobile-facts p {
        margin: 18px 0 0;
        color: #fff;
        font-size: 16px;
        line-height: 1.4;
    }

    .mobile-facts a {
        color: #fff;
        font-weight: 700;
    }

    .trust {
        display: none;
    }

    .faq {
        padding-top: 52px;
        padding-bottom: 58px;
    }

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

    .faq-list {
        margin: 0;
    }

    .faq-list summary {
        padding: 18px 0;
        font-size: 16px;
    }

    .faq-list details p {
        margin: -4px 35px 20px 0;
        font-size: 14px;
    }

    .footer-main {
        min-height: 220px;
        padding: 36px 20px;
        grid-template-columns: 1fr 1fr;
        gap: 26px;
    }

    .footer-main > div:first-child {
        grid-column: 1/-1;
    }

    .footer-main .logo {
        font-size: 22px;
    }

    .footer-main p,
    .footer-main span,
    .footer-main a:not(.logo) {
        font-size: 12px;
    }

    .footer-bottom {
        padding: 0 20px 24px;
    }

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

    .courier-details {
        padding: 14px;
    }

    .cart-drawer {
        padding: 22px 20px;
    }

    .pickup-modal {
        padding: 0;
    }

    .pickup-dialog {
        display: flex;
        flex-direction: column;
        height: 100dvh;
        padding: 16px;
        border-radius: 0;
        overflow-y: auto;
    }

    .pickup-dialog > * {
        flex: 0 0 auto;
    }

    .pickup-dialog-head h2 {
        font-size: 21px;
    }

    .pickup-map-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        gap: 12px;
    }

    .pickup-map {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        height: clamp(340px, 52dvh, 460px);
        min-height: 0;
    }

    .pickup-point-card {
        flex: 0 0 auto;
        position: static;
        max-height: none;
        overflow: visible;
        padding: 18px 16px 20px;
        box-shadow: none;
        justify-content: flex-start;
        scroll-margin-top: 16px;
    }

    .address-suggestions {
        max-height: min(300px, 42dvh);
    }

    .pickup-point-options {
        max-height: none;
    }

    .pickup-point-card:has(.pickup-map-hint) {
        display: none;
    }

    .status-card {
        margin: 35px 14px;
        padding: 30px 22px;
    }

    .status-card h1 {
        font-size: 36px;
    }

    .status-page .site-header {
        height: 72px;
        padding: 0 20px;
    }

    .header-account {
        font-size: 14px;
    }

    .order-title-row,
    .account-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-title-row .button-compact,
    .account-heading .button-compact {
        width: 100%;
    }

    .account-card {
        width: auto;
        margin: 35px 14px;
        padding: 30px 22px;
    }

    .account-card h1 {
        font-size: 36px;
    }

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

    .account-order > div:last-child {
        align-items: flex-start;
    }

    .admin-shell {
        width: auto;
        margin: 35px 14px 70px;
    }

    .admin-sections {
        gap: 4px;
        margin-bottom: 30px;
        padding: 5px;
        border-radius: 16px;
    }

    .admin-sections a {
        min-height: 48px;
        gap: 0;
        padding: 0 10px;
        border-radius: 12px;
        font-size: 13px;
    }

    .admin-sections a span {
        display: none;
    }

    .admin-heading,
    .admin-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-period {
        width: 100%;
    }

    .admin-period a {
        flex: 1;
        text-align: center;
    }

    .admin-order-search {
        width: 100%;
    }

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

    .admin-order-kpis article {
        min-height: 104px;
        padding: 17px;
    }

    .admin-order-kpis article:first-child {
        grid-column: 1 / -1;
    }

    .admin-order-detail-heading,
    .admin-detail-actions {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .admin-order-detail-grid {
        grid-template-columns: 1fr;
    }

    .admin-order-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        padding: 18px 4px;
    }

    .admin-order-contact {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .admin-order-row > div:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .admin-order-total {
        grid-column: 2;
        grid-row: 1;
    }

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

    .admin-kpis article {
        min-height: 150px;
        padding: 20px;
    }

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

    .admin-price-fields {
        grid-template-columns: 1fr;
    }

    .admin-price-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-price-actions .button {
        width: 100%;
    }

    .admin-login-card {
        padding: 30px 22px;
    }

    .admin-user > span {
        display: none;
    }

    .shipment-summary > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .shipment-summary b {
        max-width: none;
        text-align: left;
    }

    .legal-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 440px) {
	.admin-kpis {
		grid-template-columns: 1fr;
	}

	.admin-kpis article {
		min-height: 125px;
	}

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

    .admin-order-search .button {
        width: 100%;
    }

    .admin-order-card dl > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

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

    .footer-main > div:first-child {
        grid-column: auto;
    }

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

.button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
}

.hero-product,
.product-image {
    background: transparent;
}

.hero-product img,
.product-image img {
    mix-blend-mode: normal;
}
