:root {
	/* Светлые оттенки */
	--wood-ivory: #FFFFF0;
	--wood-sand: #F4A460;
	--wood-beige: #F5F5DC;
	--wood-honey: #F5DEB3;
	--wood-desert-sand: #EDC9AF;
	
	/* Средние оттенки */
	--wood-oak: #C19A6B;
	--wood-walnut: #A0522D;
	--wood-light-brown: #D2B48C;
	--wood-light-wood: #DEB887;
	--wood-taupe: #483C32;
	
	/* Теплые древесные */
	--wood-maple: #D2691E;
	--wood-pine: #FFDAB9;
	--wood-bamboo: #E1C16E;
	--wood-teak: #B19461;
	--wood-nutmeg: #E1AD01;
	
	/* Прохладные древесные */
	--wood-grey-brown: #8B7355;
	--wood-olive-wood: #6B8E23;
	--wood-grey-oak: #8B8378;
	--wood-bleached-wood: #F5EBDC;
	--wood-moss: #8A9A5B;
	
	/* В RGB формате */
	--wood-oak-rgb: 193, 154, 107;
	--wood-walnut-rgb: 160, 82, 45;
	--wood-taupe-rgb: 72, 60, 50;
	--wood-beige-rgb: 245, 245, 220;
	
	/* Готовые цветовые схемы */
	--wood-primary-bg: var(--wood-ivory);
	--wood-primary-accent: var(--wood-oak);
	--wood-primary-text: var(--wood-taupe);
	--wood-secondary: var(--wood-honey);
	
	--wood-alt-bg: var(--wood-beige);
	--wood-alt-accent: var(--wood-grey-brown);
	--wood-alt-text: #2F4F4F;
	--wood-alt-secondary: var(--wood-light-brown);
	
	/* Для темной темы */
	--wood-dark-bg: var(--wood-taupe);
	--wood-dark-text: var(--wood-bleached-wood);
	--wood-dark-accent: var(--wood-maple);
}

