* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .product-carousel-container {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: transparent;
            overflow-x: hidden;
        }

        .product-carousel-container .container {
            width: 100%;
            position: relative;
        }

        .product-carousel-container .products-wrapper {
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .product-carousel-container .products-wrapper::-webkit-scrollbar {
            display: none;
        }

        .product-carousel-container .products-grid {
            display: flex;
            gap: 8px;
            padding: 12px;
            min-width: max-content;
            transition: transform 0.3s ease;
        }

        .product-carousel-container .product-card {
            background: white;
            border-radius: 12px;
            padding: 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-width: 200px;
            max-width: 200px;
        }

        /* Exactly 4 products per page at 800px+ */
        @media (min-width: 800px) {
            .product-carousel-container .products-grid {
                max-width: calc(4 * 200px + 3 * 8px + 24px); /* 4 cards + 3 gaps + padding */
            }
            
            .product-carousel-container .product-card {
                min-width: 200px;
                max-width: 200px;
                flex: 0 0 200px;
            }
        }

        .product-carousel-container .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .product-carousel-container .product-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 0;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-carousel-container .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-carousel-container .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-carousel-container .product-content {
            padding: 16px 12px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-carousel-container .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .product-carousel-container .product-subtitle {
            font-size: 14px;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 8px;
        }

        .product-carousel-container .product-description {
            font-size: 11px;
            color: #718096;
            line-height: 1.4;
            margin-bottom: 12px;
            flex-grow: 1;
        }

        .product-carousel-container ul li,
        .product-carousel-container ol li {
            font-size: 85%;
        }

        .product-carousel-container .price-section {
            margin-top: auto;
        }

        .product-carousel-container .amazon-link {
            display: inline-block;
            background: linear-gradient(135deg, #ff9500 0%, #ff6b35 100%);
            color: white;
            padding: 10px 18px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 12px rgba(255, 149, 0, 0.3);
        }

        .product-carousel-container .amazon-link:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
            background: linear-gradient(135deg, #ff6b35 0%, #ff9500 100%);
        }

        .product-carousel-container .navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            padding: 16px;
        }

        .product-carousel-container .nav-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-carousel-container .nav-dot.active {
            background: #667eea;
            transform: scale(1.3);
        }

        .product-carousel-container .nav-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            font-size: 18px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .product-carousel-container .nav-arrow:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        }

        .product-carousel-container .nav-arrow:active {
            transform: scale(0.95);
        }

        .product-carousel-container .nav-arrow:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            background: #e2e8f0;
            color: #a0aec0;
            box-shadow: none;
            transform: none;
        }

        .product-carousel-container .nav-arrow:disabled:hover {
            transform: none;
            box-shadow: none;
        }

        /* Enhanced arrow icons */
        .product-carousel-container .nav-arrow::before {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
        }

        .product-carousel-container .nav-arrow.prev::before {
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-right: 8px solid currentColor;
            margin-right: 2px;
        }

        .product-carousel-container .nav-arrow.next::before {
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 8px solid currentColor;
            margin-left: 2px;
        }

        @media (max-width: 768px) {
            .product-carousel-container .product-card {
                min-width: 180px;
                max-width: 180px;
            }
            
            .product-carousel-container .product-content {
                padding: 14px 10px;
            }
            
            .product-carousel-container .products-grid {
                gap: 6px;
                padding: 10px;
            }

            .product-carousel-container .product-image {
                height: 160px;
            }
        }

        @media (max-width: 480px) {
            .product-carousel-container .product-card {
                min-width: 160px;
                max-width: 160px;
            }
            
            .product-carousel-container .products-grid {
                gap: 5px;
                padding: 8px;
            }

            .product-carousel-container .product-image {
                height: 140px;
            }

            .product-carousel-container .product-content {
                padding: 12px 8px;
            }

            .product-carousel-container .nav-arrow {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }
        }

