    /* === PRODUCT CARD - OVERLAY STYLE === */
    .product-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background: #f5f5f5;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .product-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    /* Image Container - 3:4 Aspect Ratio */
    .product-card-image {
        position: relative;
        aspect-ratio: 3/4;
        overflow: hidden;
        background: #f0f0f0;
    }

    /* Shimmer skeleton while image loads */
    .product-card-image::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: imgShimmer 1.5s ease-in-out infinite;
    }

    .product-card-image.img-loaded::after {
        display: none;
    }

    @keyframes imgShimmer {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    .product-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-card-image img.primary-img,
    .product-card-image img.hover-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.4s ease;
    }

    .product-card-image img.primary-img {
        opacity: 0;
        z-index: 1;
    }

    .product-card-image.img-loaded img.primary-img {
        opacity: 1;
    }

    .product-card-image img.hover-img {
        opacity: 0;
        z-index: 2;
    }

    .product-card:hover .product-card-image.img-loaded img.primary-img {
        opacity: 0;
    }

    .product-card:hover .product-card-image.img-loaded img.hover-img {
        opacity: 1;
    }

    /* No Image Placeholder */
    .product-card-image .no-image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
        color: #ccc;
        font-size: 48px;
    }

    /* Purity Badge - Ribbon Flag Style */
    .purity-badge {
        position: absolute;
        top: 0;
        left: 0;
        background: #222222;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 8px 10px 14px;
        z-index: 3;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        border-radius: 0;
        line-height: 1;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 50% 100%, 0 calc(100% - 8px));
    }

    /* Card Action Buttons - Top Right (Vertical Stack) */
    .card-actions {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 3;
    }

    .card-action-btn {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        backdrop-filter: blur(4px);
    }

    .card-action-btn:hover {
        transform: scale(1.1);
        background: #fff;
    }

    .card-action-btn:active {
        transform: scale(0.95);
    }

    /* Wishlist Button */
    .wishlist-btn {
        position: relative;
        top: auto;
        right: auto;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 3;
        transition: all 0.2s ease;
        backdrop-filter: blur(4px);
    }

    .wishlist-btn i {
        font-size: 16px;
        color: #ef4444;
        transition: transform 0.2s ease;
    }

    .wishlist-btn:hover {
        transform: scale(1.1);
        background: #fff;
    }

    .wishlist-btn:hover i {
        transform: scale(1.1);
    }

    .wishlist-btn.wishlisted {
        background: #ef4444;
    }

    .wishlist-btn.wishlisted i {
        color: #fff;
    }

    /* Share Button */
    .card-share-btn i {
        font-size: 14px;
        color: #374151;
        transition: transform 0.2s ease;
    }

    .card-share-btn:hover {
        background: #1e3a5f;
    }

    .card-share-btn:hover i {
        color: #fff;
    }

    .card-share-btn.shared {
        background: #22c55e;
    }

    .card-share-btn.shared i {
        color: #fff;
    }

    /* Discount Badge - Below Actions */
    .discount-badge {
        position: absolute;
        top: 92px;
        right: 10px;
        background: #22c55e;
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        padding: 3px 7px;
        border-radius: 4px;
        z-index: 3;
    }

    /* Info Overlay - Bottom Gradient */
    .card-info-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 50px 12px 12px 12px;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0) 100%
        );
        color: #fff;
        z-index: 2;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Brand Name */
    .card-info-overlay .brand-name {
        display: block;
        font-size: 9px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 3px;
    }

    /* Product Name - 2 lines max */
    .card-info-overlay .product-name {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.3;
        margin: 0 0 4px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #fff;
    }

    /* Rating */
    .card-info-overlay .card-rating {
        display: flex;
        align-items: center;
        gap: 3px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 4px;
    }

    .card-info-overlay .card-rating i {
        color: #fbbf24;
        font-size: 9px;
    }

    .card-info-overlay .card-rating .rating-count {
        color: rgba(255, 255, 255, 0.65);
        font-size: 9px;
    }

    /* Price */
    .card-info-overlay .card-price {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .card-info-overlay .current-price {
        font-size: 13px;
        font-weight: 700;
        color: #fff;
    }

    .card-info-overlay .old-price {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.55);
        text-decoration: line-through;
    }

    .card-info-overlay .out-of-stock {
        font-size: 12px;
        color: #fca5a5;
        font-weight: 600;
    }

    /* === TABLET RESPONSIVE === */
    @media (max-width: 991px) {
        .product-card:hover {
            transform: none;
        }

        .product-card:hover .product-card-image.img-loaded img.primary-img {
            opacity: 1;
        }

        .product-card:hover .product-card-image.img-loaded img.hover-img {
            opacity: 0;
        }

        .product-card:active {
            transform: scale(0.98);
        }
    }

    /* === MOBILE RESPONSIVE === */
    @media (max-width: 767px) {
        .product-card {
            border-radius: 10px;
        }

        .purity-badge {
            font-size: 8px !important;
            padding: 5px 6px 10px !important;
            top: 0;
            left: 0;
        }

        .card-actions {
            top: 5px;
            right: 5px;
            gap: 4px;
        }

        .card-action-btn {
            width: 28px;
            height: 28px;
        }

        .wishlist-btn {
            width: 28px;
            height: 28px;
        }

        .wishlist-btn i {
            font-size: 12px !important;
        }

        .card-share-btn i {
            font-size: 11px !important;
        }

        .discount-badge {
            top: 68px;
            right: 5px;
            font-size: 6px !important;
            padding: 2px 4px !important;
        }

        .card-info-overlay {
            padding: 25px 6px 6px 6px !important;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.7) 50%,
                rgba(0, 0, 0, 0) 100%
            ) !important;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) !important;
        }

        .card-info-overlay .brand-name {
            font-size: 6px !important;
            margin-bottom: 1px !important;
            letter-spacing: 0.3px !important;
        }

        .card-info-overlay .product-name {
            font-size: 9px !important;
            line-height: 1.15 !important;
            margin-bottom: 2px !important;
        }

        .card-info-overlay .card-rating {
            font-size: 7px !important;
            margin-bottom: 2px !important;
            gap: 2px !important;
        }

        .card-info-overlay .card-rating i {
            font-size: 6px !important;
        }

        .card-info-overlay .card-price {
            gap: 4px !important;
        }

        .card-info-overlay .current-price {
            font-size: 10px !important;
            color: #fff !important;
        }

        .card-info-overlay .old-price {
            font-size: 7px !important;
            color: rgba(255, 255, 255, 0.55) !important;
        }
    }

    /* === EXTRA SMALL DEVICES === */
    @media (max-width: 400px) {
        .product-card {
            border-radius: 8px;
        }

        .purity-badge {
            font-size: 7px !important;
            padding: 4px 5px 9px !important;
            top: 0 !important;
            left: 0 !important;
        }

        .card-actions {
            top: 4px !important;
            right: 4px !important;
            gap: 3px !important;
        }

        .card-action-btn {
            width: 24px !important;
            height: 24px !important;
        }

        .wishlist-btn {
            width: 24px !important;
            height: 24px !important;
        }

        .wishlist-btn i {
            font-size: 10px !important;
        }

        .card-share-btn i {
            font-size: 9px !important;
        }

        .discount-badge {
            top: 58px !important;
            right: 4px !important;
            font-size: 5px !important;
            padding: 1px 3px !important;
        }

        .card-info-overlay {
            padding: 20px 5px 5px 5px !important;
        }

        .card-info-overlay .brand-name {
            font-size: 5px !important;
            letter-spacing: 0.2px !important;
        }

        .card-info-overlay .product-name {
            font-size: 8px !important;
            line-height: 1.1 !important;
            margin-bottom: 1px !important;
        }

        .card-info-overlay .card-rating {
            font-size: 6px !important;
            margin-bottom: 1px !important;
            gap: 1px !important;
        }

        .card-info-overlay .card-rating i {
            font-size: 5px !important;
        }

        .card-info-overlay .card-price {
            gap: 3px !important;
        }

        .card-info-overlay .current-price {
            font-size: 9px !important;
            color: #fff !important;
        }

        .card-info-overlay .old-price {
            font-size: 6px !important;
        }
    }
