
    .product-card.svelte-1lds0y2 {
        display: flex;
        flex-direction: column;
        background: var(--c-surface, #fff);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition: all 0.2s ease;
        position: relative;
        height: 100%;
    }

    .product-card.svelte-1lds0y2:hover {
        border-color: rgba(0, 0, 0, 0.12);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

    .product-card.out-of-stock.svelte-1lds0y2 {
        opacity: 0.65;
    }

    /* Image */
    .card-image.svelte-1lds0y2 {
        position: relative;
        aspect-ratio: 1; /* Match flutter 0.55 roughly */
        background: #f8f9fa;
        overflow: hidden;
        padding: 0;
    }

    .card-image.svelte-1lds0y2 .optimized-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
        background-color: white;
    }

    .product-card.svelte-1lds0y2:hover .card-image:where(.svelte-1lds0y2) .optimized-image {
        transform: scale(1.05);
    }

    .image-placeholder.svelte-1lds0y2 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        opacity: 0.4;
        background-color: white;
    }

    .discount-tag.svelte-1lds0y2 {
        position: absolute;
        top: -1px;
        padding: 6px 10px;
        background: #ff6b6b;
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        z-index: 10;
        left: -1px;
        border-radius: 0 0 20px 0;
    }

    [dir="rtl"] .discount-tag.svelte-1lds0y2 {
        left: auto;
        right: -1px;
        border-radius: 0 0 0 20px;
    }

    .fav-btn.svelte-1lds0y2 {
        position: absolute;
        top: 6px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #a0a0a0;
        transition: all 0.2s ease;
        z-index: 10;
        backdrop-filter: blur(4px);
        right: 6px;
    }

    [dir="rtl"] .fav-btn.svelte-1lds0y2 {
        right: auto;
        left: 6px;
    }

    .fav-btn.svelte-1lds0y2:hover {
        transform: scale(1.1);
    }

    .fav-btn.favorited.svelte-1lds0y2 {
        color: #e53935;
        background: rgba(229, 57, 53, 0.1);
        border-color: rgba(229, 57, 53, 0.2);
    }

    .stock-overlay.svelte-1lds0y2 {
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #666;
        font-size: 0.9rem;
        z-index: 5;
    }

    /* Action Overlay (Add to cart / Counter on image) */
    .action-overlay.svelte-1lds0y2 {
        position: absolute;
        bottom: 8px;
        left: 8px;
        right: 8px;
        z-index: 10;
        display: flex;
        justify-content: flex-end; /* LTR */
    }

    [dir="rtl"] .action-overlay.svelte-1lds0y2:not(.expanded) {
        justify-content: flex-start; /* RTL: Add button align left */
    }

    .action-overlay.expanded.svelte-1lds0y2 {
        display: flex;
    }

    .add-circle-btn.svelte-1lds0y2 {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: var(--c-primary, #113511);
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        transition: transform 0.15s ease;
        padding: 0;
    }

    .add-circle-btn.svelte-1lds0y2:active {
        transform: scale(0.9);
    }

    .quantity-counter.svelte-1lds0y2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 32px;
        background-color: var(--c-primary, #113511);
        border-radius: 16px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        width: 100%;
        padding: 0 2px;
    }

    .qty-btn.svelte-1lds0y2 {
        width: 28px;
        height: 28px;
        border-radius: 14px;
        background: transparent;
        color: #82d182;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
    }

    .qty-btn.svelte-1lds0y2:active {
        background: rgba(255, 255, 255, 0.1);
    }

    .qty-text.svelte-1lds0y2 {
        color: white;
        font-size: 14px;
        font-weight: 700;
        min-width: 20px;
        text-align: center;
    }

    /* Body */
    .card-body.svelte-1lds0y2 {
        padding: 10px;
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: 4px;
    }

    .card-name.svelte-1lds0y2 {
        font-size: 12px;
        font-weight: 500;
        color: #333;
        margin: 0;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-weight.svelte-1lds0y2 {
        font-size: 10px;
        color: #888;
    }

    .rating-row.svelte-1lds0y2 {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-top: 2px;
    }

    .stars.svelte-1lds0y2 {
        display: flex;
        align-items: center;
        gap: 1px;
    }

    .rating-count.svelte-1lds0y2 {
        font-size: 9px;
        color: #999;
    }

    .card-pricing.svelte-1lds0y2 {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: auto;
        padding-top: 4px;
        flex-wrap: wrap;
    }

    .price-container.svelte-1lds0y2 {
        display: flex;
        align-items: baseline;
        gap: 1px;
    }

    .price-main.svelte-1lds0y2 {
        font-size: 16px;
        font-weight: 900;
        color: var(--c-primary, #113511);
    }

    .price-fraction.svelte-1lds0y2 {
        font-size: 12px;
        font-weight: 700;
        color: var(--c-primary, #113511);
    }

    .price-currency.svelte-1lds0y2 {
        font-size: 11px;
        font-weight: 600;
        color: var(--c-primary, #113511);
        margin-inline-start: 2px;
    }

    .c-price-old.svelte-1lds0y2 {
        font-size: 12px;
        color: #999;
        text-decoration: line-through;
        text-decoration-color: #e53935;
        font-weight: 600;
    }

    /* Compact variant */
    .compact.svelte-1lds0y2 .card-image:where(.svelte-1lds0y2) {
        aspect-ratio: 1;
    }

    .compact.svelte-1lds0y2 .card-body:where(.svelte-1lds0y2) {
        padding: 8px;
    }

    .compact.svelte-1lds0y2 .card-name:where(.svelte-1lds0y2) {
        font-size: 11px;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
