        /* Product Page */
        .product-page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Overview Section */
        .m-row.overview {
            margin-bottom: 80px;
        }

        .m-row .title {
            text-align: center;
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 13px;
            color: #fff;
            background: #fc4c02;
            padding: 1px 40px;
            border-radius: 8px;
        }

        /* Overview Content - Side by Side Layout */
        .overview-content {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        /* Swiper/Carousel Container - Left Side (Wider) */
        .swiper-wrap {
            flex: 2;
            position: relative;
        }

        .layui-carousel {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            background: #fff;
            border-radius: 8px;
        }

        .carousel-item {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .carousel-item>div {
            min-width: 100%;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            flex-shrink: 0;
            box-sizing: border-box;
        }

        .car-cover {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .car-cover:hover {
            transform: scale(1.02);
        }

        /* Image Modal/Popup */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            justify-content: center;
            align-items: center;
        }

        .image-modal.active {
            display: flex;
        }

        .modal-content {
            max-width: 75vw;
            max-height: 75vh;
            width: auto;
            height: auto;
            object-fit: contain;
            animation: zoomIn 0.3s;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.7);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #333;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
        }

        .modal-close:hover {
            color: #e62e31;
        }

        /* Carousel Arrows - Hidden */
        .layui-carousel-arrow {
            display: none;
        }

        /* Carousel Indicators - Hidden */
        .layui-carousel-ind {
            display: none;
        }

        /* Right Side - Thumbnails & Color Options */
        .overview-right-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Thumbnails Strip - Vertical on Right */
        .thumbs-container {
            width: 100%;
        }

        .thumbs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .thumbs::-webkit-scrollbar {
            height: 8px;
        }

        .thumbs::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .thumbs::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        .thumbs::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .thumbs-item {
            flex-shrink: 0;
            width: 100%;
            aspect-ratio: 1 / 1;
            cursor: pointer;
            border: 3px solid transparent;
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.3s;
            background: #f5f5f5;
            padding: 5px;
            box-sizing: border-box;
        }

        .thumbs-item:hover {
            border-color: #ccc;
            transform: translateY(-3px);
        }

        .thumbs-item.current-thumb {
            border-color: #e62e31;
            box-shadow: 0 0 10px rgba(230, 46, 49, 0.3);
        }

        .thumbs-item img {
            width: 100%;
            height: 100%;
            aspect-ratio: 1 / 1;
            object-fit: contain;
            display: block;
            background: #f5f5f5;
        }

        /* Color Options - Below Thumbnails */
        .overview-content-right {
            width: 100%;
        }

        /* Color Options */
        .color-options {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            width: 100%;
        }

        .color-options p {
            margin: 0 0 10px 0;
            font-weight: 600;
            color: #333;
        }

        .radio-color {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: var(--color, #ed6f0a);
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px #e62e31;
        }

        /* Description */
        .desc {
            background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
            padding: 40px;
            border-radius: 12px;
            margin-top: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e0e0e0;
            width: 100%;
        }

        .desc p {
            margin: 0 0 30px 0;
            font-size: 22px;
            font-weight: 700;
            color: #333;
            line-height: 1.6;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }

        .desc p::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #e62e31;
            border-radius: 2px;
        }

        .desc .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .desc .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: #fff;
            border-radius: 8px;
            transition: all 0.3s;
            border: 1px solid #f0f0f0;
        }

        .desc .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(230, 46, 49, 0.15);
            border-color: #e62e31;
        }

        .desc .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #e62e31 0%, #ff4444 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .desc .feature-icon::before {
            content: '✓';
            color: #fff;
            font-size: 20px;
            font-weight: bold;
        }

        .desc .feature-text {
            color: #555;
            font-size: 15px;
            line-height: 1.5;
            font-weight: 500;
        }

        /* Features Section */
        .features-section {
            margin: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 50px;
            color: #333;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-box {
            text-align: center;
        }

        .feature-box img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 20px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .feature-box img:hover {
            transform: scale(1.02);
        }

        .feature-box h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
        }

        .feature-box h4 {
            font-size: 18px;
            color: #e62e31;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-box p {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
        }

        /* Safety Notice */
        .safety-notice {
            background: #fff9e6;
            border-left: 4px solid #e62e31;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 4px;
        }

        .safety-notice p {
            margin: 0;
            line-height: 1.8;
            color: #333;
        }

        /* Specifications */
        .specifications-section {
            margin: 80px 0;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .spec-category {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .spec-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .spec-category-header {
            background: #fc4c02;
            color: #fff;
            padding: 18px 20px;
            font-size: 20px;
            font-weight: 700;
            text-align: center;
        }

        .spec-items {
            padding: 20px;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-weight: 600;
            color: #333;
            font-size: 15px;
        }

        .spec-value {
            color: #666;
            font-size: 15px;
            text-align: right;
        }

        /* Old table styles - hidden */
        .spec-table-container {
            display: none;
        }

        .spec-table {
            display: none;
        }

        /* Additional Info Section */
        .additional-info {
            margin-top: 40px;
            background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .additional-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
        }

        .info-item {
            padding: 30px;
            border-right: 1px solid #e0e0e0;
            text-align: center;
        }

        .info-item:last-child {
            border-right: none;
        }

        .info-label {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .info-value {
            font-size: 24px;
            color: #333;
            font-weight: 700;
        }

        /* Distributor */
        .distributor-section {
            margin: 80px 0;
        }

        .distributor-box {
            background: #f9f9f9;
            padding: 50px;
            text-align: center;
            border-radius: 8px;
        }

        .distributor-box h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #333;
        }

        .distributor-box p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .distributor-box a {
            display: inline-block;
            background: #e62e31;
            color: #fff;
            padding: 15px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .distributor-box a:hover {
            background: #c41e21;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .overview-content {
                flex-direction: column;
            }

            .thumbs {
                grid-template-columns: repeat(4, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .spec-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .product-page {
                padding: 20px 10px;
            }

            .layui-carousel {
                height: auto !important;
                min-height: auto !important;
                /* Allow it to be purely content driven */
                width: 100% !important;
            }

            .carousel-item {
                height: auto !important;
                display: flex;
                width: 100% !important;
                /* Ensure the flex container fills parent */
            }

            .carousel-item>div {
                padding: 0 !important;
                /* Remove all padding to test full width */
                height: auto !important;
                width: 100vw !important;
                /* Force to viewport width on mobile (within container) */
                /* Actually 100% of parent is better, but let's try 100% with flex-basis */
                flex: 0 0 100% !important;
                max-width: 100% !important;
                box-sizing: border-box;
            }

            .car-cover {
                width: 100% !important;
                height: auto !important;
                display: block !important;
                object-fit: cover !important;
                /* Try cover to force fill if aspect ratio differs */
                /* Or stay with contain but ensure width is forced */
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .spec-grid {
                grid-template-columns: 1fr;
            }

            .spec-item {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .spec-label {
                flex: 1 0 50%;
                /* Allow label to take space but not full width unnecessarily */
                max-width: 100%;
                margin-bottom: 2px;
            }

            .spec-value {
                flex: 1 0 40%;
                text-align: right;
            }

            /* If screen is very small, stack them */
            @media (max-width: 400px) {
                .spec-item {
                    flex-direction: column;
                    align-items: flex-start;
                }

                .spec-value {
                    text-align: left;
                    width: 100%;
                }
            }

            .additional-info-grid {
                grid-template-columns: 1fr;
            }

            .info-item {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
                padding: 20px;
            }

            .info-item:last-child {
                border-bottom: none;
            }

            .thumbs-item {
                width: auto;
                flex: 1;
                min-width: 60px;
            }

            .thumbs {
                display: flex;
                /* Use flex for thumbnails on mobile */
                overflow-x: auto;
                gap: 10px;
            }

            .thumbs-item img {
                height: auto;
                width: 100%;
            }

            .m-row .title {
                font-size: 24px;
                padding: 5px 20px;
            }

            .section-title {
                font-size: 26px;
                margin-bottom: 30px;
            }

            .desc {
                padding: 20px;
            }

            .desc p {
                font-size: 18px;
            }

            /* Ensure overview content stacks */
            .overview-content {
                flex-direction: column;
            }

            .swiper-wrap,
            .overview-right-side {
                width: 100%;
            }
        }

        /* Contained Image Style for Feature Boxes (Feature request: S150) */
        .feature-box img.contained-image {
            background-color: #f5f5f5;
            padding: 40px;
            /* Shrinks the image content */
            box-sizing: border-box;
            object-fit: contain;
            aspect-ratio: 4/3;
            /* Enforce aspect ratio */
        }