/* =========================
   BASE
========================= */
html {
    scroll-behavior: smooth;
    overflow-x: clip;
    background: #0d1117;
}

body {
    margin: 0;
    font-family: "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    overflow-x: clip;
    line-height: 1.5;
}

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

img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}


/* =========================
   HEADER
========================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
}

.header-container {
    max-width: 1100px;
    margin: auto;
    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.logo {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.nav a {
    position: relative;
    display: inline-block;

    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    padding-bottom: 4px;
}

/* фикс всех состояний */
.nav a:link,
.nav a:visited {
    color: rgba(255,255,255,0.7);
}

/* линия */
.nav a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1.5px;

    background: #fff;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.25s ease;
}

/* hover */
.nav a:hover {
    color: #fff;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.cart-btn {
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
}


/* =========================
   HERO
========================= */
.hero {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h2 {
    font-size: 34px;
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero p {
    margin-top: 14px;
    color: rgba(255,255,255,0.74);
}

.hero-home {
    padding-top: 84px;
    padding-bottom: 62px;
}

.hero-shell {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 28px;
    align-items: stretch;
    text-align: left;
}

.hero-copy {
    padding: 34px;
    border-radius: 32px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.84);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f1d1a0 0%, #b88953 100%);
    box-shadow: 0 0 18px rgba(232, 193, 139, 0.75);
}

.hero-home h1,
.hero-home h2 {
    max-width: 760px;
    margin-top: 18px;
    font-size: clamp(38px, 6vw, 64px);
}

.hero-home p {
    max-width: 620px;
    font-size: 17px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 600;
}

.hero-trust span::before {
    content: "✓";
    color: #f2d3a4;
    font-size: 15px;
    line-height: 1;
}

.hero-price-note {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-price-note span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: max-content;
    max-width: 100%;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(242, 211, 164, 0.18) 0%, rgba(194, 144, 88, 0.12) 100%);
    border: 1px solid rgba(242, 211, 164, 0.28);
    box-shadow: 0 14px 28px rgba(194, 144, 88, 0.14);
    color: #f6e1c4;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.hero-anti-pain {
    margin-top: 14px;
    color: #f2d3a4;
    font-size: 15px;
    font-weight: 600;
}

.hero-cta-notes {
    display: grid;
    justify-items: flex-start;
    gap: 8px;
    margin-top: 12px;
}

.hero-speed-note {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(242, 211, 164, 0.1);
    border: 1px solid rgba(242, 211, 164, 0.18);
    color: #f4dec0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.hero-instant-note {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
    max-width: 720px;
}

.hero-quick-link {
    display: grid;
    gap: 8px;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    align-content: start;
    min-height: 126px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(242, 211, 164, 0.16);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.06) 100%),
        rgba(255,255,255,0.05);
    box-shadow: 0 18px 38px rgba(11, 11, 11, 0.14);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-quick-link .hero-quick-link-kicker {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    justify-self: flex-start;
    width: max-content;
    max-width: 100%;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(242, 211, 164, 0.92);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-quick-link strong {
    display: block;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-quick-link .hero-quick-link-meta {
    display: block;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.45;
}

.hero-quick-link .hero-quick-link-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    justify-self: flex-start;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2d3a4 0%, #c29058 100%);
    color: #1c140d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(194, 144, 88, 0.2);
}

.hero-quick-link .hero-quick-link-cta::after {
    content: none;
    line-height: 1;
}

.hero-quick-link:hover,
.hero-quick-link:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(242, 211, 164, 0.4);
    background:
        linear-gradient(180deg, rgba(242, 211, 164, 0.2) 0%, rgba(194, 144, 88, 0.12) 100%),
        rgba(255,255,255,0.06);
    box-shadow: 0 24px 44px rgba(17, 17, 17, 0.18);
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-primary {
    color: #1c140d;
    background: linear-gradient(180deg, #f2d3a4 0%, #c29058 100%);
    box-shadow: 0 14px 30px rgba(194, 144, 88, 0.28);
}

.hero-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
}

.hero-primary:hover,
.hero-secondary:hover {
    transform: translateY(-2px);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.hero-metric {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-metric-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.hero-metric-link:hover,
.hero-metric-link:focus-visible {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(18, 18, 18, 0.16);
    box-shadow: 0 18px 36px rgba(31, 24, 18, 0.08);
}

.hero-metric-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.28);
    outline-offset: 2px;
}

.hero-metric strong {
    display: block;
    font-size: 24px;
    line-height: 1.05;
}

.hero-metric span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
}

.hero-panel {
    display: flex;
}

.hero-panel-card {
    width: 100%;
    padding: 28px;
    border-radius: 32px;
}

.hero-panel-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #f1d1a0;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel-flow {
    display: grid;
    gap: 14px;
}

.hero-panel-flow-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-panel-flow-item strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f2d3a4 0%, #c29058 100%);
    color: #1c140d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.hero-panel-flow-item span {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.hero-panel-flow-item p {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    line-height: 1.55;
}

.hero-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.hero-points li {
    position: relative;
    padding-left: 22px;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f2d3a4 0%, #c29058 100%);
}

.hero-panel-spotlight {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-panel-spotlight strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.hero-panel-spotlight p {
    margin-top: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.hero-scroll-hint {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus-visible {
    color: #fff;
    transform: translateY(1px);
}



/* =========================
   SEARCH
========================= */
.search-area {
    padding: 28px 20px 10px;
    text-align: center;
}

.search-box input {
    width: 100%;
    max-width: 480px;
    padding: 16px 20px;
    border-radius: 18px;
    outline: none;
    font-size: 16px;
}

.search-hint {
    margin-top: 10px;
    font-size: 13px;
    color: var(--muted);
}

.search-hint span {
    color: rgba(255,255,255,0.82);
    cursor: pointer;
    text-decoration: underline;
}

/* =========================
   PRODUCTS
========================= */
.products {
    position: relative;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    transition: min-height 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 4px;
}

.products.is-empty {
    min-height: 120px;
    justify-content: center;
}

.products-slider {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    padding: 4px 0 8px;
    min-height: 0;
    overflow-y: visible;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
    overscroll-behavior-x: contain;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.products-slider-controls {
    position: absolute;
    top: 50%;
    left: -12px;
    right: -12px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 0;
    pointer-events: none;
    z-index: 4;
}

.products-slider-arrow {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(18, 18, 18, 0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 240, 240, 0.96) 100%);
    color: #1b140f;
    box-shadow: 0 14px 28px rgba(18, 18, 18, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.products-slider-arrow span {
    font-size: 24px;
    line-height: 1;
}

.products-slider-arrow:hover,
.products-slider-arrow:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(194, 144, 88, 0.34);
    box-shadow: 0 18px 34px rgba(18, 18, 18, 0.12);
}

.products-slider-arrow:disabled {
    opacity: 0.42;
    cursor: default;
    transform: none;
    box-shadow: 0 10px 18px rgba(18, 18, 18, 0.05);
}

.product {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-width: none;
    padding: 24px 24px 28px;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;

    display: grid;
    grid-template-rows: 188px minmax(162px, 1fr) 144px 56px;
    gap: 16px;

    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;

    scroll-snap-align: start;
    cursor: pointer;

}

.product::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.product::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(185, 135, 79, 0), rgba(185, 135, 79, 0.3), rgba(185, 135, 79, 0));
    pointer-events: none;
}

.product:hover {
    transform: translateY(-4px);
}

.product.hidden {
    display: none !important;
}

#noResults {
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    opacity: 0;
    transform: translateY(14px);
    width: fit-content;
    max-width: 100%;
    text-align: center;
    color: var(--muted);
    min-height: 24px;
    visibility: hidden;
    align-self: center;
    transition:
        opacity 0.4s ease,
        transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#noResults.show {
    opacity: 0.8;
    transform: translateY(0);
    visibility: visible;
}

.product img {
    width: 100%;
    height: 172px;
    object-fit: contain;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 0.3s;
}

.product-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    min-height: 188px;
}

.product:hover img {
    transform: scale(1.05);
}

.product-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(18, 18, 18, 0.08);
    min-height: 162px;
}

.product-info::before {
    content: none;
}

.product h3 {
    margin: 0;
    font-size: 18px;
    min-height: 68px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: -0.018em;
    word-break: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info p {
    margin: 0;
    min-height: 64px;
    color: var(--muted);
    line-height: 1.58;
    font-size: 13px;
    letter-spacing: 0;
    max-width: 25ch;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-offer-panel {
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 247, 247, 0.92) 100%);
    border: 1px solid rgba(18, 18, 18, 0.06);
    box-shadow: 0 18px 34px rgba(18, 18, 18, 0.06);
    display: grid;
    gap: 12px;
    min-height: 144px;
    align-content: start;
}

.product-condition-switcher {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    padding: 4px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(244, 244, 244, 0.95) 0%, rgba(233, 233, 233, 0.96) 100%);
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    box-sizing: border-box;
}