:root {
	--primary-color: var(--wood-oak);
	--primary-color: #6a5955;
	--primary-dark: var(--wood-walnut);
	--primary-dark: #322e2d;
	--text-color: #333;
	--light-gray: #f5f5f5;
	--medium-gray: #e0e0e0;
	--dark-gray: #555;
	--white: #ffffff;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

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

body {
	font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .top-bar {
            background-color: var(--light-gray);
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-links a {
            color: var(--text-color);
            text-decoration: none;
            margin-right: 20px;
        }
        
        .top-links a:hover {
            color: var(--primary-color);
        }
        
        .phone {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .main-header {
            padding: 15px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-svg {
            width: 170px;
            height: 50px;
            fill: var(--primary-color);
        }
        
        .search-bar {
            flex: 1;
            max-width: 500px;
            margin: 0 30px;
            position: relative;
        }
        
        .search-bar input {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            font-size: 16px;
        }
        
        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            padding: 8px 15px;
            cursor: pointer;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .action-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-color);
            font-size: 12px;
            transition: var(--transition);
        }
        
        .action-icon i {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .action-icon:hover {
            color: var(--primary-color);
        }
        
        .cart-count {
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            position: absolute;
            top: -5px;
            right: -5px;
        }
        
        .cart-icon {
            position: relative;
        }
        
        /* Navigation Styles */
        nav {
            background-color: var(--primary-color);
            padding: 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .nav-links a:hover {
            background-color: var(--primary-dark);
        }
        
        .dropdown-menu {
            position: absolute;
            background-color: white;
            min-width: 220px;
            box-shadow: var(--shadow);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
        }
        
        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu a {
            color: var(--text-color);
            padding: 12px 20px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .dropdown-menu a:hover {
            background-color: var(--light-gray);
            color: var(--primary-color);
        }
        
        .catalog-btn {
            background-color: white;
            color: var(--primary-color);
            border: none;
            padding: 12px 20px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .catalog-btn:hover {
            background-color: var(--light-gray);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Slider */
        .hero-slider {
            background-color: var(--light-gray);
            padding: 40px 0;
            overflow: hidden;
        }
        
        .slider-container {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 60px;
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
        }
        
        .slide-content {
            position: relative;
            z-index: 1;
            max-width: 500px;
        }
        
        .slide h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        .slide p {
            font-size: 18px;
            margin-bottom: 25px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            color: var(--text-color);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        
        .slider-nav.prev {
            left: 20px;
        }
        
        .slider-nav.next {
            right: 20px;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--medium-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .dot.active {
            background-color: var(--primary-color);
        }
        
        /* Features Section */
        .features {
            padding: 60px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: var(--text-color);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .feature-card:hover {
            background-color: var(--light-gray);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 174, 160, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .feature-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .feature-content p {
            color: var(--dark-gray);
            font-size: 14px;
        }
        
        /* Categories Section */
        .categories {
            padding: 60px 0;
            background-color: var(--light-gray);
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .category-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text-color);
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .category-img {
            height: 150px;
            background-color: var(--medium-gray);
            background-size: cover;
            background-position: center;
        }
        
        .category-content {
            padding: 20px;
            text-align: center;
        }
        
        .category-content h3 {
            font-size: 18px;
        }
        
        /* Footer */
        footer {
            background-color: #222;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            width: 170px;
            height: 50px;
            fill: white;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 14px;
        }
        
        /* Mobile Responsive */
        @media (max-width: 992px) {
            .search-bar {
                margin: 0 15px;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-container {
                justify-content: flex-start;
            }
            
            .catalog-btn {
                margin-left: auto;
                margin-right: 15px;
            }
            
            .slide {
                padding: 40px 30px;
            }
            
            .slide h2 {
                font-size: 28px;
            }
            
            .slide p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            
            .search-bar {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }
            
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .top-links {
                text-align: center;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .header-actions {
                gap: 10px;
            }
            
            .action-icon span {
                display: none;
            }
            
            .action-icon i {
                margin-bottom: 0;
            }
            
            .slide {
                padding: 30px 20px;
            }
            
            .slide h2 {
                font-size: 24px;
            }
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            transform: translateX(0);
        }
        
        .mobile-menu-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--primary-color);
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .mobile-menu-links {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .mobile-menu-links ul {
            list-style: none;
        }
        
        .mobile-menu-links li {
            margin-bottom: 15px;
        }
        
        .mobile-menu-links a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-dropdown-btn {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            display: flex;
            justify-content: space-between;
            width: 100%;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }
        
        .mobile-dropdown-menu {
            padding-left: 20px;
            display: none;
        }
        
        .mobile-dropdown-menu.active {
            display: block;
        }













		        /* Product Main Section */
        .product-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 30px 0 50px;
        }
        
        @media (max-width: 768px) {
            .product-main {
                grid-template-columns: 1fr;
            }
        }
        
        /* Product Gallery */
        .product-gallery {
            /*background-color: var(--wood-beige);*/
            border-radius: 12px;
            padding: 20px;
            /*box-shadow: var(--shadow);*/
        }
        
        .main-product-image {
            width: 100%;
            height: 400px;
            background-color: var(--border-color);
            background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 15px;
            position: relative;
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--sale-color);
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .product-thumbnails {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 10px 0;
        }
        
        .product-thumbnail {
            width: 80px;
            height: 80px;
            min-width: 80px;
            background-color: var(--border-color);
            background-size: cover;
            background-position: center;
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .product-thumbnail:hover {
            opacity: 0.8;
        }
        
        .product-thumbnail.active {
            border-color: var(--wood-maple);
        }
        
        .thumbnail-1 {
            background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
        }
        
        .thumbnail-2 {
            background-image: url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
        }
        
        .thumbnail-3 {
            background-image: url('https://images.unsplash.com/photo-1617325247661-675ab4b64a0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80');
        }
        
        .thumbnail-4 {
            background-image: url('https://images.unsplash.com/photo-1594026112284-02bb6f3352b6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
        }
        
        /* Product Details */
        .product-details {
            /*background-color: var(--wood-beige);*/
            border-radius: 12px;
            padding: 30px;
            /*box-shadow: var(--shadow);*/
        }
        
        .product-title {
            font-size: 32px;
            margin-bottom: 10px;
            color: var(--wood-taupe);
        }
        
        .product-subtitle {
            font-size: 16px;
            color: var(--wood-grey-oak);
            margin-bottom: 20px;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .product-rating .stars {
            color: var(--wood-nutmeg);
            margin-right: 10px;
        }
        
        .rating-count {
            color: var(--wood-grey-oak);
            margin-left: 10px;
        }
        
        .product-price-section {
            margin-bottom: 30px;
        }
        
        .product-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--price-color);
            margin-right: 15px;
        }
        
        .product-old-price {
            font-size: 20px;
            color: var(--wood-grey-oak);
            text-decoration: line-through;
            margin-right: 15px;
        }
        
        .product-sale {
            background-color: var(--sale-color);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .product-description {
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .product-features {
            margin-bottom: 30px;
        }
        
        .feature-list {
            list-style: none;
        }
        
        .feature-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .feature-list i {
            color: var(--wood-oak);
            margin-right: 10px;
        }
        
        /* Product Options */
        .product-options {
            margin-bottom: 30px;
        }
        
        .option-group {
            margin-bottom: 25px;
        }
        
        .option-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--wood-taupe);
            display: flex;
            align-items: center;
        }
        
        .option-title i {
            margin-right: 8px;
            color: var(--wood-oak);
        }
        
        .option-values {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .option-value {
            position: relative;
        }
        
        .option-radio {
            display: none;
        }
        
        .option-label {
            display: block;
            padding: 10px 20px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition);
            background-color: var(--wood-bleached-wood);
            text-align: center;
            min-width: 100px;
        }
        
        .option-radio:checked + .option-label {
            border-color: var(--wood-maple);
            background-color: var(--wood-honey);
            color: var(--wood-taupe);
            font-weight: 600;
        }
        
        .option-label:hover {
            border-color: var(--wood-oak);
        }
        
        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid var(--border-color);
        }
        
        .color-light-oak {
            background-color: #E1C16E;
        }
        
        .color-dark-oak {
            background-color: #8B7355;
        }
        
        .color-walnut {
            background-color: #A0522D;
        }
        
        .color-ebony {
            background-color: #555555;
        }
        
        /* Quantity Selector */
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .quantity-label {
            font-weight: 600;
            margin-right: 20px;
            color: var(--wood-taupe);
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            background-color: var(--wood-oak);
            color: var(--wood-bleached-wood);
            border: none;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .quantity-btn:hover {
            background-color: var(--wood-maple);
        }
        
        .quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: 1px solid var(--border-color);
            border-left: none;
            border-right: none;
            background-color: var(--wood-bleached-wood);
            font-size: 16px;
            font-weight: 600;
        }
        
        /* Product Actions */
        .product-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .btn-primary {
            background-color: var(--button-bg);
            color: var(--wood-bleached-wood);
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            flex: 1;
            min-width: 200px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-primary:hover {
            background-color: var(--button-hover);
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: var(--wood-oak);
            color: var(--wood-bleached-wood);
            border: none;
            padding: 15px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-secondary:hover {
            background-color: var(--wood-maple);
        }
        
        .btn-tertiary {
            background-color: transparent;
            color: var(--wood-taupe);
            border: 2px solid var(--border-color);
            padding: 15px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-tertiary:hover {
            border-color: var(--wood-oak);
            color: var(--wood-maple);
        }
        
        /* Product Info */
        .product-info {
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .info-item i {
            color: var(--wood-oak);
            margin-right: 12px;
            width: 20px;
        }
        
        /* Tabs Section */
        .product-tabs {
            margin-bottom: 50px;
        }
        
        .tabs-header {
            display: flex;
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 30px;
        }
        
        .tab-btn {
            padding: 15px 30px;
            background: none;
            border: none;
            font-size: 18px;
            font-weight: 600;
            color: var(--wood-grey-oak);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }
        
        .tab-btn:hover {
            color: var(--wood-taupe);
        }
        
        .tab-btn.active {
            color: var(--wood-taupe);
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--wood-maple);
        }
        
        .tab-content {
            display: none;
            padding: 20px;
            background-color: var(--wood-beige);
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .tab-content.active {
            display: block;
        }
        
        .tab-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--wood-taupe);
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .specs-table tr {
            border-bottom: 1px solid var(--border-color);
        }
        
        .specs-table td {
            padding: 15px 10px;
        }
        
        .specs-table td:first-child {
            font-weight: 600;
            width: 30%;
        }
        
        /* Related Products */
        .related-products {
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--wood-taupe);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .product-card {
            background-color: var(--wood-beige);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(139, 115, 85, 0.15);
        }
        
        .product-card-image {
            height: 200px;
            background-color: var(--border-color);
            background-size: cover;
            background-position: center;
        }
        
        .product-card-info {
            padding: 20px;
        }
        
        .product-card-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--wood-taupe);
        }
        
        .product-card-title a {
            color: inherit;
            text-decoration: none;
        }
        
        .product-card-title a:hover {
            color: var(--wood-maple);
        }
        
        .product-card-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--price-color);
            margin-bottom: 15px;
        }
        
        .product-card-btn {
            background-color: var(--button-bg);
            color: var(--wood-bleached-wood);
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .product-card-btn:hover {
            background-color: var(--button-hover);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .product-title {
                font-size: 24px;
            }
            
            .product-price {
                font-size: 28px;
            }
            
            .tabs-header {
                flex-direction: column;
            }
            
            .tab-btn {
                width: 100%;
                text-align: left;
            }
            
            .product-actions {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary, .btn-tertiary {
                width: 100%;
            }
            
            .option-values {
                justify-content: center;
            }
        }
/* =========================
   CART PAGE
========================= */

.cart-page {
    padding: 40px 0 60px;
}

.cart-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--wood-taupe);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--wood-beige);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-product-name {
    font-weight: 600;
    color: var(--wood-taupe);
}

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

.cart-remove {
    color: #c0392b;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    opacity: 0.7;
}

.cart-summary {
    margin-top: 40px;
    padding: 30px;
    background: var(--wood-beige);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 400px;
    margin-left: auto;
}

.cart-summary h3 {
    margin-bottom: 20px;
    color: var(--wood-taupe);
}

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

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        margin-bottom: 20px;
        background: var(--wood-beige);
        border-radius: 8px;
        box-shadow: var(--shadow);
        padding: 15px;
    }

    .cart-table td {
        border: none;
        padding: 10px 0;
    }

    .cart-summary {
        max-width: 100%;
    }
}

.cart-page {
    padding: 40px 0 60px;
}

.cart-empty {
    padding: 40px;
    background: var(--wood-beige);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--wood-beige);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    text-align: left;
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

.cart-product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-product-name {
    font-weight: 600;
    color: var(--wood-taupe);
    text-decoration: none;
}

.cart-product-name:hover {
    color: var(--wood-maple);
}

.cart-price {
    font-weight: 600;
    color: var(--wood-maple);
}

.cart-remove-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    background: #c0392b;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove-btn:hover {
    opacity: 0.8;
}

.cart-total-label {
    text-align: right;
    font-weight: 600;
}

.cart-total-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--wood-maple);
}

.cart-actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-clean-btn {
    padding: 12px 25px;
    background: var(--wood-grey-oak);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-clean-btn:hover {
    background: var(--wood-taupe);
}

/* =========================
   BREADCRUMBS (compact)
========================= */

.breadcrumbs {
    background: var(--wood-bleached-wood);
    padding: 10px 0;          /* было 20px */
    margin-bottom: 20px;      /* меньше воздуха */
}

.breadcrumb-list {
    list-style: none;
    display: inline-flex;     /* не на всю ширину */
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;          /* компактнее */
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--wood-grey-oak);
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--wood-oak);
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--wood-maple);
}

.breadcrumb-item::after {
    content: "›";
    margin: 0 6px;
    color: var(--wood-grey-oak);
    font-size: 12px;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item span {
    font-weight: 600;
    color: var(--wood-taupe);
}

/* =========================
   MINI CART
========================= */

/* MINI CART FIX */

#msMiniCart.msMiniCart .empty {
    display: flex;
}

.msMiniCart.full .empty {
    display: none;
}

.msMiniCart .not_empty {
    display: none;
}

#msMiniCart.msMiniCart.full .not_empty {
    display: flex;
}

/* чтобы цифра красиво выглядела */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}



/* ===== ЗАКАЗ ===== */

#msOrder h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* поля */
#msOrder .form-group {
    margin-bottom: 18px;
}

#msOrder .form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px 12px;
    transition: 0.2s;
}

#msOrder .form-control:focus {
    border-color: #b38b59;
    box-shadow: 0 0 0 2px rgba(179,139,89,0.15);
}

.required-star {
    color: #c0392b;
}

/* ===== Радио как карточки ===== */

#msOrder .checkbox {
    margin-bottom: 12px;
}

#msOrder .checkbox label {
    display: block;
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

#msOrder .checkbox input[type="radio"] {
    margin-right: 10px;
}

#msOrder .checkbox label:hover {
    border-color: #b38b59;
    background: #faf7f2;
}

#msOrder input[type="radio"]:checked + img,
#msOrder input[type="radio"]:checked {
    outline: none;
}

/* ===== Итог ===== */

#msOrder hr {
    border-top: 1px solid #eee;
}

#msOrder h3 {
    font-weight: 700;
    color: #b38b59;
}

/* Кнопка оформления */
#msOrder .btn-primary {
    background: #b38b59;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    transition: 0.2s;
}

#msOrder .btn-primary:hover {
    background: #8f6d45;
}

/* Кнопка отмены */
#msOrder .btn-danger {
    background: #999;
    border: none;
    border-radius: 20px;
}

#msOrder .checkbox label.active-option {
    border: 2px solid #b38b59;
    background: #f5efe6;
}