/* استيراد خط القاهرة */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    font-family: 'Cairo', sans-serif; /* الخط الجديد */
}

html { scroll-behavior: smooth; }

/* الشريط الفوقاني */
.announcement-bar {
    background: #000; color: #fff; height: 35px; line-height: 35px;
    position: fixed; top: 0; width: 100%; z-index: 1000; font-size: 13px;
    text-align: center; font-weight: bold;
}

/* المنيو - مخدوم بالابيض والاسود */
header {
    background: rgba(255, 255, 255, 0.98); 
    position: fixed; top: 35px; width: 100%;
    z-index: 999; padding: 15px 0; border-bottom: 1px solid #eee;
}

nav { 
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; 
    padding: 0 20px;
}

.logo { 
    font-size: 24px; font-weight: 700; letter-spacing: 4px; color: #000;
}

nav ul { display: flex; list-style: none; }
nav ul li a { 
    text-decoration: none; color: #333; font-weight: 600; padding: 0 15px; 
    font-size: 14px; transition: 0.3s;
}
nav ul li a:hover { color: #d4af37; }

/* الدخلة - Hero Section */
.hero {
    height: 100vh; background: url('hero-bg.jpg') no-repeat center center/cover;
    display: flex; justify-content: center; align-items: center;
}

.btn {
    padding: 12px 40px; border: 2px solid #fff; color: #fff;
    text-decoration: none; font-weight: bold; transition: 0.4s;
    background: rgba(0,0,0,0.2); backdrop-filter: blur(5px);
}
.btn:hover { background: #fff; color: #000; }

/* قسم المنتجات */
.products { padding: 100px 20px; text-align: center; background: #fff; }
.section-title { margin-bottom: 50px; font-size: 2.5rem; font-weight: 700; color: #1a1a1a; }

.products-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }

.product-card { 
    width: 380px; background: #fff; transition: 0.4s; 
    border: 1px solid #f2f2f2; overflow: hidden;
}

.product-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
}

.product-card img { width: 100%; height: auto; transition: 0.5s; }
.product-card:hover img { transform: scale(1.05); }

.product-info { padding: 30px; }
.product-info h3 { font-size: 1.3rem; margin-bottom: 10px; color: #111; }
.price { font-size: 1.6rem; font-weight: bold; color: #d4af37; margin-bottom: 25px; }

/* بوطون طلب الآن */
.buy-btn {
    display: inline-block; width: 100%; padding: 15px; background: #000;
    color: #fff; text-decoration: none; font-weight: bold; transition: 0.3s;
    letter-spacing: 1px;
}
.buy-btn:hover { background: #d4af37; }

/* استمارة الطلب الموحدة */
.order-container { padding: 100px 20px; background: #fafafa; }
.order-box { 
    max-width: 550px; margin: 0 auto; background: #fff; padding: 50px; 
    border-top: 4px solid #000; box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

.order-form input, .order-form select {
    padding: 15px; border: 1px solid #e0e0e0; background: #fdfdfd;
    text-align: right; font-size: 15px; margin-bottom: 15px; width: 100%;
    font-family: 'Cairo', sans-serif;
}

.order-form input:focus { border-color: #d4af37; outline: none; }

.final-btn {
    background: #000; color: #fff; padding: 20px; border: none;
    font-weight: bold; cursor: pointer; font-size: 18px; width: 100%;
    transition: 0.3s; font-family: 'Cairo', sans-serif;
}
.final-btn:hover { background: #d4af37; }

/* تحسين الهاتف */
@media (max-width: 768px) {
    nav { flex-direction: column; text-align: center; }
    .logo { margin-bottom: 15px; }
    nav ul li { margin-bottom: 10px; }
    header { top: 35px; padding: 10px; }
    .section-title { font-size: 1.8rem; }
    .product-card { width: 100%; }
    .order-box { padding: 30px 20px; }
}