:root {
    --primary-color: #f26a2e;
    --primary-hover: #d95b23;
    --primary-light: #fff1ea;
    --secondary-color: #173042;
    --bg-light: #f5f8fa;
    --bg-soft: #eef3f6;
    --bg-panel: rgba(255, 255, 255, 0.9);
    --text-main: #1b2832;
    --text-muted: #5f7380;
    --text-soft: #8596a1;
    --white: #ffffff;
    --line-color: rgba(23, 48, 66, 0.1);
    --accent-glow: rgba(242, 106, 46, 0.16);
    --shadow-sm: 0 8px 24px rgba(23, 48, 66, 0.05);
    --shadow-md: 0 18px 42px rgba(23, 48, 66, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body.theme-dark {
    --primary-color: #ff8a57;
    --primary-hover: #ff7740;
    --primary-light: rgba(255, 138, 87, 0.12);
    --secondary-color: #edf5f8;
    --bg-light: #0f161b;
    --bg-soft: #162127;
    --bg-panel: rgba(20, 30, 37, 0.94);
    --text-main: #ebf3f6;
    --text-muted: #a7bbc5;
    --text-soft: #80949e;
    --white: #11181e;
    --line-color: rgba(255, 255, 255, 0.08);
    --accent-glow: rgba(255, 138, 87, 0.14);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.38);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(117, 183, 213, 0.1), transparent 26%),
        linear-gradient(180deg, #f7fafb 0%, #f4f8fa 35%, #eef4f7 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.theme-dark {
    background:
        radial-gradient(circle at top left, rgba(117, 183, 213, 0.08), transparent 20%),
        radial-gradient(circle at top right, rgba(95, 148, 176, 0.06), transparent 16%),
        linear-gradient(180deg, #0f161b 0%, #0f1519 50%, #0d1216 100%);
}

body.cart-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.page-content {
    padding-top: 118px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px var(--accent-glow);
}

.btn-outline {
    color: var(--secondary-color);
    border: 1px solid rgba(23, 48, 66, 0.14);
    background: rgba(255, 255, 255, 0.82);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-sm {
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 12px;
}

.btn-primary-sm,
.btn-outline-sm {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-sm {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary-sm:hover,
.btn-primary-sm:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px var(--accent-glow);
}

.btn-outline-sm {
    border: 1px solid rgba(29, 26, 23, 0.12);
    background: #fff;
    color: var(--text-main);
    text-align: center;
}

.btn-outline-sm:hover,
.btn-outline-sm:focus-visible {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

:focus-visible {
    outline: 3px solid rgba(255, 90, 31, 0.22);
    outline-offset: 3px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 253, 249, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(29, 26, 23, 0.06);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 253, 249, 0.95);
    box-shadow: 0 12px 28px rgba(29, 26, 23, 0.06);
}

body.theme-dark header {
    background: rgba(16, 21, 25, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.theme-dark header.scrolled {
    background: rgba(16, 21, 25, 0.94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 18px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.city-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid rgba(29, 26, 23, 0.08);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-muted);
    cursor: pointer;
}

.city-selector:hover,
.city-selector:focus-within {
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.city-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: min(320px, 80vw);
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--line-color);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.city-selector:hover .city-menu,
.city-selector:focus-within .city-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-selector.has-city-confirm:hover .city-menu,
.city-selector.has-city-confirm:focus-within .city-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
}

.city-selector.has-city-confirm .city-menu.is-force-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-search-wrap {
    margin-bottom: 10px;
}

.city-search-input {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(29, 26, 23, 0.08);
    border-radius: 10px;
    background: #fff;
}

.city-options {
    max-height: 260px;
    overflow-y: auto;
    display: grid;
    gap: 4px;
}

.city-option {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: var(--text-main);
}

.city-option:hover,
.city-option:focus-visible {
    background: var(--bg-soft);
    color: var(--primary-color);
}

.nav-menu > ul {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--secondary-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 8px;
    transition: var(--transition);
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--line-color);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
}

.dropdown li {
    display: block;
    width: 100%;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 11px 20px;
    font-size: 14px;
    color: var(--text-main);
}

.dropdown a:hover {
    background: var(--bg-soft);
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.theme-toggle-icon {
    font-size: 18px;
    line-height: 1;
}

.search-bar input {
    width: 180px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(29, 26, 23, 0.08);
    background: rgba(255, 255, 255, 0.78);
    transition: var(--transition);
}

.search-bar input:focus {
    width: 220px;
    border-color: rgba(255, 90, 31, 0.4);
    background: var(--white);
}

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

body.theme-dark .city-selector,
body.theme-dark .search-bar input,
body.theme-dark .cart-icon,
body.theme-dark .theme-toggle,
body.theme-dark .product-card,
body.theme-dark .filters-sidebar,
body.theme-dark .contact-form-block,
body.theme-dark .contact-info-block,
body.theme-dark .delivery-container,
body.theme-dark .calculator-panel,
body.theme-dark .calculator-visual,
body.theme-dark .calculator-card,
body.theme-dark .human-card,
body.theme-dark .syringe-card,
body.theme-dark .calculator-note,
body.theme-dark .product-modal {
    background: rgba(23, 31, 39, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

body.theme-dark .city-menu,
body.theme-dark .dropdown {
    background: rgba(20, 30, 37, 0.98);
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .city-search-input {
    background: rgba(14, 22, 28, 0.96);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

body.theme-dark .city-option,
body.theme-dark .dropdown a {
    color: var(--text-main);
}

body.theme-dark .catalog-search-input,
body.theme-dark .form-group input,
body.theme-dark .form-group textarea {
    background: rgba(15, 22, 28, 0.98);
    border-color: rgba(255, 138, 87, 0.16);
    color: var(--text-main);
}

body.theme-dark .feature-item,
body.theme-dark .contact-form-block,
body.theme-dark .specialist-photo-card,
body.theme-dark .specialist-photo-fallback {
    background: linear-gradient(180deg, #162028, #11181e);
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .specialist-photo-fallback p,
body.theme-dark .feature-item p {
    color: var(--text-muted);
}

body.theme-dark .hero-3d-container,
body.theme-dark .tech-visual-card,
body.theme-dark .product-img-wrap,
body.theme-dark .product-img,
body.theme-dark .calc-stat,
body.theme-dark .delivery-card,
body.theme-dark .info-item,
body.theme-dark .product-modal-list li,
body.theme-dark .syringe-readout div {
    background: linear-gradient(180deg, #162029, #11181e);
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .catalog-empty,
body.theme-dark .feature-item,
body.theme-dark .hero-point,
body.theme-dark .tech-stats > div,
body.theme-dark .human-badge,
body.theme-dark .human-zone,
body.theme-dark .zone-toggle,
body.theme-dark .form-btn {
    background: rgba(19, 26, 33, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

body.theme-dark .btn-outline,
body.theme-dark .btn-outline-sm {
    background: rgba(19, 26, 33, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-main);
}

body.theme-dark .category-list a:hover,
body.theme-dark .category-list a.active,
body.theme-dark .dropdown a:hover,
body.theme-dark .city-option:hover,
body.theme-dark .city-option:focus-visible,
body.theme-dark .close-cart:hover,
body.theme-dark .product-modal-close:hover {
    background: rgba(255, 139, 94, 0.12);
}

body.theme-dark .footer-links a,
body.theme-dark .footer-contacts p,
body.theme-dark .footer-info p {
    color: rgba(255, 255, 255, 0.68);
}

body.theme-dark .product-modal-description,
body.theme-dark .calculator-note p,
body.theme-dark .delivery-card p,
body.theme-dark .info-item p,
body.theme-dark .specialist-text p,
body.theme-dark .tech-copy,
body.theme-dark .hero-text p {
    color: var(--text-muted);
}

body.theme-dark .dose-warning {
    background: linear-gradient(180deg, rgba(99, 35, 20, 0.82), rgba(62, 21, 12, 0.92));
    border-color: rgba(255, 139, 94, 0.26);
}

.cart-icon:hover,
.cart-icon:focus-visible {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.cart-icon[data-count]::after {
    content: attr(data-count);
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon.bump {
    transform: scale(1.08);
}

.hero {
    position: relative;
    padding: 152px 0 88px;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    z-index: -1;
}

.hero::before {
    top: 60px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(242, 106, 46, 0.12), transparent 68%);
}

.hero::after {
    bottom: -140px;
    left: -120px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(23, 48, 66, 0.08), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 42px;
    align-items: center;
}

.hero-kicker {
    display: none;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
}

.hero-text h1 span {
    display: block;
    color: var(--primary-color);
}

.hero-text p {
    max-width: 640px;
    margin-bottom: 34px;
    font-size: 18px;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.hero-point {
    padding: 18px;
    border: 1px solid var(--line-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
}

.hero-point strong {
    display: block;
    font-size: 22px;
    color: var(--secondary-color);
}

.hero-point span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-3d-container {
    min-height: 460px;
    border-radius: 16px;
    background:
        radial-gradient(circle at top, rgba(242, 106, 46, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 249, 0.96));
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line-color);
    overflow: hidden;
}

.hero-3d-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.section-title {
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    color: var(--secondary-color);
    text-align: center;
}

.section-title span {
    color: var(--primary-color);
}

.featured-products,
.specialist-section,
.technology {
    padding: 88px 0;
}

.product-block,
.catalog-grid {
    display: grid;
    gap: 24px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(29, 26, 23, 0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 107, 143, 0.2);
    box-shadow: 0 14px 28px rgba(23, 48, 66, 0.08);
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.featured-products .product-card {
    position: relative;
    padding: 24px;
    text-align: center;
}

.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 138px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f7fafb, #eef4f7);
    font-size: 60px;
}

.product-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.product-category {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(29, 26, 23, 0.06);
}

.product-footer .price,
.product-info .price {
    font-weight: 800;
}

.technology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tech-visual-card {
    position: relative;
    min-height: 420px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 106, 46, 0.14), transparent 24%),
        linear-gradient(135deg, #173042, #26495f);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.tech-orbit {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.tech-orbit-one {
    width: 320px;
    height: 320px;
}

.tech-orbit-two {
    width: 220px;
    height: 220px;
}

.tech-core {
    position: absolute;
    inset: 50%;
    width: 130px;
    height: 130px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at top, #fff1ea, #f08d5d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(242, 106, 46, 0.2);
}

.tech-core span {
    font-size: 24px;
    font-weight: 800;
    color: #702609;
    letter-spacing: 0.12em;
}

.tech-title {
    text-align: left;
    margin-bottom: 24px;
}

.tech-copy {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.tech-stats {
    display: flex;
    gap: 22px;
    margin-top: 28px;
}

.tech-stats > div {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
}

.tech-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.tech-label {
    font-size: 14px;
    color: var(--text-muted);
}

.specialist-section {
    background: linear-gradient(180deg, rgba(255, 241, 234, 0.5), rgba(255, 247, 242, 0.86));
}

.specialist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.specialist-text h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.08;
    color: var(--secondary-color);
}

.specialist-text p {
    margin-bottom: 26px;
    color: var(--text-muted);
}

.specialist-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-item {
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #f8fbfc);
    border: 1px solid var(--line-color);
    box-shadow: var(--shadow-sm);
}

.feature-item h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-muted);
}

.specialist-photo-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(242, 106, 46, 0.1);
    background: linear-gradient(135deg, #fff2eb, #fffaf7);
}

.specialist-photo-fallback {
    min-height: 420px;
    display: grid;
    place-items: center;
    gap: 18px;
    padding: 32px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(242, 106, 46, 0.12), transparent 30%),
        linear-gradient(180deg, #fffaf7, #f2f7fa);
    color: var(--secondary-color);
}

.specialist-avatar {
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff1ea, #ffd9cb);
    color: #8a3112;
    font-size: 36px;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(242, 106, 46, 0.14);
}

.specialist-photo-fallback p {
    max-width: 280px;
    font-size: 18px;
    color: var(--secondary-color);
}

.page-title {
    margin-bottom: 34px;
    text-align: center;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--secondary-color);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    padding-bottom: 90px;
}

.filters-sidebar,
.contact-form-block,
.contact-info-block,
.delivery-container {
    border: 1px solid rgba(29, 26, 23, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.filters-sidebar {
    align-self: start;
    padding: 24px;
    position: sticky;
    top: 112px;
}

.filter-group h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.category-list {
    display: grid;
    gap: 8px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--text-muted);
}

.category-list a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary-color);
    background: var(--bg-soft);
}

.category-list a.active::after {
    display: none;
    content: none;
}

.category-list a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.category-list a span {
    flex: 1;
}

.category-stock-note {
    display: none !important;
}

body.theme-dark .category-stock-note {
    display: none !important;
}

.forms-grid {
    display: grid;
    gap: 10px;
}

.forms-grid button,
.forms-grid a {
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.forms-grid button.active,
.forms-grid a.active {
    color: #fff;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-hover));
    border-color: rgba(255, 138, 87, 0.4);
    box-shadow: 0 12px 24px rgba(242, 106, 46, 0.22);
}

.forms-grid button.active:hover,
.forms-grid a.active:hover {
    color: #fff;
    transform: translateY(-1px);
}

body.theme-dark .forms-grid button.active,
body.theme-dark .forms-grid a.active {
    color: #fff;
    background: linear-gradient(180deg, #ff8a57, #f26a2e);
    border-color: rgba(255, 138, 87, 0.45);
    box-shadow: 0 12px 24px rgba(242, 106, 46, 0.28);
}

.form-btn {
    padding: 12px 14px;
    border: 1px solid rgba(29, 26, 23, 0.08);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-main);
    text-align: left;
    font-weight: 600;
}

.form-btn:hover {
    color: var(--primary-color);
    border-color: rgba(255, 90, 31, 0.2);
}

.mt-40 {
    margin-top: 32px;
}

.catalog-search-wrap {
    position: relative;
    margin-bottom: 22px;
}

.catalog-search-input {
    width: 100%;
    min-height: 56px;
    padding: 14px 52px 14px 20px;
    border: 1px solid rgba(242, 106, 46, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--secondary-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.catalog-search-input:focus {
    border-color: rgba(242, 106, 46, 0.32);
    box-shadow: 0 0 0 4px rgba(242, 106, 46, 0.08);
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
}

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

.product-img-wrap {
    min-height: 250px;
    padding: 24px;
    background: linear-gradient(180deg, #fffaf6, #fff2eb);
}

.product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
    border-radius: 12px;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-media-weight {
    background: linear-gradient(135deg, #6ea2bc, #a8c6d5);
}

.product-media-mass {
    background: linear-gradient(135deg, #23485d, #54798d);
}

.product-media-recovery {
    background: linear-gradient(135deg, #2e617b, #6f9ab0);
}

.product-media-longevity {
    background: linear-gradient(135deg, #3f5d70, #87a8ba);
}

.product-media-immunity {
    background: linear-gradient(135deg, #3d7186, #8eb4c1);
}

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

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.product-info h3 {
    min-height: 52px;
    margin-bottom: 14px;
    font-size: 17px;
}

.product-info .price {
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: 24px;
}

.product-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.product-card[hidden] {
    display: none !important;
}

.catalog-empty {
    margin-top: 22px;
    padding: 30px;
    border: 1px dashed rgba(29, 26, 23, 0.14);
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.72);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    padding-bottom: 90px;
}

.contact-form-block,
.contact-info-block {
    padding: 28px;
}

.contact-form-block {
    background: linear-gradient(180deg, #fdfefe, #f5f9fb);
    border: 1px solid rgba(242, 106, 46, 0.1);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-group label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(242, 106, 46, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--secondary-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(242, 106, 46, 0.32);
    box-shadow: 0 0 0 4px rgba(242, 106, 46, 0.08);
}

.contact-info-block {
    display: grid;
    gap: 16px;
}

.info-item {
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8fbfc, #eef4f7);
}

.info-item h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.delivery-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px;
    padding-bottom: 34px;
}

.delivery-section + .delivery-section {
    margin-top: 36px;
}

.delivery-section h2 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.delivery-list {
    margin-top: 18px;
    padding-left: 22px;
    list-style: disc;
}

.delivery-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.delivery-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.delivery-card {
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8fbfc, #eef4f7);
}

.delivery-card h4 {
    margin-bottom: 8px;
}

.delivery-card p {
    color: var(--text-muted);
}

.calculator-hero {
    padding: 28px 0 90px;
}

.calculator-intro {
    max-width: 860px;
    margin-bottom: 28px;
}

.calculator-title {
    text-align: left;
    margin-bottom: 18px;
}

.calculator-subtitle {
    max-width: 760px;
    color: var(--text-muted);
    font-size: 18px;
}

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

.calculator-panel,
.calculator-visual,
.calculator-card,
.human-card,
.syringe-card,
.calculator-note {
    border: 1px solid rgba(29, 26, 23, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
}

.calculator-panel {
    padding: 20px;
}

.calculator-card {
    padding: 22px;
}

.calculator-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.calculator-reset-btn {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 14px;
}

.calculator-field + .calculator-field {
    margin-top: 22px;
}

.calculator-zones {
    margin-top: 24px;
}

.zone-toggle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zone-toggle {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff5ef;
    color: var(--secondary-color);
    font-weight: 700;
    cursor: pointer;
    border: 1px solid rgba(255, 90, 31, 0.12);
}

.zone-toggle.is-active {
    background: linear-gradient(135deg, #ff8754, #ff5a1f);
    color: #fff;
    box-shadow: 0 12px 20px rgba(255, 90, 31, 0.18);
}

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

.calculator-field-head label {
    font-weight: 700;
    color: var(--secondary-color);
}

.calculator-field-head span {
    color: var(--primary-color);
    font-weight: 800;
}

.calculator-range {
    width: 100%;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.calculator-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}

.calc-stat {
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8fbfc, #eef4f7);
}

.calc-stat-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.calc-stat strong {
    font-size: 26px;
    line-height: 1;
    color: var(--secondary-color);
}

.dose-warning {
    margin-top: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(208, 47, 0, 0.16);
    background: linear-gradient(180deg, #fff0ec, #ffe6df);
}

.dose-warning h3 {
    margin-bottom: 8px;
    color: #bf2d00;
}

.dose-warning p {
    color: #8e2f12;
}

.calculator-visual {
    display: grid;
    gap: 18px;
    padding: 20px;
}

.human-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255, 122, 69, 0.16), transparent 30%),
        linear-gradient(180deg, #fffdfb, #fff4ee);
}

.human-card::after {
    content: none;
}

.human-figure {
    position: relative;
    width: 340px;
    max-width: 100%;
    margin: 0 auto;
}

.human-silhouette {
    position: relative;
    width: 170px;
    height: 288px;
    margin: 0 auto;
}

.human-head,
.human-neck,
.human-shoulders,
.human-torso,
.human-core,
.human-hip,
.human-arm,
.human-leg {
    position: absolute;
    background: linear-gradient(180deg, #15314c, #214b71);
    transition: background 0.3s ease;
}

.human-head {
    top: 6px;
    left: 50%;
    width: 50px;
    height: 58px;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 -6px 0 rgba(255, 255, 255, 0.08);
}

.human-neck {
    top: 52px;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    transform: translateX(-50%);
}

.human-shoulders {
    top: 68px;
    left: 50%;
    width: 96px;
    height: 24px;
    border-radius: 20px;
    transform: translateX(-50%);
}

.human-torso {
    top: 82px;
    left: 50%;
    width: 66px;
    height: 102px;
    border-radius: 26px 26px 20px 20px;
    transform: translateX(-50%);
}

.human-core {
    top: 112px;
    left: 50%;
    width: 38px;
    height: 50px;
    border-radius: 24px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #ffb08e, #ff8454);
    box-shadow: 0 0 0 8px rgba(255, 90, 31, 0.08);
}

.human-arm-left {
    top: 86px;
    left: 24px;
    width: 20px;
    height: 104px;
    border-radius: 18px;
    transform: rotate(17deg);
    transform-origin: top center;
}

.human-arm-right {
    top: 86px;
    right: 24px;
    width: 20px;
    height: 104px;
    border-radius: 18px;
    transform: rotate(-17deg);
    transform-origin: top center;
}

.human-hip {
    top: 178px;
    left: 50%;
    width: 58px;
    height: 18px;
    border-radius: 14px;
    transform: translateX(-50%);
}

.human-leg-left {
    top: 188px;
    left: 54px;
    width: 22px;
    height: 90px;
    border-radius: 18px;
    transform: rotate(4deg);
    transform-origin: top center;
}

.human-leg-right {
    top: 188px;
    right: 54px;
    width: 22px;
    height: 90px;
    border-radius: 18px;
    transform: rotate(-4deg);
    transform-origin: top center;
}

.human-card[data-load="средняя"] .human-head,
.human-card[data-load="средняя"] .human-neck,
.human-card[data-load="средняя"] .human-shoulders,
.human-card[data-load="средняя"] .human-torso,
.human-card[data-load="средняя"] .human-arm,
.human-card[data-load="средняя"] .human-hip,
.human-card[data-load="средняя"] .human-leg {
    background: linear-gradient(180deg, #ff884f, #ff642a);
}

.human-card[data-load="высокая"] .human-head,
.human-card[data-load="высокая"] .human-neck,
.human-card[data-load="высокая"] .human-shoulders,
.human-card[data-load="высокая"] .human-torso,
.human-card[data-load="высокая"] .human-arm,
.human-card[data-load="высокая"] .human-hip,
.human-card[data-load="высокая"] .human-leg {
    background: linear-gradient(180deg, #ff5a1f, #cf2f00);
}

.human-zone {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    border: 1px solid rgba(29, 26, 23, 0.05);
}

.human-zone::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

.human-zone-arm {
    top: 86px;
    left: 12px;
}

.human-zone-core {
    top: 126px;
    right: -10px;
}

.human-zone-leg {
    bottom: 4px;
    left: 24px;
}

.human-zone:not(.is-active) {
    opacity: 0.45;
    filter: grayscale(1);
}

.human-card.zone-disabled-arm .human-arm-left,
.human-card.zone-disabled-arm .human-arm-right {
    opacity: 0.18;
}

.human-card.zone-disabled-core .human-core,
.human-card.zone-disabled-core .human-torso,
.human-card.zone-disabled-core .human-shoulders {
    opacity: 0.18;
}

.human-card.zone-disabled-leg .human-hip,
.human-card.zone-disabled-leg .human-leg-left,
.human-card.zone-disabled-leg .human-leg-right {
    opacity: 0.18;
}

.human-badge {
    position: absolute;
    right: 22px;
    top: 28px;
    padding: 14px 16px;
    min-width: 150px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
}

.human-badge-secondary {
    top: auto;
    bottom: 28px;
}

.human-badge span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
}

.human-badge strong {
    font-size: 22px;
    color: var(--secondary-color);
}

.syringe-card {
    padding: 24px;
}

.syringe-stage {
    display: grid;
    grid-template-columns: 86px minmax(320px, 1fr) 118px;
    align-items: center;
    gap: 14px;
}

.syringe-needle-cluster {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.syringe-needle-tip {
    width: 18px;
    height: 8px;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background: linear-gradient(90deg, #a2b4c2, #e3edf2);
}

.syringe-needle-line {
    width: 68px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #aebfc9, #dce7ed);
}

.syringe-body {
    position: relative;
    min-height: 128px;
    padding: 18px 26px 18px 26px;
    border-radius: 30px;
    border: 2px solid rgba(27, 55, 80, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 251, 0.92)),
        linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    overflow: hidden;
}

.syringe-body::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 24px;
    border: 1px solid rgba(21, 49, 76, 0.08);
    pointer-events: none;
}

.syringe-scale {
    position: absolute;
    inset: 12px 34px auto 34px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 6px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
}

.syringe-scale span {
    position: relative;
    padding-top: 2px;
}

.syringe-scale span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 24px;
    width: 2px;
    height: 18px;
    border-radius: 999px;
    background: rgba(21, 49, 76, 0.32);
    transform: translateX(-50%);
}

.syringe-fill-track {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 24px;
    height: 40px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(225, 236, 244, 0.48), rgba(215, 226, 234, 0.88));
    border: 1px solid rgba(27, 55, 80, 0.08);
    overflow: hidden;
}

.syringe-fill {
    width: 6%;
    height: 100%;
    border-radius: 17px;
    background: linear-gradient(90deg, #ffb18f, #ff6a33 58%, #ff5a1f);
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.45),
        0 0 18px rgba(255, 90, 31, 0.18);
    transition: width 0.3s ease;
}

.syringe-plunger {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 8%;
    width: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #16324f, #3a6689);
    box-shadow: 0 0 0 4px rgba(22, 50, 79, 0.05);
    transition: left 0.3s ease;
}

.syringe-handle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.syringe-rod {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c7d6df, #e7eff3);
}

.syringe-thumb-pad {
    width: 34px;
    height: 74px;
    border-radius: 18px;
    background: linear-gradient(180deg, #214361, #16324f);
}

.syringe-wing {
    position: absolute;
    top: 44px;
    width: 22px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(197, 213, 223, 0.8), rgba(228, 237, 242, 0.95));
    border: 1px solid rgba(27, 55, 80, 0.08);
}

.syringe-wing-left {
    left: 4px;
}

.syringe-wing-right {
    right: 4px;
}

.syringe-readout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.syringe-readout div {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf6, #fff2eb);
}

.syringe-readout span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
}

.syringe-readout strong {
    color: var(--secondary-color);
    font-size: 22px;
}

.calculator-note {
    padding: 22px;
}

.calculator-note h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.calculator-note p {
    color: var(--text-muted);
}

.cart-overlay {
    position: fixed;
    top: 0;
    right: -420px;
    width: min(420px, 100vw);
    height: 100vh;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: #fffdfa;
    box-shadow: -18px 0 50px rgba(29, 26, 23, 0.18);
    z-index: 2000;
    transition: right 0.35s ease;
}

.cart-overlay.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(29, 26, 23, 0.08);
}

.close-cart {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
}

.close-cart:hover {
    background: var(--bg-soft);
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}

.empty-msg {
    padding: 32px 12px;
    text-align: center;
    color: var(--text-soft);
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(29, 26, 23, 0.06);
}

.cart-item-info h4 {
    margin-bottom: 4px;
    font-size: 15px;
}

.cart-item-info .price {
    color: var(--primary-color);
    font-weight: 700;
}

.remove-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #c4b5a8;
    cursor: pointer;
    font-size: 28px;
}

.remove-item:hover {
    background: #fff0ed;
    color: #ef5130;
}

.cart-footer {
    padding-top: 18px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 800;
}

.cart-submit {
    width: 100%;
}

.cart-bg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 17, 24, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1900;
}

.cart-bg-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2100;
    max-width: 320px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #1d2d3d;
    color: var(--white);
    box-shadow: var(--shadow-md);
    animation: toast-in 0.25s ease;
}

.cart-toast.is-hiding {
    opacity: 0;
    transform: translateY(10px);
}

.product-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 17, 24, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1900;
}

.product-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(560px, calc(100vw - 32px));
    padding: 26px;
    border-radius: 28px;
    background: #fffdfa;
    box-shadow: var(--shadow-md);
    transform: translate(-50%, -48%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2001;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.product-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.product-modal-category {
    margin-bottom: 6px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-modal-title {
    color: var(--secondary-color);
    font-size: 28px;
    line-height: 1.1;
}

.product-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-soft);
}

.product-modal-close:hover {
    background: var(--bg-soft);
    color: var(--primary-color);
}

.product-modal-description {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-modal-list {
    display: grid;
    gap: 10px;
}

.product-modal-list li {
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffaf6, #fff2eb);
    color: var(--secondary-color);
    font-weight: 600;
}

.support-chat-launcher {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-md);
    z-index: 2002;
    cursor: pointer;
}

.support-chat-launcher span {
    font-size: 28px;
}

.support-chat-launcher.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.support-chat-panel {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: min(380px, calc(100vw - 24px));
    max-height: min(78vh, 760px);
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 12px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid rgba(29, 26, 23, 0.08);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 2003;
}

.support-chat-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-chat-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.support-chat-header strong {
    display: block;
    color: var(--secondary-color);
}

.support-chat-header p,
.support-chat-meta {
    color: var(--text-muted);
    font-size: 13px;
}

.support-chat-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 28px;
    color: var(--text-soft);
    cursor: pointer;
}

.support-chat-close:hover {
    background: var(--bg-soft);
    color: var(--primary-color);
}

.support-chat-messages {
    overflow-y: auto;
    display: grid;
    gap: 10px;
    min-height: 220px;
    padding-right: 4px;
}

.support-chat-empty {
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8fbfc, #eef4f7);
}

.support-chat-empty strong {
    display: block;
    margin-bottom: 6px;
}

.support-chat-empty p {
    color: var(--text-muted);
}

.support-chat-message {
    display: flex;
}

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

.support-chat-bubble {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 10px;
    background: #eef3f6;
}

.support-chat-message.is-user .support-chat-bubble {
    background: var(--primary-color);
    color: #fff;
}

.support-chat-message-meta {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11px;
    opacity: 0.75;
}

.support-chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.support-chat-chip {
    padding: 8px 12px;
    border-radius: 8px;
    background: #eef4f7;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.support-chat-form {
    display: grid;
    gap: 10px;
}

.support-chat-input {
    width: 100%;
    min-height: 88px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(29, 26, 23, 0.08);
    background: #fff;
    color: var(--text-main);
    resize: vertical;
}

.support-chat-send {
    width: 100%;
}

body.theme-dark .support-chat-panel,
body.theme-dark .support-chat-input {
    background: rgba(23, 31, 39, 0.98);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

body.theme-dark .support-chat-empty,
body.theme-dark .support-chat-bubble,
body.theme-dark .support-chat-chip {
    background: linear-gradient(180deg, #162029, #11181e);
    color: var(--text-main);
}

body.theme-dark .support-chat-message.is-user .support-chat-bubble {
    color: #fff;
    background: var(--primary-color);
}

.catalog-search-input,
.form-group input,
.form-group textarea {
    box-shadow: none;
    background-image: none;
}

.catalog-search-input {
    background: rgba(255, 247, 242, 0.96);
    color: var(--text-main);
}

.catalog-search-input:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 90, 31, 0.34);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.12);
}

.search-icon {
    color: rgba(242, 106, 46, 0.92);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 248, 243, 0.98);
    color: var(--text-main);
}

body.theme-dark .catalog-search-input,
body.theme-dark .search-bar input,
body.theme-dark .form-group input,
body.theme-dark .form-group textarea {
    background: #121a20;
    background-image: none;
    color: var(--text-main);
    border-color: rgba(255, 138, 87, 0.18);
    box-shadow: none;
}

body.theme-dark .catalog-search-input::placeholder,
body.theme-dark .search-bar input::placeholder,
body.theme-dark .form-group input::placeholder,
body.theme-dark .form-group textarea::placeholder {
    color: rgba(235, 243, 246, 0.48);
}

body.theme-dark .specialist-section {
    background: linear-gradient(180deg, #11181e, #151d24);
}

body.theme-dark .specialist-grid,
body.theme-dark .specialist-photo-card,
body.theme-dark .specialist-photo-fallback,
body.theme-dark .contact-form-block {
    background-color: transparent;
    background-image: none;
}

body.theme-dark .specialist-photo-card,
body.theme-dark .specialist-photo-fallback,
body.theme-dark .feature-item {
    background: linear-gradient(180deg, #162028, #11181e);
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .specialist-text p,
body.theme-dark .specialist-photo-fallback p,
body.theme-dark .feature-item p {
    color: var(--text-muted);
}

/* Footer refresh */
footer {
    position: relative;
    margin-top: 72px;
    border-top: 1px solid rgba(242, 106, 46, 0.12);
    background:
        linear-gradient(180deg, rgba(22, 33, 39, 0.98), rgba(16, 24, 30, 1));
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 106, 46, 0.58), transparent);
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(180px, 0.9fr) minmax(220px, 1fr);
    gap: 42px;
    padding: 52px 0 28px;
    align-items: start;
}

.footer-brand {
    max-width: 460px;
}

.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 420px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(235, 243, 246, 0.82);
}

.footer-column h4,
.footer-links h4,
.footer-contacts h4 {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 138, 87, 0.92);
}

.footer-links,
.footer-column,
.footer-contacts {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-column a,
.footer-contacts a,
.footer-contacts p {
    color: rgba(235, 243, 246, 0.88);
    line-height: 1.55;
}

.footer-links a:hover,
.footer-column a:hover,
.footer-contacts a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(167, 187, 197, 0.84);
}

body.theme-dark footer {
    border-top-color: rgba(255, 138, 87, 0.14);
    background: linear-gradient(180deg, #162029, #0f161b);
}

body.theme-dark .footer-brand p,
body.theme-dark .footer-links a,
body.theme-dark .footer-column a,
body.theme-dark .footer-contacts a,
body.theme-dark .footer-contacts p {
    color: rgba(235, 243, 246, 0.86);
}

body.theme-dark .footer-bottom {
    color: rgba(167, 187, 197, 0.8);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0 24px;
    }

    .footer-brand p {
        max-width: none;
        font-size: 16px;
    }
}

/* Cart refresh */
.cart-overlay {
    z-index: 3200;
    background: rgba(255, 252, 249, 0.99);
    color: var(--secondary-color);
    box-shadow: -16px 0 40px rgba(15, 22, 28, 0.18);
}

.cart-overlay h3,
.cart-header h3,
.cart-title {
    color: var(--secondary-color);
}

.cart-items,
.cart-item,
.cart-item-info,
.cart-footer,
.cart-total {
    color: var(--secondary-color);
}

.cart-item {
    border-bottom-color: rgba(23, 48, 66, 0.08);
}

.cart-item strong,
.cart-item h4,
.cart-item-title,
.cart-total strong,
.cart-total-price {
    color: var(--secondary-color);
}

.cart-item span,
.cart-item p,
.cart-empty,
.cart-total span {
    color: var(--text-muted);
}

.close-cart,
.remove-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(23, 48, 66, 0.42);
}

.close-cart:hover,
.remove-item:hover {
    color: var(--primary-color);
    background: rgba(242, 106, 46, 0.08);
}

.checkout-btn,
.cart-footer .btn-primary,
.cart-overlay .btn-primary {
    position: relative;
    z-index: 1;
}

.cart-overlay .support-chat-launcher,
.cart-overlay .support-chat-panel {
    display: none;
}

body.theme-dark .cart-overlay {
    background: rgba(18, 26, 32, 0.995);
    color: var(--text-main);
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.34);
}

body.theme-dark .cart-overlay h3,
body.theme-dark .cart-header h3,
body.theme-dark .cart-title,
body.theme-dark .cart-item strong,
body.theme-dark .cart-item h4,
body.theme-dark .cart-item-title,
body.theme-dark .cart-total strong,
body.theme-dark .cart-total-price {
    color: var(--text-main);
}

body.theme-dark .cart-item span,
body.theme-dark .cart-item p,
body.theme-dark .cart-empty,
body.theme-dark .cart-total span {
    color: var(--text-muted);
}

body.theme-dark .cart-item {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .close-cart,
body.theme-dark .remove-item {
    color: rgba(235, 243, 246, 0.56);
}

.close-cart {
    line-height: 1;
    text-align: center;
}

.cart-qty-controls {
    display: grid;
    gap: 6px;
    margin-top: 10px;
}

.cart-qty-label {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
}

.cart-qty-input {
    width: 88px;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(242, 106, 46, 0.16);
    background: rgba(255, 255, 255, 0.96);
    color: var(--secondary-color);
    font-weight: 700;
}

body.theme-dark .cart-qty-input {
    background: rgba(19, 26, 33, 0.96);
    border-color: rgba(255, 138, 87, 0.16);
    color: var(--text-main);
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

/* Gold Noir theme */
:root {
    --primary-color: #c79a2b;
    --primary-hover: #ddb44a;
    --primary-light: rgba(199, 154, 43, 0.14);
    --secondary-color: #1f2430;
    --bg-light: #f6f1e4;
    --bg-soft: #efe7d5;
    --bg-panel: rgba(255, 251, 244, 0.96);
    --text-main: #2a2417;
    --text-muted: #78684c;
    --text-soft: #9b8967;
    --line-color: rgba(199, 154, 43, 0.14);
    --accent-glow: rgba(199, 154, 43, 0.18);
}

body {
    background:
        radial-gradient(circle at 15% 18%, rgba(199, 154, 43, 0.08), transparent 20%),
        radial-gradient(circle at 84% 12%, rgba(199, 154, 43, 0.06), transparent 18%),
        linear-gradient(180deg, #fbf7ef, #f4ecdd 52%, #efe4d0 100%);
    color: var(--text-main);
}

body.theme-dark {
    --primary-color: #d4a63a;
    --primary-hover: #e4bc5a;
    --primary-light: rgba(212, 166, 58, 0.14);
    --secondary-color: #f5e7b6;
    --bg-light: #0a0a0a;
    --bg-soft: #131313;
    --bg-panel: rgba(17, 17, 17, 0.96);
    --text-main: #f4ecd0;
    --text-muted: #bda977;
    --text-soft: #9e8960;
    --line-color: rgba(212, 166, 58, 0.16);
    --accent-glow: rgba(212, 166, 58, 0.24);
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 166, 58, 0.05), transparent 22%),
        radial-gradient(circle at 82% 10%, rgba(212, 166, 58, 0.05), transparent 18%),
        linear-gradient(180deg, #080808, #111111 48%, #0a0a0a 100%);
    color: var(--text-main);
}

header {
    background: rgba(255, 250, 243, 0.9);
    border-bottom: 1px solid rgba(199, 154, 43, 0.12);
    backdrop-filter: blur(18px);
}

body.theme-dark header {
    background: rgba(10, 10, 10, 0.92);
    border-bottom: 1px solid rgba(212, 166, 58, 0.12);
}

.logo,
.logo span {
    color: #f6d774;
    text-shadow: 0 0 14px rgba(212, 166, 58, 0.18);
}

.logo {
    letter-spacing: 0.04em;
}

.hero,
.featured-products,
.specialist-section,
.technology,
.catalog-page,
.calculator-hero,
.contacts-page,
.delivery-page {
    background: transparent;
}

.hero::before,
body.theme-dark .hero::before {
    background:
        radial-gradient(circle at 14% 22%, rgba(212, 166, 58, 0.1), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(212, 166, 58, 0.08), transparent 20%);
}

.hero-text h1,
.section-title,
.page-title h1,
.page-title h2 {
    color: #f7efd3;
}

.hero-text h1 span,
.section-subtitle,
.product-price,
.cart-total-row strong,
.delivery-card h3,
.info-item h3 {
    color: #e0b451;
}

.hero-text p,
.section-copy,
.tech-copy,
.specialist-text p,
.product-info p,
.contact-info-block p,
.delivery-container p {
    color: var(--text-muted);
}

.btn-primary,
.btn-primary-sm,
.city-confirm-primary,
.theme-toggle:hover,
.cart-icon:hover {
    background: linear-gradient(135deg, #9c6a19, #d4a63a 45%, #f2d57a 75%, #b58322);
    color: #18120a;
    box-shadow: 0 14px 30px rgba(212, 166, 58, 0.22);
}

.btn-outline,
.btn-outline-sm,
.city-confirm-secondary,
.theme-toggle,
.cart-icon,
.city-selector,
.search-bar input,
.catalog-search-input,
.form-group input,
.form-group textarea {
    border-color: rgba(212, 166, 58, 0.18);
    background: rgba(255, 251, 244, 0.96);
    color: var(--text-main);
}

.product-card,
.filters-sidebar,
.contact-form-block,
.contact-info-block,
.delivery-container,
.calculator-panel,
.calculator-visual,
.calculator-card,
.human-card,
.syringe-card,
.calculator-note,
.feature-item,
.hero-point,
.tech-stats > div,
.calc-stat,
.support-chat-panel,
.support-chat-bubble,
.support-chat-chip,
.product-modal,
.cart-overlay,
.dropdown,
.city-menu {
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 239, 226, 0.98));
    border-color: rgba(199, 154, 43, 0.14);
    color: var(--text-main);
    box-shadow: 0 18px 42px rgba(84, 63, 26, 0.12);
}

.hero-3d-container,
.specialist-photo-card,
.specialist-photo-fallback,
.tech-visual-card,
.product-img-wrap,
.product-media {
    background:
        radial-gradient(circle at 50% 38%, rgba(199, 154, 43, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(244, 235, 220, 0.98));
    border-color: rgba(199, 154, 43, 0.16);
}

body.theme-dark .btn-outline,
body.theme-dark .btn-outline-sm,
body.theme-dark .city-confirm-secondary,
body.theme-dark .theme-toggle,
body.theme-dark .cart-icon,
body.theme-dark .city-selector,
body.theme-dark .search-bar input,
body.theme-dark .catalog-search-input,
body.theme-dark .form-group input,
body.theme-dark .form-group textarea {
    background: rgba(18, 18, 18, 0.94);
}

body.theme-dark .product-card,
body.theme-dark .filters-sidebar,
body.theme-dark .contact-form-block,
body.theme-dark .contact-info-block,
body.theme-dark .delivery-container,
body.theme-dark .calculator-panel,
body.theme-dark .calculator-visual,
body.theme-dark .calculator-card,
body.theme-dark .human-card,
body.theme-dark .syringe-card,
body.theme-dark .calculator-note,
body.theme-dark .feature-item,
body.theme-dark .hero-point,
body.theme-dark .tech-stats > div,
body.theme-dark .calc-stat,
body.theme-dark .support-chat-panel,
body.theme-dark .support-chat-bubble,
body.theme-dark .support-chat-chip,
body.theme-dark .product-modal,
body.theme-dark .cart-overlay,
body.theme-dark .dropdown,
body.theme-dark .city-menu {
    background: linear-gradient(180deg, rgba(19, 19, 19, 0.98), rgba(12, 12, 12, 0.98));
    border-color: rgba(212, 166, 58, 0.14);
    color: var(--text-main);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

body.theme-dark .hero-3d-container,
body.theme-dark .specialist-photo-card,
body.theme-dark .specialist-photo-fallback,
body.theme-dark .tech-visual-card,
body.theme-dark .product-img-wrap,
body.theme-dark .product-media {
    background:
        radial-gradient(circle at 50% 38%, rgba(212, 166, 58, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(22, 19, 14, 0.98), rgba(10, 10, 10, 0.98));
    border-color: rgba(212, 166, 58, 0.16);
}

.product-media,
.product-img-wrap img,
.hero-3d-container canvas {
    filter: saturate(0.92) hue-rotate(-10deg);
}

.category-list a,
.forms-grid button,
.forms-grid a,
.dropdown a,
.city-option {
    color: var(--text-main);
}

.category-list a.active,
.forms-grid button.active,
.forms-grid a.active,
.dropdown a:hover,
.city-option:hover {
    background: rgba(212, 166, 58, 0.1);
    color: #f1cc67;
}

.category-stock-note,
.product-stock,
.cart-item span,
.cart-empty,
.support-chat-meta,
.support-chat-header p,
.support-chat-system-note p {
    color: var(--text-muted);
}

footer {
    background:
        radial-gradient(circle at 50% 0%, rgba(199, 154, 43, 0.08), transparent 28%),
        linear-gradient(180deg, #f3ead8, #e8dbc2);
    border-top: 1px solid rgba(199, 154, 43, 0.16);
}

body.theme-dark footer {
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 166, 58, 0.08), transparent 28%),
        linear-gradient(180deg, #090909, #050505);
    border-top: 1px solid rgba(212, 166, 58, 0.16);
}

footer::before {
    background: linear-gradient(90deg, transparent, rgba(212, 166, 58, 0.72), transparent);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand-logo-image {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}

.footer-brand .brand-logo-image {
    height: 56px;
}

.messenger-links-block {
    margin-top: 14px;
}

.messenger-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.messenger-link {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.messenger-max {
    background: linear-gradient(135deg, #111111, #2f2f2f 48%, #d4a63a);
}

.messenger-imo {
    background: linear-gradient(135deg, #5a2dff, #7e4dff 60%, #a27dff);
}

.messenger-telegram {
    background: linear-gradient(135deg, #1f8bff, #52b8ff);
}

.messenger-whatsapp {
    background: linear-gradient(135deg, #17b95a, #41df83);
}

.messenger-mail {
    background: linear-gradient(135deg, #8f6116, #d4a63a 55%, #f0d57b);
    color: #17120b;
}

body.theme-dark .close-cart:hover,
body.theme-dark .remove-item:hover {
    color: var(--primary-color);
    background: rgba(255, 138, 87, 0.12);
}

/* Hero refresh */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 22%, rgba(242, 106, 46, 0.1), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(242, 106, 46, 0.08), transparent 20%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    align-items: stretch;
    gap: 54px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0 8px;
}

.hero-text h1 {
    max-width: 640px;
    margin-bottom: 24px;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.hero-text p {
    max-width: 700px;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.58;
}

.hero-btns {
    margin-bottom: 14px;
}

.hero-points {
    gap: 14px;
}

.hero-point {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(23, 32, 40, 0.84), rgba(18, 26, 32, 0.92));
}

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

.hero-point span {
    font-size: 15px;
}

.hero-3d-container {
    position: relative;
    min-height: 520px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 199, 163, 0.08), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(242, 106, 46, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(23, 32, 40, 0.9), rgba(17, 24, 30, 0.98));
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.24);
}

.hero-3d-container::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.hero-3d-container::after {
    content: '';
    position: absolute;
    inset: auto 12% 8% 12%;
    height: 24%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(242, 106, 46, 0.12), transparent 68%);
    filter: blur(18px);
    pointer-events: none;
}

.hero-3d-container canvas {
    position: relative;
    z-index: 1;
    filter: saturate(0.82) brightness(0.94);
    opacity: 0.88;
}

body.theme-dark .hero-text p {
    color: rgba(235, 243, 246, 0.8);
}

body.theme-dark .hero-point {
    background: linear-gradient(180deg, rgba(20, 29, 36, 0.96), rgba(15, 22, 28, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .hero-3d-container {
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 199, 163, 0.08), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(242, 106, 46, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(20, 29, 36, 0.96), rgba(15, 22, 28, 1));
}

body:not(.theme-dark) .hero::before {
    background:
        radial-gradient(circle at 14% 22%, rgba(242, 106, 46, 0.12), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(110, 162, 188, 0.1), transparent 20%);
}

body:not(.theme-dark) .hero-point {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.94));
    border-color: rgba(23, 48, 66, 0.08);
}

body:not(.theme-dark) .hero-point strong {
    color: var(--secondary-color);
}

body:not(.theme-dark) .hero-point span {
    color: var(--text-muted);
}

body:not(.theme-dark) .hero-3d-container {
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 199, 163, 0.14), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(242, 106, 46, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 249, 0.96));
    border-color: rgba(23, 48, 66, 0.08);
    box-shadow: 0 24px 48px rgba(23, 48, 66, 0.12);
}

body:not(.theme-dark) .hero-3d-container::before {
    border-color: rgba(23, 48, 66, 0.05);
}

body:not(.theme-dark) .hero-3d-container::after {
    background: radial-gradient(circle, rgba(242, 106, 46, 0.16), transparent 68%);
}

body:not(.theme-dark) .hero-3d-container canvas {
    filter: saturate(0.9) brightness(0.98);
    opacity: 0.92;
}

body:not(.theme-dark) .tech-visual-card {
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 106, 46, 0.16), transparent 24%),
        linear-gradient(135deg, #e6f0f5, #cfe0ea 58%, #bed2dd 100%);
    border-color: rgba(23, 48, 66, 0.08);
}

body:not(.theme-dark) .tech-stats > div {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 252, 0.94));
    border-color: rgba(23, 48, 66, 0.08);
}

body:not(.theme-dark) .filters-sidebar,
body:not(.theme-dark) .product-card,
body:not(.theme-dark) .catalog-search-input,
body:not(.theme-dark) .contact-form-block,
body:not(.theme-dark) .contact-info-block,
body:not(.theme-dark) .delivery-container {
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--text-main);
}

html:not(.theme-dark) body .hero::before {
    background:
        radial-gradient(circle at 14% 22%, rgba(242, 106, 46, 0.12), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(110, 162, 188, 0.1), transparent 20%);
}

html:not(.theme-dark) body .hero-point {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.94));
    border-color: rgba(23, 48, 66, 0.08);
}

html:not(.theme-dark) body .hero-point strong {
    color: var(--secondary-color);
}

html:not(.theme-dark) body .hero-point span {
    color: var(--text-muted);
}

html:not(.theme-dark) body .hero-3d-container {
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 199, 163, 0.14), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(242, 106, 46, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 249, 0.96));
    border-color: rgba(23, 48, 66, 0.08);
    box-shadow: 0 24px 48px rgba(23, 48, 66, 0.12);
}

html:not(.theme-dark) body .hero-3d-container::before {
    border-color: rgba(23, 48, 66, 0.05);
}

html:not(.theme-dark) body .hero-3d-container::after {
    background: radial-gradient(circle, rgba(242, 106, 46, 0.16), transparent 68%);
}

html:not(.theme-dark) body .hero-3d-container canvas {
    filter: saturate(0.9) brightness(0.98);
    opacity: 0.92;
}

html:not(.theme-dark) body .tech-visual-card {
    background:
        radial-gradient(circle at 20% 20%, rgba(242, 106, 46, 0.16), transparent 24%),
        linear-gradient(135deg, #e6f0f5, #cfe0ea 58%, #bed2dd 100%);
    border-color: rgba(23, 48, 66, 0.08);
}

html:not(.theme-dark) body .tech-stats > div {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 252, 0.94));
    border-color: rgba(23, 48, 66, 0.08);
}

html:not(.theme-dark) body .filters-sidebar,
html:not(.theme-dark) body .product-card,
html:not(.theme-dark) body .catalog-search-input,
html:not(.theme-dark) body .contact-form-block,
html:not(.theme-dark) body .contact-info-block,
html:not(.theme-dark) body .delivery-container {
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--text-main);
}

html:not(.theme-dark),
html:not(.theme-dark) body,
html:not(.theme-dark) main {
    background: #f5f8fa;
    color: var(--text-main);
}

body[data-products-source="fallback"] .catalog-page::before,
body[data-products-source="fallback"] .featured-products::before {
    content: "products.json не загружен: открыт fallback-каталог. Открой сайт через локальный сервер, а не file://";
    display: block;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(242, 106, 46, 0.12);
    border: 1px solid rgba(242, 106, 46, 0.2);
    color: #b04a21;
    font-size: 14px;
    font-weight: 700;
}

body.theme-dark[data-products-source="fallback"] .catalog-page::before,
body.theme-dark[data-products-source="fallback"] .featured-products::before {
    color: #ffb08a;
    background: rgba(255, 138, 87, 0.14);
    border-color: rgba(255, 138, 87, 0.22);
}

/* Motion system */
.btn-primary,
.btn-outline,
.btn-primary-sm,
.btn-outline-sm,
.product-card,
.hero-point,
.feature-item,
.calc-stat,
.zone-toggle,
.theme-toggle,
.cart-icon,
.city-selector,
.forms-grid button,
.forms-grid a,
.category-list a {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease,
        opacity 0.28s ease;
}

.product-card:hover,
.feature-item:hover,
.calc-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(23, 48, 66, 0.14);
}

body.theme-dark .product-card:hover,
body.theme-dark .feature-item:hover,
body.theme-dark .calc-stat:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

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

.product-card:hover .product-media,
.product-card:hover .product-img-wrap img {
    transform: scale(1.03);
}

.product-media,
.product-img-wrap img {
    transition: transform 0.38s ease;
}

.product-stock.is-out {
    color: #c5542a;
    font-weight: 700;
}

.product-stock {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    line-height: 1.45;
}

.product-info p {
    min-height: 72px;
}

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

.product-footer > div:first-child {
    min-width: 0;
}

.product-price {
    display: block;
    white-space: nowrap;
}

.product-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.product-btns .btn-outline-sm,
.product-btns .btn-primary-sm {
    width: 100%;
    min-width: 0;
}

.product-media span {
    letter-spacing: 0.02em;
}

.city-selector {
    position: relative;
}

.city-confirm-card {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 40;
    width: min(320px, 78vw);
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(242, 106, 46, 0.18);
    box-shadow: 0 18px 34px rgba(23, 48, 66, 0.16);
}

.city-confirm-card p {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1.45;
}

.city-confirm-actions {
    display: flex;
    gap: 10px;
}

.city-confirm-btn {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

.city-confirm-primary {
    background: var(--primary-color);
    color: #fff;
}

.city-confirm-secondary {
    background: rgba(242, 106, 46, 0.08);
    color: var(--primary-color);
}

.support-chat-system-note {
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 241, 234, 0.92), rgba(255, 247, 242, 0.96));
    border: 1px solid rgba(242, 106, 46, 0.12);
    color: var(--secondary-color);
}

.support-chat-system-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.support-chat-system-note p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

body.theme-dark .city-confirm-card {
    background: rgba(20, 30, 37, 0.98);
    border-color: rgba(255, 138, 87, 0.2);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

body.theme-dark .city-confirm-card p {
    color: var(--text-main);
}

body.theme-dark .city-confirm-secondary {
    background: rgba(255, 138, 87, 0.12);
    color: #ff9a6b;
}

body.theme-dark .support-chat-system-note {
    background: linear-gradient(180deg, rgba(27, 38, 46, 0.96), rgba(19, 28, 34, 0.98));
    border-color: rgba(255, 138, 87, 0.16);
}

/* Final brand and light-theme text fixes */
.brand-logo-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 14px;
    background: rgba(255, 248, 236, 0.96);
    border: 1px solid rgba(199, 154, 43, 0.18);
    box-shadow: 0 10px 26px rgba(100, 77, 29, 0.12);
}

.brand-logo-image {
    width: auto;
    height: 54px;
    object-fit: contain;
}

.footer-brand .brand-logo-image {
    height: 72px;
}

body:not(.theme-dark) .hero-text h1,
body:not(.theme-dark) .hero-text h1 span,
body:not(.theme-dark) .featured-products .section-title,
body:not(.theme-dark) .technology .section-title,
body:not(.theme-dark) .technology h2,
html:not(.theme-dark) body .hero-text h1,
html:not(.theme-dark) body .hero-text h1 span,
html:not(.theme-dark) body .featured-products .section-title,
html:not(.theme-dark) body .technology .section-title,
html:not(.theme-dark) body .technology h2 {
    color: #111111 !important;
}

.messenger-link svg {
    width: 24px;
    height: 24px;
    display: block;
}

.product-card.is-out-of-stock .product-img-wrap,
.product-card.is-out-of-stock .product-media {
    opacity: 0.78;
}

.add-to-cart-btn.is-disabled,
.add-to-cart-btn:disabled {
    background: linear-gradient(180deg, #cfd8de, #b8c4cc);
    color: #5d6d78;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.product-card.is-out-of-stock .product-price {
    opacity: 0.9;
}

body.theme-dark .product-stock.is-out {
    color: #ff9a6b;
}

body.theme-dark .add-to-cart-btn.is-disabled,
body.theme-dark .add-to-cart-btn:disabled {
    background: linear-gradient(180deg, #384852, #2a3740);
    color: #9cb0bb;
}

.catalog-grid .product-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.38s ease,
        transform 0.38s ease,
        box-shadow 0.28s ease;
}

.catalog-grid .product-card[hidden] {
    display: none !important;
}

.catalog-grid .product-card.is-filtering-in {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
}


.dropdown,
.city-menu {
    transform-origin: top left;
    transition:
        opacity 0.24s ease,
        visibility 0.24s ease,
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.cart-overlay {
    transition:
        right 0.32s ease,
        box-shadow 0.32s ease,
        opacity 0.32s ease;
}

.support-chat-launcher {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        opacity 0.28s ease;
}

.support-chat-launcher[data-unread]::after {
    content: attr(data-unread);
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ff5a1f;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 90, 31, 0.28);
}

.toast,
.cart-toast,
.site-toast,
.notification-toast {
    right: 24px !important;
    bottom: 96px !important;
    max-width: min(360px, calc(100vw - 32px));
    padding: 14px 16px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 138, 87, 0.16);
    background: linear-gradient(180deg, rgba(24, 35, 43, 0.98), rgba(18, 27, 33, 0.98)) !important;
    color: #eef5f7 !important;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26) !important;
    backdrop-filter: blur(12px);
}

.toast strong,
.cart-toast strong,
.site-toast strong,
.notification-toast strong {
    color: #ff8a57 !important;
}

.toast p,
.cart-toast p,
.site-toast p,
.notification-toast p {
    margin: 0;
    color: rgba(238, 245, 247, 0.86) !important;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .toast,
    .cart-toast,
    .site-toast,
    .notification-toast {
        right: 12px !important;
        left: 12px;
        bottom: 88px !important;
        max-width: none;
    }
}

.support-chat-launcher:hover {
    transform: translateY(-3px);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.72s ease,
        transform 0.72s ease;
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-animate {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.hero-animate.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-text h1.hero-animate {
    transform: translateY(28px);
}

.hero-3d-container.hero-animate {
    transform: translateY(24px) scale(0.985);
}

.hero-3d-container.hero-animate.is-animated {
    transform: translateY(0) scale(1);
}

.hero-point {
    animation: heroCardFloat 8s ease-in-out infinite;
}

.hero-point:nth-child(2) {
    animation-delay: 1.2s;
}

.hero-point:nth-child(3) {
    animation-delay: 2.4s;
}

@keyframes heroCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .hero-animate,
    .btn-primary,
    .btn-outline,
    .btn-primary-sm,
    .btn-outline-sm,
    .product-card,
    .hero-point,
    .feature-item,
    .calc-stat,
    .support-chat-launcher,
    .dropdown,
    .city-menu,
    .cart-overlay {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding: 72px 0 20px;
    background: #142638;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
}

.footer-info .logo {
    margin-bottom: 16px;
}

.footer-info p,
.footer-links a,
.footer-contacts p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links h4,
.footer-contacts h4 {
    margin-bottom: 16px;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a:hover {
    color: #ffd3c2;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 14px;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .technology-grid,
    .specialist-grid,
    .contacts-grid,
    .catalog-layout,
    .calculator-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .hero-points,
    .product-block,
    .catalog-grid,
    .delivery-payment-grid,
    .calculator-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 0;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        overflow-x: auto;
    }

    .nav-menu ul {
        width: max-content;
        padding-bottom: 6px;
    }

    .page-content {
        padding-top: 146px;
    }

    .hero {
        padding-top: 170px;
    }

    .hero-text,
    .tech-title,
    .section-title {
        text-align: left;
    }

    .hero-btns,
    .tech-stats,
    .specialist-features,
    .product-btns,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-points,
    .product-block,
    .catalog-grid,
    .delivery-payment-grid,
    .specialist-features,
    .syringe-readout {
        grid-template-columns: 1fr;
    }

    .search-bar {
        display: none;
    }

    .hero-3d-container,
    .tech-visual-card {
        min-height: 320px;
    }

    .human-badge,
    .human-badge-secondary {
        position: static;
        margin-top: 14px;
    }

    .human-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .syringe-stage {
        grid-template-columns: 56px minmax(0, 1fr) 86px;
    }

    .human-zone-arm,
    .human-zone-core,
    .human-zone-leg {
        position: static;
        margin-top: 10px;
    }

    .human-figure {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1200px);
    }

    .page-content {
        padding-top: 158px;
    }

    .hero {
        padding: 166px 0 68px;
    }

    .btn,
    .btn-primary-sm,
    .btn-outline-sm {
        width: 100%;
    }

    .hero-btns,
    .product-footer {
        flex-direction: column;
    }

    .product-footer {
        align-items: stretch;
    }

    .filters-sidebar,
    .contact-form-block,
    .contact-info-block,
    .delivery-container {
        padding: 20px;
        border-radius: 22px;
    }

    .cart-overlay {
        padding: 22px 18px;
    }

    .syringe-stage {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .syringe-needle-cluster,
    .syringe-handle {
        justify-content: center;
    }

    .syringe-body {
        min-width: 0;
    }
}
/* Final theme overrides to remove leftover light strips in dark mode */
.catalog-search-input,
.form-group input,
.form-group textarea {
    box-shadow: none;
    background-image: none;
}

.catalog-search-input {
    background: rgba(255, 247, 242, 0.96);
    color: var(--text-main);
}

.catalog-search-input:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 90, 31, 0.34);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.12);
}

.search-icon {
    color: rgba(242, 106, 46, 0.92);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 248, 243, 0.98);
    color: var(--text-main);
}

body.theme-dark .catalog-search-input,
body.theme-dark .search-bar input,
body.theme-dark .form-group input,
body.theme-dark .form-group textarea {
    background: #121a20;
    background-image: none;
    color: var(--text-main);
    border-color: rgba(255, 138, 87, 0.18);
    box-shadow: none;
}

body.theme-dark .catalog-search-input::placeholder,
body.theme-dark .search-bar input::placeholder,
body.theme-dark .form-group input::placeholder,
body.theme-dark .form-group textarea::placeholder {
    color: rgba(235, 243, 246, 0.48);
}

body.theme-dark .specialist-section {
    background: linear-gradient(180deg, #11181e, #151d24);
}

body.theme-dark .specialist-grid,
body.theme-dark .specialist-photo-card,
body.theme-dark .specialist-photo-fallback,
body.theme-dark .contact-form-block {
    background-color: transparent;
    background-image: none;
}

body.theme-dark .specialist-photo-card,
body.theme-dark .specialist-photo-fallback,
body.theme-dark .feature-item {
    background: linear-gradient(180deg, #162028, #11181e);
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .specialist-text p,
body.theme-dark .specialist-photo-fallback p,
body.theme-dark .feature-item p {
    color: var(--text-muted);
}
.messenger-link {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 0 0 48px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-decoration: none;
}

.messenger-icon-image {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex: 0 0 34px;
}

.messenger-link svg {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 34px;
}

.messenger-link .messenger-text-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.messenger-links-block .messenger-link:hover {
  transform: translateY(-2px);
}

.messenger-links-block .messenger-link:focus-visible {
  outline: 2px solid rgba(212, 168, 72, 0.75);
  outline-offset: 3px;
}
.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.messenger-link {
  width: 52px;
  height: 52px;
  padding: 0 !important;
  border-radius: 14px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  position: relative;
}

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

.messenger-link > * {
  pointer-events: none;
}

.messenger-link .messenger-icon-image {
  width: 100% !important;
  height: 100% !important;
  flex: none !important;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.messenger-link svg,
.messenger-link .messenger-text-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.messenger-link .messenger-text-icon {
  font-size: 14px;
  font-weight: 800;
}

.messenger-email {
  background: transparent !important;
  box-shadow: none !important;
}

.messenger-email::after {
  box-shadow: none !important;
}

.messenger-link[href^="mailto:"] {
  background: transparent !important;
  box-shadow: none !important;
}

.messenger-link[href^="mailto:"]::after {
  box-shadow: none !important;
  border: 0 !important;
}
.home-page .hero {
  position: relative;
  padding: 84px 0 56px;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 168, 72, 0.12), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(212, 168, 72, 0.08), transparent 24%);
  pointer-events: none;
}

.home-page .hero-content,
.home-page .hero-grid,
.home-page .hero-inner {
  position: relative;
  z-index: 1;
  align-items: center;
}

.home-page .hero-text h1 {
  max-width: 620px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 22px;
}

.home-page .hero-text h1 span {
  display: inline-block;
  margin-top: 10px;
}

.home-page .hero-text p {
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.78;
  opacity: 0.86;
  margin-bottom: 30px;
}

.home-page .hero-actions {
  gap: 14px;
  margin-bottom: 32px;
}

.home-page .hero-actions .btn,
.home-page .hero-actions a,
.home-page .hero-actions button {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-page .hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 72, 0.22);
  color: inherit;
}

.home-page .hero-stats,
.home-page .stats-grid {
  gap: 16px;
}

.home-page .hero-stats .stat-card,
.home-page .stats-grid .stat-card {
  min-height: 122px;
  padding: 24px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(212, 168, 72, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(15, 18, 24, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.home-page .hero-stats .stat-card strong,
.home-page .hero-stats .stat-card h3,
.home-page .hero-stats .stat-card .stat-value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.home-page .hero-stats .stat-card span,
.home-page .hero-stats .stat-card p,
.home-page .hero-stats .stat-card .stat-label {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.8;
}

.home-page .hero-visual,
.home-page .hero-model-card,
.home-page .hero-canvas-card,
.home-page .three-scene-card {
  border-radius: 34px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 22, 29, 0.96);
  border: 1px solid rgba(212, 168, 72, 0.12);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.home-page canvas,
.home-page .hero-visual canvas {
  filter: saturate(0.9) brightness(0.92);
}

.home-page .section-title,
.home-page h2.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}

.home-page .featured-products,
.home-page .technology,
.home-page .specialist-section,
.home-page .contacts-section {
  position: relative;
}

.home-page .featured-products::before,
.home-page .technology::before {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 168, 72, 0.9), rgba(212, 168, 72, 0));
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(15, 18, 24, 0.92);
  border: 1px solid rgba(212, 168, 72, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
}

.product-img-wrap,
.product-card .product-image,
.product-card .product-thumb {
  border-radius: 18px;
}

.product-card h3,
.product-card .product-title {
  font-size: 1.28rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.product-card p,
.product-card .product-description {
  line-height: 1.65;
  opacity: 0.84;
}

.technology .tech-card,
.technology .technology-card,
.specialist-section .specialist-card,
.contact-form,
.contact-card {
  border-radius: 28px;
  border: 1px solid rgba(212, 168, 72, 0.1);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
}

.theme-light .home-page,
.theme-light.home-page {
  background: #f6f1e8;
}

.theme-light .home-page .hero::before,
.theme-light.home-page .hero::before {
  background:
    radial-gradient(circle at 15% 18%, rgba(202, 151, 45, 0.12), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(202, 151, 45, 0.08), transparent 24%);
}

.theme-light .home-page .hero-text h1,
.theme-light .home-page .section-title,
.theme-light .home-page .technology h2,
.theme-light.home-page .hero-text h1,
.theme-light.home-page .section-title,
.theme-light.home-page .technology h2 {
  color: #111111 !important;
}

.theme-light .home-page .hero-text p,
.theme-light .home-page .technology p,
.theme-light .home-page .product-card p,
.theme-light.home-page .hero-text p,
.theme-light.home-page .technology p,
.theme-light.home-page .product-card p {
  color: #443a2b;
  opacity: 1;
}

.theme-light .home-page .hero-stats .stat-card,
.theme-light .home-page .product-card,
.theme-light .home-page .hero-visual,
.theme-light .home-page .hero-model-card,
.theme-light .home-page .hero-canvas-card,
.theme-light .home-page .three-scene-card,
.theme-light .home-page .technology .tech-card,
.theme-light .home-page .technology .technology-card,
.theme-light.home-page .hero-stats .stat-card,
.theme-light.home-page .product-card,
.theme-light.home-page .hero-visual,
.theme-light.home-page .hero-model-card,
.theme-light.home-page .hero-canvas-card,
.theme-light.home-page .three-scene-card,
.theme-light.home-page .technology .tech-card,
.theme-light.home-page .technology .technology-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 230, 0.98)),
    #ffffff;
  border-color: rgba(186, 139, 39, 0.14);
  box-shadow: 0 24px 60px rgba(64, 46, 18, 0.08);
}

.theme-light .home-page .hero-stats .stat-card strong,
.theme-light .home-page .product-card h3,
.theme-light.home-page .hero-stats .stat-card strong,
.theme-light.home-page .product-card h3 {
  color: #191511;
}

@media (max-width: 980px) {
  .home-page .hero {
    padding-top: 56px;
  }

  .home-page .hero-text h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .home-page .hero-actions .btn,
  .home-page .hero-actions a,
  .home-page .hero-actions button {
    width: 100%;
    justify-content: center;
  }

  .home-page .hero-stats .stat-card,
  .home-page .stats-grid .stat-card {
    min-height: auto;
  }
}
body:has(.hero) .hero {
  position: relative;
  padding: 84px 0 56px;
}

body:has(.hero) .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 168, 72, 0.12), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(212, 168, 72, 0.08), transparent 24%);
  pointer-events: none;
}

