/**
 * تنسيقات الواجهة الأمامية الاحترافية المحسنة لشورت كودات المنتجات
 * تصميم عصري مستقر وجميل بدون تأثيرات مسببة للمشاكل
 * مع دعم نظام الصندوق التفاعلي الجديد
 */

/* إظهار عناصر السلة القديمة
 * تم استبدال هذا الجزء لإبقاء عناصر السلة مرئية، بما في ذلك عناصر Astra. */
.cart-link, .cart-icon, .mini-cart, .header-cart, .cart-contents,
.cart-count, .cart-contents-count, .mini-cart-count,
.widget_shopping_cart, .woocommerce-mini-cart,
.ast-sticky-add-to-cart, .ast-sticky-add-to-cart-content,
.ast-sticky-add-to-cart-action-wrap {
    display: initial !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* إظهار روابط السلة في القوائم
 * نسمح بعرض روابط السلة للمستخدمين */
a[href*="/cart"]:not(.package-btn):not(.view-package):not(.checkout-package),
a[href*="cart"]:not(.package-btn):not(.view-package):not(.checkout-package) {
    display: inline !important;
    visibility: visible !important;
}

/* متغيرات CSS للألوان والقيم */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* إعادة تعيين وتنسيقات أساسية */
.wc-products-shortcode * {
    box-sizing: border-box;
}

/* الحاوي الرئيسي للشورت كود */
.wc-products-shortcode {
    margin: 2rem 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    position: relative;
}

/* عناوين الأقسام */
.wc-products-shortcode h1,
.wc-products-shortcode h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    letter-spacing: -0.025em;
}

.wc-products-shortcode h1::after,
.wc-products-shortcode h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-sm);
}

/* شبكة المنتجات الحديثة */
.wc-products-shortcode .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* بطاقة المنتج الاحترافية */
.wc-products-shortcode .product {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wc-products-shortcode .product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.wc-products-shortcode .product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.wc-products-shortcode .product:hover::before {
    opacity: 1;
}

/* رابط المنتج */
.wc-products-shortcode .product a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 0;
}

/* حاوي الصورة */
.wc-products-shortcode .product .product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-secondary);
}

.wc-products-shortcode .product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border: none;
    margin: 0;
}

.wc-products-shortcode .product:hover img {
    transform: scale(1.02);
}

/* محتوى المنتج */
.wc-products-shortcode .product .product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.75rem;
}

/* عنوان المنتج */
.wc-products-shortcode .product .woocommerce-loop-product__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.4;
    /* السماح لنص اسم المنتج بالتمدد تلقائياً والتفاف السطر عند الحاجة */
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: block;
    overflow: visible;
    transition: var(--transition-fast);
}

.wc-products-shortcode .product:hover .woocommerce-loop-product__title {
    color: var(--primary-color);
}

/* السعر */
.wc-products-shortcode .product .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wc-products-shortcode .product .price del {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1rem;
    text-decoration: line-through;
}

.wc-products-shortcode .product .price ins {
    text-decoration: none;
    color: var(--success-color);
}

/* شارات المنتج */
.wc-products-shortcode .product .product-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.wc-products-shortcode .product .sale-badge,
.wc-products-shortcode .product .out-of-stock-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.wc-products-shortcode .product .sale-badge {
    background: var(--danger-color);
    color: var(--text-white);
}

.wc-products-shortcode .product .out-of-stock-badge {
    background: var(--secondary-color);
    color: var(--text-white);
}

/* أزرار العمل */
.wc-products-shortcode .product .product-actions {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

.wc-products-shortcode .product .add-to-cart-btn,
.wc-products-shortcode .product .wcps-add-to-cart-button,
.wc-products-shortcode .product .view-product-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.wc-products-shortcode .product .add-to-cart-btn:before,
.wc-products-shortcode .product .wcps-add-to-cart-button: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.5s ease;
}

