 :root {
            --primary-yellow: #f8b610;
            --dark-bg: #1a1a1a;
            --text-light: #666;
            --card-bg: #fff;
        }

       

        /* Grid Layout */
        .shop-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
            max-width: 1280px;
            padding: 20px;
            margin: 0 auto;
        }
        a{
            text-decoration: none;
        }

        /* Card Styling */
        .product-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Hover State: Background changes to Yellow */
        .product-card:hover {
            background-color: var(--primary-yellow);
        }

        /* Wishlist Icon */
        .wishlist-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #fff;
            color: #111;
            width: 35px;
            height: 35px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        /* Image Styling */
        .product-img {
            width: 222px;
            height: 180px;
            object-fit: contain;
            margin-bottom: -5px;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }

        /* Add to Cart Button (Hidden by default) */
        .add-cart-btn {
            background: var(--dark-bg);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 12px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .product-card:hover .add-cart-btn {
            opacity: 1;
            transform: translateY(0);
        }

        /* Pricing & Badge */
        .price-row {
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .discount-badge {
            background: var(--primary-yellow);
            color: #111;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 3px;
        }

        .product-card:hover .discount-badge {
            background: white;
        }

        .current-price {
            font-weight: 700;
            color: #d11d1d;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Text Styling */
        .product-name {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            margin: 5px 0 10px 0;
            color: #111;
        }

        .stars {
            color: var(--primary-yellow);
            font-size: 0.8rem;
        }

        .product-card:hover .stars {
            color: #fff;
        }

        /* Responsiveness */
        @media (max-width: 600px) {
            .shop-container {
                grid-template-columns: 1fr;
            }
        }