body:has(.hero) .hero-content,
body:has(.hero) .hero-grid,
body:has(.hero) .hero-inner {
  position: relative;
  z-index: 1;
  align-items: center;
}

body:has(.hero) .hero-text h1 {
  max-width: 620px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 22px;
}

body:has(.hero) .hero-text h1 span {
  display: inline-block;
  margin-top: 10px;
}

body:has(.hero) .hero-text p {
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.78;
  opacity: 0.86;
  margin-bottom: 30px;
}

body:has(.hero) .hero-actions {
  gap: 14px;
  margin-bottom: 32px;
}

body:has(.hero) .hero-actions .btn,
body:has(.hero) .hero-actions a,
body:has(.hero) .hero-actions button {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body:has(.hero) .hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 72, 0.22);
  color: inherit;
}

body:has(.hero) .hero-stats .stat-card,
body:has(.hero) .stats-grid .stat-card {
  min-height: 122px;
  padding: 24px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(212, 168, 72, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(15, 18, 24, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

body:has(.hero) .hero-stats .stat-card strong,
body:has(.hero) .hero-stats .stat-card h3,
body:has(.hero) .hero-stats .stat-card .stat-value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

body:has(.hero) .hero-stats .stat-card span,
body:has(.hero) .hero-stats .stat-card p,
body:has(.hero) .hero-stats .stat-card .stat-label {
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.8;
}

body:has(.hero) .hero-visual,
body:has(.hero) .hero-model-card,
body:has(.hero) .hero-canvas-card,
body:has(.hero) .three-scene-card {
  border-radius: 34px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 22, 29, 0.96);
  border: 1px solid rgba(212, 168, 72, 0.12);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

body:has(.hero) canvas,
body:has(.hero) .hero-visual canvas {
  filter: saturate(0.9) brightness(0.92);
}

body:has(.hero) .featured-products .section-title,
body:has(.hero) .technology .section-title,
body:has(.hero) .technology h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}

body:has(.hero) .featured-products::before,
body:has(.hero) .technology::before {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 168, 72, 0.9), rgba(212, 168, 72, 0));
}

