* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    overflow-x: hidden; /* لمنع التمرير الجانبي المزعج */
    width: 100%;
}
:root {
    --bg-darker: #0b0f19;
    --bg-dark: #111827;
    --card-bg: #1f2937;
    --card-hover: #374151;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --green: #10b981;
    --red: #ef4444;
    --blue: #3b82f6;
    --border-color: #374151;
}
.card-footer-info {
    padding-top: 10px;
    text-align: center;
    width: 100%;
}
.usdt-premium-panel {
    background: #111827; /* لون واحد صلب وراقي */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    max-width: 700px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
    color: #fff;
}
.dz-rates-section {
    margin-top: 30px;
}

.table-container {
    overflow-x: auto; /* يدعم الهواتف */
    padding: 0 !important;
}

.live-data-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.live-data-table th {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 15px;
    text-align: right;
    border-bottom: 2px solid #d4af37;
}

.live-data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.live-data-table tr:hover {
    background: rgba(255,255,255,0.03);
}

.unit-name { color: #fff; }
.price-dzd { color: #10b981; font-weight: bold; }
.price-usd { color: #aaa; font-size: 1.1rem; }
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.coin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 21px;
}

.coin-brand img {
    width: 28px;
    height: 28px;
}

.live-status {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

/* صفوف الأسعار - مسطحة تماماً بدون خلفية */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.price-row .label {
    font-size: 23px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

.price-row .value {
    font-size: 38px; /* حجم ضخم وواضح */
    font-weight: 900;
    letter-spacing: -1px;
}

.buy-row .value { color: #10b981; } /* أخضر نيون هادئ */
.sell-row .value { color: #ef4444; } /* أحمر نيون هادئ */

.price-row .value small {
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.3);
}

/* فاصل خطي بسيط */
.panel-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.panel-footer {
    margin-top: 20px;
    font-size: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

/* استجابة للهواتف */
@media (max-width: 400px) {
    .price-row .value { font-size: 32px; }
    .usdt-premium-panel { padding: 20px; }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Tajawal', sans-serif; }

.gold-text { color: var(--gold); }
.silver-text { color: #c0c0c0; }

/* News Ticker */
.news-ticker {
    background-color: var(--gold);
    color: var(--bg-darker);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    font-weight: 600;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker-content span {
    padding: 0 40px;
}

@keyframes ticker {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header */
.main-header {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.main-header h1 { font-size: 2.5rem; margin-bottom: 5px;}
.main-header p { color: var(--text-muted); font-size: 1.1rem; }

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--green);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Dashboard Layout */
.dashboard-container {
    padding: 30px 5%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    display: inline-block;
}

.sub-title {
    margin: 20px 0 15px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Cards */
.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: var(--gold);
}
/* =========================================================
   تنسيق تقسيم المعادن (الذهب والفضة) 50% / 50%
   ========================================================= */
.metals-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* تقسيم متساوي 50% لكل بطاقة */
    gap: 20px;
    width: 100%;
    align-items: stretch; /* تمديد البطاقتين لنفس الطول */
    margin-bottom: 20px;
}

/* ضمان أن البطاقة الداخلية تملأ المساحة بالكامل */
.metals-split-container > .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

/* تنسيق سطر السعر الموحد */
.big-price {
    display: flex;
    flex-direction: row; /* سطر واحد */
    align-items: baseline; /* محاذاة العناصر بناءً على خط النص */
    justify-content: center; /* توسيط المحتوى في منتصف البطاقة */
    gap: 12px; /* مسافة ثابتة بين السعر والنسبة المئوية */
    padding: 15px 0;
    width: 100%;
}

/* تنسيق القيمة الرقمية */
.big-price .value {
    font-size: 2.2rem; /* حجم خط بارز */
    font-weight: 800;
    letter-spacing: -1px;
}

/* تنسيق العملة $ */
.big-price .currency {
    font-size: 1.4rem;
    color: #d4af37; /* لون ذهبي */
    font-weight: bold;
    margin-right: 2px;
}

/* تنسيق النسبة المئوية لتكون في نفس السطر */
.big-price .trend {
    font-size: 0.95rem;
    padding: 4px 10px;
    border-radius: 20px; /* شكل بيضاوي للمؤشر */
    background: rgba(16, 185, 129, 0.1); /* خلفية خفيفة */
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap; /* منع انقسام النسبة لسطرين */
}

/* استجابة الموبايل: جعل البطاقات تظهر فوق بعضها في الشاشات الصغيرة */
@media (max-width: 992px) {
    .metals-split-container {
        grid-template-columns: 1fr; /* 100% عرض لكل بطاقة */
    }
}
.premium-card { background: linear-gradient(145deg, #1f2937, #111827); border: 1px solid #d4af3740; }

.card-header h3 { font-size: 1.2rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }

.price-list { list-style: none; }
.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}
.price-list li:last-child { border: none; }

.big-price { font-size: 2rem; font-weight: bold; display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.big-price .currency { font-size: 1.2rem; color: var(--text-muted); }

.trend { font-size: 1rem; padding: 4px 8px; border-radius: 6px; display: flex; align-items: center; gap: 5px; }
.trend.up { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.trend.down { background: rgba(239, 68, 68, 0.1); color: var(--red); }

/* Update Flash Animations */
.flash-up { animation: flashGreen 1s ease-out; }
.flash-down { animation: flashRed 1s ease-out; }

@keyframes flashGreen { 0% { color: var(--green); text-shadow: 0 0 10px var(--green); } 100% { color: inherit; text-shadow: none; } }
@keyframes flashRed { 0% { color: var(--red); text-shadow: 0 0 10px var(--red); } 100% { color: inherit; text-shadow: none; } }

/* Fiat & Buy/Sell */
.buy-sell { display: flex; justify-content: space-between; background: rgba(0,0,0,0.2); padding: 10px; border-radius: 8px; margin-top: 10px; }
.buy-sell div { display: flex; flex-direction: column; text-align: center; }
.buy-sell .val { font-size: 1.2rem; font-weight: bold; color: var(--gold); }

/* Mini Cards */
.mini-card { display: flex; justify-content: space-between; align-items: center; padding: 15px; font-size: 1.1rem; }
.mini-card span { color: var(--text-muted); }
.mini-card strong { font-size: 1.2rem; }

/* Crypto Cards (Glowing) */
.btc-glow:hover { box-shadow: 0 0 20px rgba(247, 147, 26, 0.3); border-color: #f7931a; }
.eth-glow:hover { box-shadow: 0 0 20px rgba(98, 126, 234, 0.3); border-color: #627eea; }

/* Bottom Grid (Calculator & Chart) */
.bottom-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }

/* Tools */
.premium-input {
    width: 100%; padding: 12px; margin-top: 8px; margin-bottom: 15px;
    background: var(--bg-dark); color: white; border: 1px solid var(--border-color);
    border-radius: 8px; font-family: inherit; font-size: 1rem;
}
.premium-input:focus { outline: none; border-color: var(--gold); }
.calc-result { background: rgba(212, 175, 55, 0.1); border: 1px solid var(--gold); padding: 15px; border-radius: 8px; font-size: 1.2rem; text-align: center; }

/* Responsive */
@media (max-width: 900px) {
    .bottom-grid { grid-template-columns: 1fr; }
    .main-header { flex-direction: column; gap: 20px; text-align: center; }
}

/* =========================================================
   التعديلات الإضافية لقسم أسعار المحلات (تمت إضافتها هنا)
   ========================================================= */

/* =========================================================
   تنسيق التقسيم 50% / 50% للبطاقتين (Desktop & Mobile)
   ========================================================= */
.gold-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% لكل بطاقة */
    gap: 20px;
    width: 100%;
    align-items: stretch; /* لضمان أن البطاقتين بنفس الطول تماماً */
    margin-top: 20px;
    margin-bottom: 20px;
}

/* نجعل محتوى البطاقات يمتد ليملأ الفراغ إذا كانت إحداهما أطول */
.gold-split-container > .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* استجابة الموبايل: تكديس عمودي 100% */
@media (max-width: 992px) {
    .gold-split-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   توحيد العرض 100% للعناصر الداخلية (Fix #1)
   ========================================================= */
/* الحاوية الأساسية للشبكة */
.shop-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* بطاقة الفئة (Category Box) */
.shop-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    width: 100%; /* توحيد العرض 100% */
    box-sizing: border-box;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop-category:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* العنوان الداخلي للفئة */
.shop-category h4 {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* سطر السعر - المحاذاة الكاملة */
.price-row-shop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.price-row-shop:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* تسمية العيار (الجهة اليمنى) */
.label-shop {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 1.10rem;
    display: flex;
    align-items: center;
}

.label-shop::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    margin-left: 10px;
    display: inline-block;
}

/* بطاقة السعر (الجهة اليسرى) */
.price-tag {
    font-family: 'Inter', sans-serif; /* أو أي خط رقمي نظيف */
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    color: #f1f5f9;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.13rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-width: 180px; /* ضمان عرض موحد لبطاقات السعر */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* ألوان الفضة الفاخرة */
.silver-text { color: #e2e8f0; }
.silver-header { border-bottom: 2px solid rgba(226, 232, 240, 0.2) !important; }

.silver-rates-section {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.silver-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.silver-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-right: 4px solid #94a3b8; /* علامة فضية جانبية */
    transition: 0.3s;
}

.silver-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(-5px);
}

.silver-name {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
}

.silver-value {
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(148, 163, 184, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.live-badge {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
:root {
    /* لوحة ألوان "التمويل الفاخر" - SOFT & PREMIUM */
    --gold-premium: #c9a55c; /* ذهبي باهت ناعم */
    --gold-subtle: rgba(201, 165, 92, 0.1);
    --gold-glow: rgba(201, 165, 92, 0.4);
    
    --bg-dark-terminal: #090b10; /* أزرق داكن جداً مخملي */
    --glass-bg: rgba(15, 18, 26, 0.7); /* خلفية زجاجية */
    --glass-border: rgba(201, 165, 92, 0.15); /* حدود ذهبية باهتة */
    
    --text-primary: #cbd5e1; /* رمادي فاتح مائل للأزرق - SOFT TEXT */
    --text-muted: #94a3b8; /* رمادي باهت */
    
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

/* القسم العام - الحدود الخارجية */
.premium-ticker-section {
    background: var(--bg-dark-terminal);
    padding: 10px 0;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; /* خطوط هندسية نظيفة */
    position: relative;
    overflow: hidden;
}

/* حاوية الزجاج - التأثير الزجاجي (Glassmorphism) */
.ticker-glass-panel {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px); /* تأثير الضبابية */
    -webkit-backdrop-filter: blur(12px);
    height: 60px;
    margin: 0 auto;
    max-width: 95%; /* Responsive - عدم الالتصاق بالحواف */
    border-radius: 50px; /* مستديرة بالكامل */
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

/* --- علامة "بث مباشر" الاحترافية والناعمة --- */
.live-status-container {
    display: flex;
    align-items: center;
    padding: 0 25px;
    height: 100%;
    position: relative;
    z-index: 10;
    border-left: 1px solid var(--glass-border);
}

.live-status-container::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

.status-text {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-premium);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    box-shadow: 0 0 8px var(--gold-glow);
}

/* حلقة النبض (Pulse Animation) */
.status-pulse-ring {
    position: absolute;
    right: 25px; /* نفس مكان الـ dot */
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid var(--gold-premium);
    border-radius: 50%;
    animation: professional-pulse 2s infinite var(--ease-premium);
    opacity: 0;
}

/* --- الشريط المتحرك - SLOWER & SMOOTHER --- */
.ticker-view-port {
    flex-grow: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* تظليل جانبي ناعم لـ "دخول/خروج" الأخبار (Fade Effect) */
.ticker-view-port::after,
.ticker-view-port::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.ticker-view-port::before {
    right: 0;
    background: linear-gradient(to left, var(--glass-bg), transparent);
}

.ticker-view-port::after {
    left: 0;
    background: linear-gradient(to right, var(--glass-bg), transparent);
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    /* سرعة بطيئة جداً وانسيابية (إلى اليسار) */
    animation: clean-ticker-scroll 160s linear infinite; 
    padding-left: 50px;
}

/* عناصر الأخبار الجديدة - بطاقات مستديرة وناعمة */
.news-card {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-size: 0.95rem;
    padding: 10px 20px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.02); /* تظليل خفيف جداً */
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.5s var(--ease-premium);
    height: 38px;
}

/* تأثير التمرير (Hover) */
.news-card:hover {
    background: var(--gold-subtle);
    border-color: rgba(201, 165, 92, 0.2);
    transform: translateY(-2px);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-tag {
    color: var(--gold-premium);
    font-weight: 700;
    font-size: 0.75rem;
    margin-left: 12px;
    text-transform: uppercase;
    background: rgba(201, 165, 92, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(201, 165, 92, 0.1);
}

.headline-text {
    font-weight: 500;
    line-height: 1.2;
}

/* توقف الحركة عند التمرير بالماوس */
.ticker-track:hover {
    animation-play-state: paused;
}

/* شعار المصدر في الخلفية */
.ticker-source-logo {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03); /* شفاف جداً */
    user-select: none;
    letter-spacing: -1px;
}

/* --- الأنيميشن Keyframes --- */
@keyframes clean-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); } /* RTL - التمرير إلى اليسار */
}

@keyframes professional-pulse {
    0% { transform: translateY(-50%) scale(1); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-50%) scale(2.5); opacity: 0; }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .ticker-glass-panel {
        height: 50px;
        max-width: 98%;
    }
    .live-status-container { padding: 0 15px; }
    .status-text { font-size: 0.75rem; }
    .news-card { font-size: 0.85rem; padding: 5px 15px; height: 32px; margin: 0 5px;}
    .category-tag { font-size: 0.65rem; padding: 2px 7px;}
    .ticker-track { animation-duration: 160s; } /* أسرع قليلاً على الشاشات الصغيرة */
}
img, table, canvas, video {
    max-width: 100%;
    height: auto;     
}
/* ضبط الحاوية الكبرى التي تحتوي على البطاقات */
.gold-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* تمركز العناصر أفقياً */
    justify-content: center;
    width: 100%;
    padding: 10px 0; /* تقليل البادينغ الجانبي */
    overflow: hidden; /* منع أي إزاحة جانبية */
}

/* ضبط البطاقة نفسها (مثل شراء الذهب الجديد / المستعمل) */
.gold-card {
    width: 90%; /* جعل البطاقة تأخذ أغلب عرض الشاشة */
    max-width: 400px; /* لا تزيد عن هذا العرض في الشاشات الكبيرة */
    margin: 15px auto; /* تمركز البطاقة في الوسط */
    padding: 15px;
    box-sizing: border-box; /* لضمان أن البادينغ لا يزيد العرض */
    display: flex;
    flex-direction: column;
    align-items: center; /* تمركز النصوص والأيقونات بالداخل */
}

/* ضبط صفوف الأسعار (Price Rows) لضمان عدم انزياحها يميناً */
.price-row {
    width: 100%;
    display: flex;
    justify-content: space-between; /* توزيع السعر والعيار بشكل متوازن */
    align-items: center;
    padding: 10px 5px;
    direction: rtl; /* ضمان الترتيب الصحيح للعربية */
}
/* ابحث عن مثل هذه الأسطر واحذفها أو استبدلها بـ 0 */
.price-box {
    margin-right: 40px; /* ❌ هذا يسبب الإزاحة */
    position: relative;
    right: 20px; /* ❌ وهذا أيضاً */
}
.top-price-bar {
    width: 100%;
    display: flex;
    justify-content: center; /* تمركز السعر العالمي في الوسط */
    padding: 10px 0;
}