.product-condition-option {
    appearance: none;
    border: none;
    background: transparent;
    color: rgba(54, 54, 54, 0.86);
    height: 40px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-condition-option:hover {
    color: #121212;
}

.product-condition-option:focus-visible {
    outline: 2px solid rgba(122, 91, 55, 0.7);
    outline-offset: 2px;
}

.product-condition-option.is-active {
    background: linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(18, 18, 18, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product .price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: -2px 0 0;
    font-size: 18px;
    font-weight: 700;
    min-height: 60px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #111111;
    justify-content: flex-start;
    transform: none;
}

.product .price::before {
    content: "Цена";
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(102, 102, 102, 0.9);
}

.buy-button {
    width: 100%;
    height: 56px;

    border: none;
    border-radius: 18px;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 42px 20px 84px;
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}

.product-breadcrumbs a {
    color: var(--text);
    text-decoration: none;
}

.product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 28px;
    align-items: stretch;
}

.product-showcase-left {
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 22px;
    align-self: stretch;
}

.product-showcase-media {
    position: relative;
    padding: 32px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(145deg, #080808 0%, #111111 46%, #1a1a1a 100%);
    min-height: 620px;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(12, 12, 12, 0.22);
    display: flex;
    flex-direction: column;
}

.product-showcase-glow {
    position: absolute;
    inset: auto;
    width: 320px;
    height: 320px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.product-showcase-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-showcase-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    margin-top: 26px;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.product-showcase-media img {
    width: 100%;
    max-width: 420px;
    height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.38));
}

.product-hero-info {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-hero-title {
    color: #ffffff;
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.product-hero-text {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.68;
}

.product-hero-price {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: grid;
    gap: 6px;
}

.product-hero-price-label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-hero-price-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.product-showcase-panel {
    display: flex;
    flex-direction: column;
    min-height: 620px;
    height: 100%;
    box-sizing: border-box;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line-premium);
    box-shadow: var(--shadow-soft);
}

.product-showcase-kicker {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.05);
    color: #7a5b37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-showcase-panel h1 {
    margin: 16px 0 0;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.product-showcase-lead {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.72;
    font-size: 16px;
}

.product-showcase-bullets {
    margin: 24px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.product-showcase-purchase {
    margin-top: auto;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
}

.product-showcase-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
}

.product-showcase-price span {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-showcase-price strong {
    font-size: clamp(34px, 5vw, 46px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.product-showcase-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-condition-switcher-detail {
    width: min(248px, 100%);
    flex: 0 0 auto;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.98) 0%, rgba(234, 234, 234, 0.98) 100%);
}

.product-showcase-buy {
    height: 56px;
}

.product-showcase-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.product-showcase-highlights {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-showcase-highlight {
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(18, 18, 18, 0.04);
    border: 1px solid var(--line);
}

.product-showcase-highlight-action {
    display: block;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product-showcase-highlight-action:hover,
.product-showcase-highlight-action:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(18, 18, 18, 0.16);
    box-shadow: 0 18px 36px rgba(31, 24, 18, 0.08);
}

.product-showcase-highlight-action:focus-visible {
    outline: 2px solid rgba(17, 17, 17, 0.32);
    outline-offset: 2px;
}

.product-showcase-highlight strong {
    display: block;
    font-size: 15px;
}

.product-showcase-highlight span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.product-spec-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-spec-card {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
}

.product-spec-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.product-insight-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line-premium);
    box-shadow: var(--shadow-soft);
}

.product-insight-card strong {
    display: block;
    font-size: 16px;
}

.product-insight-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
}

.product-column-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line-premium);
    box-shadow: var(--shadow-soft);
}

.product-column-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.product-column-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.68;
}

.product-column-card ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

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

.product-section-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line-premium);
    box-shadow: var(--shadow-soft);
}

.product-section-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.product-section-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.68;
}

.product-section-card ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.product-chat-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: auto;
    align-self: flex-start;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(180deg, #2d2d2d 0%, #080808 100%);
}

/* =========================
   SAFE PERFORMANCE
========================= */
.advantages,
.faq-container,
.reviews-grid,
.product-sections,
footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
}

@media (hover: none) {
    .product:hover,
    .advantage:hover,
    .faq-item:hover,
    .about-card:hover,
    .review-card:hover,
    .contact-icon:hover,
    .legal-doc-link:hover,
    .buy-button:hover,
    .checkout-btn:hover {
        transform: none;
    }

    .product:hover img,
    .advantage:hover img,
    .contact-icon:hover img {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .flying-img,
    .chat-message,
    .chat-panel,
    #cartModal,
    #cartOverlay,
    #cartPanel,
    .product,
    .product img,
    .advantage,
    .advantage img,
    .faq-item,
    .about-card,
    .review-card,
    .contact-icon,
    .contact-icon img,
    .legal-doc-link,
    .buy-button,
    .checkout-btn {
        animation: none !important;
        transition: none !important;
    }
}

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

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

    .product-showcase-left,
    .product-showcase-highlights,
    .product-spec-grid,
    .product-insight-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 24px 16px 52px;
    }

    .product-showcase-media,
    .product-showcase-panel,
    .product-section-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .product-showcase-media {
        min-height: 0;
    }

    .product-showcase-media img {
        height: 250px;
    }

    .product-showcase-visual {
        min-height: 260px;
        margin-top: 18px;
    }

    .product-showcase-price {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-showcase-price-row {
        flex-direction: column;
        align-items: stretch;
    }

    .product-condition-switcher-detail {
        width: 100%;
    }
}


/* =========================
   ADVANTAGES
========================= */
.advantages {
    padding: 24px 20px 80px;
    background: transparent;
}

.advantages h2 {
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.03em;
}

.advantages-lead {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
    color: #5d564e;
    line-height: 1.75;
    font-size: 16px;
}

.advantage-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    max-width: 1100px;
    margin: auto;
}

.advantage {
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(8px);
}

.advantage img,
.advantage svg {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 15px;

    transition: transform 0.3s;
}

.advantage h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.advantage p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.advantage:hover img,
.advantage:hover svg {
    transform: scale(1.15);
}


/* =========================
   CART MODAL
========================= */
#cartModal {
    position: fixed;
    inset: 0;
    z-index: 2000;

    /* вместо display */
    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
}

#cartOverlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);

    transition: all 0.3s ease;
}

#cartPanel {
    position: absolute;
    top: 0;
    right: 0;

    width: 380px;
    max-width: 100%;
    height: 100%;

    padding: 30px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    /* 🔥 анимация выезда */
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ✅ АКТИВНОЕ СОСТОЯНИЕ */
#cartModal.active {
    opacity: 1;
    pointer-events: all;
}

#cartModal.active #cartOverlay {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

#cartModal.active #cartPanel {
    transform: translateX(0);
}

/* остальное НЕ ТРОГАЛ */

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#closeCartCross {
    border: none;
    background: none;
    font-size: 30px;
    cursor: pointer;
}

#cartItems {
    flex: 1;
    margin-top: 20px;
    overflow-y: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.cart-item-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-title {
    font-weight: 600;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 12px;
    color: #86868b;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(18, 18, 18, 0.1);
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.04);
    color: #111;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.cart-qty-btn:hover {
    background: rgba(18, 18, 18, 0.08);
}

.cart-qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
}

.cart-remove-btn {
    min-height: 34px;
    padding: 0 10px;
    border: none;
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.06);
    color: #6d655c;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.cart-remove-btn:hover {
    background: rgba(18, 18, 18, 0.1);
    color: #111;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
    padding: 18px;

    border: none;
    border-radius: 14px;
    cursor: pointer;
}

.checkout-btn:hover {
    transform: translateY(-1px);
}

#closeCartBtn {
    width: 100%;
    margin-top: 15px;

    border: none;
    background: none;
    text-decoration: underline;
    cursor: pointer;
}


/* =========================
   TOAST
========================= */
#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);

    padding: 12px 25px;

    border-radius: 50px;
    opacity: 0;
    transition: 0.3s;

    z-index: 3000;
    pointer-events: none;
}

#toast.show {
    opacity: 1;
}

#cartNudge {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 3900;
    width: min(360px, calc(100vw - 44px));
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: 0 22px 50px rgba(18, 18, 18, 0.12);
    backdrop-filter: blur(18px);
    display: grid;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

#cartNudge.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.cart-nudge-main {
    min-width: 0;
}

.cart-nudge-title {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.2;
}

.cart-nudge-text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-nudge-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cart-nudge-primary,
.cart-nudge-secondary {
    min-height: 46px;
    border-radius: 999px;
    font: inherit;
    cursor: pointer;
}

.cart-nudge-primary {
    flex: 1 1 auto;
    padding: 0 18px;
    border: none;
    background: linear-gradient(180deg, #2d2d2d 0%, #080808 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 14px 26px rgba(18, 15, 13, 0.16);
}

.cart-nudge-secondary {
    flex: 0 0 auto;
    padding: 0 16px;
    border: 1px solid rgba(18, 18, 18, 0.1);
    background: rgba(18, 18, 18, 0.04);
    color: var(--text);
    font-weight: 500;
}


/* =========================
   FOOTER
========================= */
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}

footer p {
    margin: 0;
    line-height: 1.7;
}

.copy-link {
    padding: 2px 5px;
    text-decoration: underline;
    cursor: pointer;
    transition: 0.2s;
}

.footer-contact-link {
    color: #f1d1a0;
    text-decoration: none;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f5f1eb;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.checkout-legal-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 18, 18, 0.08);
    color: #6d655c;
    font-size: 13px;
    line-height: 1.7;
}

