/* Herbal Comfort landing — warm editorial / sand & sage (light redesign) */
:root {
    --paper: #faf7f2;
    --paper-2: #f0ebe3;
    --ink: #1c1917;
    --ink-soft: #44403c;
    --muted: #78716c;
    --sage: #3f6f5e;
    --sage-dark: #2d4a40;
    --sage-faint: rgba(63, 111, 94, 0.12);
    --clay: #c2410c;
    --clay-soft: #ea580c;
    --coral: #dc6b4e;
    --border: rgba(28, 25, 23, 0.1);
    --border-strong: rgba(28, 25, 23, 0.16);
    --radius: 6px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --shadow-soft: 0 4px 24px rgba(28, 25, 23, 0.06);
    --shadow-lift: 0 18px 48px rgba(45, 74, 64, 0.12);
    --header-h: 4.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body.site-ka {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--paper);
    min-height: 100vh;
    position: relative;
}

body.site-ka::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

body.site-ka > * {
    position: relative;
    z-index: 1;
}

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

a {
    color: var(--sage-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    font-weight: 500;
}

a:hover {
    color: var(--clay);
}

.container {
    width: min(1140px, 100% - 2rem);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--sage-dark);
    color: var(--paper);
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: var(--font-body);
}

.skip-link:focus {
    top: 1rem;
}

/* Top strip */
.top-banner {
    background: var(--sage-dark);
    color: #e7efe9;
    padding: 0.65rem 0;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.top-banner-inner,
.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.top-banner-inner p,
.top-banner .container > p {
    margin: 0;
    color: #f0f7f2;
}

.banner-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fbbf24;
    flex-shrink: 0;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    position: relative;
}

.logo,
.brand-wordmark {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    font-style: italic;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.logo a,
.brand-wordmark a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover,
.brand-wordmark a:hover {
    color: var(--sage);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--paper-2);
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 0.5rem 0.55rem;
    border-radius: var(--radius);
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.35rem;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 0.45rem 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: var(--ink);
    border-bottom-color: var(--coral);
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    background: var(--ink);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-order:hover {
    transform: translateY(-1px);
    background: var(--sage-dark);
    color: #fff !important;
}

/* Hero / product */
.hero-kicker {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 0.6rem;
}

.product-section {
    padding: 2.75rem 0 3.25rem;
}

.product-section#home {
    scroll-margin-top: var(--header-h);
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1.08fr);
    gap: 2.5rem 3.25rem;
    align-items: start;
}

.product-image {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}

.product-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lift);
    position: relative;
}

.product-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.1rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    outline: 1px solid var(--border);
    transition: outline-color 0.2s ease, transform 0.2s ease;
    background: #fff;
}

.thumbnail:hover,
.thumbnail.active {
    outline-color: var(--sage);
    transform: scale(1.03);
}

.product-info {
    background: #fff;
    padding: 2.1rem 2.35rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.product-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--sage), var(--coral), #fbbf24);
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.9vw, 2.45rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.product-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.stars {
    color: #d97706;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
}

.rating-text {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
}

.product-price {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-strong);
}

.price-sale {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--sage-dark);
    letter-spacing: -0.02em;
}

.price-regular {
    font-size: 1rem;
    color: #a8a29e;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-description p {
    color: var(--ink-soft);
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.feature {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.9rem 1.05rem;
    background: var(--paper-2);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--coral);
}

.feature-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-faint);
    color: var(--sage-dark);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.72rem;
}

.feature-content {
    font-size: 0.96rem;
}

.feature-content strong {
    color: var(--ink);
}

.product-specs {
    background: var(--paper-2);
    padding: 1.2rem 1.35rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 1.45rem;
}

.product-specs h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 0.7rem;
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs strong {
    color: var(--ink);
}

.product-cta {
    margin-bottom: 1.25rem;
}

.btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.05rem 1.5rem;
    background: linear-gradient(135deg, var(--coral) 0%, var(--clay-soft) 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 28px rgba(220, 107, 78, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(220, 107, 78, 0.45);
    color: #fff !important;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.trust-badge {
    text-align: center;
    padding: 0.85rem 0.45rem;
    background: var(--paper);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.trust-badge strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.trust-badge span {
    font-size: 0.72rem;
    color: var(--muted);
}

.important-notice {
    background: #fff7ed;
    border: 1px solid rgba(194, 65, 12, 0.25);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
}

.important-notice p {
    color: #7c2d12;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.important-notice p:last-child {
    margin-bottom: 0;
}

.important-notice strong {
    color: #431407;
}

/* Description */
.description-section {
    padding: 3.25rem 0;
    background: repeating-linear-gradient(
        -8deg,
        var(--paper-2),
        var(--paper-2) 12px,
        rgba(250, 247, 242, 0.5) 12px,
        rgba(250, 247, 242, 0.5) 24px
    );
    color: var(--ink);
    border-block: 1px solid var(--border);
}

.description-content {
    max-width: 720px;
    margin-inline: auto;
}

.description-content p {
    color: var(--ink-soft);
    margin-bottom: 1rem;
    font-size: 1.06rem;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Benefits */
.benefits-section {
    padding: 3.75rem 0;
    background: var(--paper);
}

.section-title {
    font-family: var(--font-display);
    text-align: left;
    font-size: clamp(1.75rem, 3.2vw, 2.55rem);
    color: var(--ink);
    margin-bottom: 2rem;
    max-width: 18ch;
    margin-inline: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--sage);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
}

.benefit-card {
    padding: 1.65rem 1.45rem;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.benefit-card:nth-child(1) {
    background: linear-gradient(160deg, #fff 0%, var(--paper) 100%);
}

.benefit-card:nth-child(2) {
    border-color: rgba(63, 111, 94, 0.22);
}

.benefit-card:nth-child(3) {
    border-color: rgba(220, 107, 78, 0.22);
}

.benefit-card:nth-child(4) {
    background: linear-gradient(160deg, var(--paper-2) 0%, #fff 100%);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.benefit-icon {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.94rem;
    color: var(--muted);
}

/* How it works */
.how-it-works {
    padding: 3.75rem 0;
    background: var(--sage-dark);
    color: #e7efe9;
}

.how-it-works .section-title {
    text-align: center;
    margin-inline: auto;
    max-width: none;
    color: #faf7f2;
    border-bottom-color: var(--coral);
}

.how-it-works-content {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.how-it-works-content > p {
    color: #c4d4cc;
    margin-bottom: 1rem;
}

.how-it-works-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.how-it-works-list li {
    padding: 0.95rem 1.1rem 0.95rem 2.65rem;
    margin-bottom: 0.55rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d8e5df;
    position: relative;
    font-size: 0.95rem;
}

.how-it-works-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--coral);
}

.how-it-works-content > p:last-child {
    margin-bottom: 0;
}

/* Guarantee */
.guarantee {
    padding: 3.25rem 0;
    background: #fff;
    border-block: 1px solid var(--border);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.guarantee-item {
    text-align: left;
    padding: 1.2rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--paper);
}

.guarantee-icon {
    font-size: 1.45rem;
    margin-bottom: 0.55rem;
}

.guarantee-item h3 {
    font-family: var(--font-body);
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.guarantee-item p {
    font-size: 0.82rem;
    color: var(--muted);
}

/* FAQ */
.faq {
    padding: 3.75rem 0;
    background: var(--paper);
}

.faq .section-title {
    text-align: center;
    margin-inline: auto;
    max-width: none;
    border-bottom: none;
    padding-bottom: 0;
}

.faq .section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--coral);
    border-radius: 2px;
    margin: 1rem auto 0;
}

.faq-list {
    max-width: 700px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    padding: 1.05rem 1.2rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2.75rem;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.05rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 500;
    font-size: 1.35rem;
    color: var(--clay);
    font-family: var(--font-body);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item .faq-answer {
    padding: 0 1.2rem 1.05rem;
    border-top: 1px solid var(--border);
}

.faq-item .faq-answer p {
    padding-top: 0.85rem;
    color: var(--muted);
    font-size: 0.94rem;
}

/* CTA */
.cta-section {
    padding: 3.75rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
    color: var(--ink);
    border-top: 1px solid var(--border);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-weight: 600;
}

.cta-section p {
    max-width: 40ch;
    margin-inline: auto;
    margin-bottom: 1.65rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.15rem;
    background: var(--sage-dark);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-lift);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

/* Footer */
.footer {
    background: var(--ink);
    color: #a8a29e;
    padding: 2.75rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-display);
    color: #faf7f2;
    font-size: 1.35rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.45rem;
}

.footer-section h4 {
    color: #e7e5e4;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.35rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    color: #d6d3d1;
    text-decoration: none;
    font-weight: 500;
}

.footer-section a:hover {
    color: #fdba74;
    text-decoration: underline;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
    margin-bottom: 1.5rem;
}

.footer-legal h3 {
    font-family: var(--font-display);
    color: #faf7f2;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-info p {
    color: #a8a29e;
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

.legal-info strong {
    color: #e7e5e4;
}

.health-notice {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.15rem;
    margin: 1.35rem 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.health-notice h4 {
    color: #faf7f2;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.health-notice p {
    color: #a8a29e;
    font-size: 0.85rem;
    line-height: 1.7;
}

.contact-info-footer p {
    color: #a8a29e;
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

.contact-info-footer strong {
    color: #e7e5e4;
}

.contact-info-footer a {
    color: #86efac;
    text-decoration: none;
    word-break: break-all;
    font-weight: 600;
}

.contact-info-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.15rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #78716c;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
}

/* Legal pages */
.legal-page {
    padding: 2.5rem 0 3.5rem;
    min-height: 55vh;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    color: var(--ink);
    margin-bottom: 1.75rem;
    line-height: 1.12;
    font-weight: 600;
}

.legal-page section {
    margin-bottom: 1.15rem;
    padding: 1.45rem 1.55rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1rem;
    color: var(--ink);
    margin: 1rem 0 0.45rem;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 0.8rem;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.legal-page ul {
    margin: 0 0 0.8rem 1.15rem;
}

.legal-page ul li {
    margin-bottom: 0.32rem;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.legal-page a {
    color: var(--sage-dark);
    font-weight: 600;
}

.withdrawal-form {
    background: var(--paper-2);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    margin-top: 0.65rem;
}

.withdrawal-form p {
    margin-bottom: 0.7rem;
}

.withdrawal-form strong {
    color: var(--ink);
}

/* Responsive */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        position: static;
    }

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

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

    .trust-badges {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        max-width: none;
    }
}

@media (max-width: 768px) {
    body.site-ka {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lift);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--border);
    }

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

    .product-info {
        padding: 1.5rem;
    }

    .top-banner-inner {
        flex-direction: column;
        gap: 0.35rem;
    }

    .banner-dot {
        display: none;
    }
}
