/* 1. النقطة المركزية - ذهبي صريح */
.burghan-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #c9a96e !important; /* ذهبي بورغان */
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000000;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.5); /* توهج خفيف ليكون واضحاً */
}

/* 2. الدائرة الخارجية - تحديد ذهبي */
.burghan-cursor-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border: 1.5px solid #c9a96e !important; /* إطار ذهبي واضح */
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    /* ألغيت خاصية difference لأنها كانت تغير الألوان لدرجات غلط */
    background-color: transparent;
    transition: transform 0.2s ease-out, background 0.3s ease;
}

/* حالة التحويم فوق الأزرار */
.cursor-hover .burghan-cursor-outer {
    transform: scale(1.6);
    background-color: rgba(201, 169, 110, 0.15) !important; /* ظل ذهبي خفيف */
    border-color: #f5ede0 !important; /* يتحول السلك لسكري عند اللمس */
}

/* إخفاء الماوس الأصلي */
@media (min-width: 1024px) {
    body, a, button, .s-button, .s-product-card, .s-header-menu-link {
        cursor: none !important;
    }
}

/* إخفاء في الجوال */
@media (max-width: 1023px) {
    .burghan-cursor-outer, .burghan-cursor-dot {
        display: none !important;
    }
}
/* 1. حاوية الشريط العلوي - بورغندي داكن */
.brg-top-marquee {
    background: #3d0814; /* لون بورغان الأساسي */
    padding: 12px 0;
    overflow: hidden;
    border-top: 0.5px solid rgba(201, 169, 110, 0.3);
    border-bottom: 0.5px solid rgba(201, 169, 110, 0.4);
    display: flex;
    width: 100%;
    z-index: 99;
    direction: ltr !important;
}

/* 2. المحتوى المتحرك - انسيابية تامة */
.brg-marquee-inner {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    /* تحريك لليسار بشكل مستمر */
    animation: brg_scroll_infinite 40s linear infinite;
}

/* 3. النصوص الذهبية المتوهجة */
.brg-marquee-item {
    font-family: 'Cinzel', serif; /* خط فخم */
    font-size: clamp(12px, 1.3vw, 15px);
    font-weight: 600;
    letter-spacing: 3px;
    padding: 0 50px; /* مسافة بين الجمل */
    text-transform: uppercase;
    
    /* تأثير الذهب المتوهج */
    background: linear-gradient(
        to right, 
        #bf953f 0%, 
        #fcf6ba 25%, 
        #b38728 50%, 
        #fcf6ba 75%, 
        #bf953f 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold_shine_move 4s linear infinite;
}

/* 4. الفاصل (النجمة الذهبية) */
.brg-star {
    color: #c9a96e;
    font-size: 18px;
    opacity: 0.9;
}

/* أنيميشن الحركة المستمرة لليسار */
@keyframes brg_scroll_infinite {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* السر هنا في الـ 50% لضمان عدم التقطع */
}

/* أنيميشن لمعان الذهب على الحروف */
@keyframes gold_shine_move {
    to { background-position: 200% center; }
}