.wc-products-shortcode .product .add-to-cart-btn:hover,
.wc-products-shortcode .product .wcps-add-to-cart-button:hover {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.wc-products-shortcode .product .add-to-cart-btn:hover:before,
.wc-products-shortcode .product .wcps-add-to-cart-button:hover:before {
    left: 100%;
}

.wc-products-shortcode .product .view-product-btn {
    background: var(--secondary-color);
}

.wc-products-shortcode .product .view-product-btn:hover {
    background: #475569;
}

/* زر اختيار الخيارات للمنتجات المتغيرة ليظهر بشكل زر أنيق */
.wc-products-shortcode .product .select-options-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.wc-products-shortcode .product .select-options-btn:hover {
    background: #475569;
}

/* حالات الزر */
.wc-products-shortcode .product .add-to-cart-btn.btn-loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

.wc-products-shortcode .product .add-to-cart-btn.btn-success {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    transform: scale(1.02);
}

.wc-products-shortcode .product .add-to-cart-btn.btn-error {
    background: linear-gradient(135deg, #FF4757, #FF3742) !important;
    transform: scale(0.98);
}

/* مؤشر التحميل */
.btn-spinner {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* placeholder للصورة */
.wc-products-shortcode .product .product-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    flex-direction: column;
}

.wc-products-shortcode .product .product-placeholder::before {
    content: '📦';
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* تنسيقات خاصة بشورت كود LCD المحدث */
.wc-updated-lcd-products {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.wc-updated-lcd-products h1 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.wc-updated-lcd-products h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    position: relative;
}

.wc-updated-lcd-products h2::after {
    display: none;
}

.wc-updated-lcd-products ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

.wc-updated-lcd-products li {
    background: var(--bg-primary);
    margin: 0;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.wc-updated-lcd-products li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.wc-updated-lcd-products li:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.wc-updated-lcd-products li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.wc-updated-lcd-products li:hover a {
    color: var(--primary-color);
}

/* تنسيقات خاصة بشورت كود أكثر المنتجات مبيعاً */
.wc-best-selling-products {
    margin: 2rem 0;
}

.wc-best-selling-products .category-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.wc-best-selling-products .category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.wc-best-selling-products .category-section h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    padding: 1.25rem 2rem;
    margin: -2rem -2rem 2rem -2rem;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    position: relative;
}

.wc-best-selling-products .category-section h2::after {
    display: none;
}

.wc-best-selling-products .note {
    background: linear-gradient(135deg, var(--info-color), var(--primary-color));
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    position: relative;
}

.wc-best-selling-products .note::before {
    content: 'ℹ️';
    font-size: 1.25rem;
    margin-left: 0.5rem;
}

.wc-best-selling-products hr {
    border: none;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 2rem 0;
    border-radius: var(--radius-sm);
}

/* تأثيرات التحميل */
.wc-products-loading {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.wc-products-loading::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.wc-products-loading::after {
    content: 'جاري التحميل...';
    position: absolute;
    bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* رسالة عدم وجود منتجات */
.wc-no-products {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    border: 2px dashed var(--border-color);
}

.wc-no-products::before {
    content: '📦';
    display: block;
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.wc-no-products p {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

/* تنسيقات responsive متقدمة */
@media (max-width: 1024px) {
    .wc-products-shortcode .products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .wc-products-shortcode {
        margin: 1.5rem 0;
    }
    
    .wc-products-shortcode .products {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .wc-products-shortcode .product .product-content {
        padding: 1.25rem;
    }
    
    .wc-updated-lcd-products,
    .wc-best-selling-products .category-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .wc-best-selling-products .category-section h2 {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .wc-products-shortcode .products {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .wc-products-shortcode .product .product-content {
        padding: 1rem;
    }
    
    .wc-updated-lcd-products,
    .wc-best-selling-products .category-section {
        padding: 1rem;
    }
    
    .wc-best-selling-products .category-section h2 {
        margin: -1rem -1rem 1rem -1rem;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* تحسينات إضافية للأداء */
.wc-products-shortcode .product img {
    loading: lazy;
}

/* تنسيقات RTL محسنة */
[dir="rtl"] .wc-products-shortcode .product .product-badges {
    right: auto;
    left: 1rem;
}

[dir="rtl"] .wc-updated-lcd-products li::before {
    left: auto;
    right: 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

[dir="rtl"] .wc-updated-lcd-products li:hover {
    transform: translateX(-4px);
}

/* تأثيرات تفاعلية محسنة */
.wc-products-shortcode .product {
    cursor: pointer;
}

.wc-products-shortcode .product:active {
    transform: translateY(-2px) scale(0.99);
}

/* تحسينات إمكانية الوصول */
.wc-products-shortcode .product:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* تأثيرات الحركة البسيطة والمستقرة */
@media (prefers-reduced-motion: no-preference) {
    .wc-products-shortcode .product {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .wc-products-shortcode .product:nth-child(1) { animation-delay: 0.1s; }
    .wc-products-shortcode .product:nth-child(2) { animation-delay: 0.2s; }
    .wc-products-shortcode .product:nth-child(3) { animation-delay: 0.3s; }
    .wc-products-shortcode .product:nth-child(4) { animation-delay: 0.4s; }
    .wc-products-shortcode .product:nth-child(n+5) { animation-delay: 0.5s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تنسيقات الطباعة */
@media print {
    .wc-products-shortcode .product {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .wc-products-shortcode .product:hover {
        transform: none;
    }
}

/* تحسينات إضافية للاستقرار */
.wc-products-shortcode .product .woocommerce-loop-product__title,
.wc-products-shortcode h1,
.wc-products-shortcode h2 {
    /* منع أي تحريك غير مرغوب فيه */
    transform: none !important;
    position: static !important;
}

/* إشعارات بسيطة */
.wc-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.wc-notification.show {
    transform: translateX(0);
}

.wc-notification.success { background: var(--success-color); }
.wc-notification.error { background: var(--danger-color); }
.wc-notification.info { background: var(--info-color); }

@media (max-width: 768px) {
    .wc-notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}


    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, transparent 70%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.package-box.package-has-items .package-glow {
    opacity: 1;
}

.package-glow-effect {
    animation: packageGlowEffect 2.5s ease-in-out;
}

@keyframes packageGlowEffect {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(76, 175, 80, 0)); }
    50% { filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.9)); }
}

.package-shake-3d {
    animation: packageShake3D 1s ease-in-out;
}

@keyframes packageShake3D {
    0%, 100% { transform: rotateX(-25deg) rotateY(45deg); }
    25% { transform: rotateX(-20deg) rotateY(50deg) translateX(-4px); }
    50% { transform: rotateX(-30deg) rotateY(40deg) translateX(4px); }
    75% { transform: rotateX(-20deg) rotateY(50deg) translateX(-2px); }
}

/* تحديث لون السعر في بطاقات المنتجات */
.wc-products-shortcode .product .price,
.wc-products-shortcode .product .price ins {
    color: #1B5E20 !important; /* أخضر غامق للسعر */
    font-weight: 700 !important;
}

.wc-products-shortcode .product .price del {
    color: #757575 !important; /* رمادي للسعر المشطوب */
}

/* تنسيقات responsive */
@media (max-width: 768px) {
    .interactive-package-system {
        bottom: 1.5rem;
        left: 1.5rem; /* تغيير من right إلى left */
    }
    
    .package-box {
        width: 100px;
        height: 100px;
    }
    
    .package-dropdown {
        width: 300px;
        left: 0; /* تأكيد الموقع على اليسار */
    }
}

@media (max-width: 480px) {
    .interactive-package-system {
        bottom: 1rem;
        left: 1rem; /* تغيير من right إلى left */
    }
    
    .package-dropdown {
        width: 280px;
        left: 0; /* تأكيد الموقع على اليسار */
        bottom: 120px;
    }
    
    .dropdown-footer {
        flex-direction: column;
    }
    
    .package-btn {
        width: 100%;
    }
}

/* إشعارات النظام */
.package-notifications {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
}

.package-notification {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(46, 125, 50, 0.3);
    border-radius: 15px;
    padding: 18px 25px;
    margin-bottom: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
}

.package-notification.show {
    transform: translateX(0);
}

.package-notification.success {
    border-left: 6px solid #4CAF50;
    color: #1B5E20;
    background: linear-gradient(145deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.05));
}

.package-notification.error {
    border-left: 6px solid #F44336;
    color: #D32F2F;
    background: linear-gradient(145deg, rgba(244, 67, 54, 0.1), rgba(211, 47, 47, 0.05));
}

.package-notification.info {
    border-left: 6px solid #2196F3;
    color: #1565C0;
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.1), rgba(21, 101, 192, 0.05));
}

