        * {
            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-template13 {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .product-template13:hover {
            transform: translateY(-5px);
        }
        .product-item {
            position: relative;
        }
        .product-thumb {
            position: relative;
            overflow: hidden;
        }
        .product-thumb img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .product-template13: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: #8BC34A;
        }
        .featured-badge {
            background: #FF9800;
        }
        .discount-badge {
            background: #E91E63;
        }
        .outofstock-badge {
            background: #9E9E9E;
        }
        .hover-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6), transparent);
            padding: 80px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .product-template13:hover .hover-content {
            transform: translateY(0);
        }
        .product-caption {
            margin-bottom: 15px;
        }
        .product-title {
            font-size: 16px;
            margin-bottom: 8px;
        }
        .product-title a {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
        }
        .product-title a:hover {
            color: #8BC34A;
        }
        .product-identity {
            margin-bottom: 10px;
        }
        .product-category {
            font-size: 12px;
            color: #ccc;
            margin-bottom: 5px;
        }
        .product-category a {
            color: #ccc;
            text-decoration: none;
        }
        .product-category a:hover {
            color: #8BC34A;
        }
        .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: #8BC34A;
        }
        .price-old del {
            color: #ccc;
            font-size: 14px;
        }
        .button-group {
            display: flex;
            gap: 8px;
            margin-bottom: 10px;
        }
        .button-group a {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }
        .button-group a:hover {
            background: #8BC34A;
            color: #fff;
        }
        .box-cart {
            margin-top: 10px;
        }
        .btn-cart {
            display: block;
            width: 100%;
            padding: 10px;
            background: #8BC34A;
            color: #fff;
            text-align: center;
            text-decoration: none;
            border-radius: 20px;
            font-weight: 600;
            font-size: 13px;
            transition: background 0.3s ease;
        }
        .btn-cart:hover {
            background: #7CB342;
        }
        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        .header h1 {
            color: #333;
            margin-bottom: 10px;
        }
        .header p {
            color: #666;
        }