.checkout-legal-note strong {
    color: #111111;
}

.checkout-legal-note a {
    color: #111111;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.checkout-legal-note a:hover {
    border-color: rgba(17, 17, 17, 0.42);
}

.checkout-value-note {
    margin-top: 8px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.02) 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #4f4941;
    line-height: 1.7;
}

.checkout-value-note strong {
    display: block;
    margin-bottom: 4px;
    color: #111111;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 16px;
    }

    .nav {
        width: 100%;
        order: 3;
        margin-top: 6px;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .cart-btn {
        width: 100%;
        text-align: center;
        margin-top: 6px;
    }

    #cartNudge {
        left: 14px;
        right: auto;
        bottom: calc(16px + env(safe-area-inset-bottom));
        width: min(272px, calc(100vw - 28px));
        padding: 13px;
        border-radius: 22px;
    }

    .cart-nudge-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-nudge-primary,
    .cart-nudge-secondary {
        width: 100%;
        min-height: 44px;
    }

    .hero {
        padding: 44px 16px;
    }

    .hero h2 {
        font-size: 28px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: left;
    }

    .hero-copy,
    .hero-panel-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .hero-kicker {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 14px;
        font-size: 10px;
        line-height: 1.35;
        letter-spacing: 0.05em;
        white-space: normal;
        text-wrap: pretty;
    }

    .hero-home {
        padding-top: 22px;
        padding-bottom: 24px;
    }

    .hero-home .hero-shell {
        gap: 14px;
    }

    .hero-home .hero-copy,
    .hero-home .hero-panel-card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .hero-home .hero-kicker {
        min-height: 0;
        padding: 10px 12px;
        font-size: 9.5px;
        line-height: 1.4;
        letter-spacing: 0.04em;
        white-space: normal;
    }

    .hero-home h1,
    .hero-home h2 {
        margin-top: 14px;
        font-size: 38px;
        line-height: 1.02;
    }

    .hero-home p {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.58;
    }

    .hero-home .hero-trust {
        margin-top: 14px;
        gap: 8px;
    }

    .hero-home .hero-trust span {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .hero-home .hero-price-note {
        margin-top: 12px;
        gap: 8px;
    }

    .hero-home .hero-price-note span {
        min-height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }

    .hero-home .hero-anti-pain {
        margin-top: 12px;
        font-size: 13px;
    }

    .hero-home .hero-cta-notes {
        margin-top: 9px;
        gap: 6px;
    }

    .hero-home .hero-speed-note {
        min-height: 34px;
        padding: 0 12px;
        font-size: 12px;
    }

    .hero-home .hero-instant-note {
        font-size: 12px;
        line-height: 1.45;
    }

    .hero-home .hero-actions {
        margin-top: 18px;
        gap: 10px;
    }

    .hero-home .hero-primary,
    .hero-home .hero-secondary {
        min-height: 48px;
        font-size: 15px;
    }

    .hero-home .hero-quick-links {
        grid-template-columns: 1fr;
        margin-top: 14px;
        gap: 8px;
    }

    .hero-home .hero-quick-link {
        min-height: 0;
        padding: 14px 16px;
    }

    .hero-home .hero-quick-link .hero-quick-link-kicker {
        min-height: 22px;
        padding: 0 8px;
        font-size: 9.5px;
    }

    .hero-home .hero-quick-link strong {
        font-size: 16px;
    }

    .hero-home .hero-quick-link .hero-quick-link-meta {
        font-size: 12px;
    }

    .hero-home .hero-quick-link .hero-quick-link-cta {
        min-height: 34px;
        padding: 0 13px;
        font-size: 11.5px;
    }

    .hero-home .hero-scroll-hint {
        margin-top: 12px;
        font-size: 13px;
    }

    .hero-home .hero-panel-flow {
        gap: 8px;
    }

    .hero-home .hero-panel-flow-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 13px;
        border-radius: 16px;
    }

    .hero-home .hero-panel-flow-item strong {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        font-size: 15px;
    }

    .hero-home .hero-panel-flow-item span {
        font-size: 14px;
    }

    .hero-home .hero-panel-flow-item p {
        margin-top: 5px;
        font-size: 12px;
        line-height: 1.5;
    }

    .hero-home .hero-metrics {
        margin-top: 18px;
        gap: 10px;
    }

    .hero-home .hero-metric {
        padding: 14px 16px;
        border-radius: 18px;
    }

    .hero-home .hero-metric strong {
        font-size: 20px;
    }

    .hero-home .hero-metric span {
        margin-top: 4px;
        font-size: 11px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .search-area {
        padding: 22px 16px 8px;
    }

    .search-box input {
        max-width: none;
        font-size: 16px;
    }

    .search-hint,
    .faq-search-hint {
        padding: 0 16px;
        line-height: 1.6;
    }

    .products {
        min-height: 500px;
        padding-top: 8px;
    }

    .advantage-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .products-slider {
        padding: 4px 16px 8px;
        gap: 16px;
        min-height: 0;
        scroll-snap-type: none;
        scroll-padding-left: 16px;
        scroll-padding-right: 16px;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .product {
        min-height: 470px;
        padding: 22px 20px;
    }

    .advantages {
        padding: 24px 16px 56px;
    }

    .advantages h2 {
        margin-bottom: 32px;
    }

    .advantages-lead {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.7;
    }

    #cartPanel {
        width: min(100%, 420px);
        padding: 22px 18px;
    }

    footer {
        padding: 28px 16px;
        word-break: break-word;
    }

    .faq-container {
        padding: 28px 16px;
    }

    .faq-item,
    .about-card {
        padding: 18px;
    }

    .contact-icons {
        justify-content: center;
        gap: 12px;
    }

    .contact-icon {
        min-width: 92px;
    }

    .about-doc-links,
    .footer-links {
        gap: 10px;
    }

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

    .review-card {
        padding: 18px;
    }

    .review-head {
        flex-direction: column;
        gap: 8px;
    }

}


