        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
            padding: 20px;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .product-template10 {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .product-template10:hover {
            transform: translateY(-5px);
        }
        .product-item {
            position: relative;
        }
        .product-thumb {
            position: relative;
            overflow: hidden;
        }
        .product-thumb img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }
        .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: #FF5722;
        }
        .featured-badge {
            background: #FFC107;
        }
        .discount-badge {
            background: #4CAF50;
        }
        .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-template10:hover .button-group {
            right: 10px;
        }
        .button-group a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #FF5722;
            color: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .button-group a:hover {
            background: #E64A19;
            transform: scale(1.1);
        }
        .box-cart {
            position: absolute;
            bottom: 10px;
            right: 85px;
        }
        .btn-cart {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: #333;
            color: #fff;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 13px;
            transition: background 0.3s ease;
        }
        .btn-cart:hover {
            background: #555;
            color:white;
        }
        .product-caption {
            padding: 15px;
        }
        .product-identity {
            margin-bottom: 10px;
        }
        .ratings {
            margin-bottom: 10px;
        }
        .ratings i {
            color: #FFC107;
            font-size: 12px;
        }
        .product-title {
            font-size: 16px;
            margin-bottom: 10px;
        }
        .product-title a {
            color: #333;
            text-decoration: none;
            font-weight: 700;
        }
        .product-title a:hover {
            color: #FF5722;
        }
       
        .product-price {
            font-size: 18px;
            font-weight: 700;
            color: #FF5722;
        }
        .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;
        }