body:has(.hero) .featured-products::after,
body:has(.hero) .technology::after {
  content: none;
}

body:has(.hero) .featured-products,
body:has(.hero) .technology {
  position: relative;
}

body:has(.hero) .product-card {
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(15, 18, 24, 0.92);
  border: 1px solid rgba(212, 168, 72, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

body:has(.hero) .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
}

body:has(.hero) .product-card h3,
body:has(.hero) .product-card .product-title {
  font-size: 1.28rem;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

body:has(.hero) .product-card p,
body:has(.hero) .product-card .product-description {
  line-height: 1.65;
  opacity: 0.84;
}

body.theme-light:has(.hero),
html.theme-light body:has(.hero) {
  background: #f6f1e8;
}

body.theme-light:has(.hero) .hero-text h1,
body.theme-light:has(.hero) .featured-products .section-title,
body.theme-light:has(.hero) .technology .section-title,
body.theme-light:has(.hero) .technology h2,
html.theme-light body:has(.hero) .hero-text h1,
html.theme-light body:has(.hero) .featured-products .section-title,
html.theme-light body:has(.hero) .technology .section-title,
html.theme-light body:has(.hero) .technology h2 {
  color: #111111 !important;
}

body.theme-light:has(.hero) .hero-text p,
body.theme-light:has(.hero) .technology p,
body.theme-light:has(.hero) .product-card p,
html.theme-light body:has(.hero) .hero-text p,
html.theme-light body:has(.hero) .technology p,
html.theme-light body:has(.hero) .product-card p {
  color: #443a2b;
  opacity: 1;
}
html,
body {
  background-color: #0b0d10;
}

body {
  background-image:
    radial-gradient(circle at 12% 10%, rgba(185, 142, 45, 0.12), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(185, 142, 45, 0.08), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(185, 142, 45, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #090b0e 0%, #11151b 42%, #0b0d10 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.55), transparent 88%);
  opacity: 0.22;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 168, 72, 0.05), transparent 18%),
    radial-gradient(circle at 75% 22%, rgba(212, 168, 72, 0.04), transparent 16%),
    radial-gradient(circle at 65% 78%, rgba(212, 168, 72, 0.04), transparent 22%);
  filter: blur(28px);
  opacity: 0.9;
}

.header,
.site-header,
header {
  backdrop-filter: blur(16px);
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.92), rgba(12, 14, 18, 0.86)) !important;
  border-bottom: 1px solid rgba(212, 168, 72, 0.12);
}