@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .nav a {
        font-size: 13px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero-kicker {
        min-height: 0;
        padding: 10px 12px;
        font-size: 9px;
        letter-spacing: 0.04em;
    }

    .hero-home {
        padding-top: 18px;
        padding-bottom: 20px;
    }

    .hero-home .hero-copy,
    .hero-home .hero-panel-card {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .hero-home .hero-kicker {
        padding: 9px 11px;
        font-size: 8.5px;
        line-height: 1.38;
        letter-spacing: 0.03em;
    }

    .hero-home h1,
    .hero-home h2 {
        font-size: 22px;
        line-height: 1.06;
        margin-top: 12px;
    }

    .hero-home p {
        margin-top: 10px;
        font-size: 13.5px;
        line-height: 1.56;
    }

    .hero-home .hero-trust {
        margin-top: 12px;
        gap: 8px;
    }

    .hero-home .hero-trust span {
        min-height: 34px;
        padding: 0 11px;
        font-size: 11px;
    }

    .hero-home .hero-price-note {
        margin-top: 10px;
        gap: 7px;
    }

    .hero-home .hero-price-note span {
        min-height: 38px;
        padding: 0 13px;
        font-size: 12px;
    }

    .hero-home .hero-anti-pain {
        margin-top: 10px;
        font-size: 12px;
    }

    .hero-home .hero-cta-notes {
        margin-top: 8px;
        gap: 6px;
    }

    .hero-home .hero-speed-note {
        min-height: 32px;
        padding: 0 11px;
        font-size: 11.5px;
    }

    .hero-home .hero-instant-note {
        font-size: 11.5px;
        line-height: 1.45;
    }

    .hero-home .hero-actions {
        margin-top: 16px;
        gap: 8px;
    }

    .hero-home .hero-primary,
    .hero-home .hero-secondary {
        min-height: 44px;
        font-size: 14px;
    }

    .hero-home .hero-quick-links {
        grid-template-columns: 1fr;
        margin-top: 12px;
        gap: 8px;
    }

    .hero-home .hero-quick-link {
        min-height: 0;
        padding: 12px 14px;
        border-radius: 15px;
    }

    .hero-home .hero-quick-link .hero-quick-link-kicker {
        min-height: 20px;
        padding: 0 7px;
        font-size: 9px;
    }

    .hero-home .hero-quick-link strong {
        font-size: 15px;
    }

    .hero-home .hero-quick-link .hero-quick-link-meta {
        font-size: 11.5px;
    }

    .hero-home .hero-quick-link .hero-quick-link-cta {
        min-height: 32px;
        padding: 0 12px;
        font-size: 11px;
    }

    .hero-home .hero-scroll-hint {
        margin-top: 10px;
        font-size: 12px;
    }

    .hero-home .hero-panel-flow {
        gap: 8px;
    }

    .hero-home .hero-panel-flow-item {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 9px;
        padding: 12px;
        border-radius: 15px;
    }

    .hero-home .hero-panel-flow-item strong {
        width: 32px;
        height: 32px;
        border-radius: 11px;
        font-size: 14px;
    }

    .hero-home .hero-panel-flow-item span {
        font-size: 13px;
    }

    .hero-home .hero-panel-flow-item p {
        margin-top: 4px;
        font-size: 11.5px;
        line-height: 1.48;
    }

    .hero-home .hero-panel-spotlight {
        margin-top: 16px;
        padding-top: 14px;
    }

    .hero-home .hero-panel-spotlight strong {
        font-size: 15px;
    }

    .hero-home .hero-panel-spotlight p {
        margin-top: 8px;
        font-size: 12.5px;
        line-height: 1.55;
    }

    .hero-home .hero-metrics {
        margin-top: 16px;
        gap: 8px;
    }

    .hero-home .hero-metric {
        padding: 13px 14px;
        border-radius: 16px;
    }

    .hero-home .hero-metric strong {
        font-size: 18px;
    }

    .hero-home .hero-metric span {
        font-size: 10.5px;
    }

    .products {
        min-height: 470px;
    }

    .product {
        min-height: 450px;
        padding: 20px 18px;
        border-radius: 24px;
        gap: 16px;
    }

    .product h3 {
        font-size: 16px;
        min-height: 38px;
        line-height: 1.26;
    }

    .product-info {
        padding: 16px 0 0;
    }

    .product-info::before {
        content: none;
    }

    .product-info p {
        min-height: 36px;
        font-size: 13px;
        line-height: 1.55;
    }

    .product .price {
        font-size: 14px;
        padding-top: 12px;
        gap: 5px;
    }

    .product .price::before {
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }

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

    .reviews-grid {
        gap: 12px;
    }

    .review-card {
        padding: 16px;
        border-radius: 16px;
    }

    .review-head {
        gap: 6px;
        margin-bottom: 10px;
    }

    .review-head h3 {
        font-size: 16px;
    }

    .review-head span {
        font-size: 12px;
    }

    .review-stars {
        font-size: 14px;
        letter-spacing: 0.5px;
        align-self: flex-start;
    }

    .review-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .about-meta-line {
        display: block;
    }

    .about-doc-links,
    .footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-doc-link,
    .footer-links a {
        width: 100%;
    }

    .legal-page .about-card {
        padding: 20px 18px;
    }

    .legal-lead,
    .legal-list {
        font-size: 14px;
    }

    .checkout-legal-note {
        padding: 12px 14px;
        font-size: 12px;
    }

    .checkout-value-note {
        padding: 14px 15px;
        font-size: 13px;
    }
}

.flying-img {
    position: fixed;
    z-index: 9999;

    width: 80px;
    height: 80px;

    object-fit: contain;

    pointer-events: none;

    transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity, left, top, width, height;
}

/* =========================
   FAQ
========================= */

.faq-container {
    max-width: 1120px;
    margin: auto;
    padding: 48px 20px 56px;
    display: grid;
    gap: 18px;
}

.faq-item {
    position: relative;
    padding: 24px 26px;
    margin-bottom: 0;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-q {
    margin: 0;
    font-size: 21px;
    letter-spacing: -0.02em;
}

.faq-a {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.faq-hidden {
    display: none;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-link:visited,
.logo-link:active,
.logo-link:hover {
    color: inherit;
    text-decoration: none;
}

.faq-search-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.faq-search-hint span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 6px 4px 0;
    padding: 0 14px;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-card {
    position: relative;
    padding: 28px;
    margin-bottom: 0;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-card h2,
.about-card h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.about-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
}

.about-meta {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.about-meta-line,
.about-meta-line a {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
}

.about-meta-line strong {
    color: var(--text);
}

.about-meta-line a:hover {
    color: var(--text);
}

.about-note {
    margin-top: 16px !important;
    color: var(--muted);
}

.about-doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.legal-doc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2d2d2d 0%, #080808 100%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 14px 26px rgba(18, 15, 13, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-doc-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(18, 15, 13, 0.22);
}

.legal-page {
    display: grid;
    gap: 18px;
}

.legal-page .about-card {
    padding: 32px;
}

.legal-lead {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.legal-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.legal-list strong {
    color: var(--text);
}

.legal-lead a,
.legal-list a {
    color: var(--text);
    text-decoration-color: rgba(17, 17, 17, 0.22);
    text-underline-offset: 3px;
}

.legal-lead a:hover,
.legal-list a:hover {
    text-decoration-color: rgba(17, 17, 17, 0.48);
}

.legal-caption {
    margin-top: 16px !important;
    color: var(--muted);
    font-size: 14px !important;
}


.contact-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;

    min-width: 116px;
    padding: 16px 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-icon img,
.contact-icon svg {
    display: block;
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 6px;
    transition: transform 0.2s;
}

.contact-icon span {
    font-size: 13px;
}

.contact-icon:hover img,
.contact-icon:hover svg {
    transform: scale(1.1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}

.review-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card p {
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.review-head > div:first-child {
    min-width: 0;
}

.review-head h3 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.35;
    word-break: break-word;
    letter-spacing: -0.02em;
}

.review-head span {
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
}

.review-stars {
    letter-spacing: 1px;
    white-space: nowrap;
    font-size: 15px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        gap: 12px;
    }

    .faq-container {
        padding: 28px 16px 40px;
        gap: 14px;
    }

    .review-card {
        padding: 16px;
        border-radius: 16px;
    }

    .about-card,
    .faq-item {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .about-card h2,
    .about-card h3,
    .faq-q {
        font-size: 18px;
    }

    .review-head {
        gap: 6px;
        margin-bottom: 10px;
    }

    .review-head h3 {
        font-size: 16px;
    }

    .review-head span {
        font-size: 12px;
    }

    .review-stars {
        font-size: 14px;
        letter-spacing: 0.5px;
        align-self: flex-start;
    }

    .review-card p {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* =========================
   Unified Premium Theme V2
========================= */
:root {
    --bg: #ededed;
    --bg-soft: #f8f8f8;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-deep: rgba(246, 246, 246, 0.96);
    --text: #111111;
    --muted: #626262;
    --line: rgba(18, 18, 18, 0.08);
    --line-strong: rgba(18, 18, 18, 0.14);
    --line-premium: rgba(18, 18, 18, 0.12);
    --line-premium-soft: rgba(255, 255, 255, 0.52);
    --accent: #2b2b2b;
    --accent-dark: #000000;
    --shadow-soft: 0 18px 45px rgba(27, 29, 33, 0.07);
    --shadow-card: 0 22px 48px rgba(20, 21, 24, 0.09);
}

body {
    color: var(--text);
}

body:not(.support-page) {
    position: relative;
    background: #0d1117;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body:not(.support-page)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 34%),
        radial-gradient(circle at top right, rgba(186, 186, 186, 0.16), transparent 28%),
        linear-gradient(180deg, #fafafa 0%, #efefef 52%, #e8e8e8 100%);
}

body:not(.support-page) > :not(.site-chat):not(#cartModal):not(#toast):not(#cartNudge):not(#dh-loader) {
    position: relative;
    z-index: 1;
}

body:not(.support-page) > footer {
    margin-top: auto;
}

.header {
    background: rgba(20, 18, 15, 0.8);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero {
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.16), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(140, 140, 140, 0.12), transparent 25%),
        linear-gradient(135deg, #090909 0%, #141414 45%, #1d1d1d 100%);
    color: #fff;
}

.hero-copy,
.hero-panel-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.hero-kicker,
.hero-metric,
.hero-secondary {
    background: rgba(255,255,255,0.08);
}

.hero-copy,
.hero-panel-card,
.product,
.advantage,
.faq-item,
.about-card,
.contact-icon,
.review-card,
.search-box input,
#cartPanel {
    border-radius: 26px;
}

.search-box input,
.product,
.advantage,
.faq-item,
.about-card,
.contact-icon,
.review-card {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line-premium);
    box-shadow: var(--shadow-soft);
}

.search-box input {
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--line-strong);
}

.search-box input::placeholder {
    color: rgba(98, 98, 98, 0.72);
}

.search-hint,
.faq-search-hint,
.product-info p,
.advantage p,
.about-card p,
.faq-a,
.review-card p,
.review-head span,
#noResults,
.contact-icon span {
    color: var(--muted);
}

.search-hint span,
.faq-search-hint span,
.copy-link {
    color: var(--text);
}

.product {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 246, 246, 0.98) 100%);
    border: 1px solid var(--line-premium);
    box-shadow:
        0 10px 22px rgba(20, 21, 24, 0.045),
        0 2px 8px rgba(20, 21, 24, 0.02);
}

.product::before,
.product::after {
    display: block;
}

.product h3,
.about-card h2,
.about-card h3,
.faq-q,
.review-head h3,
.advantages h2 {
    font-family: "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.02em;
}

.price {
    padding-top: 14px;
    border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.buy-button,
.checkout-btn {
    background: linear-gradient(180deg, #2d2d2d 0%, #080808 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 14px 26px rgba(18, 15, 13, 0.18);
}

.buy-button:hover,
.checkout-btn:hover {
    box-shadow: 0 18px 32px rgba(18, 15, 13, 0.24);
}

.advantage,
.faq-item,
.about-card,
.review-card {
    background: rgba(255, 255, 255, 0.82);
}

.contact-icon {
    background: rgba(255, 255, 255, 0.92);
}

.faq-search-hint span {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: none;
}

.faq-search-hint span:hover,
.contact-icon:hover,
.advantage:hover,
.faq-item:hover,
.about-card:hover,
.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 18, 18, 0.16);
    box-shadow: 0 18px 36px rgba(31, 24, 18, 0.08);
}

.product:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 18, 18, 0.14);
    box-shadow:
        0 14px 28px rgba(20, 21, 24, 0.055),
        0 4px 12px rgba(20, 21, 24, 0.025);
}

#cartPanel {
    background: rgba(255, 255, 255, 0.96);
    border-left: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: -20px 0 50px rgba(0,0,0,0.08);
    color: var(--text);
}

#closeCartCross,
#closeCartBtn {
    color: var(--muted);
}

