 .category-card {
        background: #fff;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .category-img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }

    .product-card {
        background: #fff;
        border-radius: 15px;
        transition: 0.3s;
    }

    .product-card:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .kariger-card img {
        transition: 0.3s;
    }

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

    .category-pill {
        transition: all 0.3s ease;
    }

    .category-pill:hover {
        background-color: #000;
        color: #fff;
        transform: translateY(-2px);
    }

    .product-card {
        transition: all 0.3s ease;
        border: 1px solid #f1f1f1;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .product-img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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

    .product-card {
        position: relative;
        transition: all 0.3s ease;
        border: 1px solid #f1f1f1;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .product-img-wrapper {
        overflow: hidden;
    }

    .product-img {
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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

    .badge {
        font-size: 12px;
        padding: 5px 8px;
        border-radius: 6px;
    }

    /* Category Pills */
    .category-pill {
        border-radius: 50px;
        border: 1px solid #ddd;
        background: #fff;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .category-pill:hover {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
        transform: translateY(-2px);
    }

    /* Product Card */
    .product-card {
        background: #fff;
        border-radius: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    /* Image Wrapper */
    .product-img-wrapper {
        width: 100%;
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-img {
        max-height: 140px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

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

    /* Shop Link */
    .shop-link {
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        color: #0d6efd;
        transition: all 0.3s ease;
    }

    .shop-link:hover {
        letter-spacing: 0.5px;
        color: #0a58ca;
    }

    /* Card */
    .kariger-card {
        background: #fff;
        padding: 25px 20px;
        border-radius: 18px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .kariger-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    /* Image Wrapper */
    .kariger-img-wrapper {
        width: 110px;
        height: 110px;
        margin: 0 auto;
        border-radius: 50%;
        padding: 4px;
        background: linear-gradient(135deg, #0d6efd, #6ea8fe);
    }

    /* Image */
    .kariger-img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        background: #fff;
        transition: transform 0.3s ease;
    }

    .kariger-card:hover .kariger-img {
        transform: scale(1.08);
    }

    /* Name */
    .kariger-card h6 {
        font-size: 15px;
    }

    /* Link */
    .kariger-link {
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        color: #0d6efd;
        transition: all 0.3s ease;
    }

    .kariger-link:hover {
        color: #0a58ca;
        letter-spacing: 0.5px;
    }

    /* Optional subtle top glow */
    .kariger-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
        opacity: 0;
        transition: 0.4s;
    }

    .kariger-card:hover::before {
        opacity: 1;
    }

    /* Card */
    .product-card {
        background: #fff;
        border-radius: 18px;
        padding: 18px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    /* Badge */
    .product-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #dc3545;
        color: #fff;
        font-size: 12px;
        padding: 4px 10px;
        border-radius: 50px;
        font-weight: 600;
    }

    /* Wishlist */
    .wishlist-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        border: none;
        background: #fff;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: 0.3s;
    }

    .wishlist-btn:hover {
        background: #000;
        color: #fff;
    }

    /* Image */
    .product-img-wrapper {
        height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-img {
        max-height: 150px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

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

    /* Info */
    .product-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    /* Price */
    .product-price {
        margin-bottom: 8px;
    }

    .current-price {
        font-weight: 700;
        font-size: 16px;
        color: #000;
    }

    .old-price {
        margin-left: 6px;
        font-size: 13px;
        text-decoration: line-through;
        color: #999;
    }

    /* Button */
    .add-cart-btn {
        background: #000;
        color: #fff;
        border-radius: 50px;
        font-size: 14px;
        padding: 8px;
        transition: all 0.3s ease;
    }

    .add-cart-btn:hover {
        background: #333;
    }

    /* Hover reveal effect */
    .product-card:hover .add-cart-btn {
        transform: scale(1.05);
    }

    /* Card */
    .review-card {
        background: #f9f9f9;
        border-radius: 18px;
        padding: 25px;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        height: 100%;
    }

    .review-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        background: #fff;
    }

    /* Quote */
    .quote-icon {
        font-size: 40px;
        color: #0d6efd;
        line-height: 1;
        margin-bottom: 10px;
    }

    /* Text */
    .review-text {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
        min-height: 70px;
    }

    /* Rating */
    .review-rating {
        color: #ffc107;
        font-size: 16px;
        letter-spacing: 2px;
    }

    /* User */
    .review-user-img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* Name */
    .review-user h6 {
        font-size: 14px;
        font-weight: 600;
    }