:root {
    --amber-gold: #e5ac37;
    --charcoal: #0d0b0a;
    --honey-light: #fdf5e6;
    --gold-border: #b2893f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { background-color: var(--charcoal); color: var(--honey-light); font-family: 'Cairo', sans-serif; direction: rtl; overflow-x: hidden; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; position: fixed; width: 100%; z-index: 1000; background: rgba(13, 11, 10, 0.95); backdrop-filter: blur(10px); }
.small-logo { width: 70px; border-radius: 5px; border: 1px solid var(--gold-border); }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { color: white; text-decoration: none; font-weight: 700; }

/* Hero & Buttons */
.hero { height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.reveal-text { font-size: clamp(3rem, 10vw, 6rem); font-weight: 800; color: var(--amber-gold); }
.cta-button { padding: 15px 50px; border-radius: 50px; background: transparent; color: var(--amber-gold); border: 2px solid var(--gold-border); font-weight: 800; cursor: pointer; margin-top: 20px; transition: 0.4s; }
.cta-button:hover { background: var(--amber-gold); color: var(--charcoal); }

/* السلايدر المهندم */
.product-slider { padding: 80px 0; background: #050505; overflow: hidden; }
.slider-track { display: flex; width: max-content; animation: scroll-track 35s linear infinite; }
.slide { width: 300px; padding: 0 15px; text-align: center; flex-shrink: 0; }
.slide img { width: 100%; height: 400px; object-fit: cover; border-radius: 10px; margin-bottom: 15px; }
.product-name { font-weight: 800; font-size: 1.1rem; color: #fff; }

@keyframes scroll-track { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } }

/* سيكشن الفوائد المريح */
.benefits { padding: 100px 10%; background: var(--charcoal); }
.section-title { text-align: center; margin-bottom: 60px; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-card { background: rgba(255, 255, 255, 0.03); padding: 40px; border-radius: 20px; text-align: center; border: 1px solid rgba(178, 137, 63, 0.1); }
.benefit-card h3 { color: var(--amber-gold); margin-bottom: 15px; font-size: 1.5rem; }
.benefit-card p { line-height: 1.7; color: #aaa; }

/* Spotlight - النسخة الأساسية (للكمبيوتر) */
.reveal-container { padding: 60px 10%; text-align: center; }
.reveal-box { position: relative; width: 100%; max-width: 1000px; height: 500px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid var(--gold-border); cursor: crosshair; }
.clear-img { width: 100%; height: 100%; object-fit: cover; }
.blur-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('assets/p1.png') no-repeat center;
    background-size: cover;
    filter: blur(30px) brightness(0.3); pointer-events: none;
    -webkit-mask-image: radial-gradient(circle 120px at var(--x, 50%) var(--y, 50%), transparent 0%, black 100%);
    mask-image: radial-gradient(circle 120px at var(--x, 50%) var(--y, 50%), transparent 0%, black 100%);
}

/* Story Section (متناسق) */
.our-story { padding: 120px 10%; }
.story-container { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.story-image { flex: 1; max-width: 450px; }
.story-image img { width: 100%; border-radius: 15px; }
.story-text { flex: 1.2; }

/* Footer الواسع */
.simple-footer { padding: 120px 20px; text-align: center; border-top: 1px solid rgba(178, 137, 63, 0.1); color: #555; }

/* =========================================
   التعديل الجوهري للموبايل (حل مشكلة الغطاء المبكسل)
   ========================================= */
@media (max-width: 768px) {
    .reveal-box { height: 350px; } /* تصغير الارتفاع للموبايل */
    .slide { width: 220px; }
    .slide img { height: 300px; }
    
    /* سحر التعديل هنا: */
    .blur-overlay {
        /* بدلاً من cover، جعلناها تحتفظ بمقاس الصورة الأصلية وتتوسط */
        background-size: contain; /* تضمن رؤية البرطمانات كاملة */
        background-position: center center;
        filter: blur(15px) brightness(0.4); /* تقليل الـ Blur لتبان ملامح البرطمانات */
        -webkit-mask-image: radial-gradient(circle 90px at var(--x, 50%) var(--y, 50%), transparent 0%, black 100%);
        mask-image: radial-gradient(circle 90px at var(--x, 50%) var(--y, 50%), transparent 0%, black 100%);
    }
    
    .cursor-dot { display: none !important; }
    .story-container { flex-direction: column; text-align: center; }
}