@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    color-scheme: dark;
    --bg-base: #1c1e21;
    --bg-surface-1: #24262a;
    --bg-surface-2: #2d3036;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --text-primary: #e6e8eb;
    --text-secondary: #a1a6ad;
    --text-muted: #6b7078;
    --accent-primary: #6c8cff;
    --accent-hover: #7d99ff;
    --accent-active: #5976ff;
    --state-danger: #ff6b6b;
    --state-success: #4cd964;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --font-base: 15px;
    --font-small: 13px;
    --font-large: 18px;
    --line-base: 1.6;
    --line-relaxed: 1.75;
    --header-height: 84px;
    --bg-primary: var(--bg-base);
    --bg-secondary: var(--bg-surface-1);
    --surface-1: var(--bg-surface-1);
    --surface-2: var(--bg-surface-2);
    --stroke: var(--border-subtle);
    --stroke-hover: rgba(255, 255, 255, 0.12);
    --accent-a: var(--accent-primary);
    --accent-a-hover: var(--accent-hover);
    --accent-a-glow: rgba(108, 140, 255, 0.2);
    --accent-b: var(--accent-primary);
    --accent-b-hover: var(--accent-hover);
    --accent-b-glow: rgba(108, 140, 255, 0.16);
    --shadow-lg: 0 24px 60px rgba(14, 16, 19, 0.45);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: var(--font-base);
    line-height: var(--line-base);
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(28, 30, 33, 0.86);
    border-bottom: 1px solid var(--stroke);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-hero {
    position: absolute;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(28, 30, 33, 0.94);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) 0;
    gap: var(--space-5);
    transition: padding 0.2s ease;
}

