/* --- GENERAL PAGE STYLES --- */
        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 20px;
        }

        .entry-content {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border-radius: 8px;
        }

        h1, h2, h3 { color: #111; }
        a { color: #0073aa; text-decoration: none; }
        a:hover { text-decoration: underline; }

        /* --- BLACK FRIDAY BANNER --- */
        .promo-banner {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            color: #ffffff;
            text-align: center;
            padding: 15px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        .promo-banner::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            animation: shine 3s infinite;
        }
        .promo-text { font-size: 1.2rem; font-weight: bold; margin: 0; }
        .promo-text .highlight { color: #ffd700; text-transform: uppercase; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        @keyframes shine { 0% { transform: translate(-100%, -100%) rotate(45deg); } 100% { transform: translate(100%, 100%) rotate(45deg); } }

        /* --- TOC --- */
        #toc_container {
            background: #f9f9f9;
            border: 1px solid #ddd;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 4px;
        }
        .toc_title { font-weight: 700; text-align: center; margin-bottom: 10px; }
        .toc_list { list-style: none; padding: 0; }
        .toc_list li { margin-bottom: 5px; }
        .toc_list a { text-decoration: none; color: #333; }
        .toc_list a:hover { color: #0073aa; }

        /* --- CAROUSEL (AT A GLANCE) --- */
        .product-carousel-container {
            overflow-x: auto;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }
        .products-grid {
            display: flex;
            gap: 20px;
            padding: 10px;
        }
        .product-card {
            min-width: 240px;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .product-card img { max-width: 100%; height: auto; max-height: 150px; object-fit: contain; }
        .product-title { font-size: 1rem; margin: 10px 0 5px; }
        .product-subtitle { font-size: 0.85rem; color: #e67e22; font-weight: bold; margin-bottom: 10px; text-transform: uppercase; }
        .product-features { list-style: none; padding: 0; font-size: 0.8rem; color: #666; margin-bottom: 15px; }
        .product-features li { margin-bottom: 3px; }
        .amazon-link {
            background: #FF9900; color: white; padding: 8px 15px;
            border-radius: 4px; text-decoration: none; font-size: 0.9rem; font-weight: bold;
        }
        .amazon-link:hover { background: #e68a00; text-decoration: none; }

        /* --- PRODUCT REVIEW WIDGET --- */
        .prod-review-widget { margin-bottom: 50px; }
        .review-card { border: 1px solid #e1e1e1; border-radius: 8px; overflow: hidden; background: #fff; }
        
        .review-header { background: #f4f8fb; padding: 20px; text-align: center; border-bottom: 1px solid #eee; }
        .review-best { color: #e67e22; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 5px; }
        .review-title { margin: 0; font-size: 1.8rem; }

        .content-wrapper { display: flex; flex-wrap: wrap; padding: 20px; gap: 30px; align-items: center; }
        .image-container { flex: 1; min-width: 250px; text-align: center; }
        .image-container img { max-width: 100%; height: auto; }

        .details-container { flex: 1; min-width: 250px; }
        .specs-container { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .spec-item { background: #f9f9f9; padding: 10px; border-radius: 4px; }
        .spec-label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
        .spec-value { font-weight: 600; color: #333; }

        .cta-button, .amazon-button {
            display: flex; justify-content: space-between; align-items: center;
            background: #FF9900; color: #fff; padding: 12px 20px;
            border-radius: 5px; font-weight: bold; text-decoration: none;
            transition: background 0.2s; text-align: center;
        }
        .cta-button:hover, .amazon-button:hover { background: #e68a00; text-decoration: none; }
        .amazon-button-container { padding: 20px; border-top: 1px solid #eee; }

        /* --- PROS AND CONS --- */
        .pros-cons-content { background: #fafafa; padding: 20px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
        .pros-cons { display: flex; flex-wrap: wrap; gap: 20px; }
        .pros, .cons { flex: 1; min-width: 250px; }
        .pros h3 { color: #27ae60; font-size: 1rem; border-bottom: 2px solid #27ae60; padding-bottom: 10px; margin-top: 0; }
        .cons h3 { color: #c0392b; font-size: 1rem; border-bottom: 2px solid #c0392b; padding-bottom: 10px; margin-top: 0; }
        
        .pro-item, .con-item { display: flex; gap: 10px; margin-bottom: 8px; font-size: 0.95rem; }
        .pro-icon { color: #27ae60; font-weight: bold; }
        .con-icon { color: #c0392b; font-weight: bold; }

        /* --- DESCRIPTION & GALLERY --- */
        .review-section { padding: 20px; }
        .review-content { margin-bottom: 20px; }
        
        .gallery-section { margin-top: 30px; border: 1px solid #eee; border-radius: 8px; padding: 10px; }
        .main-image-container { position: relative; text-align: center; background: #fff; height: 300px; display: flex; align-items: center; justify-content: center; }
        .main-image { max-height: 100%; max-width: 100%; object-fit: contain; }
        
        .nav-button {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(0,0,0,0.5); color: white; border: none;
            padding: 10px 15px; cursor: pointer; font-size: 18px; border-radius: 50%;
        }
        .nav-button.prev { left: 10px; }
        .nav-button.next { right: 10px; }
        .nav-button:hover { background: rgba(0,0,0,0.8); }

        .caption { text-align: center; font-size: 0.85rem; color: #777; margin: 10px 0; font-style: italic; }

        .thumbnails { display: flex; justify-content: center; gap: 10px; overflow-x: auto; padding: 5px; }
        .thumbnail-container { border: 2px solid transparent; border-radius: 4px; padding: 2px; }
        .thumbnail-container:hover, .thumbnail-container.active { border-color: #0073aa; }
        .thumbnail { width: 60px; height: 60px; object-fit: cover; display: block; }

        /* --- FAQ --- */
        .faq-section h3 { margin-top: 20px; font-size: 1.1rem; color: #2c3e50; }
        .faq-section p { margin-bottom: 15px; color: #555; }

        /* --- RESPONSIVE --- */
        @media (max-width: 600px) {
            .specs-container { grid-template-columns: 1fr; }
            .pros-cons { flex-direction: column; }
        }