#toast {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
}

footer {
    background: #111111;
    color: #f5f1eb;
}

.copy-link {
    color: #f1d1a0;
}

.copy-link:hover {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
}

.review-stars {
    color: #f1d1a0;
}

@media (max-width: 768px) {
    body:not(.support-page) .header {
        padding-top: env(safe-area-inset-top);
    }

    body:not(.support-page) footer {
        padding-bottom: calc(28px + env(safe-area-inset-bottom));
        position: relative;
        z-index: 2;
        overflow: visible;
    }

    body:not(.support-page) footer::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 10px;
        background: #111111;
        pointer-events: none;
    }

    .hero-copy,
    .hero-panel-card,
    .product,
    .advantage,
    .faq-item,
    .about-card,
    .review-card,
    #cartPanel {
        border-radius: 22px;
    }
}

/* Compact Home Hero */
.hero-home {
    padding-top: 64px;
    padding-bottom: 46px;
}

.hero-home .hero-shell {
    grid-template-columns: minmax(0, 1.48fr) minmax(260px, 0.52fr);
    gap: 16px;
}

.hero-home .hero-copy {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border-color: rgba(255,255,255,0.08);
}

.hero-home .hero-panel-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.13);
}

.hero-home .hero-kicker {
    min-height: 36px;
    padding: 0 15px;
    font-size: 11px;
}

.hero-home h1,
.hero-home h2 {
    max-width: 540px;
    margin-top: 16px;
    font-size: clamp(32px, 5vw, 46px);
}

.hero-home p {
    max-width: 500px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.65;
}

.hero-home .hero-trust {
    margin-top: 16px;
    gap: 10px;
}

.hero-home .hero-trust span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
}

.hero-home .hero-price-note {
    margin-top: 14px;
}

.hero-home .hero-price-note span {
    min-height: 42px;
    padding: 0 15px;
    font-size: 15px;
}

.hero-home .hero-anti-pain {
    margin-top: 12px;
    font-size: 14px;
}

.hero-home .hero-cta-notes {
    margin-top: 10px;
    gap: 7px;
}

.hero-home .hero-speed-note {
    min-height: 36px;
    padding: 0 13px;
    font-size: 13px;
}

.hero-home .hero-instant-note {
    font-size: 13px;
}

.hero-home .hero-actions {
    gap: 10px;
    margin-top: 24px;
}

.hero-home .hero-primary,
.hero-home .hero-secondary {
    min-height: 46px;
    padding: 0 20px;
    font-size: 15px;
}

.hero-home .hero-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
    gap: 10px;
}

.hero-home .hero-quick-link {
    min-height: 0;
    padding: 16px;
}

.hero-home .hero-quick-link .hero-quick-link-kicker {
    min-height: 24px;
    padding: 0 9px;
    font-size: 10px;
}

.hero-home .hero-quick-link strong {
    font-size: 17px;
}

.hero-home .hero-quick-link .hero-quick-link-meta {
    font-size: 12.5px;
}

.hero-home .hero-quick-link .hero-quick-link-cta {
    min-height: 35px;
    padding: 0 12px;
    font-size: 11px;
}

.hero-home .hero-panel-flow {
    gap: 10px;
}

.hero-home .hero-panel-flow-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
}

.hero-home .hero-panel-flow-item strong {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    font-size: 16px;
}

.hero-home .hero-panel-flow-item span {
    font-size: 15px;
}

.hero-home .hero-panel-flow-item p {
    margin-top: 6px;
    font-size: 12.5px;
}

.hero-home .hero-panel-spotlight {
    margin-top: 18px;
    padding-top: 16px;
}

.hero-home .hero-panel-spotlight strong {
    font-size: 16px;
}

.hero-home .hero-panel-spotlight p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.55;
}

.hero-home .hero-metrics {
    gap: 10px;
    margin-top: 24px;
}

.hero-home .hero-metric {
    padding: 16px 18px;
    border-radius: 18px;
}

.hero-home .hero-metric strong {
    font-size: 22px;
}

.hero-home .hero-metric span {
    margin-top: 5px;
    font-size: 12px;
}

.hero-home .hero-panel-label {
    margin-bottom: 16px;
    font-size: 12px;
}

.hero-home .hero-points {
    gap: 10px;
}

.hero-home .hero-points li {
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .hero-home {
        padding-top: 28px;
        padding-bottom: 20px;
    }

    .hero-home .hero-copy,
    .hero-home .hero-panel-card {
        padding: 18px 16px;
    }
}

.faq-hero .hero-copy,
.faq-hero .hero-panel-card {
    min-height: 100%;
}

/* =========================
   CHAT
========================= */

.site-chat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 4000;
}

.chat-fab {
    min-width: 120px;
    height: 54px;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #252525 0%, #0f0f0f 100%);
    color: #fff;
    box-shadow: 0 18px 38px rgba(18, 18, 18, 0.22);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: min(380px, calc(100vw - 24px));
    max-height: min(78vh, 720px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: 0 22px 50px rgba(18, 18, 18, 0.12);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transform: translateY(16px) scale(0.94);
    transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.chat-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.chat-panel-head strong {
    display: block;
    color: #111111;
    font-size: 16px;
}

.chat-panel-head span {
    display: block;
    margin-top: 3px;
    color: #6d655c;
    font-size: 12px;
}

.chat-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.06);
    color: #111111;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: none;
    min-height: 220px;
    padding: 16px;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.88) 0%, rgba(244, 244, 244, 0.92) 100%);
}

.chat-empty {
    margin: auto 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 18, 18, 0.08);
    text-align: left;
}

.chat-empty strong {
    display: block;
    color: #111111;
    font-size: 15px;
    margin-bottom: 6px;
}

.chat-empty span {
    color: #6d655c;
    font-size: 13px;
    line-height: 1.5;
}

