﻿/* Zema Product Card System */
.zema-product-card {
    --zema-primary: #2563eb;
    --zema-primary-dark: #1d4ed8;
    --zema-text: #1e293b;
    --zema-text-light: #64748b;
    --zema-border: #e2e8f0;
    --zema-bg-hover: #f8fafc;
    --zema-discount: #ef4444;
    --zema-rating: #f59e0b;
    --zema-delivery: #16a34a;
    width: 280px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 15px;
    border: 1px solid var(--zema-border);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

    .zema-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-color: var(--zema-primary);
    }

/* Product Link */
.zema-product-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* Image Container - Full Bleed */
.zema-product-img-wrapper {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.zema-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zema-product-card:hover .zema-product-img {
    transform: scale(1.03);
}

/* Badge */
.zema-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--zema-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.zema-best-seller-badge {
    background: var(--zema-discount);
}

/* Product Details */
.zema-product-details {
    padding: 18px;
    direction: rtl;
    text-align: right;
}

/* Category Link */
.zema-product-category-link {
    display: inline-block;
    color: var(--zema-primary);
    font-size: 13px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(37, 99, 235, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
}

    .zema-product-category-link:hover {
        color: var(--zema-primary-dark);
        background: rgba(37, 99, 235, 0.15);
    }

/* Product Name */
.zema-product-name {
    color: var(--zema-text);
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.5;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Pricing */
.zema-price-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
    gap: 8px;
    flex-wrap: wrap;
}

.zema-current-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--zema-primary);
}

.zema-old-price {
    font-size: 14px;
    color: var(--zema-text-light);
    text-decoration: line-through;
}

.zema-discount-percent {
    background: var(--zema-discount);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Product Meta Info */
.zema-product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--zema-border);
    font-size: 12px;
    color: var(--zema-text-light);
}

.zema-rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
}

.zema-star-icon {
    color: var(--zema-rating);
    font-size: 14px;
}

.zema-delivery-badge {
    background: rgba(22, 163, 74, 0.1);
    color: var(--zema-delivery);
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 500px) {

    .zema-product-card {
        width: 100%;
        max-width: 420px;
        margin: 10px auto;
        display: flex;
        align-items: stretch;
        min-height: 120px;
    }

    .zema-product-img-wrapper {
        width: 110px;
        min-width: 110px;
        height: 110px;
        flex-shrink: 0;
        border-radius: 0 16px 0 0;
        margin: 0;
        padding: 0;
        align-self: stretch;
        position: relative; /* مهم: بج روی عکس قرار بگیره */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .zema-product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 16px 0 0;
    }

    .zema-product-badge {
        position: absolute;
        top: 10px;
        left: auto; /* برای قرارگیری بج در گوشه بالا سمت چپ عکس (در موبایل و RTL) */
        right: 8px;
        z-index: 10;
        font-size: 8px;
        padding: 2px 8px;
        border-radius: 14px;
    }

    .zema-product-details {
        padding: 14px 10px 14px 7px;
        flex: 1 1 0%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
    }

    .zema-product-name {
        font-size: 18px;
        height: unset;
        min-height: 22px;
        text-align:center;
    }

    .zema-price-container {
        margin: 6px 0 0 0;
        gap: 5px;
        justify-content: center;
    }

    .zema-product-info {
        margin-top: 5px;
        font-size: 11px;
        padding-left: 7px;
        flex-direction: row-reverse;
    }
}


.product-category-style {
    color: #7291c3;
    background: #eef4ff;
    font-size: 12.2px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 8px;
    margin-bottom: 3px;
    display: inline-block;
    letter-spacing: -0.2px;
    text-align: right;
    text-decoration: none;
    transition: background 0.13s, color 0.13s;
}

    .product-category-style:hover {
        background: #f1f6ff;
        color: #0a2971;
    }