/* ===== متغيرات CSS ===== */
:root {
    --brown-dark: #4a2a1f;
    --brown-medium: #5c3a2e;
    --brown-light: #6d4a3d;
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-dark: #b8961f;
    --beige: #f5f0e1;
    --beige-dark: #e8dcc8;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.3);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.4);
    --gold-glow-strong: 0 0 30px rgba(212, 175, 55, 0.6);
    --transition: all 0.3s ease;
}

/* ===== إعادة تعيين ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--brown-dark);
    color: var(--beige);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== شريط التنقل ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(74, 42, 31, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(74, 42, 31, 0.98);
    box-shadow: 0 4px 20px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--beige);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-toggle {
    display: none;    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.3rem;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ===== القسم الرئيسي (Hero) ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--brown-dark) 0%, #3a1f15 50%, var(--brown-dark) 100%);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--beige);
    margin-bottom: 20px;
    line-height: 1.4;    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: var(--gold-glow);
    transition: width 1s ease;
}

.hero-title.visible::after {
    width: 80%;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--beige-dark);
    margin-bottom: 35px;
    font-weight: 400;
}

.services-quick {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    padding: 20px 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    font-size: 1rem;
}

.gold-dash {
    color: var(--gold);
    font-weight: 700;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 14px 40px;    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== الزر الذهبي ===== */
.btn-gold {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow: var(--gold-glow-strong);
    transform: translateY(-2px);
}

/* ===== الإحصائيات ===== */
.stats-section {
    padding: 60px 20px;
    background: var(--brown-medium);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
    display: inline-block;
    min-width: 60px;
}

.stat-label {
    font-size: 1rem;
    color: var(--beige-dark);
    font-weight: 600;
}

/* ===== قسم رؤيتنا ل2030 ===== */
.vision2030-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--brown-dark) 0%, #3a1f15 50%, var(--brown-dark) 100%);
    position: relative;
    overflow: hidden;
}

.vision2030-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.vision2030-content {
    position: relative;
    z-index: 2;    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.vision2030-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.vision2030-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.vision2030-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 15px;
}

.vision2030-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--beige);
    margin-bottom: 25px;
    line-height: 2;
}

.vision2030-text {
    font-size: 1.05rem;
    color: var(--beige-dark);
    line-height: 2.2;
}

/* ===== حلول طباعة ===== */
.solutions-section {
    padding: 80px 20px;    background: var(--brown-dark);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--beige);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 10px auto 0;
    box-shadow: var(--gold-glow);
    transition: width 0.8s ease;
}

.section-title.visible::after {
    width: 200px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--beige-dark);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--gold-glow-strong);
    background: rgba(212, 175, 55, 0.1);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--beige);
}

/* ===== المنتجات ===== */
.products-section {
    padding: 80px 20px;
    background: var(--brown-medium);
}

.product-category {
    margin-bottom: 70px;
    scroll-margin-top: 100px;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.category-title::after {    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 8px auto 0;
    box-shadow: var(--gold-glow);
    transition: width 0.8s ease;
}

.category-title.visible::after {
    width: 150px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--brown-dark);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.product-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}
.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--beige-dark);
    margin-bottom: 18px;
    line-height: 1.8;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    font-size: 0.9rem;
}

/* ===== لماذا نحن ===== */
.why-us-section {
    padding: 80px 20px;
    background: var(--brown-dark);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: var(--transition);
}

.why-card:hover {    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--gold-glow-strong);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.why-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--beige-dark);
    line-height: 2;
}

/* ===== من نحن ===== */
.about-section {
    padding: 80px 20px;
    background: var(--brown-medium);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-logo {
    flex-shrink: 0;}

.about-logo img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 2.2;
    color: var(--beige-dark);
}

