/**
 * تحسينات على واجهة اختيار تنسيق الكتاب
 * يتضمن تحسين عرض الأسعار وإبراز الخيارات المحددة
 */

/* تحسين عرض بطاقات التنسيق */
.bookory-format-picker {
    margin-bottom: 20px;
}

.bookory-format-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.bookory-format-card {
    position: relative;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}

/* تحسين شكل البطاقة المحددة */
.bookory-format-card.active {
    border-color: #4e8bef;
    background-color: rgba(78, 139, 239, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* تحسين عرض زر الراديو */
.bookory-format-card input[type="radio"] {
    position: absolute;
    top: 15px;
    right: 15px;
    margin: 0;
}

.bookory-format-card__title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

/* تحسين عرض السعر */
.bookory-format-card__price {
    color: #c00;
    font-weight: 700;
    font-size: 18px;
    margin-top: 5px;
    display: block;
}

.bookory-format-card__badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
}

.bookory-format-card__badge.shipping {
    background-color: #f9f1e8;
    color: #8c6739;
}

.bookory-format-card__badge.digital {
    background-color: #e8f5ff;
    color: #3a85c6;
}

.bookory-format-card__desc {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* تحسين زر الإضافة للسلة */
.bookory-format-submit {
    display: inline-block;
    min-width: 180px;
    text-align: center;
    padding: 12px 25px;
    border-radius: 4px;
    background-color: #4e8bef;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.bookory-format-submit:hover {
    background-color: #3a72d4;
}

/* تحسين للعرض على الجوال */
@media screen and (max-width: 767px) {
    .bookory-format-cards {
        flex-direction: column;
    }
    
    .bookory-format-card {
        flex: 1;
        min-width: 100%;
        max-width: 100%;
    }
}

/* إظهار بيانات التنسيق المحدد بوضوح */
.format-selection-info {
    margin: 10px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.format-selection-info .format-type {
    font-weight: 600;
}

.format-selection-info .format-price {
    color: #c00;
    font-weight: 700;
}