.chat-message {
    display: flex;
    animation: chatMessageIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-message.is-user {
    justify-content: flex-end;
}

.chat-message.is-operator {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: 82%;
    padding: 12px 14px 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: 0 8px 18px rgba(18, 18, 18, 0.05);
    overflow: hidden;
}

.chat-message.is-user .chat-bubble {
    background: linear-gradient(180deg, #2b2b2b 0%, #111111 100%);
    color: #ffffff;
    border-color: rgba(18, 18, 18, 0.12);
}

.chat-bubble p {
    margin: 0;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 14px;
}

.chat-link {
    color: #7a5d3c;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
}

.chat-link:hover,
.chat-link:focus-visible {
    color: #5f472d;
}

.chat-message.is-user .chat-link {
    color: #f4dec0;
}

.chat-message.is-user .chat-link:hover,
.chat-message.is-user .chat-link:focus-visible {
    color: #fff2dc;
}

.chat-media-image {
    display: block;
    width: 220px;
    max-width: 100%;
    max-height: 280px;
    border-radius: 14px;
    margin-bottom: 8px;
    object-fit: contain;
    box-shadow: 0 8px 18px rgba(18, 18, 18, 0.08);
    background: #f4f4f4;
}

.chat-media-button {
    display: block;
    width: 220px;
    max-width: 100%;
    padding: 0;
    margin: 0 0 8px;
    border: none;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 14px;
}

.chat-media-video {
    display: block;
    width: 220px;
    max-width: 100%;
    max-height: 280px;
    border-radius: 16px;
    background: #000;
    margin-bottom: 8px;
}

.chat-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(10px);
    z-index: 1400;
}

.chat-lightbox.is-open {
    display: flex;
}

.chat-lightbox-image {
    max-width: min(92vw, 960px);
    max-height: 88vh;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #fff;
}

.chat-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

body.chat-lightbox-open {
    overflow: hidden;
}

.chat-bubble time {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(102, 101, 92, 0.9);
}

.chat-message.is-user .chat-bubble time {
    color: rgba(255, 255, 255, 0.72);
}

.chat-form {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid rgba(18, 18, 18, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

.chat-form-controls {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 108px;
    align-items: flex-end;
    gap: 8px;
}

.chat-attach {
    min-width: 0;
    height: 46px;
    padding: 0 10px;
    border-radius: 16px;
    border: 1px solid rgba(18, 18, 18, 0.1);
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.chat-upload-preview {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 16px;
    background: rgba(18, 18, 18, 0.04);
    border: 1px solid rgba(18, 18, 18, 0.08);
}

.chat-upload-preview.is-hidden {
    display: none;
}

.chat-upload-preview-media img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
}

.chat-upload-preview-meta {
    min-width: 0;
}

.chat-upload-preview-meta strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    color: #111111;
}

.chat-upload-preview-meta button {
    margin-top: 6px;
    padding: 0;
    border: none;
    background: transparent;
    color: #7a5d3c;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
}

.chat-input {
    display: block;
    width: 100%;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    padding: 12px 16px 10px;
    border-radius: 16px;
    border: 1px solid rgba(18, 18, 18, 0.1);
    background: rgba(255, 255, 255, 0.9);
    resize: none;
    font: inherit;
    font-size: 14px;
    line-height: 22px;
    color: #111111;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.chat-input:focus {
    outline: none;
    border-color: rgba(194, 144, 88, 0.55);
    box-shadow: 0 0 0 4px rgba(194, 144, 88, 0.14);
}

@keyframes chatMessageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-send {
    min-width: 0;
    width: 108px;
    height: 46px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #252525 0%, #0f0f0f 100%);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 768px) {
    .site-chat {
        right: 14px;
        bottom: 88px;
    }

    .chat-fab {
        min-width: 108px;
        height: 50px;
    }

    .chat-panel {
        right: 0;
        bottom: 136px;
        width: min(360px, calc(100vw - 16px));
        border-radius: 22px;
        max-height: min(74vh, 640px);
    }

    .chat-messages {
        min-height: 200px;
        max-height: 48vh;
    }

    .chat-lightbox {
        padding: 16px;
    }

    .chat-lightbox-image {
        max-width: 100%;
        max-height: 82vh;
        border-radius: 18px;
    }

    .chat-form-controls {
        grid-template-columns: 78px minmax(0, 1fr) 104px;
    }

    .chat-attach,
    .chat-send {
        width: 100%;
    }
}

/* =========================
   SUPPORT PAGE
========================= */
.support-page {
    height: 100dvh;
    overflow: hidden;
    min-height: 100dvh;
    background-color: #0d1117;
    background:
        radial-gradient(circle at top left, rgba(194, 144, 88, 0.18), transparent 34%),
        linear-gradient(180deg, #0d1117 0%, #111827 100%);
    color: #f5f7fb;
}

.support-shell {
    height: 100dvh;
    min-height: 100dvh;
    padding: 28px;
    overflow: hidden;
}

.support-login {
    min-height: calc(100dvh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-login.is-hidden,
.support-app {
    display: none;
}

.support-app.is-authenticated {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 18px;
    height: calc(100dvh - 56px);
    min-height: 0;
}

.support-login-card,
.support-sidebar,
.support-chat-panel {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(10, 14, 22, 0.72);
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    backdrop-filter: blur(16px);
}

.support-login-card {
    width: min(100%, 460px);
    padding: 34px;
    border-radius: 28px;
}

.support-login-kicker,
.support-sidebar-kicker,
.support-chat-kicker,
.support-message-role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.support-login-card h1,
.support-sidebar h2,
.support-chat-head h3 {
    margin: 10px 0 0;
    font-size: clamp(28px, 4vw, 30px);
    line-height: 1.05;
}

.support-login-card p {
    margin: 14px 0 0;
    color: rgba(255,255,255,0.72);
}

.support-login-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(242, 211, 164, 0.18);
    background: rgba(194, 144, 88, 0.08);
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.5;
}

.support-login-secondary {
    width: 100%;
    justify-content: center;
}

.support-login-form {
    margin-top: 26px;
    display: grid;
    gap: 16px;
}

.support-field {
    display: grid;
    gap: 8px;
}

.support-field span {
    font-size: 14px;
    color: rgba(255,255,255,0.76);
}

.support-field input,
.support-chat-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 18px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
}

.support-field input:focus,
.support-chat-form textarea:focus {
    border-color: rgba(242, 211, 164, 0.8);
    box-shadow: 0 0 0 4px rgba(194, 144, 88, 0.14);
}

.support-login-button,
.support-chat-form button,
.support-logout {
    border: none;
    cursor: pointer;
    font: inherit;
}

.support-login-button,
.support-chat-form button {
    min-height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f2d3a4 0%, #c29058 100%);
    color: #20160e;
    font-weight: 700;
}

.support-login-error {
    min-height: 20px;
    color: #ff9d9d;
    font-size: 14px;
}

.support-sidebar,
.support-chat-panel {
    border-radius: 28px;
}

.support-sidebar {
    padding: 18px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.support-sidebar-head,
.support-chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.support-sidebar-head {
    flex-wrap: wrap;
    align-items: flex-start;
}

.support-sidebar-stack {
    margin-top: 18px;
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(220px, 300px);
    gap: 16px;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.support-sidebar-stack-orders {
    grid-template-rows: minmax(0, 1fr);
}

.support-sidebar-block {
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.support-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.support-block-head strong {
    font-size: 15px;
}

.support-block-head span {
    font-size: 12px;
    color: rgba(255,255,255,0.56);
    text-align: right;
}

.support-chat-head-main {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.support-logout {
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.support-chat-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.support-panel-hidden {
    display: none !important;
}

.support-order-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.support-secondary-action,
.support-danger-action {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.support-danger-action {
    border-color: rgba(255, 120, 120, 0.26);
    color: #ffb4b4;
}

.support-list,
.support-orders-list {
    display: grid;
    align-content: start;
    gap: 10px;
    flex: 1 1 auto;
    overflow-y: auto;
    padding-right: 4px;
    padding-bottom: 6px;
    overflow-x: hidden;
    min-height: 0;
}

.support-list-empty,
.support-placeholder {
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(255,255,255,0.68);
    min-height: 140px;
    padding: 20px;
}

.support-placeholder strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
}

.support-conversation {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    line-height: 1.35;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    padding: 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.support-conversation:hover,
.support-conversation:focus-visible,
.support-conversation.is-active {
    border-color: rgba(242, 211, 164, 0.35);
    background: rgba(194, 144, 88, 0.12);
    box-shadow: inset 0 0 0 1px rgba(242, 211, 164, 0.18);
}

.support-conversation-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.support-conversation-title,
.support-order-mini-title,
.support-conversation-top strong,
.support-order-mini-top strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    min-width: 0;
    flex: 1 1 auto;
    line-height: 1.15;
}

.support-conversation-meta {
    display: block;
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.support-conversation-message {
    display: block;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.support-unread {
    flex: 0 0 auto;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2d3a4;
    color: #1c140d;
    font-size: 12px;
    font-weight: 700;
}

.support-chat-panel {
    padding: 22px;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.support-order-card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    display: grid;
    gap: 16px;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    padding-right: 12px;
}

.support-order-card.is-hidden {
    display: none;
}

.support-order-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.support-order-card-title {
    display: grid;
    gap: 6px;
}

.support-order-card-title h4 {
    margin: 0;
    font-size: 24px;
    line-height: 1.08;
}

.support-order-track {
    display: grid;
    gap: 8px;
}

.support-order-track span {
    font-size: 13px;
    color: rgba(255,255,255,0.68);
}

.support-order-track input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font: inherit;
    outline: none;
}

.support-order-track input:focus {
    border-color: rgba(242, 211, 164, 0.8);
    box-shadow: 0 0 0 4px rgba(194, 144, 88, 0.14);
}

.support-order-status.is-new {
    color: #f9d79c;
}

.support-order-status.is-accepted {
    color: #98e1ac;
}

.support-order-status.is-sent {
    color: #9ac4ff;
}

.support-order-status.is-rejected {
    color: #ffb4b4;
}

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

.support-order-meta-item {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    display: grid;
    gap: 6px;
}

.support-order-meta-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.56);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.support-order-meta-item strong {
    font-size: 15px;
    line-height: 1.4;
}

.support-order-meta-item-wide {
    grid-column: 1 / -1;
}

.support-order-items {
    display: grid;
    gap: 12px;
}

.support-order-items > strong {
    font-size: 15px;
}

.support-order-items-list {
    display: grid;
    gap: 8px;
}

.support-order-item,
.support-order-card-mini {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.support-order-item {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.support-order-card-mini {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    align-content: start;
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    text-align: left;
    line-height: 1.35;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.support-order-card-mini:hover,
.support-order-card-mini:focus-visible,
.support-order-card-mini.is-active {
    border-color: rgba(242, 211, 164, 0.35);
    background: rgba(194, 144, 88, 0.12);
    box-shadow: inset 0 0 0 1px rgba(242, 211, 164, 0.18);
}

.support-order-mini-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.support-order-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.support-order-badge.is-new {
    background: rgba(242, 211, 164, 0.18);
    color: #f2d3a4;
}

.support-order-badge.is-accepted {
    background: rgba(115, 211, 143, 0.18);
    color: #98e1ac;
}

.support-order-badge.is-sent {
    background: rgba(107, 164, 255, 0.16);
    color: #9ac4ff;
}

.support-order-badge.is-rejected {
    background: rgba(255, 120, 120, 0.18);
    color: #ffb4b4;
}

.support-chat-messages {
    margin-top: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 6px;
    padding-bottom: 140px;
    min-height: 0;
    align-self: stretch;
}

.support-message {
    display: flex;
}

.support-message.is-user {
    justify-content: flex-start;
}

.support-message.is-operator {
    justify-content: flex-end;
}

.support-message-bubble {
    max-width: min(580px, 82%);
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.support-message.is-operator .support-message-bubble {
    background: linear-gradient(180deg, #f2d3a4 0%, #c29058 100%);
    color: #20160e;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(194, 144, 88, 0.2);
}

.support-message-bubble p {
    margin: 8px 0 0;
    white-space: pre-wrap;
}

.support-message-link {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    color: #f2d3a4;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
    cursor: pointer;
}

.support-message-link:hover,
.support-message-link:focus-visible {
    color: #fff2dc;
}

.support-message.is-operator .support-message-link {
    color: #4f3319;
}

.support-message.is-operator .support-message-link:hover,
.support-message.is-operator .support-message-link:focus-visible {
    color: #2b1608;
}

.support-message-image,
.support-message-video {
    display: block;
    width: min(100%, 320px);
    max-height: 320px;
    border-radius: 16px;
    background: rgba(0,0,0,0.28);
}

.support-message-image {
    object-fit: cover;
}

.support-message-bubble time {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.72;
}

.support-message.is-operator .support-message-role,
.support-message.is-operator .support-message-bubble time {
    color: rgba(32, 22, 14, 0.72);
}

.support-chat-session {
    display: block;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    color: rgba(255,255,255,0.54);
}

.support-chat-session.is-hidden {
    display: none;
}

.support-chat-form {
    margin-top: 18px;
    display: grid;
    gap: 12px;
    min-height: 0;
    align-self: end;
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding-top: 14px;
    background: linear-gradient(180deg, rgba(10, 14, 22, 0) 0%, rgba(10, 14, 22, 0.92) 22%, rgba(10, 14, 22, 0.98) 100%);
}

.support-chat-form textarea {
    resize: none;
    min-height: 56px;
    max-height: 140px;
}

.support-chat-controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 140px;
    gap: 12px;
    align-items: end;
}

.support-attach {
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    white-space: nowrap;
}

.support-upload-preview {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.support-upload-preview.is-hidden {
    display: none;
}

.support-upload-preview-media img,
.support-upload-preview-media video {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
    background: #000;
}

.support-upload-preview-meta {
    min-width: 0;
}

.support-upload-preview-meta strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.support-upload-preview-meta button {
    margin-top: 8px;
    padding: 0;
    border: none;
    background: transparent;
    color: #f2d3a4;
    cursor: pointer;
    font: inherit;
}

.support-chat-form button:disabled,
.support-chat-form textarea:disabled,
.support-secondary-action:disabled,
.support-danger-action:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1280px) {
    .support-shell {
        padding: 18px;
    }

    .support-app.is-authenticated {
        grid-template-columns: 300px minmax(0, 1fr);
    }

    .support-sidebar h2 {
        font-size: clamp(22px, 3vw, 28px);
    }

    .support-chat-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .support-chat-actions,
    .support-order-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 980px) {
    .support-shell {
        height: auto;
        min-height: 100dvh;
        padding: 14px;
        overflow: visible;
    }

    .support-app.is-authenticated {
        grid-template-columns: 1fr;
        height: auto;
        min-height: calc(100dvh - 28px);
    }

    .support-sidebar {
        max-height: none;
    }

    .support-sidebar-head {
        align-items: center;
    }

    .support-sidebar-stack {
        grid-template-rows: auto auto;
    }

    .support-sidebar-stack-orders {
        grid-template-rows: auto;
    }

    .support-conversations-block .support-list {
        max-height: min(52dvh, 420px);
    }

    .support-orders-block .support-orders-list {
        max-height: 260px;
    }

    .support-chat-panel {
        height: auto;
        min-height: 0;
    }

    .support-order-card {
        max-height: none;
        overflow: visible;
        padding-right: 18px;
    }

    .support-chat-messages {
        max-height: 46vh;
        padding-bottom: 120px;
    }

    .support-chat-form {
        position: sticky;
        bottom: 0;
    }

    .support-secondary-action,
    .support-danger-action {
        flex: 1 1 0;
    }

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

@media (max-width: 640px) {
    .support-page {
        overflow-y: auto;
        min-height: 100dvh;
    }

    .support-login-card,
    .support-sidebar,
    .support-chat-panel {
        border-radius: 22px;
    }

    .support-shell {
        padding: 10px;
    }

    .support-sidebar,
    .support-chat-panel {
        padding: 16px;
    }

    .support-sidebar-head {
        align-items: flex-start;
    }

    .support-sidebar-head h2,
    .support-chat-head h3,
    .support-order-card-title h4 {
        font-size: 19px;
        line-height: 1.1;
    }

    .support-sidebar-kicker,
    .support-chat-kicker,
    .support-message-role {
        font-size: 11px;
    }

    .support-sidebar-stack {
        gap: 12px;
    }

    .support-sidebar-stack-orders {
        grid-template-rows: auto;
    }

    .support-conversations-block .support-list {
        max-height: min(52dvh, 420px);
    }

    .support-orders-block .support-orders-list {
        max-height: 220px;
    }

    .support-chat-head,
    .support-order-card-head {
        gap: 10px;
    }

    .support-chat-actions,
    .support-order-actions {
        width: 100%;
        justify-content: stretch;
        gap: 8px;
    }

    .support-secondary-action,
    .support-danger-action {
        min-height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }

    .support-order-actions .support-secondary-action,
    .support-order-actions .support-danger-action {
        flex: 1 1 calc(50% - 4px);
    }

    .support-order-track input,
    .support-field input,
    .support-chat-form textarea {
        font-size: 16px;
    }

    .support-order-meta-item,
    .support-order-item,
    .support-conversation,
    .support-order-card-mini {
        padding: 12px;
    }

    .support-order-meta-item strong,
    .support-order-item,
    .support-conversation-message {
        font-size: 14px;
    }

    .support-chat-form {
        grid-template-columns: 1fr;
        position: sticky;
        bottom: 0;
        margin-top: 12px;
        padding-top: 12px;
    }

    .support-chat-controls {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .support-attach,
    .support-chat-form button {
        width: 100%;
    }

    .support-message-bubble {
        max-width: 100%;
    }

    .support-chat-messages {
        max-height: 40vh;
        padding-bottom: 132px;
    }

    .support-order-card {
        gap: 12px;
        padding: 14px;
        padding-right: 14px;
    }
}


.support-admin-nav {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 8px;
}

.support-admin-nav-link {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.76);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.support-admin-nav-link:hover,
.support-admin-nav-link.is-active {
    border-color: rgba(242, 211, 164, 0.34);
    background: rgba(194, 144, 88, 0.14);
    color: #fff;
}

.product-admin-app.is-authenticated {
    grid-template-columns: 380px minmax(0, 1fr);
}

.product-admin-sidebar {
    gap: 0;
}

.product-admin-sidebar-actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.product-admin-primary-button {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
}

.product-admin-search-field {
    margin-top: 16px;
}

.product-admin-list-meta {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.product-admin-list-meta span {
    font-size: 13px;
    color: rgba(255,255,255,0.58);
}

.product-admin-list {
    margin-top: 12px;
}

.product-admin-list-item {
    width: 100%;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product-admin-list-item:hover,
.product-admin-list-item.is-active {
    border-color: rgba(242, 211, 164, 0.35);
    background: rgba(194, 144, 88, 0.12);
    box-shadow: inset 0 0 0 1px rgba(242, 211, 164, 0.18);
}

.product-admin-list-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.product-admin-list-item-top strong {
    font-size: 15px;
    line-height: 1.35;
}

.product-admin-list-item-top span,
.product-admin-list-item-slug {
    font-size: 12px;
    color: rgba(255,255,255,0.62);
}

.product-admin-list-item p {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.5;
}

.product-admin-panel {
    grid-template-rows: auto auto minmax(0, 1fr);
}

.product-admin-head {
    align-items: flex-start;
}

.product-admin-head-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.product-admin-save-button {
    min-width: 148px;
}

.product-admin-status-bar {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.84);
    font-size: 14px;
    line-height: 1.45;
}

.product-admin-status-bar[data-tone="success"] {
    border-color: rgba(115, 211, 143, 0.22);
    background: rgba(115, 211, 143, 0.1);
    color: #bff0cc;
}

.product-admin-status-bar[data-tone="warning"] {
    border-color: rgba(242, 211, 164, 0.22);
    background: rgba(194, 144, 88, 0.12);
    color: #f8dfbb;
}

.product-admin-status-bar[data-tone="error"] {
    border-color: rgba(255, 120, 120, 0.22);
    background: rgba(255, 120, 120, 0.1);
    color: #ffc4c4;
}

.product-admin-empty {
    margin-top: 18px;
    min-height: 220px;
}

.product-admin-form {
    margin-top: 18px;
    min-height: 0;
    overflow-y: auto;
    padding-right: 8px;
}

.product-admin-layout {
    display: grid;
    gap: 16px;
    align-content: start;
}

.product-admin-card {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    display: grid;
    gap: 16px;
}

.product-admin-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.product-admin-card-head strong {
    font-size: 17px;
}

.product-admin-card-head span {
    font-size: 13px;
    color: rgba(255,255,255,0.58);
}

.product-admin-fields {
    display: grid;
    gap: 14px;
}

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

.product-admin-field-full {
    grid-column: 1 / -1;
}

.product-admin-form .support-field {
    gap: 8px;
}

.product-admin-form .support-field input,
.product-admin-form .support-field textarea,
.product-admin-form .support-field select,
.product-admin-inline-input {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
}

.product-admin-form .support-field textarea {
    min-height: 92px;
    resize: vertical;
}

.product-admin-form .support-field select {
    appearance: none;
    cursor: pointer;
}

.product-admin-form .support-field input:focus,
.product-admin-form .support-field textarea:focus,
.product-admin-form .support-field select:focus,
.product-admin-inline-input:focus {
    border-color: rgba(242, 211, 164, 0.8);
    box-shadow: 0 0 0 4px rgba(194, 144, 88, 0.14);
}

.product-admin-media-grid {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.product-admin-media-preview {
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    display: grid;
    place-items: center;
    overflow: hidden;
}

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

.product-admin-media-controls {
    display: grid;
    gap: 14px;
}

.product-admin-media-actions {
    display: grid;
    gap: 10px;
}

.product-admin-upload-button {
    min-height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.product-admin-upload-hint {
    font-size: 13px;
    color: rgba(255,255,255,0.58);
}

.product-admin-library {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.product-admin-library-item {
    width: 100%;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product-admin-library-item:hover,
.product-admin-library-item.is-active {
    border-color: rgba(242, 211, 164, 0.35);
    background: rgba(194, 144, 88, 0.12);
    box-shadow: inset 0 0 0 1px rgba(242, 211, 164, 0.18);
}

.product-admin-library-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
}

.product-admin-library-item span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    word-break: break-word;
}

.about-admin-image-picker {
    margin-top: 4px;
}

.about-admin-inline-head {
    padding: 0;
    border: 0;
    background: transparent;
}

.about-admin-image-library {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 4px;
}

.product-admin-repeater,
.product-admin-sections {
    display: grid;
    gap: 12px;
}

.product-admin-repeater-row,
.product-admin-section-row {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.product-admin-repeater-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.product-admin-repeater-row-rich {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.product-admin-repeater-row-sub {
    padding: 0;
    border: none;
    background: transparent;
}

.product-admin-repeater-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.product-admin-repeater-index {
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 211, 164, 0.16);
    color: #f2d3a4;
    font-size: 12px;
    font-weight: 700;
}

.product-admin-remove-button {
    min-height: 40px;
    font-size: 14px;
}

.product-admin-sublist {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.product-admin-sublist > strong {
    font-size: 14px;
}

.product-admin-sublist-items {
    display: grid;
    gap: 10px;
}

.settings-admin-panel {
    grid-template-rows: auto auto minmax(0, 1fr);
}

.settings-admin-form {
    margin-top: 18px;
    overflow-y: auto;
    padding-right: 8px;
}

.settings-admin-section-form {
    display: grid;
    gap: 16px;
}

.settings-admin-form .product-admin-card {
    scroll-margin-top: 12px;
}

.settings-admin-actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.settings-admin-note {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(242, 211, 164, 0.16);
    background: rgba(194, 144, 88, 0.1);
    color: rgba(255,255,255,0.84);
    font-size: 14px;
    line-height: 1.5;
}

.settings-admin-webhook {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.settings-admin-webhook strong {
    font-size: 14px;
}

.settings-admin-webhook code {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: #f2d3a4;
    word-break: break-all;
    white-space: pre-wrap;
}

.settings-admin-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.settings-admin-checkbox input {
    margin-top: 3px;
}

.settings-admin-checkbox span {
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
}

@media (max-width: 1280px) {
    .product-admin-app.is-authenticated {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .product-admin-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-admin-head-actions {
        width: 100%;
        justify-content: flex-start;
    }

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

@media (max-width: 980px) {
    .product-admin-app.is-authenticated {
        grid-template-columns: 1fr;
    }

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

    .product-admin-form {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .settings-admin-form {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .cart-item {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cart-item-controls {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cart-remove-btn {
        margin-left: auto;
    }

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

    .product-admin-head-actions {
        width: 100%;
        justify-content: stretch;
    }

    .product-admin-head-actions .support-secondary-action,
    .product-admin-head-actions .support-danger-action,
    .product-admin-head-actions .product-admin-save-button {
        flex: 1 1 calc(50% - 4px);
    }

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

    .product-admin-repeater-index {
        justify-self: flex-start;
    }

    .product-admin-remove-button {
        width: 100%;
    }
}


/* ===== PRODUCTS SLIDER: exact old native model, no JS drag v2001 ===== */
.products {
    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;
    display: block !important;
    overflow: visible !important;
    padding-top: 18px !important;
}
.products.is-empty { min-height: 120px !important; }
.products-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 20px 40px 40px !important;
    margin: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    scroll-snap-type: x mandatory !important;
    touch-action: auto !important;
    overscroll-behavior-x: auto !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    cursor: default !important;
}
.products-slider::-webkit-scrollbar { display: none !important; }
.products-slider > .product {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    scroll-snap-align: start !important;
}
@media (max-width: 768px) {
    .products-slider { padding: 20px !important; gap: 20px !important; }
    .products-slider-controls { display: none !important; }
    .products-slider > .product {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        width: 280px !important;
        max-width: 280px !important;
    }
}

/* ===== PRODUCT CARD HEIGHT FIX v2002 ===== */
.products-slider > .product {
    height: 650px !important;
    min-height: 650px !important;
    display: grid !important;
}

.products-slider > .product.hidden {
    display: none !important;
}

.products-slider > .product .buy-button {
    margin-top: 0 !important;
    flex: 0 0 56px !important;
}

@media (max-width: 768px) {
    .products-slider > .product {
        height: 650px !important;
        min-height: 650px !important;
    }
}

/* ===== HOME HERO MOBILE HOTFIX v2253 ===== */
@media (max-width: 768px) {
    .hero-home .hero-shell {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .hero-home .hero-copy,
    .hero-home .hero-panel,
    .hero-home .hero-panel-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .hero-home .hero-copy,
    .hero-home .hero-panel-card {
        overflow: hidden;
    }

    .hero-home .hero-quick-links {
        grid-template-columns: 1fr !important;
    }

    .hero-home h1,
    .hero-home h2,
    .hero-home p {
        max-width: none !important;
    }
}

@media (max-width: 480px) {
    .hero-home .hero-shell {
        grid-template-columns: 1fr !important;
    }
}


/* ═══════════════════════════════════════════════
   DH STORE — DESIGN REFRESH v2268
═══════════════════════════════════════════════ */

/* --- Header: logo image before text --- */
.logo-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.logo-link::before {
    content: '';
    display: block;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: url('img/dh-logo.png') center/cover no-repeat;
}

/* --- Logo text: gold gradient --- */
.logo {
    background: linear-gradient(135deg, #f5ddb8 0%, #c89258 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 21px !important;
    letter-spacing: 0.06em !important;
}

/* --- Nav: gold hover & underline --- */
.nav a:hover { color: #f2d3a4 !important; }
.nav a::after { background: rgba(242, 211, 164, 0.8) !important; }

/* --- Cart button: gold accent --- */
.cart-btn {
    color: #f2d3a4 !important;
    border-color: rgba(242, 211, 164, 0.3) !important;
    background: rgba(242, 211, 164, 0.07) !important;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.cart-btn:hover {
    background: rgba(242, 211, 164, 0.14) !important;
    border-color: rgba(242, 211, 164, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(242, 211, 164, 0.08) !important;
}

/* --- Hero: warm gold ambient glow --- */
.hero {
    background:
        radial-gradient(ellipse at 8% 78%, rgba(200, 144, 70, 0.13) 0%, transparent 42%),
        radial-gradient(circle at 15% 15%, rgba(255,255,255,0.16), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(140,140,140,0.12), transparent 25%),
        linear-gradient(135deg, #090909 0%, #141414 45%, #1d1d1d 100%) !important;
}

/* --- Search: gold focus ring --- */
.search-box input:focus {
    border-color: rgba(194, 144, 88, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(194, 144, 88, 0.1), 0 2px 8px rgba(194,144,88,0.06) !important;
}

/* --- Buy button: dark (original) --- */
.buy-button {
    background: linear-gradient(180deg, #2d2d2d 0%, #080808 100%) !important;
    color: #fff !important;
    box-shadow: 0 14px 26px rgba(18, 15, 13, 0.18) !important;
    font-weight: 600 !important;
}
.buy-button:hover {
    box-shadow: 0 18px 32px rgba(18, 15, 13, 0.24) !important;
    transform: translateY(-1px) !important;
}

/* --- Product card: brighter gold top stripe --- */
.product::after {
    left: 20px !important;
    right: 20px !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, rgba(194,144,88,0.6) 50%, transparent 100%) !important;
}

/* --- Advantages section: heading color --- */
.advantages h2 {
    color: #1c140d !important;
    -webkit-text-fill-color: initial !important;
    background: none !important;
}

/* --- About/FAQ card: gold left accent --- */
.faq-container .about-card {
    border-left: 3px solid rgba(194, 144, 88, 0.45) !important;
}

/* --- Footer: richer dark + gold top border --- */
footer {
    background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%) !important;
    border-top: 1px solid rgba(242, 211, 164, 0.18) !important;
}

/* --- Footer logo --- */
footer::before {
    content: '';
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: url('img/dh-logo.png') center/cover no-repeat;
    margin: 0 auto 14px;
    opacity: 0.8;
}

/* --- Gold scrollbar --- */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: rgba(194,144,88,0.45); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(194,144,88,0.72); }
