    
        .product-container {
            display: flex;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: space-around;
        }
        .product-template1 {
            background: #ffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-template1:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        .product-item {
            position: relative;
        }
        .product-thumb {
            position: relative;
            overflow: hidden;
        }
        .product-thumb img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .product-template1:hover .product-thumb img {
            transform: scale(1.05);
        }
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 10;
        }
        .product-label {
            display: inline-block;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            color: #fff;
            margin-right: 5px;
            border-radius: 3px;
        }
        .new-badge {
            background: #4CAF50;
        }
        .featured-badge {
            background: #FF9800;
        }
        .discount-badge {
            background: #f44336;
        }
        .outofstock-badge {
            background: #9E9E9E;
        }
        .button-group {
            position: absolute;
            top: 50%;
            right: -50px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: right 0.3s ease;
        }
        .product-template1:hover .button-group {
            right: 10px;
        }
        .button-group a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 50%;
            color: #333;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .button-group a:hover {
            background: #333;
            color: #fff;
        }
        .box-cart {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            padding: 5px;
            background: rgba(255,255,255,0.95);
            transition: bottom 0.3s ease;
        }
        .product-template1:hover .box-cart {
            bottom: 0;
        }
        .btn-cart {
            display: block;
            width: 91%;
            padding: 12px;
            background: #333;
            color: #fff;
            text-align: center;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .btn-cart:hover {
            background: #555;
        }
        .product-caption {
            padding: 15px;
            padding-top:5px;
        }
        .product-category {
            font-size: 12px;
            color: #888;
            margin-bottom: 5px;
        }
        .product-category a {
            color: #888;
            text-decoration: none;
        }
        .product-category a:hover {
            color: #333;
        }
        .product-title {
            font-size: 16px;
            margin-bottom: 10px;
        }
        .product-title a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
        }
        .product-title a:hover {
            color: #666;
        }
        .ratings {
            margin-bottom: 10px;
        }
        .ratings i {
            color: #FFC107;
            font-size: 12px;
        }
        .price-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .product-price {
            font-size: 18px;
            font-weight: 700;
            color: #333;
        }
        .price-old del {
            color: #999;
            font-size: 14px;
        }
        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        .header h1 {
            color: #333;
            margin-bottom: 10px;
        }
        .header p {
            color: #666;
        }