/* ===== تواصل معنا ===== */
.contact-section {
    padding: 80px 20px;
    background: var(--brown-dark);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 15px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.contact-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-tagline {
    font-size: 1.1rem;    color: var(--beige-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-bottom: 15px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--beige-dark);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
    display: block;
    border-radius: 14px;
}

/* ===== التذييل ===== */
.footer {
    padding: 25px 20px;
    background: #2a1510;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer p {
    font-size: 0.9rem;
    color: var(--beige-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--gold) !important;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    background: rgba(212, 175, 55, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.footer-link:hover {    color: var(--gold-light) !important;
    background: rgba(212, 175, 55, 0.3);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    transform: scale(1.02);
}

/* ===== الأزرار العائمة ===== */
.floating-btn {
    position: fixed;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--gold);
    text-decoration: none;
}

.whatsapp-btn {
    bottom: 30px;
    left: 30px;
    background: var(--gold);
    color: var(--brown-dark);
}

.whatsapp-btn:hover {
    background: var(--gold-light);
    box-shadow: var(--gold-glow-strong);
    transform: scale(1.1);
}

.call-btn {
    top: 100px;
    left: 30px;
    background: rgba(74, 42, 31, 0.9);
    color: var(--gold);
}

.call-btn:hover {
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow: var(--gold-glow-strong);
    transform: scale(1.1);
}
.scroll-top-btn {
    bottom: 30px;
    right: 30px;
    background: rgba(74, 42, 31, 0.9);
    color: var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow: var(--gold-glow-strong);
}

/* ===== تأثيرات الحركة ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== صفحة أعمالنا ===== */
.works-hero-section {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, var(--brown-dark) 0%, #3a1f15 50%, var(--brown-dark) 100%);
    text-align: center;
    position: relative;
}

.works-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);    pointer-events: none;
}

.works-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.works-hero-subtitle {
    font-size: 1.15rem;
    color: var(--beige-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
    position: relative;
    z-index: 2;
}

.works-section {
    padding: 60px 20px 80px;
    background: var(--brown-medium);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
}

.work-card {
    background: var(--brown-dark);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.work-card .product-img-wrapper {
    height: 280px;
}
.work-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

/* ===== التجاوب ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .vision2030-title {
        font-size: 1.8rem;
    }
    .vision2030-content {
        padding: 40px 25px;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(74, 42, 31, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 5px;        border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .nav-link {
        padding: 12px 20px;
        text-align: center;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .services-quick {
        font-size: 0.85rem;
        padding: 15px 20px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stat-card {
        padding: 20px;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .category-title {
        font-size: 1.4rem;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
    }    .call-btn {
        top: 90px;
        left: 20px;
    }
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
    }
    .vision2030-section {
        padding: 60px 20px;
    }
    .vision2030-title {
        font-size: 1.5rem;
    }
    .vision2030-subtitle {
        font-size: 1rem;
    }
    .vision2030-text {
        font-size: 0.95rem;
    }
    .vision2030-content {
        padding: 30px 20px;
    }
    .works-hero-title {
        font-size: 2rem;
    }
    .works-hero-subtitle {
        font-size: 1rem;
    }
    .works-grid {
        grid-template-columns: 1fr;
    }
    .works-hero-section {
        padding: 120px 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-section {
        padding: 100px 15px 60px;
    }
    .nav-container {
        height: 65px;
    }
    .logo-text {
        font-size: 1.1rem;
    }    .logo-img {
        width: 38px;
        height: 38px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .about-logo img {
        width: 130px;
        height: 130px;
    }
    .vision2030-title {
        font-size: 1.3rem;
    }
    .vision2030-icon {
        width: 65px;
        height: 65px;
    }
    .vision2030-icon i {
        font-size: 1.8rem;
    }
    .works-hero-title {
        font-size: 1.6rem;
    }
    .work-card .product-img-wrapper {
        height: 240px;
    }
}
/* ===== شريط بحث المنتجات ===== */
.search-container {
    max-width: 700px;
    margin: 25px auto 35px;
    text-align: center;
}
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 5px;
    transition: var(--transition);
}
.search-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
    background: rgba(212, 175, 55, 0.1);
}
.search-icon {
    position: absolute;
    right: 20px;
    color: var(--gold);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}
.search-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 45px 14px 20px;
    color: var(--beige);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    direction: rtl;
}
.search-wrapper input::placeholder { color: var(--beige-dark); opacity: 0.7; }
.search-no-result {
    margin-top: 12px;
    color: var(--gold-light);
    font-weight: 600;
    display: none;
}
.search-no-result.show { display: block; }