/**
 * أنماط الواجهة الأمامية
 * Frontend Styles
 */

/* حاوية العملة الرئيسية */
.cbip-currency-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    font-size: 14px;
}

.cbip-currency-container.dark {
    background-color: #333;
    color: #fff;
}

/* عرض العملة الحالية */
.cbip-currency-display {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.cbip-currency-flag {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    object-fit: cover;
}

.cbip-currency-code {
    font-size: 14px;
    font-weight: 600;
}

/* منتقي العملة */
.cbip-currency-selector {
    display: inline-block;
}

.cbip-currency-selector select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cbip-currency-selector select:hover {
    border-color: #999;
}

.cbip-currency-selector select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

/* قائمة العملات */
.cbip-currency-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.cbip-currency-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.cbip-currency-item:hover {
    border-color: #0073aa;
    background-color: #f0f7ff;
}

.cbip-currency-item.active {
    border-color: #0073aa;
    background-color: #0073aa;
    color: #fff;
}

.cbip-currency-item .flag {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    object-fit: cover;
}

.cbip-currency-item .code {
    font-weight: 600;
    font-size: 12px;
}

/* عرض السعر */
.cbip-price {
    display: inline-block;
    font-weight: 600;
}

.cbip-price-original {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.cbip-price-converted {
    color: #0073aa;
    font-size: 16px;
}

/* رسالة المعلومات */
.cbip-info-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #e7f3ff;
    border-left: 4px solid #0073aa;
    border-radius: 3px;
    font-size: 13px;
    color: #0073aa;
    margin: 10px 0;
}

.cbip-info-message.warning {
    background-color: #fff8e5;
    border-left-color: #ffb81c;
    color: #856404;
}

.cbip-info-message.error {
    background-color: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.cbip-info-message.success {
    background-color: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

/* أيقونة المعلومات */
.cbip-info-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 115, 170, 0.2);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* شريط التحويل */
.cbip-conversion-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 15px 0;
}

.cbip-conversion-bar input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.cbip-conversion-bar .arrow {
    font-size: 18px;
    color: #999;
}

.cbip-conversion-bar .result {
    font-weight: 600;
    font-size: 16px;
    min-width: 100px;
    text-align: right;
}

/* الشريط الجانبي */
.cbip-sidebar-widget {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.cbip-sidebar-widget h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    color: #23282d;
}

/* التذييل */
.cbip-footer-widget {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

/* الرأس */
.cbip-header-widget {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0;
}

/* حالة التحميل */
.cbip-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: cbip-spin 1s linear infinite;
}

@keyframes cbip-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* استجابة الهاتف */
@media (max-width: 768px) {
    .cbip-currency-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cbip-currency-list {
        flex-direction: column;
    }

    .cbip-conversion-bar {
        flex-direction: column;
    }

    .cbip-conversion-bar .arrow {
        transform: rotate(90deg);
    }

    .cbip-conversion-bar .result {
        width: 100%;
        text-align: left;
    }

    .cbip-header-widget {
        justify-content: center;
        margin-bottom: 15px;
    }
}

/* الطباعة */
@media print {
    .cbip-currency-container,
    .cbip-currency-selector {
        display: none !important;
    }
}