.site-header.is-compact .container {
    padding: var(--space-3) 0;
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo img {
    max-height: 40px;
}

.logo-slogan {
    margin-top: 8px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    color: var(--text-muted);
    font-size: var(--font-small);
    line-height: 1.4;
}

.logo-slogan .slogan {
    font-weight: 600;
    color: var(--text-primary);
}

.site-header .logo-slogan {
    color: var(--text-secondary);
}

.site-header .logo-slogan .slogan {
    color: var(--text-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.nav a,
.nav span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav a:hover,
.nav span:hover {
    color: var(--text-primary);
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item.has-dropdown span::after {
    content: "▾";
    margin-left: var(--space-2);
    font-size: 0.75rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--surface-1);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: var(--space-2);
    background: none;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    padding: var(--space-3) var(--space-4);
    color: var(--text-primary);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
}

.nav-top,
.nav-footer {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.language-switch a {
    font-size: var(--font-small);
    color: var(--text-secondary);
    padding: var(--space-2) var(--space-3);
    border-radius: 999px;
    border: 1px solid transparent;
}

.language-switch a.active {
    border-color: var(--stroke);
    color: var(--text-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-5);
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--accent-a);
    color: #14161a;
    box-shadow: 0 0 24px var(--accent-a-glow);
}

.btn-primary:hover {
    background: var(--accent-a-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--stroke);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--surface-2);
    border-color: var(--stroke-hover);
}

.btn-ghost {
    border: 1px solid var(--stroke);
    color: var(--text-primary);
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-base);
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(108, 140, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(108, 140, 255, 0.08), transparent 50%);
    mix-blend-mode: screen;
}

.hero-play {
    position: absolute;
    bottom: var(--space-5);
    right: var(--space-5);
    background: rgba(28, 30, 33, 0.85);
    border: 1px solid var(--stroke);
    color: var(--text-primary);
    border-radius: 999px;
    padding: var(--space-2) var(--space-4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.hero-play.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero-content {
    position: relative;
    max-width: 640px;
    padding: 120px 0 80px;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-tagline {
    font-size: var(--font-large);
    color: var(--text-primary);
    margin: 0 0 var(--space-3);
}

.hero-subtitle {
    font-size: var(--font-large);
    color: var(--text-secondary);
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.section {
    padding: var(--space-8) 0;
}

.section--hero {
    padding-top: calc(var(--header-height) + var(--space-6));
    padding-bottom: var(--space-6);
    background: linear-gradient(180deg, rgba(36, 38, 42, 0.6), rgba(36, 38, 42, 0));
}

.section--hero h1 {
    margin-bottom: var(--space-3);
}

.section--hero .lead {
    font-size: var(--font-large);
    color: var(--text-secondary);
    max-width: 70ch;
}

.section--content {
    padding-top: var(--space-6);
}

.page .section--content .section {
    padding: 0;
}

.page .section--content .section + .section {
    margin-top: var(--space-5);
}

.page .section--content .section .container {
    padding: 0;
    max-width: none;
}

.page .text-block {
    max-width: none;
}

.prose {
    font-size: 1rem;
    line-height: var(--line-relaxed);
}

.prose h2,
.prose h3 {
    margin-top: var(--space-5);
}

.prose ul,
.prose ol {
    padding-left: 20px;
    margin: 0;
}

.section-about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-grid h2,
.section h2,
.section h3 {
    font-weight: 600;
}

.text-block {
    max-width: 75ch;
}

.is-home .text-block {
    max-width: 1200px;
    width: 100%;
}

.text-left {
    text-align: left;
}

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

.text-block-body p {
    margin-top: 0;
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.layout-two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: var(--space-7);
    align-items: start;
}

.content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.aside--sticky {
    position: sticky;
    top: calc(var(--header-height) + var(--space-5));
    max-height: calc(100vh - var(--header-height) - var(--space-5));
    overflow: auto;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: var(--space-7);
    align-items: start;
}

.catalog-filters {
    background: var(--surface-1);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    padding: var(--space-5);
}

.catalog-filters .filters-close {
    margin-bottom: var(--space-4);
}

.catalog-filters .filters {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
    margin-bottom: 0;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.catalog-results {
    min-width: 0;
}

.filters--sticky {
    position: sticky;
    top: calc(var(--header-height) + var(--space-4));
}

.filters-toggle,
.filters-close {
    background: var(--surface-2);
    border: 1px solid var(--stroke);
    color: var(--text-primary);
    border-radius: 999px;
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-small);
    display: none;
}

.filters-toggle {
    padding: var(--space-3) var(--space-5);
    font-size: 0.95rem;
}

.filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 14, 18, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 60;
}

.faq {
    display: grid;
    gap: var(--space-3);
}

.faq-item {
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    background: var(--surface-1);
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: var(--space-4) var(--space-5);
    font-weight: 600;
    color: var(--text-primary);
}

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

.faq-content {
    padding: 0 var(--space-5);
    color: var(--text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease, padding 0.24s ease;
}

.faq-item[open] .faq-content {
    padding: 0 var(--space-5) var(--space-5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-field.required label,
.form-channels legend {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.required-indicator {
    color: var(--state-danger);
    margin-left: 4px;
}

.form-channels {
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    display: grid;
    gap: var(--space-2);
}

.form-channels label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid select {
    border-color: var(--state-danger);
}

.privacy-link {
    color: var(--text-secondary);
    font-size: var(--font-small);
}

.privacy-link a {
    color: var(--accent-a);
}

.category-description {
    margin-bottom: 32px;
}

.faq-block {
    margin: var(--space-6) 0;
    background: var(--surface-1);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    border: 1px solid var(--stroke);
}

.faq-block h3 {
    margin-bottom: 8px;
}

.faq-block p {
    margin-top: 0;
    color: var(--text-secondary);
}

.about-image img,
.about-placeholder {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(108, 140, 255, 0.15), rgba(108, 140, 255, 0.08));
    border: 1px solid var(--stroke);
}

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

.feature-card {
    background: var(--surface-1);
    border-radius: var(--radius-md);
    border: 1px solid var(--stroke);
    padding: var(--space-5);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    border-color: var(--stroke-hover);
    box-shadow: 0 0 32px rgba(108, 140, 255, 0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.section-categories .category-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    position: relative;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: var(--surface-1);
    border: 1px solid var(--stroke);
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    color: var(--text-primary);
    box-shadow: none;
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(108, 140, 255, 0.18), transparent 60%),
        radial-gradient(circle at 80% 10%, rgba(108, 140, 255, 0.1), transparent 55%);
    opacity: 0.7;
}

.category-card-content {
    position: relative;
}

.category-card h3 {
    margin: 0 0 12px;
}

.category-card p {
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.category-card-cta {
    color: var(--text-primary);
    font-weight: 600;
}

.section-custom {
    background: linear-gradient(120deg, rgba(108, 140, 255, 0.16), rgba(28, 30, 33, 0.95));
}

.custom-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke);
    padding: var(--space-6);
}

.custom-cta p {
    color: var(--text-secondary);
}

.page-header {
    padding: 120px 0 40px;
    background: radial-gradient(circle at 20% 20%, rgba(108, 140, 255, 0.12), transparent 60%);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: flex-end;
    margin-bottom: 32px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

input,
textarea,
select {
    background: var(--surface-1);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}

.product-card {
    border-radius: var(--radius-md);
    padding: var(--space-5);
    background: var(--surface-1);
    border: 1px solid var(--stroke);
    transition: border 0.2s ease, transform 0.2s ease;
    color: var(--text-primary);
    box-shadow: none;
}

.product-card-media {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: var(--surface-2);
    margin-bottom: var(--space-4);
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card:hover {
    border-color: var(--stroke-hover);
    transform: translateY(-2px);
}

.product-card h3 {
    margin-top: 0;
}

.product-card p {
    color: var(--text-secondary);
}

.product-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--text-secondary);
}

.product-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: var(--surface-1);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    color: var(--text-primary);
    box-shadow: none;
    border: 1px solid var(--stroke);
}

.product-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.product-layout p,
.product-layout li {
    color: var(--text-secondary);
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.sku,
.country-origin {
    color: var(--text-secondary);
}

.product-gallery {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--stroke);
    background: var(--surface-2);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: calc(var(--header-height) + var(--space-5));
    align-self: start;
}

.product-gallery-track {
    display: flex;
    transition: transform 0.35s ease;
    height: 100%;
    flex: 1;
}

.product-gallery-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery img,
.product-placeholder {
    width: 100%;
    border-radius: var(--radius-md);
    padding: 18px;
    height: 100%;
    object-fit: contain;
}

.product-placeholder {
    min-height: 280px;
    background: var(--surface-2);
}

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    padding: var(--space-4);
    background: var(--surface-1);
    border-top: 1px solid var(--stroke);
}

.product-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: var(--surface-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumb.is-active {
    border-color: rgba(108, 140, 255, 0.8);
    box-shadow: 0 0 0 2px rgba(108, 140, 255, 0.2);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(36, 38, 42, 0.92);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(12, 14, 18, 0.3);
    cursor: pointer;
}

.gallery-prev {
    left: 16px;
}

.gallery-next {
    right: 16px;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 480px;
}

.product-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.product-description section {
    display: grid;
    gap: var(--space-3);
}

.product-buy {
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.product-buy-toggle {
    width: 100%;
    background: var(--surface-1);
    border: none;
    padding: var(--space-4) var(--space-5);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.product-buy-icon {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.product-buy-toggle[aria-expanded="true"] .product-buy-icon {
    transform: rotate(45deg);
}

.product-buy-panel {
    padding: var(--space-4) var(--space-5) var(--space-5);
    background: var(--surface-2);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.partner-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface-1);
    border: 1px solid var(--stroke);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(12, 14, 18, 0.2);
    overflow: hidden;
    color: var(--text-primary);
    font-weight: 600;
}

.partner-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs th,
.product-specs td {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid var(--stroke);
    color: var(--text-secondary);
}

.section-list ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.section-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--stroke);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-where .partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}

.partner-group {
    margin-top: 32px;
}

.partner-group h3 {
    margin-bottom: 16px;
}

.partner-card {
    background: var(--surface-1);
    border-radius: var(--radius-md);
    border: 1px solid var(--stroke);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.partner-card--large {
    background: var(--surface-1);
    color: var(--text-primary);
    border: 1px solid var(--stroke);
    box-shadow: none;
}

.partner-logo-lg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--surface-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--stroke);
    overflow: hidden;
    font-weight: 600;
    color: var(--text-primary);
}

.partner-logo-lg img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.partner-card p {
    color: var(--text-secondary);
}

.partner-card--large p {
    color: var(--text-secondary);
}

.partner-card a {
    color: var(--accent-a);
    font-weight: 600;
}

.section-partners-carousel {
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.partners-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0;
    scrollbar-width: none;
}

.partners-carousel-track::-webkit-scrollbar {
    display: none;
}

.partners-carousel-item {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--surface-1);
    border: 1px solid var(--stroke);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: center;
    box-shadow: 0 10px 20px rgba(12, 14, 18, 0.25);
    color: var(--text-primary);
}

.partners-carousel-item img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.partners-carousel-nav {
    border: none;
    background: rgba(36, 38, 42, 0.92);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(12, 14, 18, 0.3);
    cursor: pointer;
    flex: 0 0 auto;
}

.section-contacts .contacts-card {
    background: var(--surface-1);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--stroke);
    color: var(--text-primary);
    box-shadow: none;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.contacts-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: var(--surface-1);
    box-shadow: none;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.custom-production {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.custom-process ol {
    padding-left: 18px;
    color: var(--text-secondary);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.contact-item span {
    color: var(--text-secondary);
}

.contact-item a {
    color: inherit;
}

.telegram-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #229ed9;
    color: #f0f2f5;
}

.telegram-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

.form-card {
    background: var(--surface-1);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.radio-group {
    display: grid;
    gap: 8px;
}

.filter-options {
    display: grid;
    gap: 8px;
}

.filters-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.field-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.checkbox-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-secondary);
}

.checkbox-field a {
    margin-left: 4px;
}

.field-error {
    color: var(--state-danger);
    font-size: var(--font-small);
}

.form-success {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(108, 140, 255, 0.2);
}

.form-error {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(255, 107, 107, 0.18);
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.site-footer {
    border-top: 1px solid var(--stroke);
    background: var(--bg-secondary);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-text {
    color: var(--text-secondary);
    display: grid;
    gap: 8px;
}

.footer-text a {
    color: var(--text-secondary);
}

.footer-meta {
    margin-top: 32px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.section-404 {
    padding: 140px 0;
    text-align: center;
}

@media (max-width: 1023px) {
    .layout-two-columns,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .aside--sticky,
    .filters--sticky {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .product-gallery {
        position: static;
    }

    .catalog-filters {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(360px, 88vw);
        transform: translateX(-105%);
        transition: transform 0.2s ease;
        z-index: 70;
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }

    body.filters-open .catalog-filters {
        transform: translateX(0);
    }

    body.filters-open .filters-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .filters-toggle,
    .filters-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 80vw);
        background: var(--surface-2);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
        transform: translateX(100%);
        transition: transform 0.2s ease;
        z-index: 100;
    }

    body.nav-open .nav {
        transform: translateX(0);
    }

    .nav-top,
    .nav-footer {
        display: flex;
        width: 100%;
    }

    .nav-close {
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 1rem;
        margin-left: auto;
    }

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

    .nav-toggle {
        display: inline-flex;
    }

    .dropdown {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .header-actions {
        display: none;
    }

    .hero-content {
        padding: 120px 0 60px;
    }

    .product-gallery {
        min-height: 360px;
    }

    .product-details {
        min-height: auto;
    }

    .partners-carousel-nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-cta {
        padding: 24px;
    }
}

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

.catalog-toolbar .field label {
    font-size: var(--font-small);
}