.hero,
.featured-products,
.technology,
.specialist-section,
.contact-section,
.contact-form-section,
.catalog-section,
.footer {
  position: relative;
}

.hero::after,
.featured-products::after,
.technology::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(212, 168, 72, 0.035), transparent 28%),
    linear-gradient(315deg, rgba(212, 168, 72, 0.03), transparent 26%);
  opacity: 0.8;
}

.hero .container,
.featured-products .container,
.technology .container,
.specialist-section .container,
.contact-section .container,
.catalog-section .container,
footer .container {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.hero-text p {
  max-width: 640px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary,
.btn,
button,
.button {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.hero-actions .btn-primary {
  background:
    linear-gradient(135deg, #f0d37a 0%, #d2a440 48%, #8f6720 100%) !important;
  color: #16120d !important;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.03) !important;
  color: #f3e6bf !important;
}

.hero-stats .stat-card,
.product-card,
.technology-card,
.tech-card,
.specialist-card,
.contact-card,
.contact-form,
.catalog-sidebar,
.city-menu,
.dropdown,
.cart-sidebar,
.support-chat-window {
  backdrop-filter: blur(16px);
  background:
    linear-gradient(180deg, rgba(22, 26, 33, 0.94), rgba(12, 14, 18, 0.96)) !important;
  border: 1px solid rgba(212, 168, 72, 0.12) !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.product-card::before,
.technology-card::before,
.tech-card::before,
.contact-card::before,
.specialist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%);
  opacity: 0.7;
}

.product-card,
.technology-card,
.tech-card,
.contact-card,
.specialist-card {
  overflow: hidden;
}

.product-img-wrap,
.product-card .product-image,
.product-card .product-thumb,
.hero-visual,
.hero-model-card,
.hero-canvas-card,
.three-scene-card {
  background:
    radial-gradient(circle at 50% 35%, rgba(212, 168, 72, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(18, 22, 29, 0.96) !important;
}

.section-title,
.technology h2,
.contact-section h2,
.specialist-section h2 {
  letter-spacing: -0.04em;
}

.section-subtitle,
.hero-eyebrow,
.kicker {
  color: #d7b15a !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.featured-products {
  padding-top: 28px;
}

.featured-products .section-title,
.technology .section-title {
  margin-bottom: 32px;
}

footer {
  background:
    linear-gradient(180deg, rgba(9, 11, 14, 0.2), rgba(9, 11, 14, 0.96)),
    linear-gradient(135deg, #0b0d10 0%, #0d1014 100%) !important;
  border-top: 1px solid rgba(212, 168, 72, 0.1);
}

.theme-light body,
html.theme-light body {
  background-image:
    radial-gradient(circle at 12% 10%, rgba(181, 137, 40, 0.11), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(181, 137, 40, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 241, 229, 0.92)),
    linear-gradient(135deg, #f6f0e5 0%, #eee3d0 100%);
}

.theme-light body::before,
html.theme-light body::before {
  background-image:
    linear-gradient(rgba(104, 84, 41, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 84, 41, 0.08) 1px, transparent 1px);
  opacity: 0.12;
}

.theme-light .hero-stats .stat-card,
.theme-light .product-card,
.theme-light .technology-card,
.theme-light .tech-card,
.theme-light .specialist-card,
.theme-light .contact-card,
.theme-light .contact-form,
.theme-light .catalog-sidebar,
.theme-light .city-menu,
.theme-light .dropdown,
html.theme-light .hero-stats .stat-card,
html.theme-light .product-card,
html.theme-light .technology-card,
html.theme-light .tech-card,
html.theme-light .specialist-card,
html.theme-light .contact-card,
html.theme-light .contact-form,
html.theme-light .catalog-sidebar,
html.theme-light .city-menu,
html.theme-light .dropdown {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 231, 0.98)) !important;
  border-color: rgba(185, 142, 45, 0.16) !important;
  box-shadow: 0 22px 52px rgba(76, 54, 17, 0.08);
}

body:has(.hero) .hero {
  margin-top: 28px;
  padding-top: 72px;
}

body:has(.hero) .hero-stats,
body:has(.hero) .stats-grid {
  margin-top: 24px;
}

body:has(.hero) .featured-products,
body:has(.hero) .technology {
  padding-top: 88px;
}

body:has(.hero) .featured-products::before,
body:has(.hero) .technology::before {
  left: 50%;
  top: 36px;
  width: 120px;
  transform: translateX(-50%);
}

body:has(.hero) .featured-products .section-title,
body:has(.hero) .technology .section-title,
body:has(.hero) .technology h2 {
  text-align: center;
}

body:has(.hero) .technology .section-title,
body:has(.hero) .technology h2 {
  text-align: left;
}

body::before,
body::after {
  z-index: 0;
}

.header,
.site-header,
header,
.hero,
.featured-products,
.technology,
.specialist-section,
.contact-section,
.contact-form-section,
.catalog-section,
.footer {
  z-index: 1;
}
.site-header,
.header,
header {
  backdrop-filter: none !important;
  background: rgba(12, 14, 18, 0.96) !important;
  border-bottom: 1px solid rgba(212, 168, 72, 0.08) !important;
  box-shadow: none !important;
}

body {
  background-image: linear-gradient(180deg, #0d1014 0%, #11151b 100%) !important;
  background-attachment: scroll !important;
}

body::before,
body::after,
.hero::before,
.hero::after,
.featured-products::before,
.featured-products::after,
.technology::before,
.technology::after {
  display: none !important;
}

.hero {
  padding-top: 56px !important;
  padding-bottom: 40px !important;
  margin-top: 0 !important;
}

.hero-content,
.hero-grid,
.hero-inner {
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  max-width: 640px;
  font-size: clamp(3rem, 6vw, 4.8rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 18px !important;
  text-shadow: none !important;
}

.hero-text p {
  max-width: 620px;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: rgba(255, 247, 227, 0.82) !important;
  margin-bottom: 26px !important;
}

.hero-actions {
  gap: 12px !important;
  margin-bottom: 28px !important;
}

.hero-actions .btn,
.hero-actions a,
.hero-actions button {
  min-height: 50px !important;
  padding: 0 24px !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.hero-actions .btn-primary {
  background: #d4a848 !important;
  color: #14110d !important;
}

.hero-actions .btn-secondary {
  background: transparent !important;
  color: #f4e7bf !important;
  border: 1px solid rgba(212, 168, 72, 0.22) !important;
}

.hero-stats,
.stats-grid {
  gap: 14px !important;
  margin-top: 0 !important;
}

.hero-stats .stat-card,
.stats-grid .stat-card {
  min-height: auto !important;
  padding: 18px 18px 16px !important;
  border-radius: 14px !important;
  background: #141920 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
}

.hero-stats .stat-card strong,
.hero-stats .stat-card h3,
.hero-stats .stat-card .stat-value {
  font-size: 1.85rem !important;
  margin-bottom: 8px !important;
}

.hero-stats .stat-card span,
.hero-stats .stat-card p,
.hero-stats .stat-card .stat-label {
  font-size: 0.92rem !important;
  color: rgba(255, 247, 227, 0.7) !important;
}

.hero-visual,
.hero-model-card,
.hero-canvas-card,
.three-scene-card {
  padding: 14px !important;
  border-radius: 22px !important;
  background: #141920 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
}

.featured-products,
.technology,
.specialist-section,
.contact-section,
.contact-form-section {
  padding-top: 56px !important;
}

.section-title,
.featured-products .section-title,
.technology .section-title,
.technology h2 {
  font-size: clamp(2rem, 3vw, 2.8rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
  margin-bottom: 20px !important;
  text-align: left !important;
}

.product-card,
.technology-card,
.tech-card,
.specialist-card,
.contact-card,
.contact-form,
.catalog-sidebar,
.city-menu,
.dropdown,
.cart-sidebar,
.support-chat-window {
  background: #141920 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.product-card::before,
.technology-card::before,
.tech-card::before,
.contact-card::before,
.specialist-card::before {
  display: none !important;
}

.product-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: none !important;
}

.product-img-wrap,
.product-card .product-image,
.product-card .product-thumb {
  border-radius: 14px !important;
  background: #19212a !important;
}

.product-card h3,
.product-card .product-title {
  font-size: 1.18rem !important;
  line-height: 1.35 !important;
}

.product-card p,
.product-card .product-description,
.technology p,
.specialist-section p,
.contact-section p {
  color: rgba(255, 247, 227, 0.76) !important;
  line-height: 1.65 !important;
}

.badge,
.product-badge,
.tag {
  border-radius: 10px !important;
  box-shadow: none !important;
}

footer {
  background: #0f1318 !important;
  border-top: 1px solid rgba(212, 168, 72, 0.08) !important;
}

.theme-light body,
html.theme-light body {
  background-image: linear-gradient(180deg, #f5efe5 0%, #f1e8db 100%) !important;
}

.theme-light .site-header,
.theme-light .header,
.theme-light header,
html.theme-light .site-header,
html.theme-light .header,
html.theme-light header {
  background: rgba(250, 246, 239, 0.96) !important;
  border-bottom: 1px solid rgba(181, 137, 40, 0.12) !important;
}

.theme-light .hero,
.theme-light .featured-products,
.theme-light .technology,
html.theme-light .hero,
html.theme-light .featured-products,
html.theme-light .technology {
  background: transparent !important;
}

.theme-light .hero-text h1,
.theme-light .section-title,
.theme-light .technology h2,
html.theme-light .hero-text h1,
html.theme-light .section-title,
html.theme-light .technology h2 {
  color: #111111 !important;
}

.theme-light .hero-text p,
.theme-light .product-card p,
.theme-light .technology p,
html.theme-light .hero-text p,
html.theme-light .product-card p,
html.theme-light .technology p {
  color: #4a4030 !important;
}

.theme-light .hero-stats .stat-card,
.theme-light .product-card,
.theme-light .technology-card,
.theme-light .tech-card,
.theme-light .specialist-card,
.theme-light .contact-card,
.theme-light .contact-form,
.theme-light .catalog-sidebar,
.theme-light .city-menu,
.theme-light .dropdown,
html.theme-light .hero-stats .stat-card,
html.theme-light .product-card,
html.theme-light .technology-card,
html.theme-light .tech-card,
html.theme-light .specialist-card,
html.theme-light .contact-card,
html.theme-light .contact-form,
html.theme-light .catalog-sidebar,
html.theme-light .city-menu,
html.theme-light .dropdown {
  background: #fffdf9 !important;
  border: 1px solid rgba(181, 137, 40, 0.12) !important;
}
.apexbio-home,
.apexbio-catalog,
.apexbio-contact {
  background: #f7f7f8 !important;
  color: #232323 !important;
}

.apexbio-home::before,
.apexbio-home::after,
.apexbio-catalog::before,
.apexbio-catalog::after,
.apexbio-contact::before,
.apexbio-contact::after {
  display: none !important;
}

.apexbio-home .site-header,
.apexbio-home .header,
.apexbio-home header,
.apexbio-catalog .site-header,
.apexbio-catalog .header,
.apexbio-catalog header,
.apexbio-contact .site-header,
.apexbio-contact .header,
.apexbio-contact header {
  background: #ffffff !important;
  border-bottom: 1px solid #d9d9de !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.apexbio-home .logo,
.apexbio-catalog .logo,
.apexbio-contact .logo {
  background: transparent !important;
  box-shadow: none !important;
}

.apexbio-home .nav-menu a,
.apexbio-home .city-selector,
.apexbio-home .search-bar input,
.apexbio-catalog .nav-menu a,
.apexbio-catalog .city-selector,
.apexbio-catalog .search-bar input,
.apexbio-contact .nav-menu a,
.apexbio-contact .city-selector,
.apexbio-contact .search-bar input {
  color: #2c2c2f !important;
}

.apexbio-home .search-bar input,
.apexbio-catalog .search-bar input,
.apexbio-contact .search-bar input {
  background: #ffffff !important;
  border: 1px solid #cfd4dc !important;
  border-radius: 0 !important;
  min-height: 46px;
}

.apexbio-home .search-bar,
.apexbio-catalog .search-bar,
.apexbio-contact .search-bar {
  box-shadow: none !important;
}

.apexbio-home .hero {
  padding: 56px 0 42px !important;
  background:
    radial-gradient(circle at 18% 24%, rgba(77, 136, 255, 0.08), transparent 18%),
    radial-gradient(circle at 85% 78%, rgba(77, 136, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #fbfbfc 0%, #f3f6fb 100%) !important;
}

.apexbio-home .hero-content,
.apexbio-home .hero-grid,
.apexbio-home .hero-inner {
  align-items: center;
  gap: 48px;
}

.apexbio-home .hero-text h1 {
  color: #24262c !important;
  font-size: clamp(3rem, 6vw, 4.8rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 18px !important;
}

.apexbio-home .hero-text h1 span {
  color: #2a73d9 !important;
}

.apexbio-home .hero-text p {
  color: #4d545f !important;
  max-width: 620px;
  font-size: 1.02rem !important;
  line-height: 1.72 !important;
}

.apexbio-home .hero-actions .btn-primary {
  background: #2f7de1 !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.apexbio-home .hero-actions .btn-secondary {
  background: transparent !important;
  color: #2f7de1 !important;
  border: 1px solid #2f7de1 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.apexbio-home .hero-stats,
.apexbio-home .stats-grid {
  gap: 16px !important;
}

.apexbio-home .hero-stats .stat-card,
.apexbio-home .stats-grid .stat-card {
  background: #f1f4f9 !important;
  border: 1px solid #dfe5ee !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 20px 18px !important;
}

.apexbio-home .hero-stats .stat-card strong,
.apexbio-home .hero-stats .stat-card h3,
.apexbio-home .hero-stats .stat-card .stat-value {
  color: #262a32 !important;
}

.apexbio-home .hero-stats .stat-card span,
.apexbio-home .hero-stats .stat-card p,
.apexbio-home .hero-stats .stat-card .stat-label {
  color: #5a6270 !important;
}

.apexbio-home .hero-visual,
.apexbio-home .hero-model-card,
.apexbio-home .hero-canvas-card,
.apexbio-home .three-scene-card {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid #e5e8ef !important;
  border-radius: 28px !important;
  box-shadow: none !important;
}

.apexbio-home .featured-products,
.apexbio-home .technology,
.apexbio-contact .contact-section,
.apexbio-contact .contact-form-section {
  padding-top: 52px !important;
  background: transparent !important;
}

.apexbio-home .section-title,
.apexbio-home .technology h2,
.apexbio-catalog .section-title,
.apexbio-contact .section-title {
  color: #2a2d33 !important;
  font-size: clamp(2.1rem, 3vw, 3rem) !important;
  line-height: 1.05 !important;
  text-align: left !important;
  margin-bottom: 20px !important;
}

.apexbio-home .product-card,
.apexbio-catalog .product-card {
  background: #ffffff !important;
  border: 1px solid #dce2ea !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.apexbio-home .product-card:hover,
.apexbio-catalog .product-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.apexbio-home .product-img-wrap,
.apexbio-home .product-card .product-image,
.apexbio-home .product-card .product-thumb,
.apexbio-catalog .product-img-wrap,
.apexbio-catalog .product-card .product-image,
.apexbio-catalog .product-card .product-thumb {
  background: #edf3fb !important;
  border-radius: 0 !important;
}

.apexbio-home .product-card h3,
.apexbio-catalog .product-card h3 {
  color: #24262d !important;
  font-size: 1.18rem !important;
}

.apexbio-home .product-card p,
.apexbio-catalog .product-card p,
.apexbio-home .technology p,
.apexbio-contact p {
  color: #5b6370 !important;
}

.apexbio-home .product-card .btn-primary,
.apexbio-home .product-card .add-to-cart,
.apexbio-catalog .product-card .btn-primary,
.apexbio-catalog .product-card .add-to-cart {
  background: #2f7de1 !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.apexbio-home .product-card .btn-secondary,
.apexbio-home .product-card .product-details-btn,
.apexbio-catalog .product-card .btn-secondary,
.apexbio-catalog .product-card .product-details-btn {
  background: #eef4fc !important;
  color: #2f7de1 !important;
  border: 1px solid #d6e1f3 !important;
  border-radius: 0 !important;
}

.apexbio-catalog .catalog-section {
  padding-top: 36px !important;
  background: #f7f7f8 !important;
}

.apexbio-catalog .catalog-sidebar,
.apexbio-catalog .category-sidebar,
.apexbio-catalog .filter-sidebar {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.apexbio-catalog .catalog-sidebar .category-btn,
.apexbio-catalog .catalog-sidebar button,
.apexbio-catalog .catalog-sidebar a,
.apexbio-catalog .form-filter button {
  background: #ffffff !important;
  border: 1px solid #d7dce4 !important;
  color: #33373f !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.apexbio-catalog .catalog-sidebar .category-btn.active,
.apexbio-catalog .catalog-sidebar .category-btn.is-active,
.apexbio-catalog .form-filter button.active,
.apexbio-catalog .form-filter button.is-active {
  background: #eef5ff !important;
  border-color: #2f7de1 !important;
  color: #2f7de1 !important;
}

.apexbio-catalog .catalog-search-input,
.apexbio-catalog .catalog-search input {
  background: #ffffff !important;
  border: 1px solid #d5dbe4 !important;
  border-radius: 0 !important;
  min-height: 46px;
  color: #2b2f36 !important;
}

.apexbio-contact .contact-card,
.apexbio-contact .contact-form,
.apexbio-contact .messenger-links-block {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.apexbio-home footer,
.apexbio-catalog footer,
.apexbio-contact footer {
  background: #2e2e30 !important;
  color: #f2f2f2 !important;
  border-top: 0 !important;
}

.apexbio-home footer a,
.apexbio-catalog footer a,
.apexbio-contact footer a {
  color: #d8d8dc !important;
}
.biokode-apex-style {
  background: #f7f7f7 !important;
  color: #262626 !important;
}

.biokode-apex-style,
.biokode-apex-style.theme-dark,
html.theme-dark .biokode-apex-style,
html.theme-light .biokode-apex-style {
  background: #f7f7f7 !important;
  color: #262626 !important;
}

.biokode-apex-style::before,
.biokode-apex-style::after {
  display: none !important;
}

.biokode-apex-style .site-header,
.biokode-apex-style .header,
.biokode-apex-style header {
  background: #ffffff !important;
  border-bottom: 1px solid #dddddf !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.biokode-apex-style .nav-menu a,
.biokode-apex-style .city-selector,
.biokode-apex-style .city-label,
.biokode-apex-style .search-bar input,
.biokode-apex-style .theme-toggle,
.biokode-apex-style .cart-toggle {
  color: #2b2b30 !important;
}

.biokode-apex-style .search-bar,
.biokode-apex-style .search-bar input,
.biokode-apex-style .city-selector,
.biokode-apex-style .theme-toggle,
.biokode-apex-style .cart-toggle {
  background: #ffffff !important;
  border-color: #d8dbe2 !important;
  box-shadow: none !important;
}

.biokode-apex-style .hero,
.biokode-apex-style .featured-products,
.biokode-apex-style .technology,
.biokode-apex-style .catalog-section,
.biokode-apex-style .contact-section,
.biokode-apex-style .contact-form-section {
  background: transparent !important;
}

.biokode-apex-style .hero {
  padding-top: 56px !important;
  padding-bottom: 36px !important;
  margin-top: 0 !important;
}

.biokode-apex-style .hero-text h1,
.biokode-apex-style .section-title,
.biokode-apex-style .technology h2,
.biokode-apex-style .catalog-section h1,
.biokode-apex-style .catalog-section h2 {
  color: #25272d !important;
}

.biokode-apex-style .hero-text h1 span {
  color: #d3a62f !important;
}

.biokode-apex-style .hero-text p,
.biokode-apex-style .technology p,
.biokode-apex-style .product-card p,
.biokode-apex-style .contact-card p,
.biokode-apex-style .contact-form p {
  color: #5b616d !important;
}

.biokode-apex-style .hero-actions .btn-primary,
.biokode-apex-style .btn-primary,
.biokode-apex-style .product-card .add-to-cart,
.biokode-apex-style .product-card .btn-primary,
.biokode-apex-style .checkout-btn {
  background: #d9ae3c !important;
  color: #16130d !important;
  border: 1px solid #d9ae3c !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.biokode-apex-style .hero-actions .btn-secondary,
.biokode-apex-style .btn-secondary,
.biokode-apex-style .product-card .product-details-btn {
  background: #ffffff !important;
  color: #b88c1f !important;
  border: 1px solid #d7c28c !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.biokode-apex-style .hero-stats .stat-card,
.biokode-apex-style .stats-grid .stat-card,
.biokode-apex-style .product-card,
.biokode-apex-style .catalog-sidebar,
.biokode-apex-style .category-sidebar,
.biokode-apex-style .filter-sidebar,
.biokode-apex-style .contact-card,
.biokode-apex-style .contact-form,
.biokode-apex-style .messenger-links-block,
.biokode-apex-style .city-menu,
.biokode-apex-style .dropdown,
.biokode-apex-style .cart-sidebar,
.biokode-apex-style .support-chat-window {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.biokode-apex-style .hero-stats .stat-card,
.biokode-apex-style .stats-grid .stat-card {
  background: #f0f3f7 !important;
}

.biokode-apex-style .hero-stats .stat-card strong,
.biokode-apex-style .hero-stats .stat-card h3,
.biokode-apex-style .hero-stats .stat-card .stat-value,
.biokode-apex-style .product-card h3,
.biokode-apex-style .product-card .product-title {
  color: #292c33 !important;
}

.biokode-apex-style .hero-visual,
.biokode-apex-style .hero-model-card,
.biokode-apex-style .hero-canvas-card,
.biokode-apex-style .three-scene-card,
.biokode-apex-style .product-img-wrap,
.biokode-apex-style .product-card .product-image,
.biokode-apex-style .product-card .product-thumb {
  background: #edf2f8 !important;
  border: 1px solid #e2e6ee !important;
  box-shadow: none !important;
}

.biokode-apex-style canvas,
.biokode-apex-style .hero-visual canvas {
  filter: saturate(0.95) brightness(1) !important;
}

.biokode-apex-style .catalog-section {
  padding-top: 28px !important;
}

.biokode-apex-style .catalog-search-input,
.biokode-apex-style .catalog-search input,
.biokode-apex-style .search-bar input {
  background: #ffffff !important;
  border: 1px solid #d8dde6 !important;
  color: #31343b !important;
  border-radius: 0 !important;
}

.biokode-apex-style .catalog-sidebar .category-btn,
.biokode-apex-style .catalog-sidebar button,
.biokode-apex-style .catalog-sidebar a,
.biokode-apex-style .form-filter button {
  background: #ffffff !important;
  color: #2f333a !important;
  border: 1px solid #d8dde6 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.biokode-apex-style .catalog-sidebar .category-btn.active,
.biokode-apex-style .catalog-sidebar .category-btn.is-active,
.biokode-apex-style .form-filter button.active,
.biokode-apex-style .form-filter button.is-active {
  background: #fff7df !important;
  color: #af8210 !important;
  border-color: #d9ae3c !important;
}

.biokode-apex-style .badge,
.biokode-apex-style .product-badge,
.biokode-apex-style .tag {
  background: #e6b939 !important;
  color: #16130d !important;
  box-shadow: none !important;
}

.biokode-apex-style footer {
  background: #2f2f31 !important;
  color: #f0f0f0 !important;
  border-top: 0 !important;
}

.biokode-apex-style footer a,
.biokode-apex-style footer p,
.biokode-apex-style footer li {
  color: #d8d8dc !important;
}

.biokode-apex-style .featured-products,
.biokode-apex-style .technology,
.biokode-apex-style .specialist-section,
.biokode-apex-style .contact-section,
.biokode-apex-style .contact-form-section,
.biokode-apex-style .delivery-section {
  background: #f7f7f7 !important;
}

.biokode-apex-style .featured-products .section-title,
.biokode-apex-style .technology .section-title,
.biokode-apex-style .technology h2,
.biokode-apex-style .contact-section .section-title,
.biokode-apex-style .contact-form-section .section-title,
.biokode-apex-style .specialist-section .section-title,
.biokode-apex-style .delivery-section .section-title,
.biokode-apex-style .catalog-section .section-title,
.biokode-apex-style .catalog-section h1,
.biokode-apex-style .catalog-section h2 {
  color: #2b2d33 !important;
}

.biokode-apex-style .catalog-section .section-title strong,
.biokode-apex-style .catalog-section h1 strong,
.biokode-apex-style .catalog-section h2 strong,
.homepage-rebuilt .section-title strong {
  color: #d3a62f !important;
}

.biokode-apex-style .catalog-section,
.biokode-apex-style .catalog-layout,
.biokode-apex-style .catalog-content,
.biokode-apex-style .catalog-grid-wrap {
  background: transparent !important;
}

.biokode-apex-style .catalog-sidebar,
.biokode-apex-style .category-sidebar,
.biokode-apex-style .filter-sidebar {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
}

.biokode-apex-style .catalog-sidebar .category-btn,
.biokode-apex-style .catalog-sidebar .filter-btn,
.biokode-apex-style .catalog-sidebar button,
.biokode-apex-style .catalog-sidebar a,
.biokode-apex-style .form-filter button,
.biokode-apex-style .filters-group button {
  background: #ffffff !important;
  color: #31343b !important;
  border: 1px solid #d9dee7 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.biokode-apex-style .catalog-sidebar .category-btn.active,
.biokode-apex-style .catalog-sidebar .category-btn.is-active,
.biokode-apex-style .catalog-sidebar .filter-btn.active,
.biokode-apex-style .catalog-sidebar .filter-btn.is-active,
.biokode-apex-style .form-filter button.active,
.biokode-apex-style .form-filter button.is-active,
.biokode-apex-style .filters-group button.active,
.biokode-apex-style .filters-group button.is-active {
  background: #fff5d8 !important;
  color: #b38717 !important;
  border-color: #d9ae3c !important;
}

.biokode-apex-style .catalog-search,
.biokode-apex-style .catalog-search-input,
.biokode-apex-style .catalog-search input,
.biokode-apex-style .catalog-toolbar input {
  background: #ffffff !important;
  color: #31343b !important;
  border: 1px solid #d8dde6 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.biokode-apex-style .product-card,
.biokode-apex-style .featured-products .product-card,
.biokode-apex-style .catalog-grid .product-card {
  background: #ffffff !important;
  border: 1px solid #dfe4ea !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.biokode-apex-style .product-card .product-img-wrap,
.biokode-apex-style .product-card .product-image,
.biokode-apex-style .product-card .product-thumb,
.biokode-apex-style .product-card .image-placeholder,
.biokode-apex-style .product-card .product-placeholder,
.biokode-apex-style .product-card .product-cover {
  background: #edf3fb !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.biokode-apex-style .product-card .product-img-wrap *,
.biokode-apex-style .product-card .product-image *,
.biokode-apex-style .product-card .product-thumb *,
.biokode-apex-style .product-card .image-placeholder *,
.biokode-apex-style .product-card .product-placeholder *,
.biokode-apex-style .product-card .product-cover * {
  color: #2f333a !important;
  text-shadow: none !important;
}

.biokode-apex-style .product-card h3,
.biokode-apex-style .product-card .product-title,
.biokode-apex-style .product-card .product-name {
  color: #282c33 !important;
}

.biokode-apex-style .product-card p,
.biokode-apex-style .product-card .product-category,
.biokode-apex-style .product-card .product-meta {
  color: #666d79 !important;
}

.biokode-apex-style .product-card .product-price,
.biokode-apex-style .product-card .price {
  color: #b88b18 !important;
}

.biokode-apex-style .contact-section,
.biokode-apex-style .contact-form-section {
  padding-top: 48px !important;
}

.biokode-apex-style .contact-form,
.biokode-apex-style .contact-card,
.biokode-apex-style .contact-info-block,
.biokode-apex-style .messenger-links-block {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.biokode-apex-style .contact-form label,
.biokode-apex-style .contact-card h3,
.biokode-apex-style .contact-card h2,
.biokode-apex-style .contact-form h2,
.biokode-apex-style .contact-form h3 {
  color: #2b2d33 !important;
}

.biokode-apex-style .contact-form input,
.biokode-apex-style .contact-form textarea,
.biokode-apex-style .contact-form select {
  background: #ffffff !important;
  color: #2f333a !important;
  border: 1px solid #d6dce5 !important;
  box-shadow: none !important;
}

.biokode-apex-style .contact-form input::placeholder,
.biokode-apex-style .contact-form textarea::placeholder {
  color: #8b92a0 !important;
}

.biokode-apex-style .contact-card p,
.biokode-apex-style .contact-card span,
.biokode-apex-style .contact-info-block p,
.biokode-apex-style .contact-info-block span {
  color: #5f6774 !important;
}

.biokode-apex-style .messenger-links-block {
  padding: 22px !important;
}

.biokode-apex-style .messenger-links-block h3,
.biokode-apex-style .messenger-links-block .block-title {
  color: #b78917 !important;
}

.biokode-apex-style .technology-card,
.biokode-apex-style .tech-card,
.biokode-apex-style .specialist-card,
.biokode-apex-style .benefit-card,
.biokode-apex-style .advantage-card {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.biokode-apex-style .technology-card p,
.biokode-apex-style .tech-card p,
.biokode-apex-style .specialist-card p,
.biokode-apex-style .benefit-card p,
.biokode-apex-style .advantage-card p {
  color: #606875 !important;
}

.homepage-rebuilt .featured-products .section-title,
.homepage-rebuilt .technology .section-title,
.homepage-rebuilt .technology h2,
.homepage-rebuilt .contact-section .section-title,
.homepage-rebuilt .contact-form-section .section-title {
  color: #2b2d33 !important;
}

.homepage-rebuilt .contact-form,
.homepage-rebuilt .contact-card,
.homepage-rebuilt .contact-info-block,
.homepage-rebuilt .messenger-links-block {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.homepage-rebuilt .contact-form input,
.homepage-rebuilt .contact-form textarea {
  background: #ffffff !important;
  color: #2f333a !important;
  border: 1px solid #d7dce4 !important;
}

.biokode-apex-style .site-header,
.biokode-apex-style .header,
.biokode-apex-style header,
.biokode-apex-style .site-header *,
.biokode-apex-style .header *,
.biokode-apex-style header * {
  color: #262a31 !important;
}

.biokode-apex-style .site-header .btn,
.biokode-apex-style .header .btn,
.biokode-apex-style header .btn,
.biokode-apex-style .theme-toggle,
.biokode-apex-style .cart-toggle,
.biokode-apex-style .city-selector,
.biokode-apex-style .search-bar input {
  color: #2a2d33 !important;
  background: #ffffff !important;
  border: 1px solid #d8dde5 !important;
}

.biokode-apex-style .search-bar input::placeholder,
.biokode-apex-style .catalog-search input::placeholder,
.biokode-apex-style .catalog-search-input::placeholder {
  color: #8d94a2 !important;
}

.biokode-apex-style .specialist-section,
.biokode-apex-style .technology {
  background: #f7f7f7 !important;
}

.biokode-apex-style .specialist-section .section-title,
.biokode-apex-style .specialist-section h2,
.biokode-apex-style .technology .section-title,
.biokode-apex-style .technology h2 {
  color: #2b2d33 !important;
}

.biokode-apex-style .specialist-section p,
.biokode-apex-style .technology p {
  color: #5f6674 !important;
}

.biokode-apex-style .specialist-photo-card,
.biokode-apex-style .specialist-visual,
.biokode-apex-style .specialist-avatar-card,
.biokode-apex-style .technology-visual,
.biokode-apex-style .tech-visual,
.biokode-apex-style .tech-graphic,
.biokode-apex-style .lab-visual,
.biokode-apex-style .lab-card {
  display: none !important;
}

.biokode-apex-style .technology-photo-card {
  display: block !important;
  width: 100%;
  margin: 18px 0 28px;
  min-height: 320px;
  background: #ffffff;
  border: 1px solid #dde2ea;
  overflow: hidden;
  box-shadow: none;
}

.biokode-apex-style .technology-photo-card img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  object-fit: cover;
  display: block !important;
}

.biokode-apex-style .technology-visual,
.biokode-apex-style .tech-visual,
.biokode-apex-style .tech-graphic,
.biokode-apex-style .lab-visual,
.biokode-apex-style .lab-card {
  display: block !important;
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1400&q=80") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.biokode-apex-style .technology-visual > *,
.biokode-apex-style .tech-visual > *,
.biokode-apex-style .tech-graphic > *,
.biokode-apex-style .lab-visual > *,
.biokode-apex-style .lab-card > * {
  display: none !important;
}

.biokode-apex-style .specialist-grid,
.biokode-apex-style .specialist-content,
.biokode-apex-style .technology-grid,
.biokode-apex-style .technology-content {
  grid-template-columns: 1fr !important;
  display: grid;
}

.biokode-apex-style .specialist-benefits,
.biokode-apex-style .specialist-cards,
.biokode-apex-style .technology-stats,
.biokode-apex-style .tech-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.biokode-apex-style .specialist-benefits .benefit-card,
.biokode-apex-style .specialist-benefits .specialist-card,
.biokode-apex-style .technology-stats .stat-card,
.biokode-apex-style .tech-stats .stat-card {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.biokode-apex-style .specialist-benefits .benefit-card *,
.biokode-apex-style .specialist-benefits .specialist-card *,
.biokode-apex-style .technology-stats .stat-card *,
.biokode-apex-style .tech-stats .stat-card * {
  color: inherit !important;
}

.biokode-apex-style .specialist-benefits .benefit-card h3,
.biokode-apex-style .specialist-benefits .specialist-card h3,
.biokode-apex-style .technology-stats .stat-card strong,
.biokode-apex-style .tech-stats .stat-card strong,
.biokode-apex-style .technology-stats .stat-card h3,
.biokode-apex-style .tech-stats .stat-card h3 {
  color: #b78917 !important;
}

.biokode-apex-style .featured-products .product-badge,
.biokode-apex-style .featured-products .badge,
.biokode-apex-style .featured-products .tag,
.homepage-rebuilt .featured-products .product-badge,
.homepage-rebuilt .featured-products .badge,
.homepage-rebuilt .featured-products .tag {
  display: none !important;
}

.biokode-apex-style .featured-products .product-card::before,
.biokode-apex-style .featured-products .product-card::after,
.homepage-rebuilt .featured-products .product-card::before,
.homepage-rebuilt .featured-products .product-card::after {
  display: none !important;
}

.biokode-apex-style .featured-products .product-img-wrap,
.biokode-apex-style .featured-products .product-image,
.biokode-apex-style .featured-products .product-thumb {
  background: #edf3fb !important;
}

.biokode-apex-style .featured-products .product-card,
.homepage-rebuilt .featured-products .product-card {
  overflow: hidden !important;
}

.biokode-apex-style .contact-form .btn-primary,
.biokode-apex-style .contact-form button[type="submit"] {
  background: #d9ae3c !important;
  color: #17130d !important;
  border: 1px solid #d9ae3c !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .biokode-apex-style .specialist-benefits,
  .biokode-apex-style .specialist-cards,
  .biokode-apex-style .technology-stats,
  .biokode-apex-style .tech-stats {
    grid-template-columns: 1fr;
  }
}

.biokode-apex-style .technology-visual,
.biokode-apex-style .tech-visual,
.biokode-apex-style .tech-graphic,
.biokode-apex-style .lab-visual,
.biokode-apex-style .lab-card,
.biokode-apex-style .technology-photo-card {
  display: none !important;
}

.biokode-apex-style .technology .container,
.biokode-apex-style .technology-grid,
.biokode-apex-style .technology-content {
  display: block !important;
}

.biokode-apex-style .technology p {
  max-width: 920px;
}

.biokode-apex-style .site-header,
.biokode-apex-style .header,
.biokode-apex-style header {
  min-height: 74px;
  display: flex;
  align-items: center;
  background: #ffffff !important;
  border-bottom: 1px solid #d7dce4 !important;
}

.biokode-apex-style .site-header .container,
.biokode-apex-style .header .container,
.biokode-apex-style header .container,
.biokode-apex-style .navbar,
.biokode-apex-style .header-inner,
.biokode-apex-style .header-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.biokode-apex-style .logo,
.biokode-apex-style .brand-logo-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.biokode-apex-style .brand-logo-image {
  max-height: 42px !important;
  width: auto;
}

.biokode-apex-style .nav-menu,
.biokode-apex-style .nav-menu > ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.biokode-apex-style .nav-menu a,
.biokode-apex-style .nav-menu button,
.biokode-apex-style .city-selector,
.biokode-apex-style .theme-toggle,
.biokode-apex-style .cart-toggle {
  color: #2b2f36 !important;
  opacity: 1 !important;
}

.biokode-apex-style .nav-menu a:hover,
.biokode-apex-style .nav-menu button:hover,
.biokode-apex-style .city-selector:hover {
  color: #b78917 !important;
}

.biokode-apex-style .search-bar {
  margin-left: auto;
}

.biokode-apex-style .search-bar input {
  min-width: 220px;
  min-height: 40px;
  color: #2f333a !important;
  background: #ffffff !important;
  border: 1px solid #d7dce4 !important;
}

.biokode-apex-style.apexbio-catalog .catalog-section,
.biokode-apex-style .catalog-section {
  background: #f7f7f7 !important;
}

.biokode-apex-style .catalog-section .container,
.biokode-apex-style .catalog-layout,
.biokode-apex-style .catalog-page-layout,
.biokode-apex-style .catalog-shell {
  background: transparent !important;
}

.biokode-apex-style .catalog-sidebar,
.biokode-apex-style .category-sidebar,
.biokode-apex-style .filter-sidebar,
.biokode-apex-style .catalog-filters {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
}

.biokode-apex-style .catalog-grid,
.biokode-apex-style .products-grid,
.biokode-apex-style .catalog-products {
  gap: 18px !important;
}

.biokode-apex-style .catalog-grid .product-card,
.biokode-apex-style .products-grid .product-card,
.biokode-apex-style .catalog-products .product-card {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
}

.biokode-apex-style .catalog-grid .product-img-wrap,
.biokode-apex-style .products-grid .product-img-wrap,
.biokode-apex-style .catalog-products .product-img-wrap {
  background: #edf3fb !important;
}

.biokode-apex-style.apexbio-contact .contact-section,
.biokode-apex-style.apexbio-contact .contact-form-section,
.biokode-apex-style .contact-section,
.biokode-apex-style .contact-form-section {
  background: #f7f7f7 !important;
}

.biokode-apex-style .contact-layout,
.biokode-apex-style .contact-grid,
.biokode-apex-style .contacts-grid {
  display: grid;
  gap: 22px;
}

.biokode-apex-style .contact-form,
.biokode-apex-style .contact-card,
.biokode-apex-style .contact-info-block,
.biokode-apex-style .messenger-links-block {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
}

.biokode-apex-style .contact-form input,
.biokode-apex-style .contact-form textarea,
.biokode-apex-style .contact-form select {
  background: #ffffff !important;
  color: #2f333a !important;
  border: 1px solid #d6dce5 !important;
}

/* Final hard overrides for readable Apex-style header and catalog contrast */
.biokode-apex-style .site-header,
.biokode-apex-style .header,
.biokode-apex-style header,
html .biokode-apex-style .site-header,
html .biokode-apex-style .header,
html .biokode-apex-style header {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #e2d8bf !important;
  box-shadow: 0 1px 0 rgba(185, 137, 23, 0.08) !important;
  opacity: 1 !important;
}

.biokode-apex-style .site-header *,
.biokode-apex-style .header *,
.biokode-apex-style header * {
  color: #c78d14 !important;
}

.biokode-apex-style .nav-menu a,
.biokode-apex-style .nav-menu button,
.biokode-apex-style .nav-menu span,
.biokode-apex-style .city-selector,
.biokode-apex-style .city-label,
.biokode-apex-style .logo,
.biokode-apex-style .brand-logo-link,
.biokode-apex-style .theme-toggle,
.biokode-apex-style .cart-toggle {
  color: #c78d14 !important;
}

.biokode-apex-style .nav-menu a:hover,
.biokode-apex-style .nav-menu button:hover,
.biokode-apex-style .city-selector:hover,
.biokode-apex-style .theme-toggle:hover,
.biokode-apex-style .cart-toggle:hover {
  color: #9e6d09 !important;
}

.biokode-apex-style .search-bar,
.biokode-apex-style .search-bar input,
.biokode-apex-style .city-selector,
.biokode-apex-style .theme-toggle,
.biokode-apex-style .cart-toggle {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid #e3d7b9 !important;
  box-shadow: none !important;
}

.biokode-apex-style .search-bar input {
  color: #8e640d !important;
}

.biokode-apex-style .search-bar input::placeholder {
  color: #bf9a4a !important;
  opacity: 1 !important;
}

.biokode-apex-style .dropdown,
.biokode-apex-style .city-menu {
  background: #ffffff !important;
  border: 1px solid #e3dbc8 !important;
  box-shadow: 0 10px 30px rgba(65, 45, 13, 0.08) !important;
}

.biokode-apex-style .dropdown *,
.biokode-apex-style .city-menu * {
  color: #8f6711 !important;
}

.biokode-apex-style .catalog-section .section-title,
.biokode-apex-style .catalog-section h1,
.biokode-apex-style .catalog-section h2 {
  color: #d1a230 !important;
}

.biokode-apex-style .catalog-sidebar {
  background: #fffefb !important;
}

.biokode-apex-style .catalog-sidebar h3,
.biokode-apex-style .catalog-sidebar h4,
.biokode-apex-style .catalog-sidebar .sidebar-title {
  color: #8f6711 !important;
}
.biokode-apex-style .logo img,
.biokode-apex-style .brand-logo-image {
  max-height: 54px;
}

.biokode-apex-style .hero-visual,
.biokode-apex-style .hero-model-card,
.biokode-apex-style .hero-canvas-card,
.biokode-apex-style .three-scene-card {
  padding: 22px !important;
  border-radius: 26px !important;
}

.biokode-apex-style .hero-product-spotlight {
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e4eb;
  border-radius: 22px;
  padding: 18px 18px 20px;
}

.biokode-apex-style canvas,
.biokode-apex-style .three-canvas,
.biokode-apex-style .hero-visual canvas,
.biokode-apex-style .hero-model-card canvas,
.biokode-apex-style .hero-canvas-card canvas,
.biokode-apex-style .three-scene-card canvas {
  display: none !important;
}

.biokode-apex-style .hero-visual,
.biokode-apex-style .hero-model-card,
.biokode-apex-style .hero-canvas-card,
.biokode-apex-style .three-scene-card {
  min-height: auto !important;
  height: auto !important;
}

.biokode-apex-style .hero-product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e2b43d;
  color: #17130d;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

.biokode-apex-style .hero-product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: linear-gradient(180deg, #f6f8fc 0%, #eef3f9 100%);
  border-radius: 18px;
  margin-bottom: 18px;
}

.biokode-apex-style .hero-vial-card {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.biokode-apex-style .hero-vial-box {
  width: 122px;
  height: 178px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #eceff4 100%);
  border: 1px solid #d8e0ea;
  box-shadow: 0 8px 18px rgba(43, 55, 75, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #2f3138;
}

.biokode-apex-style .hero-vial-brand {
  font-size: 0.95rem;
  font-weight: 800;
}

.biokode-apex-style .hero-vial-line {
  width: 72px;
  height: 3px;
  background: #d8ae3f;
  border-radius: 999px;
}

.biokode-apex-style .hero-vial-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.biokode-apex-style .hero-vial-bottle {
  position: relative;
  width: 72px;
  height: 118px;
  border-radius: 16px 16px 20px 20px;
  background: linear-gradient(180deg, #fefefe 0%, #edf2f8 100%);
  border: 1px solid #d7dee8;
  box-shadow: 0 10px 20px rgba(53, 64, 84, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.biokode-apex-style .hero-vial-cap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 22px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(180deg, #f8fbff 0%, #d7dde6 100%);
  border: 1px solid #c7cfda;
}

.biokode-apex-style .hero-vial-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff7df;
  color: #b58617;
  font-size: 0.9rem;
  font-weight: 800;
}

.biokode-apex-style .hero-product-copy h3 {
  color: #2a2d33;
  font-size: 1.65rem;
  line-height: 1.18;
  margin: 0 0 10px;
}

.biokode-apex-style .hero-product-copy p {
  color: #5e6674;
  margin: 0 0 14px;
  line-height: 1.6;
}

.biokode-apex-style .hero-product-price {
  color: #b98c17;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.biokode-apex-style .hero-product-actions {
  display: flex;
  gap: 10px;
}

.biokode-apex-style .hero-product-actions .btn {
  flex: 1 1 0;
}

.biokode-apex-style .featured-products .products-grid,
.biokode-apex-style .featured-products .product-grid,
.biokode-apex-style .catalog-grid {
  gap: 18px !important;
}

.biokode-apex-style .product-card {
  padding: 0 !important;
  overflow: hidden;
}

.biokode-apex-style .product-card > * {
  position: relative;
  z-index: 1;
}

.biokode-apex-style .product-card .product-content,
.biokode-apex-style .product-card .card-body {
  padding: 16px 16px 18px;
}

.biokode-apex-style .product-card .product-price,
.biokode-apex-style .product-card .price {
  color: #b98c17 !important;
  font-weight: 800 !important;
}

.biokode-apex-style .catalog-sidebar,
.biokode-apex-style .category-sidebar,
.biokode-apex-style .filter-sidebar {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
}

.biokode-apex-style .catalog-sidebar h3,
.biokode-apex-style .catalog-sidebar h4,
.biokode-apex-style .catalog-sidebar .sidebar-title {
  color: #2b2f36 !important;
}

.biokode-apex-style .catalog-section h1,
.biokode-apex-style .catalog-section .section-title {
  color: #d0a42e !important;
}

.biokode-apex-style .contact-card h3,
.biokode-apex-style .contact-form h3,
.biokode-apex-style .contact-card h2,
.biokode-apex-style .contact-form h2 {
  color: #272a31 !important;
}

.biokode-apex-style .cart-sidebar,
.biokode-apex-style .support-chat-window {
  background: #ffffff !important;
}

.biokode-apex-style .cart-sidebar *,
.biokode-apex-style .support-chat-window * {
  color: inherit;
}

@media (max-width: 980px) {
  .biokode-apex-style .hero-product-actions {
    flex-direction: column;
  }

  .biokode-apex-style .hero-vial-card {
    transform: scale(0.92);
  }
}
.homepage-rebuilt .hero {
  padding: 52px 0 34px !important;
  margin: 0 !important;
  background: linear-gradient(180deg, #fbfbfb 0%, #f4f5f7 100%) !important;
}

.homepage-rebuilt .rebuilt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 34px;
  align-items: stretch;
}

.homepage-rebuilt .rebuilt-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 18px;
  background: #fff4d7;
  color: #a97b10;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.homepage-rebuilt .rebuilt-hero-copy h1 {
  margin: 0 0 18px;
  color: #23262d;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
  max-width: 720px;
}

.homepage-rebuilt .rebuilt-hero-copy p {
  max-width: 640px;
  margin: 0 0 24px;
  color: #5c6370;
  font-size: 1.04rem;
  line-height: 1.72;
}

.homepage-rebuilt .rebuilt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.homepage-rebuilt .rebuilt-hero-actions .btn,
.homepage-rebuilt .rebuilt-spotlight-actions .btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.homepage-rebuilt .rebuilt-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.homepage-rebuilt .rebuilt-point-card {
  min-height: 126px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dfe3ea;
}

.homepage-rebuilt .rebuilt-point-card strong {
  display: block;
  margin-bottom: 10px;
  color: #272a31;
  font-size: 1.05rem;
}

.homepage-rebuilt .rebuilt-point-card span {
  display: block;
  color: #5e6674;
  line-height: 1.55;
}

.homepage-rebuilt .rebuilt-hero-spotlight {
  display: flex;
}

.homepage-rebuilt .rebuilt-spotlight-card {
  position: relative;
  width: 100%;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dfe4eb;
}

.homepage-rebuilt .rebuilt-spotlight-label {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #e2b43e;
  color: #17130d;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

.homepage-rebuilt .rebuilt-spotlight-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  min-height: 300px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #f5f7fb 0%, #edf2f8 100%);
}

.homepage-rebuilt .rebuilt-box {
  width: 140px;
  height: 198px;
  background: linear-gradient(180deg, #ffffff 0%, #eceff4 100%);
  border: 1px solid #d9e0e9;
  box-shadow: 0 10px 18px rgba(50, 61, 79, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.homepage-rebuilt .rebuilt-box-brand {
  color: #2f3138;
  font-size: 1rem;
  font-weight: 800;
}

.homepage-rebuilt .rebuilt-box-line {
  width: 86px;
  height: 4px;
  background: #dbaf3c;
}

.homepage-rebuilt .rebuilt-box-name {
  color: #2b2f36;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.homepage-rebuilt .rebuilt-vial {
  position: relative;
  width: 78px;
  height: 128px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  border: 1px solid #d8dee8;
  box-shadow: 0 10px 18px rgba(50, 61, 79, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-rebuilt .rebuilt-vial-cap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 22px;
  background: linear-gradient(180deg, #fafcff 0%, #d5dce5 100%);
  border: 1px solid #cad2dc;
}

.homepage-rebuilt .rebuilt-vial-dose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #fff7df;
  color: #b68918;
  font-size: 0.92rem;
  font-weight: 800;
}

.homepage-rebuilt .rebuilt-spotlight-copy h2 {
  margin: 0 0 10px;
  color: #282c33;
  font-size: 1.85rem;
}

.homepage-rebuilt .rebuilt-spotlight-copy p {
  margin: 0 0 14px;
  color: #5e6674;
  line-height: 1.65;
}

.homepage-rebuilt .rebuilt-spotlight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.homepage-rebuilt .rebuilt-price {
  color: #ba8d19;
  font-size: 2rem;
  font-weight: 800;
}

.homepage-rebuilt .rebuilt-stock {
  color: #6f7682;
  font-size: 0.95rem;
  font-weight: 600;
}

.homepage-rebuilt .rebuilt-spotlight-actions {
  display: flex;
  gap: 10px;
}

.homepage-rebuilt .featured-products,
.homepage-rebuilt .technology {
  padding-top: 46px !important;
}

.homepage-rebuilt .featured-products .section-title,
.homepage-rebuilt .technology .section-title,
.homepage-rebuilt .technology h2 {
  margin-bottom: 18px !important;
  color: #282b32 !important;
  text-align: left !important;
}

.homepage-rebuilt .featured-products .product-card,
.homepage-rebuilt .technology .technology-card,
.homepage-rebuilt .technology .tech-card {
  background: #ffffff !important;
  border: 1px solid #dfe4ea !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.homepage-rebuilt .featured-products .product-img-wrap,
.homepage-rebuilt .featured-products .product-image,
.homepage-rebuilt .featured-products .product-thumb {
  background: #eef3f8 !important;
  border-radius: 0 !important;
}

.homepage-rebuilt .featured-products .product-price,
.homepage-rebuilt .featured-products .price {
  color: #ba8d19 !important;
  font-weight: 800 !important;
}

.homepage-rebuilt .featured-products .btn-primary,
.homepage-rebuilt .featured-products .add-to-cart {
  background: #d9ae3c !important;
  color: #17130d !important;
  border-radius: 0 !important;
}

.homepage-rebuilt .featured-products .btn-secondary,
.homepage-rebuilt .featured-products .product-details-btn {
  background: #ffffff !important;
  color: #b68817 !important;
  border: 1px solid #d7c28c !important;
  border-radius: 0 !important;
}

.homepage-rebuilt .hero-stats,
.homepage-rebuilt .stats-grid,
.homepage-rebuilt canvas,
.homepage-rebuilt .hero-visual canvas,
.homepage-rebuilt .hero-model-card,
.homepage-rebuilt .hero-canvas-card,
.homepage-rebuilt .three-scene-card {
  display: none !important;
}

@media (max-width: 980px) {
  .homepage-rebuilt .rebuilt-hero {
    grid-template-columns: 1fr;
  }

  .homepage-rebuilt .rebuilt-hero-points {
    grid-template-columns: 1fr;
  }

  .homepage-rebuilt .rebuilt-spotlight-actions {
    flex-direction: column;
  }
}
.smart-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transform: translateY(0);
  opacity: 1;
  will-change: transform, opacity;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
  backface-visibility: hidden;
}

.smart-header-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.smart-header-hidden {
  transform: translateY(calc(-100% - 8px));
  opacity: 0.98;
}

.biokode-apex-style .smart-header {
  background: rgba(255, 255, 255, 0.97) !important;
}

.theme-dark .smart-header,
html.theme-dark .smart-header {
  background: rgba(15, 18, 24, 0.96) !important;
}

/* Final real-project overrides: target actual legacy markup */
body.biokode-apex-style,
html.theme-dark body.biokode-apex-style,
html.theme-light body.biokode-apex-style {
  background: #f7f7f8 !important;
  color: #2b2f36 !important;
}

body.biokode-apex-style #header,
html.theme-dark body.biokode-apex-style #header,
html.theme-light body.biokode-apex-style #header,
body.biokode-apex-style header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid #e3dbc7 !important;
  box-shadow: 0 1px 0 rgba(191, 145, 31, 0.08) !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

body.biokode-apex-style #header .header-content,
body.biokode-apex-style header.site-header .header-content {
  min-height: 78px !important;
  align-items: center !important;
  gap: 18px !important;
}

body.biokode-apex-style #header .logo a,
body.biokode-apex-style #header .logo span,
body.biokode-apex-style #header .nav-menu a,
body.biokode-apex-style #header .city-selector,
body.biokode-apex-style #header .city-selector span,
body.biokode-apex-style #header .theme-toggle,
body.biokode-apex-style #header .cart-icon,
body.biokode-apex-style #header .cart-toggle {
  color: #c78d14 !important;
}

body.biokode-apex-style #header .search-bar,
body.biokode-apex-style #header .search-bar input,
body.biokode-apex-style #header .city-selector,
body.biokode-apex-style #header .theme-toggle,
body.biokode-apex-style #header .cart-icon,
body.biokode-apex-style #header .cart-toggle {
  background: #ffffff !important;
  border: 1px solid #e2d8bf !important;
  box-shadow: none !important;
}

body.biokode-apex-style #header .search-bar input {
  color: #8f6711 !important;
}

body.biokode-apex-style #header .search-bar input::placeholder {
  color: #bf9a49 !important;
  opacity: 1 !important;
}

body.biokode-apex-style #header .dropdown,
body.biokode-apex-style #header .city-menu {
  background: #ffffff !important;
  border: 1px solid #e7decb !important;
  box-shadow: 0 12px 26px rgba(74, 52, 14, 0.08) !important;
}

body.biokode-apex-style #header .dropdown a,
body.biokode-apex-style #header .city-menu,
body.biokode-apex-style #header .city-menu * {
  color: #8f6711 !important;
}

body.biokode-apex-style .page-title,
body.biokode-apex-style .section-title,
body.biokode-apex-style .catalog-section h1,
body.biokode-apex-style .catalog-section h2,
body.biokode-apex-style .contact-section h1,
body.biokode-apex-style .contact-section h2,
body.biokode-apex-style .contact-form-section h1,
body.biokode-apex-style .contact-form-section h2 {
  color: #d1a130 !important;
}

body.biokode-apex-style.page-catalog .page-content,
body.biokode-apex-style.page-contacts .page-content,
body.biokode-apex-style.page-delivery .page-content,
body.biokode-apex-style.page-calculator .page-content {
  padding-top: 118px !important;
}

body.biokode-apex-style.page-catalog .catalog-layout,
body.biokode-apex-style.page-catalog .catalog-main,
body.biokode-apex-style.page-catalog .catalog-grid,
body.biokode-apex-style.page-catalog .catalog-search-wrap {
  background: transparent !important;
}

body.biokode-apex-style.page-catalog .filters-sidebar,
body.biokode-apex-style.page-catalog .filter-group {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
}

body.biokode-apex-style.page-catalog .filter-group {
  padding: 18px 16px !important;
}

body.biokode-apex-style.page-catalog .filter-group h3 {
  color: #8f6711 !important;
}

body.biokode-apex-style.page-catalog .category-list a,
body.biokode-apex-style.page-catalog .form-btn {
  display: block;
  width: 100%;
  background: #ffffff !important;
  color: #31343b !important;
  border: 1px solid #d9dee7 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.biokode-apex-style.page-catalog .category-list a.active,
body.biokode-apex-style.page-catalog .category-list a.is-active,
body.biokode-apex-style.page-catalog .form-btn.active,
body.biokode-apex-style.page-catalog .form-btn.is-active {
  background: #fff4d6 !important;
  color: #b38717 !important;
  border-color: #d9ae3c !important;
}

body.biokode-apex-style.page-catalog .catalog-search-input {
  background: #ffffff !important;
  color: #31343b !important;
  border: 1px solid #d8dde6 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.biokode-apex-style.page-catalog .catalog-search-input::placeholder {
  color: #8d94a2 !important;
}

body.biokode-apex-style.page-catalog .product-card {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.biokode-apex-style.page-catalog .product-img-wrap,
body.biokode-apex-style.page-catalog .product-media {
  background: #edf3fb !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.biokode-apex-style.page-catalog .product-info h3,
body.biokode-apex-style.page-catalog .product-info .price,
body.biokode-apex-style.page-catalog .product-info p,
body.biokode-apex-style.page-catalog .product-info span {
  color: #2f333a !important;
}

body.biokode-apex-style.page-catalog .product-info .price {
  color: #b88b17 !important;
  font-weight: 800 !important;
}

body.biokode-apex-style.page-catalog .btn-primary-sm,
body.biokode-apex-style.page-catalog .btn-primary {
  background: #d9ae3c !important;
  color: #17130d !important;
  border: 1px solid #d9ae3c !important;
  box-shadow: none !important;
}

body.biokode-apex-style.page-catalog .btn-outline-sm,
body.biokode-apex-style.page-catalog .btn-outline {
  background: #ffffff !important;
  color: #b38717 !important;
  border: 1px solid #dcc58e !important;
  box-shadow: none !important;
}

body.biokode-apex-style.page-contacts .contacts-grid,
body.biokode-apex-style.page-contacts .contact-form-block,
body.biokode-apex-style.page-contacts .contact-info-block {
  background: transparent !important;
}

body.biokode-apex-style.page-contacts .contact-form,
body.biokode-apex-style.page-contacts .contact-info-block,
body.biokode-apex-style.page-contacts .info-item,
body.biokode-apex-style.page-contacts .messenger-links-block {
  background: #ffffff !important;
  border: 1px solid #dde2ea !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.biokode-apex-style.page-contacts .contact-form label,
body.biokode-apex-style.page-contacts .contact-info-block h4,
body.biokode-apex-style.page-contacts .contact-info-block p {
  color: #2f333a !important;
}

body.biokode-apex-style.page-contacts .contact-form input,
body.biokode-apex-style.page-contacts .contact-form textarea {
  background: #ffffff !important;
  color: #2f333a !important;
  border: 1px solid #d7dde5 !important;
  box-shadow: none !important;
}

body.biokode-apex-style.page-contacts .contact-form input::placeholder,
body.biokode-apex-style.page-contacts .contact-form textarea::placeholder {
  color: #8d94a2 !important;
}

body.biokode-apex-style.page-contacts .contact-form .btn-primary {
  background: #d9ae3c !important;
  color: #17130d !important;
  border: 1px solid #d9ae3c !important;
  box-shadow: none !important;
}

/* Theme state handled in main.js */
html.theme-dark,
html.theme-dark body,
body.theme-dark {
  color-scheme: dark !important;
}

/* Crisp buy buttons in featured products and catalog */
body.biokode-apex-style .featured-products .product-btns,
body.biokode-apex-style .catalog-grid .product-btns,
body.biokode-apex-style .product-card .product-btns,
body.biokode-apex-style .product-card .product-footer {
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
}

body.biokode-apex-style .featured-products .btn-primary,
body.biokode-apex-style .featured-products .btn-primary-sm,
body.biokode-apex-style .featured-products .add-to-cart,
body.biokode-apex-style .catalog-grid .btn-primary,
body.biokode-apex-style .catalog-grid .btn-primary-sm,
body.biokode-apex-style .catalog-grid .add-to-cart,
body.biokode-apex-style .product-card .btn-primary,
body.biokode-apex-style .product-card .btn-primary-sm,
body.biokode-apex-style .product-card .add-to-cart {
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
  will-change: auto !important;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body.biokode-apex-style .featured-products .btn-primary:hover,
body.biokode-apex-style .featured-products .btn-primary:focus-visible,
body.biokode-apex-style .featured-products .btn-primary-sm:hover,
body.biokode-apex-style .featured-products .btn-primary-sm:focus-visible,
body.biokode-apex-style .featured-products .add-to-cart:hover,
body.biokode-apex-style .featured-products .add-to-cart:focus-visible,
body.biokode-apex-style .catalog-grid .btn-primary:hover,
body.biokode-apex-style .catalog-grid .btn-primary:focus-visible,
body.biokode-apex-style .catalog-grid .btn-primary-sm:hover,
body.biokode-apex-style .catalog-grid .btn-primary-sm:focus-visible,
body.biokode-apex-style .catalog-grid .add-to-cart:hover,
body.biokode-apex-style .catalog-grid .add-to-cart:focus-visible,
body.biokode-apex-style .product-card .btn-primary:hover,
body.biokode-apex-style .product-card .btn-primary:focus-visible,
body.biokode-apex-style .product-card .btn-primary-sm:hover,
body.biokode-apex-style .product-card .btn-primary-sm:focus-visible,
body.biokode-apex-style .product-card .add-to-cart:hover,
body.biokode-apex-style .product-card .add-to-cart:focus-visible {
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Final cart fix: single light cart style */
body.biokode-apex-style .cart-bg-overlay {
  background: rgba(26, 31, 38, 0.2) !important;
  backdrop-filter: blur(2px);
}

body.biokode-apex-style .cart-overlay {
  background: #ffffff !important;
  color: #2c3138 !important;
  border-left: 1px solid #e4e8ee !important;
  box-shadow: -18px 0 40px rgba(23, 31, 40, 0.12) !important;
  padding: 28px 24px !important;
}

body.biokode-apex-style .cart-header {
  padding-bottom: 16px !important;
  border-bottom: 1px solid #eceff4 !important;
}

body.biokode-apex-style .cart-header h3,
body.biokode-apex-style .cart-overlay h3 {
  color: #2c3138 !important;
  font-size: 28px !important;
  font-weight: 800 !important;
}

body.biokode-apex-style .close-cart {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid #e2e6ec !important;
  background: #ffffff !important;
  color: #cc8b14 !important;
  box-shadow: none !important;
}

body.biokode-apex-style .cart-items {
  padding: 18px 0 6px !important;
}

body.biokode-apex-style .cart-item {
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid #eceff4 !important;
}

body.biokode-apex-style .cart-item-info {
  display: grid !important;
  gap: 8px !important;
  flex: 1 1 auto !important;
}

body.biokode-apex-style .cart-item-info strong,
body.biokode-apex-style .cart-item-info h4 {
  color: #2c3138 !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  margin: 0 !important;
}

body.biokode-apex-style .cart-item-info span,
body.biokode-apex-style .cart-empty {
  color: #6f7782 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

body.biokode-apex-style .cart-qty-controls {
  gap: 8px !important;
  margin-top: 4px !important;
}

body.biokode-apex-style .cart-qty-label {
  color: #707984 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: none !important;
}

body.biokode-apex-style .cart-qty-input {
  width: 92px !important;
  min-height: 40px !important;
  padding: 8px 12px !important;
  border-radius: 10px !important;
  border: 1px solid #d9dee6 !important;
  background: #ffffff !important;
  color: #2c3138 !important;
  box-shadow: none !important;
}

body.biokode-apex-style .remove-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  border-radius: 50% !important;
  border: 1px solid #e2e6ec !important;
  background: #ffffff !important;
  color: #c9891f !important;
  font-size: 24px !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

body.biokode-apex-style .cart-footer {
  padding-top: 18px !important;
  border-top: 1px solid #eceff4 !important;
}

body.biokode-apex-style .cart-total,
body.biokode-apex-style .cart-total-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
  color: #2c3138 !important;
}

body.biokode-apex-style .cart-total span,
body.biokode-apex-style .cart-total-row span {
  color: #707984 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

body.biokode-apex-style .cart-total strong,
body.biokode-apex-style .cart-total-row strong,
body.biokode-apex-style .total-price {
  color: #c38a13 !important;
  font-size: 28px !important;
  font-weight: 800 !important;
}

body.biokode-apex-style .cart-submit,
body.biokode-apex-style .cart-footer .btn-primary,
body.biokode-apex-style .cart-overlay .btn-primary {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 12px !important;
  border: 1px solid #d4ab3c !important;
  background: linear-gradient(180deg, #e5bb4a, #d2a12a) !important;
  color: #221a0d !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

/* Final homepage hero rebuild */
body.biokode-apex-style.homepage-rebuilt .hero {
  padding: 70px 0 58px !important;
  background:
    radial-gradient(circle at 8% 18%, rgba(232, 191, 78, 0.12), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(232, 191, 78, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%) !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
  gap: 54px !important;
  align-items: start !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  max-width: 700px !important;
  padding: 6px 0 0 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 38px !important;
  padding: 0 16px !important;
  margin-bottom: 26px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(220, 182, 72, 0.28) !important;
  background: rgba(255, 247, 225, 0.92) !important;
  color: #b18112 !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-copy h1 {
  max-width: 640px !important;
  margin: 0 0 22px !important;
  color: #242830 !important;
  font-size: clamp(3.2rem, 6vw, 5rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.06em !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-brand-line,
body.biokode-apex-style.homepage-rebuilt .rebuilt-accent-line {
  display: block !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-brand-line {
  color: #d38c12 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-accent-line {
  color: #242830 !important;
  max-width: 10ch !important;
}

body.biokode-apex-style .featured-products .product-card .btn-primary,
body.biokode-apex-style .featured-products .product-card .add-to-cart,
body.biokode-apex-style .catalog-grid .product-card .btn-primary,
body.biokode-apex-style .catalog-grid .product-card .btn-primary-sm,
body.biokode-apex-style .catalog-grid .product-card .add-to-cart,
body.biokode-apex-style .product-card .btn-primary-sm,
body.biokode-apex-style .product-card .add-to-cart {
  background: linear-gradient(180deg, #e4b947, #d4a12b) !important;
  color: #1f170b !important;
  border: 1px solid #d29f29 !important;
  box-shadow: none !important;
}

body.biokode-apex-style .featured-products .product-card .btn-primary:hover,
body.biokode-apex-style .featured-products .product-card .btn-primary:focus-visible,
body.biokode-apex-style .featured-products .product-card .add-to-cart:hover,
body.biokode-apex-style .featured-products .product-card .add-to-cart:focus-visible,
body.biokode-apex-style .catalog-grid .product-card .btn-primary:hover,
body.biokode-apex-style .catalog-grid .product-card .btn-primary:focus-visible,
body.biokode-apex-style .catalog-grid .product-card .btn-primary-sm:hover,
body.biokode-apex-style .catalog-grid .product-card .btn-primary-sm:focus-visible,
body.biokode-apex-style .catalog-grid .product-card .add-to-cart:hover,
body.biokode-apex-style .catalog-grid .product-card .add-to-cart:focus-visible,
body.biokode-apex-style .product-card .btn-primary-sm:hover,
body.biokode-apex-style .product-card .btn-primary-sm:focus-visible,
body.biokode-apex-style .product-card .add-to-cart:hover,
body.biokode-apex-style .product-card .add-to-cart:focus-visible {
  background: linear-gradient(180deg, #eac45f, #d7a632) !important;
  color: #1f170b !important;
  border-color: #d6a430 !important;
}

body.biokode-apex-style .featured-products .product-card,
body.biokode-apex-style .catalog-grid .product-card {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body.biokode-apex-style .featured-products .product-card .product-btns,
body.biokode-apex-style .featured-products .product-card .product-footer,
body.biokode-apex-style .catalog-grid .product-card .product-btns,
body.biokode-apex-style .catalog-grid .product-card .product-footer {
  transform: none !important;
  filter: none !important;
  backface-visibility: hidden;
}

body.biokode-apex-style .featured-products .product-card .btn-primary,
body.biokode-apex-style .featured-products .product-card .add-to-cart,
body.biokode-apex-style .catalog-grid .product-card .btn-primary,
body.biokode-apex-style .catalog-grid .product-card .btn-primary-sm,
body.biokode-apex-style .catalog-grid .product-card .add-to-cart,
body.biokode-apex-style .product-card .btn-primary-sm,
body.biokode-apex-style .product-card .add-to-cart {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body.biokode-apex-style .catalog-grid .product-card .product-img-wrap,
body.biokode-apex-style .featured-products .product-card .product-img-wrap,
body.biokode-apex-style .product-card .product-img-wrap {
  padding: 0 !important;
  min-height: 230px !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  overflow: hidden !important;
  background: #eef3f8 !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.biokode-apex-style .catalog-grid .product-card .product-img-wrap img,
body.biokode-apex-style .featured-products .product-card .product-img-wrap img,
body.biokode-apex-style .product-card .product-img-wrap img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 230px !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-lead,
body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-copy p {
  max-width: 560px !important;
  margin: 0 0 24px !important;
  color: #616978 !important;
  font-size: 1.04rem !important;
  line-height: 1.74 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-bottom: 28px !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-tag {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid #e3e7ee !important;
  color: #5b6270 !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-bottom: 28px !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-actions .btn,
body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-actions .btn {
  min-height: 56px !important;
  padding: 0 28px !important;
  border-radius: 14px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-actions .btn-primary,
body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-actions .btn-primary {
  background: linear-gradient(180deg, #e6bc4c, #d4a02a) !important;
  color: #20180c !important;
  border: 1px solid #d4a12b !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-actions .btn-secondary,
body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-actions .btn-secondary {
  background: #ffffff !important;
  color: #a97910 !important;
  border: 1px solid #e3cf97 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-points {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-point-card {
  min-height: 148px !important;
  padding: 20px 18px !important;
  border-radius: 18px !important;
  border: 1px solid #e3e8ef !important;
  background: #ffffff !important;
  box-shadow: 0 18px 40px rgba(28, 38, 51, 0.06) !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-point-card strong {
  display: block !important;
  margin-bottom: 12px !important;
  color: #262b33 !important;
  font-size: 1.08rem !important;
  line-height: 1.35 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-point-card span {
  display: block !important;
  color: #656d7a !important;
  font-size: 0.94rem !important;
  line-height: 1.62 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-spotlight {
  display: flex !important;
  align-self: start !important;
  align-items: flex-start !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-card {
  position: relative !important;
  width: 100% !important;
  padding: 22px !important;
  border-radius: 24px !important;
  border: 1px solid #e1e6ee !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.98)) !important;
  box-shadow: 0 24px 46px rgba(27, 37, 49, 0.08) !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-label {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  background: #e4b640 !important;
  color: #21180d !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-media {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 20px !important;
  min-height: 214px !important;
  margin-bottom: 20px !important;
  padding: 22px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%) !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-box {
  width: 118px !important;
  height: 166px !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 30px rgba(37, 48, 61, 0.12) !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-vial {
  width: 68px !important;
  height: 110px !important;
  margin-bottom: 10px !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 30px rgba(37, 48, 61, 0.12) !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-vial-cap {
  width: 38px !important;
  height: 18px !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-vial-dose {
  width: 44px !important;
  height: 44px !important;
  font-size: 0.8rem !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-copy h2 {
  margin: 0 0 10px !important;
  color: #252a32 !important;
  font-size: 1.55rem !important;
  line-height: 1.2 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-copy p {
  margin: 0 0 14px !important;
  color: #626a78 !important;
  font-size: 0.96rem !important;
  line-height: 1.64 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-facts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 18px !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-facts span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: #fff6dc !important;
  color: #ac7e12 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-meta {
  margin-bottom: 22px !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-price {
  color: #c18c12 !important;
  font-size: 1.9rem !important;
  font-weight: 800 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-stock {
  color: #69717e !important;
  font-size: 0.96rem !important;
  font-weight: 700 !important;
}

body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-actions {
  display: flex !important;
  gap: 12px !important;
}

body.biokode-apex-style.homepage-rebuilt .featured-products,
body.biokode-apex-style.homepage-rebuilt .technology,
body.biokode-apex-style.homepage-rebuilt .contact-form-section {
  padding-top: 64px !important;
}

@media (max-width: 1120px) {
  body.biokode-apex-style.homepage-rebuilt .rebuilt-hero {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-copy h1 {
    max-width: 100% !important;
  }
}

@media (max-width: 820px) {
  body.biokode-apex-style.homepage-rebuilt .hero {
    padding: 56px 0 46px !important;
  }

  body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem) !important;
    line-height: 1.02 !important;
  }

  body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-lead,
  body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-copy p {
    font-size: 1rem !important;
    line-height: 1.72 !important;
  }

  body.biokode-apex-style.homepage-rebuilt .rebuilt-accent-line {
    max-width: none !important;
  }

  body.biokode-apex-style.homepage-rebuilt .rebuilt-hero-points {
    grid-template-columns: 1fr !important;
  }

  body.biokode-apex-style.homepage-rebuilt .rebuilt-spotlight-actions {
    flex-direction: column !important;
  }
}

/* Global dark theme restore */
html.theme-dark,
html.theme-dark body,
body.theme-dark {
  background: #11161f !important;
  color-scheme: dark !important;
}

html.theme-dark .theme-toggle,
body.theme-dark .theme-toggle {
  display: inline-flex !important;
}

html.theme-dark body.biokode-apex-style,
body.theme-dark.biokode-apex-style {
  background: #11161f !important;
  color: #edf2f7 !important;
}

html.theme-dark body.biokode-apex-style main,
body.theme-dark.biokode-apex-style main,
html.theme-dark body.biokode-apex-style .page-content,
body.theme-dark.biokode-apex-style .page-content {
  background: transparent !important;
}

html.theme-dark body.biokode-apex-style #header,
body.theme-dark.biokode-apex-style #header,
html.theme-dark body.biokode-apex-style header.site-header,
body.theme-dark.biokode-apex-style header.site-header {
  background: #151b24 !important;
  background-color: #151b24 !important;
  border-bottom: 1px solid #273243 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3) !important;
}

html.theme-dark body.biokode-apex-style #header .logo a,
body.theme-dark.biokode-apex-style #header .logo a,
html.theme-dark body.biokode-apex-style #header .logo span,
body.theme-dark.biokode-apex-style #header .logo span {
  color: #e7a629 !important;
}

html.theme-dark body.biokode-apex-style #header .nav-menu a,
body.theme-dark.biokode-apex-style #header .nav-menu a,
html.theme-dark body.biokode-apex-style #header .city-selector,
body.theme-dark.biokode-apex-style #header .city-selector,
html.theme-dark body.biokode-apex-style #header .city-selector span,
body.theme-dark.biokode-apex-style #header .city-selector span,
html.theme-dark body.biokode-apex-style #header .cart-icon,
body.theme-dark.biokode-apex-style #header .cart-icon,
html.theme-dark body.biokode-apex-style #header .theme-toggle,
body.theme-dark.biokode-apex-style #header .theme-toggle,
html.theme-dark body.biokode-apex-style #header .cart-toggle,
body.theme-dark.biokode-apex-style #header .cart-toggle {
  color: #edf2f7 !important;
}

html.theme-dark body.biokode-apex-style #header .search-bar,
body.theme-dark.biokode-apex-style #header .search-bar,
html.theme-dark body.biokode-apex-style #header .search-bar input,
body.theme-dark.biokode-apex-style #header .search-bar input,
html.theme-dark body.biokode-apex-style #header .city-selector,
body.theme-dark.biokode-apex-style #header .city-selector,
html.theme-dark body.biokode-apex-style #header .theme-toggle,
body.theme-dark.biokode-apex-style #header .theme-toggle,
html.theme-dark body.biokode-apex-style #header .cart-icon,
body.theme-dark.biokode-apex-style #header .cart-icon,
html.theme-dark body.biokode-apex-style #header .cart-toggle,
body.theme-dark.biokode-apex-style #header .cart-toggle {
  background: #0f141b !important;
  border: 1px solid #2a3444 !important;
  box-shadow: none !important;
}

html.theme-dark body.biokode-apex-style #header .theme-toggle,
body.theme-dark.biokode-apex-style #header .theme-toggle {
  color: #f2bf49 !important;
}

html.theme-dark body.biokode-apex-style #header .search-bar input,
body.theme-dark.biokode-apex-style #header .search-bar input {
  color: #edf2f7 !important;
}

html.theme-dark body.biokode-apex-style #header .search-bar input::placeholder,
body.theme-dark.biokode-apex-style #header .search-bar input::placeholder {
  color: #8a95a5 !important;
}

html.theme-dark body.biokode-apex-style #header .dropdown,
body.theme-dark.biokode-apex-style #header .dropdown,
html.theme-dark body.biokode-apex-style #header .city-menu,
body.theme-dark.biokode-apex-style #header .city-menu {
  background: #151c26 !important;
  border: 1px solid #293344 !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34) !important;
}

html.theme-dark body.biokode-apex-style #header .dropdown a,
body.theme-dark.biokode-apex-style #header .dropdown a,
html.theme-dark body.biokode-apex-style #header .city-menu,
body.theme-dark.biokode-apex-style #header .city-menu,
html.theme-dark body.biokode-apex-style #header .city-menu *,
body.theme-dark.biokode-apex-style #header .city-menu * {
  color: #edf2f7 !important;
}

html.theme-dark body.biokode-apex-style .page-title,
body.theme-dark.biokode-apex-style .page-title,
html.theme-dark body.biokode-apex-style .section-title,
body.theme-dark.biokode-apex-style .section-title,
html.theme-dark body.biokode-apex-style .hero-text h1,
body.theme-dark.biokode-apex-style .hero-text h1,
html.theme-dark body.biokode-apex-style .technology h2,
body.theme-dark.biokode-apex-style .technology h2,
html.theme-dark body.biokode-apex-style .rebuilt-hero-copy h1,
body.theme-dark.biokode-apex-style .rebuilt-hero-copy h1,
html.theme-dark body.biokode-apex-style .rebuilt-accent-line,
body.theme-dark.biokode-apex-style .rebuilt-accent-line,
html.theme-dark body.biokode-apex-style .rebuilt-brand-line,
body.theme-dark.biokode-apex-style .rebuilt-brand-line {
  color: #f0f4f8 !important;
}

html.theme-dark body.biokode-apex-style .hero-text h1 span,
body.theme-dark.biokode-apex-style .hero-text h1 span,
html.theme-dark body.biokode-apex-style .rebuilt-brand-line,
body.theme-dark.biokode-apex-style .rebuilt-brand-line {
  color: #f2bf49 !important;
}

html.theme-dark body.biokode-apex-style .hero,
body.theme-dark.biokode-apex-style .hero,
html.theme-dark body.biokode-apex-style .featured-products,
body.theme-dark.biokode-apex-style .featured-products,
html.theme-dark body.biokode-apex-style .technology,
body.theme-dark.biokode-apex-style .technology,
html.theme-dark body.biokode-apex-style .contact-form-section,
body.theme-dark.biokode-apex-style .contact-form-section {
  background: transparent !important;
}

html.theme-dark body.biokode-apex-style .product-card,
body.theme-dark.biokode-apex-style .product-card,
html.theme-dark body.biokode-apex-style .filters-sidebar,
body.theme-dark.biokode-apex-style .filters-sidebar,
html.theme-dark body.biokode-apex-style .filter-group,
body.theme-dark.biokode-apex-style .filter-group,
html.theme-dark body.biokode-apex-style .contact-form-block,
body.theme-dark.biokode-apex-style .contact-form-block,
html.theme-dark body.biokode-apex-style .contact-info-block,
body.theme-dark.biokode-apex-style .contact-info-block,
html.theme-dark body.biokode-apex-style .contact-form,
body.theme-dark.biokode-apex-style .contact-form,
html.theme-dark body.biokode-apex-style .info-item,
body.theme-dark.biokode-apex-style .info-item,
html.theme-dark body.biokode-apex-style .messenger-links-block,
body.theme-dark.biokode-apex-style .messenger-links-block,
html.theme-dark body.biokode-apex-style .delivery-container,
body.theme-dark.biokode-apex-style .delivery-container,
html.theme-dark body.biokode-apex-style .calculator-panel,
body.theme-dark.biokode-apex-style .calculator-panel,
html.theme-dark body.biokode-apex-style .calculator-visual,
body.theme-dark.biokode-apex-style .calculator-visual,
html.theme-dark body.biokode-apex-style .calculator-card,
body.theme-dark.biokode-apex-style .calculator-card,
html.theme-dark body.biokode-apex-style .human-card,
body.theme-dark.biokode-apex-style .human-card,
html.theme-dark body.biokode-apex-style .syringe-card,
body.theme-dark.biokode-apex-style .syringe-card,
html.theme-dark body.biokode-apex-style .calculator-note,
body.theme-dark.biokode-apex-style .calculator-note,
html.theme-dark body.biokode-apex-style .feature-item,
body.theme-dark.biokode-apex-style .feature-item,
html.theme-dark body.biokode-apex-style .hero-point,
body.theme-dark.biokode-apex-style .hero-point,
html.theme-dark body.biokode-apex-style .rebuilt-point-card,
body.theme-dark.biokode-apex-style .rebuilt-point-card,
html.theme-dark body.biokode-apex-style .rebuilt-spotlight-card,
body.theme-dark.biokode-apex-style .rebuilt-spotlight-card,
html.theme-dark body.biokode-apex-style .product-modal,
body.theme-dark.biokode-apex-style .product-modal,
html.theme-dark body.biokode-apex-style .cart-overlay,
body.theme-dark.biokode-apex-style .cart-overlay,
html.theme-dark body.biokode-apex-style .support-chat-panel,
body.theme-dark.biokode-apex-style .support-chat-panel,
html.theme-dark body.biokode-apex-style .support-chat-bubble,
body.theme-dark.biokode-apex-style .support-chat-bubble,
html.theme-dark body.biokode-apex-style .support-chat-chip,
body.theme-dark.biokode-apex-style .support-chat-chip {
  background: #151c26 !important;
  border: 1px solid #283344 !important;
  box-shadow: none !important;
  color: #edf2f7 !important;
}

html.theme-dark body.biokode-apex-style .product-img-wrap,
body.theme-dark.biokode-apex-style .product-img-wrap,
html.theme-dark body.biokode-apex-style .product-media,
body.theme-dark.biokode-apex-style .product-media,
html.theme-dark body.biokode-apex-style .rebuilt-spotlight-media,
body.theme-dark.biokode-apex-style .rebuilt-spotlight-media,
html.theme-dark body.biokode-apex-style .catalog-search-wrap,
body.theme-dark.biokode-apex-style .catalog-search-wrap {
  background: #0f141b !important;
  border-color: #283344 !important;
}

html.theme-dark body.biokode-apex-style .catalog-search-input,
body.theme-dark.biokode-apex-style .catalog-search-input,
html.theme-dark body.biokode-apex-style .search-bar input,
body.theme-dark.biokode-apex-style .search-bar input,
html.theme-dark body.biokode-apex-style .form-group input,
body.theme-dark.biokode-apex-style .form-group input,
html.theme-dark body.biokode-apex-style .form-group textarea,
body.theme-dark.biokode-apex-style .form-group textarea,
html.theme-dark body.biokode-apex-style .cart-qty-input,
body.theme-dark.biokode-apex-style .cart-qty-input {
  background: #0f141b !important;
  border: 1px solid #2a3444 !important;
  color: #edf2f7 !important;
  box-shadow: none !important;
}

html.theme-dark body.biokode-apex-style .catalog-search-input::placeholder,
body.theme-dark.biokode-apex-style .catalog-search-input::placeholder,
html.theme-dark body.biokode-apex-style .search-bar input::placeholder,
body.theme-dark.biokode-apex-style .search-bar input::placeholder,
html.theme-dark body.biokode-apex-style .form-group input::placeholder,
body.theme-dark.biokode-apex-style .form-group input::placeholder,
html.theme-dark body.biokode-apex-style .form-group textarea::placeholder,
body.theme-dark.biokode-apex-style .form-group textarea::placeholder {
  color: #8c96a4 !important;
}

html.theme-dark body.biokode-apex-style .product-info h3,
body.theme-dark.biokode-apex-style .product-info h3,
html.theme-dark body.biokode-apex-style .contact-form label,
body.theme-dark.biokode-apex-style .contact-form label,
html.theme-dark body.biokode-apex-style .contact-info-block h4,
body.theme-dark.biokode-apex-style .contact-info-block h4,
html.theme-dark body.biokode-apex-style .filter-group h3,
body.theme-dark.biokode-apex-style .filter-group h3,
html.theme-dark body.biokode-apex-style .cart-overlay h3,
body.theme-dark.biokode-apex-style .cart-overlay h3,
html.theme-dark body.biokode-apex-style .cart-item strong,
body.theme-dark.biokode-apex-style .cart-item strong,
html.theme-dark body.biokode-apex-style .cart-total strong,
body.theme-dark.biokode-apex-style .cart-total strong,
html.theme-dark body.biokode-apex-style .cart-total-price,
body.theme-dark.biokode-apex-style .cart-total-price {
  color: #f0f4f8 !important;
}

html.theme-dark body.biokode-apex-style p,
body.theme-dark.biokode-apex-style p,
html.theme-dark body.biokode-apex-style li,
body.theme-dark.biokode-apex-style li,
html.theme-dark body.biokode-apex-style .product-info p,
body.theme-dark.biokode-apex-style .product-info p,
html.theme-dark body.biokode-apex-style .product-info span,
body.theme-dark.biokode-apex-style .product-info span,
html.theme-dark body.biokode-apex-style .contact-info-block p,
body.theme-dark.biokode-apex-style .contact-info-block p,
html.theme-dark body.biokode-apex-style .contact-info-block span,
body.theme-dark.biokode-apex-style .contact-info-block span,
html.theme-dark body.biokode-apex-style .cart-item span,
body.theme-dark.biokode-apex-style .cart-item span,
html.theme-dark body.biokode-apex-style .cart-empty,
body.theme-dark.biokode-apex-style .cart-empty {
  color: #b4bfcd !important;
}

html.theme-dark body.biokode-apex-style .price,
body.theme-dark.biokode-apex-style .price,
html.theme-dark body.biokode-apex-style .rebuilt-price,
body.theme-dark.biokode-apex-style .rebuilt-price {
  color: #f2bf49 !important;
}

html.theme-dark body.biokode-apex-style .category-list a,
body.theme-dark.biokode-apex-style .category-list a,
html.theme-dark body.biokode-apex-style .form-btn,
body.theme-dark.biokode-apex-style .form-btn {
  background: #151c26 !important;
  color: #edf2f7 !important;
  border: 1px solid #283344 !important;
}

html.theme-dark body.biokode-apex-style .category-list a.active,
body.theme-dark.biokode-apex-style .category-list a.active,
html.theme-dark body.biokode-apex-style .category-list a.is-active,
body.theme-dark.biokode-apex-style .category-list a.is-active,
html.theme-dark body.biokode-apex-style .form-btn.active,
body.theme-dark.biokode-apex-style .form-btn.active,
html.theme-dark body.biokode-apex-style .form-btn.is-active,
body.theme-dark.biokode-apex-style .form-btn.is-active {
  background: #2a2012 !important;
  color: #f2bf49 !important;
  border-color: #7f5b1f !important;
}

html.theme-dark body.biokode-apex-style .btn-primary,
body.theme-dark.biokode-apex-style .btn-primary,
html.theme-dark body.biokode-apex-style .btn-primary-sm,
body.theme-dark.biokode-apex-style .btn-primary-sm,
html.theme-dark body.biokode-apex-style .cart-submit,
body.theme-dark.biokode-apex-style .cart-submit,
html.theme-dark body.biokode-apex-style .cart-overlay .btn-primary,
body.theme-dark.biokode-apex-style .cart-overlay .btn-primary {
  background: linear-gradient(180deg, #efc557 0%, #d8a32a 100%) !important;
  color: #1a140b !important;
  border: 1px solid #d8a32a !important;
  box-shadow: none !important;
}

html.theme-dark body.biokode-apex-style .btn-outline,
body.theme-dark.biokode-apex-style .btn-outline,
html.theme-dark body.biokode-apex-style .btn-outline-sm,
body.theme-dark.biokode-apex-style .btn-outline-sm {
  background: transparent !important;
  color: #f2bf49 !important;
  border: 1px solid #8b6930 !important;
  box-shadow: none !important;
}

html.theme-dark body.biokode-apex-style .btn-secondary,
body.theme-dark.biokode-apex-style .btn-secondary,
html.theme-dark body.biokode-apex-style .product-details-btn,
body.theme-dark.biokode-apex-style .product-details-btn,
html.theme-dark body.biokode-apex-style .rebuilt-hero-actions .btn-secondary,
body.theme-dark.biokode-apex-style .rebuilt-hero-actions .btn-secondary,
html.theme-dark body.biokode-apex-style .rebuilt-spotlight-actions .btn-secondary,
body.theme-dark.biokode-apex-style .rebuilt-spotlight-actions .btn-secondary {
  background: #151c26 !important;
  color: #f2bf49 !important;
  border: 1px solid #8b6930 !important;
  box-shadow: none !important;
}

html.theme-dark body.biokode-apex-style .rebuilt-hero-tag,
body.theme-dark.biokode-apex-style .rebuilt-hero-tag,
html.theme-dark body.biokode-apex-style .rebuilt-spotlight-facts span,
body.theme-dark.biokode-apex-style .rebuilt-spotlight-facts span {
  background: #1a2230 !important;
  color: #f2bf49 !important;
  border: 1px solid #2f3b4d !important;
  box-shadow: none !important;
}

html.theme-dark body.biokode-apex-style footer,
body.theme-dark.biokode-apex-style footer {
  background: #0d1118 !important;
  color: #e6ebf1 !important;
  border-top: 1px solid #232d3a !important;
}

html.theme-dark body.biokode-apex-style .footer-brand p,
body.theme-dark.biokode-apex-style .footer-brand p,
html.theme-dark body.biokode-apex-style .footer-links a,
body.theme-dark.biokode-apex-style .footer-links a,
html.theme-dark body.biokode-apex-style .footer-column a,
body.theme-dark.biokode-apex-style .footer-column a,
html.theme-dark body.biokode-apex-style .footer-contacts a,
body.theme-dark.biokode-apex-style .footer-contacts a,
html.theme-dark body.biokode-apex-style .footer-contacts p,
body.theme-dark.biokode-apex-style .footer-contacts p {
  color: #c7d0db !important;
}

html.theme-dark body.biokode-apex-style .specialist-section,
body.theme-dark.biokode-apex-style .specialist-section {
  background: #11161f !important;
}

html.theme-dark body.biokode-apex-style .specialist-section .section-title,
body.theme-dark.biokode-apex-style .specialist-section .section-title,
html.theme-dark body.biokode-apex-style .specialist-section h2,
body.theme-dark.biokode-apex-style .specialist-section h2 {
  color: #f0f4f8 !important;
}

html.theme-dark body.biokode-apex-style .specialist-section p,
body.theme-dark.biokode-apex-style .specialist-section p,
html.theme-dark body.biokode-apex-style .specialist-text p,
body.theme-dark.biokode-apex-style .specialist-text p {
  color: #b8c2d0 !important;
}

html.theme-dark body.biokode-apex-style .specialist-grid,
body.theme-dark.biokode-apex-style .specialist-grid,
html.theme-dark body.biokode-apex-style .specialist-content,
body.theme-dark.biokode-apex-style .specialist-content,
html.theme-dark body.biokode-apex-style .specialist-benefits,
body.theme-dark.biokode-apex-style .specialist-benefits,
html.theme-dark body.biokode-apex-style .specialist-cards,
body.theme-dark.biokode-apex-style .specialist-cards {
  background: transparent !important;
}

html.theme-dark body.biokode-apex-style .specialist-section .btn-primary,
body.theme-dark.biokode-apex-style .specialist-section .btn-primary {
  background: linear-gradient(180deg, #efc557 0%, #d8a32a 100%) !important;
  color: #1a140b !important;
  border: 1px solid #d8a32a !important;
  box-shadow: none !important;
}

body.biokode-apex-style .product-card .product-description-preview {
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  min-height: 5.8em !important;
  line-height: 1.45 !important;
}

body.biokode-apex-style .product-img-wrap {
  isolation: isolate;
}

body.biokode-apex-style .product-img-wrap img.is-bg-cleaned,
body.biokode-apex-style .product-img-wrap img.white-bg-fallback {
  background: transparent !important;
}

html.theme-dark body.biokode-apex-style .product-img-wrap img.white-bg-fallback,
body.theme-dark.biokode-apex-style .product-img-wrap img.white-bg-fallback {
  mix-blend-mode: normal;
  filter: none;
}

html.theme-dark body.biokode-apex-style.page-delivery .delivery-container,
body.theme-dark.biokode-apex-style.page-delivery .delivery-container {
  background: #151c26 !important;
  border: 1px solid #283344 !important;
  box-shadow: none !important;
}

html.theme-dark body.biokode-apex-style.page-delivery .delivery-section,
body.theme-dark.biokode-apex-style.page-delivery .delivery-section,
html.theme-dark body.biokode-apex-style.page-delivery .delivery-payment-grid,
body.theme-dark.biokode-apex-style.page-delivery .delivery-payment-grid {
  background: transparent !important;
}

html.theme-dark body.biokode-apex-style.page-delivery .delivery-section h2,
body.theme-dark.biokode-apex-style.page-delivery .delivery-section h2 {
  color: #f2bf49 !important;
}

html.theme-dark body.biokode-apex-style.page-delivery .delivery-section p,
body.theme-dark.biokode-apex-style.page-delivery .delivery-section p,
html.theme-dark body.biokode-apex-style.page-delivery .delivery-list li,
body.theme-dark.biokode-apex-style.page-delivery .delivery-list li {
  color: #c0cad7 !important;
}

html.theme-dark body.biokode-apex-style.page-delivery .delivery-list strong,
body.theme-dark.biokode-apex-style.page-delivery .delivery-list strong {
  color: #eef3f8 !important;
}

html.theme-dark body.biokode-apex-style.page-delivery .delivery-card,
body.theme-dark.biokode-apex-style.page-delivery .delivery-card {
  background: #111720 !important;
  border: 1px solid #283344 !important;
  box-shadow: none !important;
}

html.theme-dark body.biokode-apex-style.page-delivery .delivery-card h4,
body.theme-dark.biokode-apex-style.page-delivery .delivery-card h4 {
  color: #eef3f8 !important;
}

html.theme-dark body.biokode-apex-style.page-delivery .delivery-card p,
body.theme-dark.biokode-apex-style.page-delivery .delivery-card p {
  color: #c0cad7 !important;
}

html.theme-dark body.biokode-apex-style .product-card::before,
body.theme-dark.biokode-apex-style .product-card::before,
html.theme-dark body.biokode-apex-style .featured-products .product-card::before,
body.theme-dark.biokode-apex-style .featured-products .product-card::before,
html.theme-dark body.biokode-apex-style .catalog-grid .product-card::before,
body.theme-dark.biokode-apex-style .catalog-grid .product-card::before,
html.theme-dark body.biokode-apex-style .product-card::after,
body.theme-dark.biokode-apex-style .product-card::after,
html.theme-dark body.biokode-apex-style .featured-products .product-card::after,
body.theme-dark.biokode-apex-style .featured-products .product-card::after,
html.theme-dark body.biokode-apex-style .catalog-grid .product-card::after,
body.theme-dark.biokode-apex-style .catalog-grid .product-card::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

html.theme-dark body.biokode-apex-style .product-card,
body.theme-dark.biokode-apex-style .product-card,
html.theme-dark body.biokode-apex-style .featured-products .product-card,
body.theme-dark.biokode-apex-style .featured-products .product-card,
html.theme-dark body.biokode-apex-style .catalog-grid .product-card,
body.theme-dark.biokode-apex-style .catalog-grid .product-card {
  overflow: hidden !important;
  background: #151c26 !important;
}

html.theme-dark body.biokode-apex-style .product-card .product-img-wrap,
body.theme-dark.biokode-apex-style .product-card .product-img-wrap,
html.theme-dark body.biokode-apex-style .featured-products .product-card .product-img-wrap,
body.theme-dark.biokode-apex-style .featured-products .product-card .product-img-wrap,
html.theme-dark body.biokode-apex-style .catalog-grid .product-card .product-img-wrap,
body.theme-dark.biokode-apex-style .catalog-grid .product-card .product-img-wrap,
html.theme-dark body.biokode-apex-style .product-card .product-media,
body.theme-dark.biokode-apex-style .product-card .product-media,
html.theme-dark body.biokode-apex-style .featured-products .product-card .product-media,
body.theme-dark.biokode-apex-style .featured-products .product-card .product-media,
html.theme-dark body.biokode-apex-style .catalog-grid .product-card .product-media,
body.theme-dark.biokode-apex-style .catalog-grid .product-card .product-media {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #0f141b !important;
  box-shadow: none !important;
}

/* Cart & Checkout Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(450px, 100vw);
    height: 100%;
    background: var(--bg-panel);
    backdrop-filter: blur(24px);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.active {
    right: 0;
}

.cart-bg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-bg-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: min(440px, 100vw);
    height: 100vh;
    background: #ffffff; /* Pure white as requested */
    backdrop-filter: blur(25px);
    z-index: 1200;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.active {
    transform: translateX(0);
}

.cart-header {
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-color);
}

.cart-header h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.close-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    background: var(--white) !important;
    border-radius: 16px;
    padding: 20px 24px; /* More horizontal space for text */
    border: 1px solid var(--line-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: var(--transition);
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cart-item-header strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    padding-right: 32px;
}

.remove-item {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--text-soft);
    padding: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

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

.cart-item-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-color);
}

.cart-qty-outer {
    display: flex;
    align-items: center;
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 4px;
    gap: 12px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-val {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* --- City Confirmation Final High-Contrast Fix --- */
.city-confirm-card {
    background: #ffffff !important;
    border: 1px solid rgba(242, 191, 73, 0.5) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1000 !important;
    animation: cityFadeIn 0.4s ease-out;
}

@keyframes cityFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

body.theme-dark .city-confirm-card {
    background: #11161d !important;
    border-color: #2a3444 !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5) !important;
    color: #ffffff !important;
}

.city-confirm-primary {
    background: #ffffff !important; /* PURE WHITE BACKGROUND */
    color: #f2bf49 !important; /* ORANGE/GOLD TEXT */
    font-weight: 800 !important;
    border: 1.5px solid #f2bf49 !important; /* ORANGE BORDER */
    padding: 12px 20px !important;
    border-radius: 10px !important;
    min-width: 130px !important;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    transition: all 0.2s ease;
}

.city-confirm-primary:hover {
    background: #ffcf5b !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 191, 73, 0.3) !important;
}

.city-confirm-secondary {
    background: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
    font-weight: 700 !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    min-width: 140px !important;
    cursor: pointer;
}

body.theme-dark .city-confirm-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--line-color);
    background: var(--white); /* PURE WHITE from screenshot request */
    box-shadow: 0 -4px 12px rgba(0,0,0,0.03);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    width: 100%;
}

.cart-total span {
    font-weight: 600;
    color: var(--text-muted);
}

.cart-total strong,
.total-price {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
}

/* --- Checkout Form Styles --- */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 8px 0;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 4px;
}

.form-group input, 
.form-group textarea {
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--line-color);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.checkout-confirm-trigger, 
.cart-submit {
    background: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
    color: #1a1f26;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-confirm-trigger:hover, 
.cart-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    filter: brightness(1.1);
}

.checkout-confirm-trigger:active, 
.cart-submit:active {
    transform: translateY(0);
}

.checkout-back-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    padding: 0 24px;
}

.checkout-back-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.checkout-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

/* --- Order Success State --- */
.order-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 8px;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

.order-success h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.order-success p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cart-submit {
    width: 100%;
}

/* Empty State */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    gap: 20px;
    color: var(--text-muted);
}

/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--line-color);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.checkout-actions {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
}

.order-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Dark Mode Overrides */
body.theme-dark .cart-item {
    background: rgba(255, 255, 255, 0.03);
}

body.theme-dark .form-group input,
body.theme-dark .form-group textarea {
    background: rgba(0, 0, 0, 0.2);
}

body.theme-dark .total-price,
body.theme-dark .cart-total strong {
    color: var(--text-main);
}

/* FINAL CART POLISH */
.cart-overlay { 
    background: #ffffff !important; 
    box-shadow: -10px 0 30px rgba(0,0,0,0.05) !important; 
}
.cart-bg-overlay { 
    background: transparent !important; 
    backdrop-filter: none !important; 
}
.cart-item { 
    background: #ffffff !important; 
    border: 1px solid rgba(0,0,0,0.05) !important; 
    padding: 20px !important; 
}
.cart-item-header strong { 
    color: #f39c12 !important; 
}
