
/* 1. المتغيرات الافتراضية للغة الإنجليزية (LTR) */
:root {
    --direction: ltr;
    --text-align: left;
    --float-left: left;
    --float-right: right;
    --font-family: Arial, sans-serif;
}

/* 2. المتغيرات للغة العربية (RTL) - تعمل تلقائياً عندما يكون dir="rtl" */
[dir="rtl"] {
    --direction: rtl;
    --text-align: right;
    --float-left: right;
    --float-right: left;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 3. تطبيق المتغيرات على كامل الصفحة */
body {
    direction: var(--direction);
    text-align: var(--text-align);
    font-family: var(--font-family);
}

/* 4. تنسيقات الاتجاه المخصصة للعناصر */
[dir="rtl"] .product-container,
[dir="rtl"] .info-card2,
[dir="rtl"] .form-group,
[dir="rtl"] .special-fields-header {
    text-align: right;
}

[dir="ltr"] .product-container,
[dir="ltr"] .info-card2,
[dir="ltr"] .form-group,
[dir="ltr"] .special-fields-header {
    text-align: left;
}

[dir="rtl"] .action-buttons {
    justify-content: flex-end;
}

[dir="ltr"] .action-buttons {
    justify-content: flex-start;
}

/* أزرار التعديل العائمة */
[dir="rtl"] .floating-edit-btn,
[dir="rtl"] .floating-exit-btn {
    left: auto;
    right: 30px;
}

[dir="ltr"] .floating-edit-btn,
[dir="ltr"] .floating-exit-btn {
    right: auto;
    left: 30px;
}

/* يمكنك إبقاء بقية أكواد CSS الخاصة بك كما هي أسفل هذا الجزء */

 
        /* CSS للدعم ثنائي اللغة */
[dir="rtl"] .product-grid {
    text-align: right;
}

[dir="ltr"] .product-grid {
    text-align: left;
}

[dir="rtl"] .form-group label {
    text-align: right;
    float: right;
}

[dir="ltr"] .form-group label {
    text-align: left;
    float: left;
}

[dir="rtl"] .action-buttons {
    justify-content: flex-end;
}

[dir="ltr"] .action-buttons {
    justify-content: flex-start;
}

/* دعم الاتجاه في نماذج التعديل */
[dir="rtl"] .special-fields-section {
    text-align: right;
}

[dir="ltr"] .special-fields-section {
    text-align: left;
}

/* زر تبديل اللغة */
.lang-switch-btn {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-switch-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* تحسينات قسم التقييمات */
.product-ratings-section.enhanced {
    background: rgba(255, 255, 255, 0.2);/*var(--card-bg);*/
    border-radius: 25px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color:gold;
}

.ratings-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ratings-summary-card {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.overall-rating {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    min-width: 150px;
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    color:white;
}

.rating-stars.large {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: gold;
}

.rating-distribution {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    gap: 0.5rem;
}

.star-label {
    min-width: 60px;
    font-weight: 500;
    color:white;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
}

/* نموذج التقييم */
.add-rating-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.star-rating-widget {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.star-rating-widget input[type="radio"] {
    display: none;
}

.star-rating-widget label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating-widget input[type="radio"]:checked ~ label,
.star-rating-widget label:hover,
.star-rating-widget label:hover ~ label {
    color: #ffd700;
}

.rating-text {
    margin-right: 1rem;
    font-weight: 500;
    color: #666;
}

/* قائمة التقييمات */
.reviews-list-section {
    margin-top: 2rem;
    color: blue;
}

.reviews-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.review-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.review-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.btn-helpful {
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-helpful:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

/* التجاوب مع الأجهزة المحمولة */
@media (max-width: 768px) {
    .ratings-header {
        grid-template-columns: 1fr;
    }
    
.reviews-list-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.review-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.user-name {
    font-weight: 600;
    color: #333;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-date {
    font-size: 0.875rem;
    color: #6c757d;
}

.review-content {
    margin-top: 0.5rem;
}

.review-content p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.no-reviews {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.no-reviews i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

.char-count {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.rating-stars.editable i {
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 2px;
    font-size: 1.5rem;
}

.rating-stars.editable i:hover {
    transform: scale(1.2);
}
/* معرض الصور المتقدم */
/* معرض الصور المتقدم - تصميم محسن لسطح المكتب */
/* معرض الصور المتقدم - تصميم محسن لسطح المكتب والجوال */
.product-gallery-section {
    margin: 2rem 0;
    width: 100%;
    
}

.advanced-product-gallery {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 100%;
    min-height: 500px;
}

/* الصورة الرئيسية - تحسينات لسطح المكتب */
.gallery-main {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.main-image-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    cursor: zoom-in;
    padding: 2rem;
    min-height: 400px;
    transition: all 0.3s ease;
}

.main-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.main-image-container.zoomed {
    cursor: zoom-out;
    overflow: auto;
    padding: 1rem;
}

.main-image-container.zoomed img {
    transform: scale(1.5);
    cursor: grab;
    min-width: auto;
    min-height: auto;
}

.main-image-container.zoomed img:active {
    cursor: grabbing;
}

/* المعرض المصغر لسطح المكتب - تحسينات */
.gallery-thumbnails-desktop {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    max-height: 500px;
    padding: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
}

.gallery-thumbnails-desktop::-webkit-scrollbar {
    width: 6px;
}

.gallery-thumbnails-desktop::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 3px;
}

.gallery-thumbnails-desktop::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

.gallery-thumbnails-desktop::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.gallery-thumbnails-desktop .thumbnail-item {
    width: 100%;
    height: 80px;
    flex: 0 0 auto;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.gallery-thumbnails-desktop .thumbnail-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.gallery-thumbnails-desktop .thumbnail-item.active {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.gallery-thumbnails-desktop .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbnails-desktop .thumbnail-item:hover img {
    transform: scale(1.1);
}

/* المعرض المصغر للجوال - تحسينات */
.gallery-thumbnails-mobile {
    display: none;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    margin-top: 1rem;
    scrollbar-width: none;
}

.gallery-thumbnails-mobile::-webkit-scrollbar {
    display: none;
}

.gallery-thumbnails-mobile .thumbnail-item {
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.gallery-thumbnails-mobile .thumbnail-item.active {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* أزرار التحكم في الصورة */
.image-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.zoom-btn, .fullscreen-btn {
    background: rgba(255,255,255,0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-size: 1.1rem;
    color: #333;
}

.zoom-btn:hover, .fullscreen-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #3b82f6;
}

/* مودال الصورة المحسن */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.close-modal:hover {
    color: #f8f9fa;
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: #333;
    z-index: 10001;
}

.modal-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 2rem;
}

.modal-next {
    right: 2rem;
}

.image-counter {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

/* تحسينات الاستجابة */
@media (max-width: 1200px) {
    .advanced-product-gallery {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }
    
    .gallery-thumbnails-desktop .thumbnail-item {
        height: 70px;
    }
    
    .main-image-container {
        min-height: 350px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .advanced-product-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-thumbnails-desktop {
        display: none;
    }
    
    .gallery-thumbnails-mobile {
        display: flex;
    }
    
    .main-image-container {
        min-height: 300px;
        padding: 1rem;
    }
    
    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .modal-prev {
        left: 1rem;
    }
    
    .modal-next {
        right: 1rem;
    }
    
    .close-modal {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .main-image-container {
        min-height: 250px;
        padding: 0.5rem;
    }
    
    .gallery-thumbnails-mobile .thumbnail-item {
        width: 70px;
        height: 70px;
    }
    
    .image-actions {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .zoom-btn, .fullscreen-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* تأثيرات تحميل الصور */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* تحسينات للأجهزة التي تستخدم الماوس */
@media (hover: hover) and (pointer: fine) {
    .thumbnail-item:hover {
        transform: translateY(-2px) scale(1.05);
    }
    
    .main-image-container.zoomed {
        cursor: grab;
    }
    
    .main-image-container.zoomed:active {
        cursor: grabbing;
    }
}

/* تحسينات إضافية لسطح المكتب */
@media (min-width: 769px) {
    .product-gallery-section {
        max-width: 1200px;
        margin: 2rem auto;
    }
    
    .advanced-product-gallery {
        min-height: 600px;
    }
    
    .main-image-container {
        min-height: 500px;
    }
    
    .gallery-thumbnails-desktop .thumbnail-item {
        height: 90px;
    }
}
/* تصميم الفوتر المحسن */
/* فوتر بسيط وأنيق */
/* فوتر احترافي - هوية الشركة */
/* فوتر احترافي - عناوين التواصل في سطر واحد */
/* فوتر احترافي - عناوين التواصل في سطر واحد */
.footer-global {
    background: #1a1a1a;
    color: #ffffff;
    padding: 2.5rem 0 1.5rem;
    margin-top: 4rem;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* الهيدر - العلامة التجارية وعناوين التواصل في سطر واحد */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.brand-tagline {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* عناوين التواصل في سطر واحد */
.contact-section {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b0b0b0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-item:hover {
    color: white;
}

.contact-icon {
    color: #007bff;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-text {
    direction: ltr; /* تأكد من اتجاه النص من اليسار لليمين */
    unicode-bidi: isolate; /* عزل النص عن الاتجاه المحيط */
}

.contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    direction: ltr; /* تأكد من اتجاه الرابط */
    unicode-bidi: isolate;
    display: inline-block;
}

.contact-text a:hover {
    color: #007bff;
}

/* قسم المدفوعات والإحصائيات */
.footer-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.payment-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-methods img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

.global-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    direction: ltr;
    unicode-bidi: isolate;
}

.stats-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* حقوق النشر */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* للشاشات المتوسطة */
@media (max-width: 1024px) {
    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .contact-section {
        gap: 2rem;
    }
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-header {
        gap: 1.5rem;
    }
    
    .brand-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .payment-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        font-size: 0.9rem;
    }
    
    .payment-methods {
        flex-wrap: wrap;
    }
    
    .payment-methods img {
        height: 20px;
    }
}

.product-status {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.product-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.product-status:hover::before {
    left: 100%;
}

.product-status:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.status-completed {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    animation: pulse-glow 2s infinite;
}

.status-incomplete {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.status-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: bounce 2s infinite;
}

.status-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.verified-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    animation: shimmer 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3); }
    50% { box-shadow: 0 8px 35px rgba(79, 172, 254, 0.6); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { background: rgba(255,255,255,0.2); }
    50% { background: rgba(255,255,255,0.3); }
    100% { background: rgba(255,255,255,0.2); }
}
