/**
 * تنسيقات خاصة بمحدد تنسيقات الكتاب
 */

/* تحسين مظهر بطاقات التنسيق */
.bookory-format-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bookory-format-card.active,
.bookory-format-card:hover {
    border-color: #1a7f37;
    box-shadow: 0 5px 15px rgba(26, 127, 55, 0.1);
}

/* إخفاء زر الراديو الأصلي */
.bookory-format-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* إضافة مؤشر للخيار المحدد */
.bookory-format-card.active::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: #1a7f37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* تحسين مظهر زر الإضافة للسلة */
.bookory-format-submit {
    position: relative;
    transition: all 0.3s ease;
}

/* تأثير عند تغيير الخيار */
.bookory-format-card__price {
    transition: all 0.3s ease;
}

.bookory-format-card.active .bookory-format-card__price {
    color: #1a7f37;
    font-weight: bold;
}

/* تحسين مظهر التنسيق الواحد */
.bookory-format-single {
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

/* تنسيق رسائل الخطأ */
.woocommerce-error {
    border-left-color: #e74c3c !important;
}

/* تحسينات للأجهزة المحمولة */
@media (max-width: 767px) {
    .bookory-format-grid {
        display: block;
    }
    
    .bookory-format-card {
        margin-bottom: 15px;
    }
}
