        /* ================= Reset & Base ================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            max-width: 1200px; /* Max width for eBay template */
            margin: 0 auto;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: white;
        }

        /* Color Theme Variables */
        :root {
            --primary-color: #d4af37;     /* Metallic Gold */
            --primary-dark: #b5952f;
            --secondary-color: #4a4a4a;   /* Gray */
            --dark-color: #1a1a1a;        /* Black */
            --border-color: #e0e0e0;
            --light-bg: #f9f9f9;
        }

        ul { list-style: none; }
        a { text-decoration: none; }

        /* ================= Header & Logo ================= */
        .template-header {
            text-align: center;
            padding: 20px 0;
            background: var(--dark-color);
            border-bottom: 3px solid var(--primary-color);
        }

        .logo-img {
            max-width: 280px;
            height: auto;
            display: inline-block;
        }

        /* ================= Navigation (CSS Dropdown) ================= */
        .main-nav {
            background: #fff;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 100; /* Keep above scrolling banners */
        }

        .nav-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap; /* Helps on smaller screens */
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 15px 25px;
            font-size: 14px;
            font-weight: bold;
            color: var(--dark-color);
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-color);
            background-color: var(--light-bg);
        }

        /* Dropdown Container */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 250px;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-top: 2px solid var(--primary-color);
            visibility: hidden;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 101;
        }

        /* Show Dropdown on Hover */
        .nav-item:hover .dropdown {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown li a {
            display: block;
            padding: 12px 20px;
            color: #555;
            font-size: 13px;
            border-bottom: 1px solid var(--light-bg);
            transition: background 0.2s;
        }

        .dropdown li a:hover {
            background: var(--light-bg);
            color: var(--primary-color);
            padding-left: 25px; /* Slight indent effect */
        }

        /* ================= Auto Scrolling Banners ================= */
        .banner-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            background: #000;
        }

        /* Using 4 banners + 1 clone of the first for a seamless loop */
        .banner-slider {
            display: flex;
            width: 500%; /* 5 slides * 100% */
            animation: scroller 20s infinite;
        }

        .banner-slide {
            width: 20%; /* 100 / 5 */
        }

        .banner-slide img {
            width: 100%;
            display: block;
            /* Based on your 3:2 ratio note, though object-fit handles varied sizes */
            aspect-ratio: 3/2; 
            object-fit: cover;
        }

        @keyframes scroller {
            0%, 20%   { transform: translateX(0); }
            25%, 45%  { transform: translateX(-20%); }
            50%, 70%  { transform: translateX(-40%); }
            75%, 95%  { transform: translateX(-60%); }
            100%      { transform: translateX(-80%); } /* Jumps back to 0 immediately after */
        }

        /* ================= Main Content Container ================= */
        .main-content {
            padding: 40px 20px;
        }
		
		.product-title-bar {
		text-align: center;
		padding: 0 20px 35px 20px;
		}
		.product-title-bar h1 {
			font-size: 26px;
			color: var(--dark-color);
			margin: 0;
			font-weight: 800;
			letter-spacing: 1px;
			border-bottom: 3px solid var(--primary-color);
			display: inline-block;
			padding-bottom: 12px;
		}
		@media (max-width: 768px) {
			.product-title-bar h1 {
				font-size: 20px;
				padding-bottom: 8px;
			}
		}

        /* ================= CSS Interactive Product Gallery (Bot Optimized) ================= */
        .product-gallery {
            max-width: 800px;
            margin: 0 auto 40px auto;
            position: relative;
        }
        /* 1. Hide the radio buttons */
        .product-gallery input[type="radio"] {
            display: none;
        }
        /* 2. Main Image Viewer Container */
        .product-gallery .main-image-viewer {
            width: 100%;
            height: 500px;
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
            background: white;
            position: relative;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* 3. The actual main images inside the viewer */
        .product-gallery .main-image-viewer img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease-in-out;
        }
        /* 4. Thumbnails Container */
        .product-gallery .thumbnail-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        /* 5. Thumbnail Labels (acts as buttons) */
        .product-gallery .thumbnail-container label {
            width: 100px;
            height: 100px;
            border: 2px solid var(--border-color);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            transition: all 0.3s;
            overflow: hidden;
        }
        /* 6. Thumbnail images inside labels */
        .product-gallery .thumbnail-container label img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        /* 7. Hover effect for thumbnails */
        .product-gallery .thumbnail-container label:hover {
            border-color: var(--secondary-color);
        }
        /* 8. The Logic: Show corresponding main image based on radio checked state (up to 12 images) */
        .product-gallery #img1:checked ~ .main-image-viewer #main-img1,
        .product-gallery #img2:checked ~ .main-image-viewer #main-img2,
        .product-gallery #img3:checked ~ .main-image-viewer #main-img3,
        .product-gallery #img4:checked ~ .main-image-viewer #main-img4,
        .product-gallery #img5:checked ~ .main-image-viewer #main-img5,
        .product-gallery #img6:checked ~ .main-image-viewer #main-img6,
        .product-gallery #img7:checked ~ .main-image-viewer #main-img7,
        .product-gallery #img8:checked ~ .main-image-viewer #main-img8,
        .product-gallery #img9:checked ~ .main-image-viewer #main-img9,
        .product-gallery #img10:checked ~ .main-image-viewer #main-img10,
        .product-gallery #img11:checked ~ .main-image-viewer #main-img11,
        .product-gallery #img12:checked ~ .main-image-viewer #main-img12 {
            opacity: 1;
            visibility: visible;
        }
        /* 9. The Logic: Highlight the active thumbnail */
        .product-gallery #img1:checked ~ .thumbnail-container label[for="img1"],
        .product-gallery #img2:checked ~ .thumbnail-container label[for="img2"],
        .product-gallery #img3:checked ~ .thumbnail-container label[for="img3"],
        .product-gallery #img4:checked ~ .thumbnail-container label[for="img4"],
        .product-gallery #img5:checked ~ .thumbnail-container label[for="img5"],
        .product-gallery #img6:checked ~ .thumbnail-container label[for="img6"],
        .product-gallery #img7:checked ~ .thumbnail-container label[for="img7"],
        .product-gallery #img8:checked ~ .thumbnail-container label[for="img8"],
        .product-gallery #img9:checked ~ .thumbnail-container label[for="img9"],
        .product-gallery #img10:checked ~ .thumbnail-container label[for="img10"],
        .product-gallery #img11:checked ~ .thumbnail-container label[for="img11"],
        .product-gallery #img12:checked ~ .thumbnail-container label[for="img12"] {
            border-color: var(--primary-color);
        }
        /* Mobile Adjustments for Gallery */
        @media (max-width: 768px) {
            .product-gallery .main-image-viewer { height: 350px; }
            .product-gallery .thumbnail-container label { width: 70px; height: 70px; }
        }

        /* ================= Product Data Table ================= */
        .specs-table-container {
            max-width: 800px;
            margin: 0 auto 40px auto;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .specs-table th, .specs-table td {
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            text-align: left;
        }

        .specs-table th {
            width: 30%;
            background-color: var(--light-bg);
            color: var(--secondary-color);
            font-weight: bold;
            text-transform: uppercase;
            font-size: 13px;
        }

        .specs-table td {
            color: #333;
        }
        
        /* Zebra striping for table rows */
        .specs-table tr:nth-child(even) {
            background-color: #fafafa;
        }

        /* ================= Policy Tabs (CSS Radio Hack) ================= */
        .policy-tabs {
            max-width: 1000px;
            margin: 0 auto 40px auto;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
        }

        .tab-radio {
            display: none;
        }

        .tab-header {
            display: flex;
            background: var(--dark-color);
            border-bottom: 2px solid var(--primary-color);
        }

        .tab-label {
            flex: 1;
            padding: 15px;
            text-align: center;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        
        .tab-label:last-child {
            border-right: none;
        }

        .tab-label:hover {
            background: rgba(255,255,255,0.1);
            color: var(--primary-color);
        }

        .tab-content-area {
            position: relative;
            background: white;
        }

        .tab-panel {
            display: none;
            padding: 30px;
            line-height: 1.6;
            color: #444;
            animation: fadeIn 0.4s;
        }

        .tab-panel h3 {
            color: var(--dark-color);
            margin-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
            display: inline-block;
            padding-bottom: 5px;
        }

        /* Show content when radio checked */
        #tab-about:checked ~ .tab-header label[for="tab-about"],
        #tab-return:checked ~ .tab-header label[for="tab-return"],
        #tab-shipping:checked ~ .tab-header label[for="tab-shipping"],
        #tab-payment:checked ~ .tab-header label[for="tab-payment"] {
            background: var(--primary-color);
            color: var(--dark-color);
        }

        #tab-about:checked ~ .tab-content-area #panel-about,
        #tab-return:checked ~ .tab-content-area #panel-return,
        #tab-shipping:checked ~ .tab-content-area #panel-shipping,
        #tab-payment:checked ~ .tab-content-area #panel-payment {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ================= Footer ================= */
        .template-footer {
            background: var(--dark-color);
            color: white;
            text-align: center;
            padding: 30px 20px;
            border-top: 4px solid var(--primary-color);
        }

        .footer-links {
            margin-top: 15px;
        }

        .footer-links a {
            color: #aaa;
            margin: 0 10px;
            font-size: 13px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .nav-link { padding: 10px 15px; font-size: 12px; }
            .dropdown { width: 100%; position: static; box-shadow: none; border: none; display: none; }
            .nav-item:hover .dropdown { display: block; background: #f0f0f0; } /* Change behavior on mobile */
            
            /* Hide Banner on Mobile */
            .banner-container { display: none; }

			/* Hide Banner on Mobile */
            .main-nav { display: none; }
            
            .main-image-viewer { height: 350px; }
            .thumb-label { width: 70px; height: 70px; }
            
            .tab-header { flex-direction: column; }
            .tab-label { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
        }