/**
 * أنماط عرض مواصفات المنتج في السلة
 * ملف CSS منفصل خاص بعرض المواصفات (اللون والمقاس) في السلة وصفحة إتمام الطلب
 */

/* تنسيق مواصفات المنتج في قائمة السلة المنسدلة */
.new-cart-item-specs {
    background-color: #f8f8f8;
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 0.85rem;
    color: #555;
    margin-top: 3px;
    margin-bottom: 5px;
    display: inline-block;
}

/* تنسيق أيقونة مواصفات المنتج */
.specs-icon {
    margin-left: 3px;
    color: var(--accent-color);
}

/* تأثير التحويم على مواصفات المنتج */
.new-cart-item-specs:hover {
    background-color: #f0f0f0;
}

/* تنسيق قسم المواصفات في صفحة الشراء */
.product-specifications {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

.specifications-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.spec-item {
    position: relative;
}

.spec-label {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.spec-item.selected .spec-label {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.spec-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.quantity-info {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 3px;
}
