 /* =============================================
           СТРАНИЦА ПРОДУКТА
           ============================================= */
        .product-section {
            padding: 60px 0 80px;
            background: #fcf9f5;
        }

        .product-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .product-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* =============================================
           ЛЕВАЯ КОЛОНКА - ИЗОБРАЖЕНИЕ (УМЕНЬШЕНО)
           ============================================= */
        .product-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            max-width: 100%;
        }

        .product-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .product-image:hover img {
            transform: scale(1.02);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #f7be27, #f5a623);
            color: #2c1810;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(247, 190, 39, 0.3);
        }

        /* =============================================
           ПРАВАЯ КОЛОНКА - ИНФОРМАЦИЯ
           ============================================= */
        .product-info {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .product-code {
            font-size: 14px;
            color: #bbb;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .product-name {
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: clamp(1.8rem, 2.8vw, 2.5rem);
            font-weight: 700;
            color: #642f21;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-rating .stars {
            display: flex;
            gap: 2px;
        }

        .product-rating .stars i {
            color: #f7be27;
            font-size: 16px;
        }

        .product-rating .stars i.fa-star-half-alt {
            color: #f7be27;
        }

        .product-rating .rating-text {
            font-size: 14px;
            color: #999;
        }

        .product-rating .rating-text span {
            color: #642f21;
            font-weight: 600;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 2px;
        }

        .product-price .current {
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #e3000e;
        }

        .product-price .old {
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: #bbb;
            text-decoration: line-through;
        }

        .product-description {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.8;
            margin: 2px 0;
        }

        .product-specs {
            display: flex;
            gap: 30px;
            padding: 14px 0;
            border-top: 1px solid rgba(247, 190, 39, 0.1);
            border-bottom: 1px solid rgba(247, 190, 39, 0.1);
        }

        .product-specs .spec {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .product-specs .spec .label {
            font-size: 12px;
            color: #bbb;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-specs .spec .value {
            font-size: 15px;
            font-weight: 600;
            color: #642f21;
        }

        .product-delivery {
            padding: 14px 0;
            border-bottom: 1px solid rgba(247, 190, 39, 0.1);
        }

        .product-delivery .delivery-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 6px;
        }

        .product-delivery .delivery-item:last-child {
            margin-bottom: 0;
        }

        .product-delivery .delivery-item i {
            color: #f7be27;
            font-size: 15px;
            margin-top: 2px;
            width: 20px;
        }

        .product-delivery .delivery-item p {
            font-size: 0.9rem;
            color: #777;
            line-height: 1.6;
        }

        .product-actions {
            display: flex;
            gap: 14px;
            margin-top: 2px;
        }

        .btn-add-to-cart {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #f7be27, #f5a623);
            color: #2c1810;
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-add-to-cart:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(247, 190, 39, 0.3);
            background: linear-gradient(135deg, #f5a623, #f7be27);
        }

        .btn-add-to-cart i {
            transition: transform 0.3s ease;
        }

        .btn-add-to-cart:hover i {
            transform: translateX(3px);
        }

        .btn-wishlist {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background: rgba(247, 190, 39, 0.08);
            border: 1px solid rgba(247, 190, 39, 0.15);
            border-radius: 50%;
            color: #642f21;
            font-size: 17px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-wishlist:hover {
            background: rgba(227, 0, 14, 0.08);
            border-color: rgba(227, 0, 14, 0.2);
            color: #e3000e;
            transform: translateY(-3px);
        }

        /* =============================================
           ВКЛАДКИ - ВО ВСЮ ШИРИНУ КОНТЕЙНЕРА
           ============================================= */
        .product-tabs-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 50px;
        }

        .product-tabs {
            background: #fff;
            border-radius: 16px;
            padding: 30px 40px 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(247, 190, 39, 0.06);
        }

        .tabs-nav {
            display: flex;
            gap: 30px;
            border-bottom: 1px solid rgba(247, 190, 39, 0.1);
            padding-bottom: 12px;
        }

        .tabs-nav .tab-btn {
            background: none;
            border: none;
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: color 0.3s ease;
            padding-bottom: 12px;
            position: relative;
        }

        .tabs-nav .tab-btn::after {
            content: '';
            position: absolute;
            bottom: -13px;
            left: 0;
            width: 0;
            height: 3px;
            background: #f7be27;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .tabs-nav .tab-btn.active {
            color: #642f21;
        }

        .tabs-nav .tab-btn.active::after {
            width: 100%;
        }

        .tabs-nav .tab-btn:hover {
            color: #642f21;
        }

        .tabs-content {
            padding-top: 25px;
        }

        .tab-panel {
            display: none;
            animation: fadeSlide 0.4s ease forwards;
        }

        .tab-panel.active {
            display: block;
        }

        @keyframes fadeSlide {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tab-panel p {
            font-size: 1rem;
            color: #777;
            line-height: 1.9;
            margin-bottom: 16px;
        }

        .tab-panel ul {
            list-style: none;
            padding: 0;
        }

        .tab-panel ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: #777;
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .tab-panel ul li i {
            color: #f7be27;
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .tab-panel .review-item {
            padding: 16px 0;
            border-bottom: 1px solid rgba(247, 190, 39, 0.08);
        }

        .tab-panel .review-item:last-child {
            border-bottom: none;
        }

        .tab-panel .review-item .review-author {
            font-weight: 600;
            color: #642f21;
        }

        .tab-panel .review-item .review-date {
            font-size: 13px;
            color: #bbb;
            margin-left: 8px;
        }

        .tab-panel .review-item .review-text {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.7;
            margin-top: 4px;
        }

        /* =============================================
           РАНЕЕ ПРОСМОТРЕННЫЕ ПРОДУКТЫ
           ============================================= */
        .related-products {
            padding: 60px 0 80px;
            background: #fff;
        }

        .related-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .related-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 35px;
        }

        .related-header h2 {
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: clamp(1.6rem, 2.5vw, 2.2rem);
            color: #642f21;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .related-header .related-nav {
            display: flex;
            gap: 8px;
        }

        .related-header .related-nav button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(247, 190, 39, 0.15);
            background: transparent;
            color: #999;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .related-header .related-nav button:hover {
            border-color: #f7be27;
            color: #f7be27;
            background: rgba(247, 190, 39, 0.05);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .related-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(247, 190, 39, 0.06);
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .related-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border-color: rgba(247, 190, 39, 0.15);
        }

        .related-card-image {
            position: relative;
            overflow: hidden;
        }

        .related-card-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .related-card:hover .related-card-image img {
            transform: scale(1.05);
        }

        .related-card-image .related-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(44, 24, 16, 0.85);
            backdrop-filter: blur(10px);
            color: #f7be27;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .related-card-content {
            padding: 16px 18px 20px;
        }

        .related-card-content .related-code {
            font-size: 12px;
            color: #bbb;
            letter-spacing: 0.5px;
        }

        .related-card-content h3 {
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: 1.1rem;
            color: #642f21;
            margin: 6px 0 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .related-card-content .related-desc {
            font-size: 0.85rem;
            color: #888;
            line-height: 1.5;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-card-content .related-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .related-card-content .related-price {
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #e3000e;
        }

        .related-card-content .related-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(247, 190, 39, 0.08);
            border: 1px solid rgba(247, 190, 39, 0.12);
            border-radius: 30px;
            color: #642f21;
            font-family: 'Comfortaa', 'Oswald', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-card-content .related-btn:hover {
            background: #f7be27;
            border-color: #f7be27;
            box-shadow: 0 4px 20px rgba(247, 190, 39, 0.2);
        }

        /* =============================================
           АДАПТИВНОСТЬ
           ============================================= */
        @media (max-width: 1200px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 1024px) {
            .page-hero {
                height: 320px;
                max-height: 320px;
            }

            .page-hero-content {
                padding: 20px 30px;
            }

            .product-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .product-image img {
                height: 320px;
                max-width: 500px;
                margin: 0 auto;
            }

            .product-image {
                max-width: 500px;
                margin: 0 auto;
            }

            .product-tabs-wrapper {
                margin-top: 40px;
            }

            .product-tabs {
                padding: 25px 30px 30px;
            }

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

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

            .page-hero-content {
                padding: 20px 20px;
            }

            .breadcrumb-item {
                font-size: 12px;
            }

            .breadcrumb-item + .breadcrumb-item::before {
                padding: 0 8px;
            }

            .page-hero-title {
                font-size: clamp(1.6rem, 5vw, 2.2rem);
            }

            .product-section {
                padding: 40px 0 60px;
            }

            .product-image img {
                height: 280px;
                max-width: 100%;
            }

            .product-image {
                max-width: 100%;
            }

            .product-specs {
                flex-wrap: wrap;
                gap: 16px;
            }

            .product-actions {
                flex-direction: column;
            }

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

            .btn-wishlist {
                width: 48px;
                height: 48px;
            }

            .product-tabs-wrapper {
                margin-top: 30px;
                padding: 0 16px;
            }

            .product-tabs {
                padding: 20px 18px 25px;
                border-radius: 12px;
            }

            .tabs-nav {
                gap: 16px;
            }

            .tabs-nav .tab-btn {
                font-size: 14px;
            }

            .related-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .related-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .related-card-image img {
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .page-hero {
                height: 200px;
                max-height: 200px;
            }

            .page-hero-content {
                padding: 20px 16px;
            }

            .breadcrumb-item {
                font-size: 11px;
            }

            .breadcrumb-item + .breadcrumb-item::before {
                padding: 0 6px;
            }

            .product-image img {
                height: 220px;
            }

            .product-price .current {
                font-size: 1.6rem;
            }

            .product-price .old {
                font-size: 1.1rem;
            }

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

            .product-tabs {
                padding: 16px 14px 20px;
            }

            .tabs-nav .tab-btn {
                font-size: 12px;
            }

            .tab-panel p,
            .tab-panel ul li {
                font-size: 0.9rem;
            }

            .related-card-image img {
                height: 180px;
            }
        }