        :root {
            --primary: #CD7400;
            --primary-dark: #a35d00;
            --primary-light: #e88a00;
            --dark: #1a1a1a;
            --darker: #111;
            --text: #333;
            --text-light: #666;
            --text-muted: #999;
            --bg-light: #f8f9fa;
            --white: #fff;
            --border: #e0e0e0;
            --shadow: 0 4px 20px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
            --radius: 12px;
            --radius-lg: 16px;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: var(--dark);
        }

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

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

        .container {
            max-width: 1560px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER — металлический эффект ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            /* База: тёмный металл */
            background: linear-gradient(180deg,
                #3a3a3c 0%,
                #2d2d30 15%,
                #252528 50%,
                #1e1e21 85%,
                #18181b 100%
            );
            /* Верхний блик как у кованого листа */
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.08),
                inset 0 2px 4px rgba(0,0,0,0.3),
                0 4px 20px rgba(0,0,0,0.4);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        /* Фракция металла — вертикальная мелкая текстура */
        .header::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: repeating-linear-gradient(
                90deg,
                transparent 0,
                transparent 1px,
                rgba(255,255,255,0.02) 1px,
                rgba(255,255,255,0.02) 2px
            );
            opacity: 0.9;
        }

        /* Горизонтальные штрихи — как у кованого листа */
        .header::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: repeating-linear-gradient(
                0deg,
                transparent 0,
                transparent 2px,
                rgba(0,0,0,0.03) 2px,
                rgba(0,0,0,0.03) 3px
            );
            opacity: 0.7;
        }

        /* Top Bar — тот же металл, чуть темнее */
        .top-bar {
            padding: 10px 0;
            background: linear-gradient(180deg,
                #2a2a2d 0%,
                #222225 50%,
                #1a1a1d 100%
            );
            border-bottom: 1px solid rgba(255,255,255,0.05);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
            position: relative;
        }

        .top-bar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .top-contacts {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .top-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        .top-contact-item i {
            color: var(--primary);
        }

        /* Phone Dropdown */
        .phone-dropdown-wrap {
            position: relative;
        }

        .phone-main {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 5px 0;
        }

        .phone-main:hover {
            color: var(--primary);
        }

        .phone-main .fa-chevron-down {
            font-size: 10px;
            transition: var(--transition);
        }

        .phone-dropdown-wrap:hover .fa-chevron-down {
            transform: rotate(180deg);
        }

        .phone-list {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            overflow: hidden;
            border-top: 3px solid var(--primary);
        }

        .phone-dropdown-wrap:hover .phone-list {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }

        .phone-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            color: var(--text);
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid var(--border);
        }

        .phone-list a:last-child {
            border-bottom: none;
        }

        .phone-list a:hover {
            background: var(--bg-light);
            color: var(--primary);
        }

        .phone-list a i {
            color: var(--primary);
            width: 16px;
        }

        .top-buttons {
            display: flex;
            gap: 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Montserrat', sans-serif;
        }

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

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--dark);
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
        }

        /* Main Nav — продолжение металла */
        .main-nav {
            padding: 15px 0;
            position: relative;
        }

        .main-nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .brand-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

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

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 5px;
            list-style: none;
        }

        .nav-menu a {
            display: block;
            padding: 10px 18px;
            color: rgba(255,255,255,0.9);
            font-size: 15px;
            font-weight: 500;
            border-radius: 6px;
            position: relative;
        }

        /* Пункты меню — лёгкий металлический рельеф при наведении/активе */
        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--white);
            background: linear-gradient(180deg,
                rgba(255,255,255,0.12) 0%,
                rgba(255,255,255,0.06) 50%,
                rgba(255,255,255,0.02) 100%
            );
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.1),
                inset 0 -1px 0 rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.06);
        }

        /* Готовые изделия — особое выделение */
        .nav-menu a.nav-ready {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white) !important;
            font-weight: 600;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 2px 8px rgba(205,116,0,0.4);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .nav-menu a.nav-ready:hover {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            transform: translateY(-1px);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 12px rgba(205,116,0,0.5);
        }

        .nav-menu a.nav-ready i {
            margin-right: 6px;
        }

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

        /* Кнопка корзины — металлический «кружок» */
        .cart-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: linear-gradient(180deg,
                #353538 0%,
                #2a2a2d 50%,
                #222225 100%
            );
            border-radius: 50%;
            color: var(--white);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.08),
                inset 0 -1px 0 rgba(0,0,0,0.3),
                0 2px 6px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .cart-btn:hover {
            background: linear-gradient(180deg, var(--primary-light), var(--primary));
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.2),
                0 4px 12px rgba(205,116,0,0.4);
            border-color: rgba(255,255,255,0.15);
        }

        .cart-btn i {
            font-size: 18px;
        }

        .cart-count {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 20px;
            height: 20px;
            background: var(--primary);
            color: var(--white);
            font-size: 11px;
            font-weight: 600;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            padding: 12px;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
        }

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
        }

        .mobile-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Мобильное меню — выезжающая панель */
        @media (max-width: 900px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: 0;
                width: min(320px, 100vw - 40px);
                height: 100vh;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 80px 0 30px;
                background: linear-gradient(180deg, #2a2a2d, #1a1a1d);
                box-shadow: -8px 0 30px rgba(0,0,0,0.5);
                overflow-y: auto;
                transform: translateX(100%);
                transition: transform 0.3s ease, visibility 0.3s;
                visibility: hidden;
                z-index: 999;
            }

            .nav-menu.open {
                transform: translateX(0);
                visibility: visible;
            }

            .nav-menu li {
                border-bottom: 1px solid rgba(255,255,255,0.06);
            }

            .nav-menu a {
                padding: 16px 24px;
                font-size: 16px;
                border-radius: 0;
                display: flex;
                align-items: center;
            }

            .nav-menu a i {
                margin-right: 12px;
                width: 22px;
                text-align: center;
            }

            .nav-menu a.nav-ready {
                margin: 12px 16px;
                border-radius: 8px;
                justify-content: center;
            }

            .nav-menu a.nav-ready i {
                margin-right: 8px;
            }
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-overlay.open {
            display: block;
            opacity: 1;
        }

        /* ===== HERO SLIDER ===== */
        .hero {
            position: relative;
            height: 600px;
            margin-top: 110px;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero-content h1 {
            color: var(--white);
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content p {
            color: rgba(255,255,255,0.9);
            font-size: 18px;
            margin-bottom: 30px;
        }

        .hero-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: var(--transition);
        }

        .hero-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* ===== MAIN LAYOUT ===== */
        .main-section {
            padding: 60px 0;
        }

        .main-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
        }

        /* ===== SIDEBAR CATALOG ===== */
        .sidebar {
            position: sticky;
            top: 130px;
            height: fit-content;
        }

        .catalog-widget {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .catalog-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
        }

        .catalog-header i {
            font-size: 18px;
        }

        .catalog-list {
            list-style: none;
        }

        .catalog-item {
            border-bottom: 1px solid var(--border);
        }

        .catalog-item:last-child {
            border-bottom: none;
        }

        .catalog-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            color: var(--text);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
        }

        .catalog-link:hover {
            background: var(--bg-light);
            color: var(--primary);
        }

        .catalog-link i {
            font-size: 12px;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .catalog-item.open .catalog-link i {
            transform: rotate(90deg);
            color: var(--primary);
        }

        .catalog-sub {
            display: none;
            background: var(--bg-light);
            border-top: 1px solid var(--border);
        }

        .catalog-item.open .catalog-sub {
            display: block;
        }

        .catalog-sub a {
            display: block;
            padding: 12px 20px 12px 35px;
            color: var(--text-light);
            font-size: 13px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .catalog-sub a:last-child {
            border-bottom: none;
        }

        .catalog-sub a:hover {
            color: var(--primary);
            padding-left: 40px;
        }

        /* ===== CONTENT AREA ===== */
        .content {
            min-width: 0;
        }

        .section-title {
            position: relative;
            padding-left: 20px;
            margin-bottom: 30px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-title h2 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 15px;
        }

        /* ===== CATALOG PRODUCT CARDS (3 в ряд) ===== */
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .product-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            border-color: rgba(205,116,0,0.2);
        }

        .product-card-slider {
            position: relative;
            height: 220px;
            overflow: hidden;
            background: linear-gradient(180deg, #f5f5f5 0%, #eee 100%);
        }

        .product-card-slider .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .product-card-slider .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .product-card-slider .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-card-slider-nav {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 2;
        }

        .product-card-slider-nav span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.7);
            cursor: pointer;
            transition: var(--transition);
        }

        .product-card-slider-nav span.active {
            background: var(--primary);
            transform: scale(1.25);
            box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
        }

        .product-card-slider-arr {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.95);
            color: var(--dark);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            opacity: 0;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .product-card:hover .product-card-slider-arr {
            opacity: 1;
        }

        .product-card-slider-arr:hover {
            background: var(--primary);
            color: var(--white);
        }

        .product-card-slider-arr.prev { left: 10px; }
        .product-card-slider-arr.next { right: 10px; }

        .product-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .product-card-body h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 14px;
            line-height: 1.35;
            min-height: 2.7em;
        }

        .product-card-body h3 a {
            color: var(--dark);
        }

        .product-card-body h3 a:hover {
            color: var(--primary);
        }

        /* Свойства — компактные карточки-метки */
        .product-specs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 16px;
        }

        .product-specs .spec-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 8px;
            background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
            border-radius: 10px;
            border: 1px solid rgba(205, 116, 0, 0.12);
            text-align: center;
            min-height: 56px;
        }

        .product-specs .spec-row i {
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 4px;
            display: block;
        }

        .product-specs .spec-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 2px;
        }

        .product-specs .spec-value {
            font-size: 13px;
            font-weight: 700;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }

        /* Если свойств в строку 1–2 (для консистентности) */
        .product-specs.specs-count-1 { grid-template-columns: 1fr; }
        .product-specs.specs-count-2 { grid-template-columns: repeat(2, 1fr); }

        .product-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .product-price span {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-light);
        }

        .btn-add-cart {
            margin-top: auto;
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 10px;
        }

        .btn-add-cart:hover {
            transform: none;
        }

        /* ===== CART ICON + DROPDOWN ===== */
        .cart-wrap {
            position: relative;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .cart-btn {
            text-decoration: none;
        }

        .cart-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            width: 360px;
            max-width: calc(100vw - 40px);
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
            z-index: 1000;
            max-height: 70vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .cart-wrap.open .cart-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .cart-dropdown-header {
            padding: 16px;
            border-bottom: 1px solid var(--border);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cart-dropdown-body {
            padding: 12px;
            overflow-y: auto;
            flex: 1;
            max-height: 320px;
        }

        .cart-dropdown-empty {
            padding: 30px 20px;
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
        }

        .cart-dropdown .cart-row {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .cart-dropdown .cart-row:last-child {
            border-bottom: none;
        }

        .cart-item-img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .cart-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-dropdown .cart-item-info {
            flex: 1;
            min-width: 0;
        }

        .cart-dropdown .cart-item-name {
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .cart-dropdown .cart-item-qty {
            font-size: 12px;
            color: var(--text-light);
        }

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

        .cart-dropdown .cart-item-remove {
            color: var(--text-muted);
            cursor: pointer;
            padding: 4px;
        }

        .cart-dropdown .cart-item-remove:hover {
            color: #c00;
        }

        .cart-dropdown-footer {
            padding: 16px;
            border-top: 1px solid var(--border);
        }

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

        .cart-dropdown-footer .btn {
            width: 100%;
        }

        @media (max-width: 1024px) {
            .catalog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .catalog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .product-card-slider {
                height: 180px;
            }

            .product-card-body {
                padding: 14px;
            }

            .product-card-body h3 {
                font-size: 15px;
                min-height: auto;
            }

            .product-specs {
                gap: 8px;
                margin-bottom: 12px;
            }

            .product-specs .spec-row {
                padding: 8px 6px;
                min-height: 50px;
            }

            .product-specs .spec-row i {
                font-size: 14px;
            }

            .product-specs .spec-label {
                font-size: 9px;
            }

            .product-specs .spec-value {
                font-size: 12px;
            }

            .product-price {
                font-size: 19px;
                margin-bottom: 12px;
            }

            .btn-add-cart {
                padding: 12px;
                font-size: 14px;
            }

            .cart-dropdown {
                width: 320px;
            }
        }

        @media (max-width: 480px) {
            .catalog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-card-body h3 {
                min-height: auto;
            }
        }

        /* ===== ПОСТРАНИЧНАЯ НАВИГАЦИЯ КАТАЛОГА ===== */
        .catalog-pagination {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .catalog-pagination a,
        .catalog-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            text-decoration: none;
            transition: var(--transition);
        }

        .catalog-pagination a:hover:not(.disabled) {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .catalog-pagination .page-active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .catalog-pagination .disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .catalog-pagination .pagination-ellipsis {
            background: transparent;
            border: none;
            min-width: auto;
        }

        .catalog-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px 20px;
            color: var(--text-muted, #666);
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            background: var(--bg-light);
            padding: 80px 0;
        }

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

        .about-content span {
            display: inline-block;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .about-content span i {
            margin-right: 8px;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .about-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-img img {
            width: 100%;
            display: block;
        }

        /* ===== FEATURES ===== */
        .features-section {
            padding: 80px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: var(--white);
            padding: 35px 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .feature-card i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 14px;
        }

        /* ===== КАК ЗАКАЗАТЬ ===== */
        .how-order-section {
            background: var(--bg-light);
            padding: 80px 0;
        }

        .how-order-steps {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }

        .how-order-step {
            flex: 1 1 200px;
            max-width: 260px;
            background: var(--white);
            padding: 30px 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
        }

        .how-order-step:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
        }

        .how-order-num {
            position: absolute;
            top: 12px;
            right: 14px;
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .how-order-step i.fa {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .how-order-step h3 {
            font-size: 17px;
            margin-bottom: 10px;
        }

        .how-order-step p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
        }

        .how-order-arrow {
            display: flex;
            align-items: center;
            color: var(--primary);
            font-size: 18px;
            opacity: 0.6;
        }

        .how-order-cta {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 0;
        }

        .how-order-cta .btn {
            margin: 0 6px;
        }

        .how-order-cta .btn-outline-primary {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .how-order-cta .btn-outline-primary:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-widget h4 {
            color: var(--white);
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-widget h4 i:first-child {
            margin-right: 10px;
            color: var(--primary);
        }

        .footer-widget h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .footer-widget p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-contacts li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .footer-contacts li i {
            color: var(--primary);
            margin-top: 3px;
        }

        .footer-schedule p {
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .footer-schedule strong {
            color: var(--white);
        }

        .footer-bottom {
            background: var(--darker);
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-layout {
                grid-template-columns: 250px 1fr;
                gap: 30px;
            }

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

            .about-grid {
                gap: 30px;
            }

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

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

        @media (max-width: 900px) {
            .main-layout {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }

            .mobile-toggle {
                display: flex;
            }

            .brand-name {
                font-size: 20px;
            }

            .logo img {
                height: 42px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .top-bar-inner {
                justify-content: center;
                text-align: center;
            }

            .top-contacts {
                justify-content: center;
            }

            .hero {
                height: 450px;
                margin-top: 140px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }

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

            .about-content {
                order: 2;
            }

            .about-img {
                order: 1;
            }

            .footer-grid,
            .footer-contacts-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-widget h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .how-order-arrow {
                display: none;
            }

            .how-order-step {
                max-width: 100%;
                flex: 1 1 100%;
            }

            .how-order-cta .btn {
                display: inline-block;
                margin-top: 8px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 400px;
            }

            .hero-content h1 {
                font-size: 26px;
            }

            .section-title h2 {
                font-size: 24px;
            }

            .about-content h2 {
                font-size: 28px;
            }

            .top-buttons {
                display: none;
            }
        }

        /* ===== ХЛЕБНЫЕ КРОШКИ ===== */
        .catalog-page-bar {
            padding: 14px 0;
            margin-top: 110px;
            background: linear-gradient(180deg,
                #2a2a2d 0%,
                #242427 50%,
                #1e1e21 100%
            );
            border-bottom: 1px solid rgba(255,255,255,0.06);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
        }

        .catalog-page-bar-product {
            padding: 18px 0 22px;
        }

        .breadcrumbs {
            display: flex;
            align-items: center;
        }

        .breadcrumbs-list {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px 0;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 14px;
        }

        .breadcrumbs-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumbs-item--current {
            max-width: 100%;
        }

        .breadcrumbs-link {
            color: rgba(255,255,255,0.75);
            font-weight: 500;
            padding: 4px 0;
            transition: var(--transition);
            white-space: nowrap;
        }

        .breadcrumbs-link:hover {
            color: var(--primary-light);
        }

        .breadcrumbs-link--home {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .breadcrumbs-link--home i {
            font-size: 13px;
            opacity: 0.9;
        }

        .breadcrumbs-sep {
            display: inline-flex;
            align-items: center;
            color: rgba(255,255,255,0.35);
            font-size: 10px;
            margin: 0 2px;
            flex-shrink: 0;
        }

        .breadcrumbs-sep i {
            display: block;
        }

        .breadcrumbs-current {
            color: var(--white);
            font-weight: 600;
            padding: 4px 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Светлая полоса хлебных крошек (для страниц с белым фоном) */
        .breadcrumbs-bar-light .catalog-page-bar {
            margin-top: 150px;
            background: linear-gradient(180deg, #f8f9fa 0%, #f0f1f3 100%);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 0 rgba(255,255,255,0.8);
        }

        .breadcrumbs-bar-light .breadcrumbs-link {
            color: var(--text-light);
        }

        .breadcrumbs-bar-light .breadcrumbs-link:hover {
            color: var(--primary);
        }

        .breadcrumbs-bar-light .breadcrumbs-sep {
            color: var(--text-muted);
        }

        .breadcrumbs-bar-light .breadcrumbs-current {
            color: var(--dark);
        }

        @media (max-width: 768px) {
            .catalog-page-bar {
                padding: 12px 0;
                margin-top: 100px;
            }

            .breadcrumbs-list {
                font-size: 13px;
            }

            .breadcrumbs-sep {
                margin: 0 1px;
            }
        }

        /* ===== СТРАНИЦА «О КОМПАНИИ» ===== */
        .page-hero {
            position: relative;
            min-height: 320px;
            margin-top: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .page-hero-about {
            background: linear-gradient(135deg, #2a2a2d 0%, #1e1e21 50%, #18181b 100%);
            background-image: url('/temp/images/slider/kslide-3.jpg');
            background-size: cover;
            background-position: center;
        }

        .page-hero-promo {
            background: linear-gradient(135deg, #2a2a2d 0%, #1e1e21 50%, #18181b 100%);
            background-image: url('/temp/images/slider/kslide-2.jpg');
            background-size: cover;
            background-position: center;
        }

        .page-hero-contacts {
            background: linear-gradient(135deg, #2a2a2d 0%, #1e1e21 50%, #18181b 100%);
            background-image: url('/temp/images/slider/kslide-1.jpg');
            background-size: cover;
            background-position: center;
        }

        .page-hero-delivery {
            background: linear-gradient(135deg, #2a2a2d 0%, #1e1e21 50%, #18181b 100%);
            background-image: url('/temp/images/slider/kslide-2.jpg');
            background-size: cover;
            background-position: center;
        }

        .page-hero-checkout {
            background: linear-gradient(135deg, #2a2a2d 0%, #1e1e21 50%, #18181b 100%);
            background-image: url('/temp/images/slider/kslide-3.jpg');
            background-size: cover;
            background-position: center;
        }

        .page-hero-category,
        .page-hero-subcategory {
            background: linear-gradient(135deg, #2a2a2d 0%, #1e1e21 50%, #18181b 100%);
            background-image: url('/temp/images/slider/kslide-3.jpg');
            background-size: cover;
            background-position: center;
            margin-top: 0;
        }

        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
        }

        .page-hero-content {
            position: relative;
            z-index: 1;
            max-width: 720px;
            padding: 50px 24px;
        }

        .page-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(205, 116, 0, 0.9);
            color: var(--white);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .page-hero-content h1 {
            color: var(--white);
            font-size: 38px;
            margin-bottom: 16px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.3);
        }

        .page-hero-content h1 span {
            color: var(--primary);
        }

        .page-hero-content p {
            color: rgba(255,255,255,0.9);
            font-size: 17px;
            line-height: 1.6;
        }

        .about-page-section {
            padding: 56px 0;
            background: var(--white);
        }

        .about-intro,
        .about-text-block {
            background: var(--white);
        }

        .about-advantages,
        .about-range {
            background: var(--bg-light);
        }

        .about-intro-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-intro-lead {
            font-size: 18px;
            color: var(--dark);
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .about-intro-inner p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.85;
            margin-bottom: 16px;
        }

        .about-intro-inner .text-brand {
            color: var(--primary);
            font-weight: 600;
        }

        .section-title-centered {
            text-align: center;
            padding-left: 0;
            margin-bottom: 36px;
        }

        .section-title-centered::before {
            display: none;
        }

        .section-title-centered h2 {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 26px;
        }

        .section-title-centered h2 i {
            color: var(--primary);
        }

        .about-advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 20px;
        }

        .about-advantage-card {
            background: var(--white);
            padding: 32px 28px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .about-advantage-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .about-advantage-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 26px;
        }

        .about-advantage-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .about-advantage-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.65;
        }

        .about-text-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
            align-items: start;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-text-col h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .about-text-col p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-range-list {
            list-style: none;
            max-width: 640px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 24px;
        }

        .about-range-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--white);
            border-radius: var(--radius);
            font-size: 15px;
            color: var(--text);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: var(--transition);
        }

        .about-range-list li:hover {
            color: var(--primary);
            box-shadow: 0 4px 16px rgba(205, 116, 0, 0.12);
        }

        .about-range-list li i {
            color: var(--primary);
            font-size: 16px;
            flex-shrink: 0;
        }

        .about-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
            padding: 64px 0;
        }

        .about-cta-inner {
            text-align: center;
            max-width: 560px;
            margin: 0 auto;
        }

        .about-cta-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 32px;
        }

        .about-cta-inner h2 {
            color: var(--white);
            font-size: 28px;
            margin-bottom: 12px;
        }

        .about-cta-inner p {
            color: rgba(255,255,255,0.9);
            font-size: 16px;
            margin-bottom: 28px;
            line-height: 1.6;
        }

        .about-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .about-cta-buttons .btn {
            min-width: 200px;
        }

        .btn-outline-dark {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.8);
        }

        .btn-outline-dark:hover {
            background: var(--white);
            color: var(--primary-dark);
            border-color: var(--white);
        }

        @media (max-width: 1024px) {
            .about-advantages-grid {
                grid-template-columns: 1fr;
            }

            .about-text-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            .page-hero {
                min-height: 260px;
                margin-top: 120px;
            }

            .page-hero-content h1 {
                font-size: 28px;
            }

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

            .about-page-section {
                padding: 40px 0;
            }

            .about-cta-buttons {
                flex-direction: column;
            }

            .about-cta-buttons .btn {
                width: 100%;
                min-width: 0;
            }
        }

        @media (max-width: 576px) {
            .page-hero-content h1 {
                font-size: 24px;
            }
        }

        /* ===== СТРАНИЦА «ОФОРМЛЕНИЕ ЗАКАЗА» ===== */
        .checkout-section {
            padding: 60px 0 80px;
            margin-top: 110px;
            background: var(--bg-light);
        }

        .checkout-empty {
            text-align: center;
            padding: 80px 24px;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
        }

        .checkout-empty i {
            font-size: 64px;
            color: var(--text-muted);
            margin-bottom: 20px;
            display: block;
        }

        .checkout-empty h2 {
            margin-bottom: 12px;
        }

        .checkout-empty p {
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .checkout-layout {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 40px;
            align-items: start;
        }

        .checkout-form-wrap {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 32px;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .checkout-form-title {
            font-size: 18px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark);
        }

        .checkout-form-title i {
            color: var(--primary);
        }

        .checkout-form .form-group {
            margin-bottom: 20px;
        }

        .checkout-form label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text);
        }

        .checkout-form .required {
            color: #c00;
        }

        .checkout-form input,
        .checkout-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: var(--transition);
        }

        .checkout-form input:focus,
        .checkout-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(205, 116, 0, 0.15);
        }

        .checkout-form textarea {
            resize: vertical;
            min-height: 80px;
        }

        .checkout-form .btn-submit-order {
            width: 100%;
            padding: 16px;
            font-size: 16px;
            margin-top: 8px;
        }

        .checkout-summary-wrap {
            position: sticky;
            top: 130px;
        }

        .checkout-summary {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 24px;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .checkout-summary-title {
            font-size: 18px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark);
        }

        .checkout-summary-title i {
            color: var(--primary);
        }

        .checkout-items-list {
            max-height: 320px;
            overflow-y: auto;
            margin-bottom: 20px;
        }

        .checkout-item-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .checkout-item-row:last-child {
            border-bottom: none;
        }

        .checkout-item-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .checkout-item-name {
            font-weight: 500;
            font-size: 14px;
        }

        .checkout-item-qty {
            font-size: 12px;
            color: var(--text-light);
        }

        .checkout-item-sum {
            font-weight: 600;
            color: var(--primary);
            flex-shrink: 0;
        }

        .checkout-summary-total {
            display: flex;
            justify-content: space-between;
            font-size: 18px;
            font-weight: 600;
            padding-top: 16px;
            border-top: 2px solid var(--border);
        }

        .checkout-total-value {
            color: var(--primary);
        }

        @media (max-width: 900px) {
            .checkout-layout {
                grid-template-columns: 1fr;
            }

            .checkout-summary-wrap {
                position: static;
            }
        }

        /* Модальное окно успешного заказа */
        .order-success-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .order-success-modal {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 48px 40px;
            max-width: 440px;
            width: 100%;
            text-align: center;
        }

        .order-success-icon {
            font-size: 64px;
            color: #198754;
            margin-bottom: 20px;
        }

        .order-success-modal h2 {
            font-size: 24px;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .order-success-modal p {
            color: var(--text);
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .order-success-date {
            font-size: 14px;
            color: var(--text-light);
        }

        .order-success-modal .btn {
            margin-top: 24px;
            padding: 14px 32px;
            font-size: 16px;
        }

        /* ===== СТРАНИЦА «КОНТАКТЫ» ===== */
        .contacts-section {
            padding: 60px 0 80px;
            margin-top: 110px;
            background: var(--bg-light);
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 48px;
        }

        .contact-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .contact-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: rgba(205, 116, 0, 0.2);
        }

        .contact-card-header {
            padding: 20px 24px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .contact-card-title {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-card-title i {
            opacity: 0.9;
        }

        .contact-card-badge {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 6px 14px;
            background: rgba(255,255,255,0.2);
            border-radius: 20px;
        }

        .contact-card-body {
            padding: 24px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 24px;
            align-items: start;
            flex: 1;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .contact-address,
        .contact-note {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--text);
            line-height: 1.5;
        }

        .contact-address i,
        .contact-note i {
            color: var(--primary);
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .contact-phones {
            list-style: none;
            margin: 4px 0 0;
            padding: 0;
        }

        .contact-phones li {
            margin-bottom: 8px;
        }

        .contact-phones li:last-child {
            margin-bottom: 0;
        }

        .contact-phones a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
            color: var(--primary-dark);
            transition: var(--transition);
        }

        .contact-phones a:hover {
            color: var(--primary);
        }

        .contact-phones a i {
            font-size: 14px;
            color: var(--primary);
        }

        .contact-map-wrap {
            position: relative;
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--bg-light);
            min-height: 220px;
            aspect-ratio: 4/3;
        }

        .contact-map {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .contacts-email-block {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            box-shadow: var(--shadow);
            border: 2px solid rgba(205, 116, 0, 0.15);
        }

        .contacts-email-inner {
            display: flex;
            align-items: center;
            gap: 24px;
            max-width: 480px;
        }

        .contacts-email-inner > i {
            font-size: 42px;
            color: var(--primary);
        }

        .contacts-email-label {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .contacts-email-link {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            transition: var(--transition);
        }

        .contacts-email-link:hover {
            color: var(--primary-dark);
        }

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

            .contact-card-body {
                grid-template-columns: 1fr;
            }

            .contact-map-wrap {
                aspect-ratio: 16/9;
                min-height: 200px;
            }
        }

        @media (max-width: 768px) {
            .contacts-section {
                margin-top: 120px;
                padding: 40px 0 60px;
            }

            .contacts-grid {
                gap: 24px;
                margin-bottom: 32px;
            }

            .contact-card-header {
                padding: 16px 20px;
            }

            .contact-card-title {
                font-size: 16px;
            }

            .contact-card-body {
                padding: 20px;
                gap: 20px;
            }

            .contacts-email-inner {
                flex-direction: column;
                text-align: center;
            }

            .contacts-email-link {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .contact-map-wrap {
                min-height: 180px;
            }
        }

        /* ===== PRODUCT PAGE (страница товара) ===== */
        .product-page.product-card:hover {
            transform: none;
        }

        .product-page-section {
            margin-top: 24px;
            padding: 40px 0 80px;
        }

        .product-page-content {
            max-width: 100%;
            padding: 0;
        }

        .product-page-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 56px;
            align-items: start;
            padding: 32px 0 40px;
        }

        .product-gallery {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin: 0 24px;
        }

        .product-gallery-main {
            position: relative;
            aspect-ratio: 1;
            background: linear-gradient(180deg, #f8f9fa 0%, #eee 100%);
            overflow: hidden;
        }

        .product-gallery-main-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .product-gallery-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-gallery-slide.active {
            opacity: 1;
            z-index: 1;
        }

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

        .product-gallery-arr {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.95);
            color: var(--dark);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: var(--transition);
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
        }

        .product-gallery-arr:hover {
            background: var(--primary);
            color: var(--white);
        }

        .product-gallery-arr.prev { left: 16px; }
        .product-gallery-arr.next { right: 16px; }

        .product-gallery-thumbs {
            display: flex;
            gap: 10px;
            padding: 16px;
            overflow-x: auto;
            border-top: 1px solid var(--border);
        }

        .product-gallery-thumb {
            flex-shrink: 0;
            width: 72px;
            height: 72px;
            padding: 0;
            border: 2px solid transparent;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            background: #f5f5f5;
            transition: var(--transition);
        }

        .product-gallery-thumb:hover,
        .product-gallery-thumb.active {
            border-color: var(--primary);
        }

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

        .product-info {
            position: relative;
            padding-left: 0;
            padding-right: 24px;
        }

        .product-info-sticky {
            position: sticky;
            top: 140px;
            padding: 8px 0 0;
        }

        .product-badge {
            display: inline-block;
            padding: 6px 14px;
            background: linear-gradient(135deg, rgba(205,116,0,0.2) 0%, rgba(205,116,0,0.1) 100%);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        .product-title {
            font-size: 28px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.35;
            margin-bottom: 24px;
        }

        .product-price-block {
            margin-bottom: 28px;
        }

        .product-price-block .product-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.02em;
        }

        .product-price-block .product-price-currency {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-light);
            margin-left: 4px;
        }

        .product-specs-detail {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 28px;
        }

        .product-specs-detail.specs-count-1 { grid-template-columns: 1fr; }
        .product-specs-detail.specs-count-2 { grid-template-columns: repeat(2, 1fr); }

        .product-spec-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 16px;
            background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
            border-radius: 12px;
            border: 1px solid rgba(205,116,0,0.12);
            text-align: center;
        }

        .product-spec-item i {
            color: var(--primary);
            font-size: 22px;
            margin-bottom: 8px;
        }

        .product-spec-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .product-spec-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }

        .product-actions {
            margin-bottom: 28px;
        }

        .btn-add-cart-lg {
            width: 100%;
            padding: 18px 24px;
            font-size: 17px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border-radius: 12px;
        }

        .product-back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 14px;
            transition: var(--transition);
            margin-top: 24px;
        }

        .product-back-link:hover {
            color: var(--primary);
        }

        .product-description {
            margin-top: 56px;
            padding: 40px 24px 24px;
            border-top: 1px solid var(--border);
        }

        .product-description-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .product-description-content {
            color: var(--text);
            line-height: 1.7;
            font-size: 15px;
        }

        @media (max-width: 1024px) {
            .product-page-grid {
                grid-template-columns: 1fr 340px;
                gap: 36px;
            }

            .product-title {
                font-size: 24px;
            }

            .product-price-block .product-price {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            .product-page-section {
                margin-top: 100px;
                padding: 20px 0 40px;
            }

            .product-page-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 24px 0 32px;
            }

            .product-info-sticky {
                position: static;
            }

            .product-gallery-main {
                aspect-ratio: 4/3;
            }

            .product-title {
                font-size: 22px;
                margin-bottom: 20px;
            }

            .product-price-block .product-price {
                font-size: 28px;
            }

            .product-specs-detail {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .product-spec-item {
                padding: 16px 12px;
            }

            .product-spec-item i {
                font-size: 18px;
            }

            .product-spec-value {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .product-gallery {
                margin: 0 16px;
            }

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

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

            .product-title {
                font-size: 20px;
            }
        }
