.checked-div {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 13px 10px 2px;
}

.old-price {
    color: #ef4444 !important;          /* أحمر فاتح */
    font-size: 14px;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    margin: 0;
}

.product-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.stat-icon {
    font-size: 16px;
}

.stat-item.sold {
    background-color: #f0fdf4; /* أخضر فاتح */
    color: #166534;
}

.stat-item.visitors {
    background-color: #eff6ff; /* أزرق فاتح */
    color: #1e40af;
}


.availability {
    margin-top: 32px;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px 8px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

/* متوفر */
.stock-badge.in-stock {
    background-color: #ecfdf5;
    color: #065f46;
}

/* غير متوفر */
.stock-badge.out-of-stock {
    background-color: #fdeded;
    color: #991b1b;
}


.stock-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
}
