/* ============================================================
   style.css  -  SONA ACCESSORIES  (النسخة الاحترافية)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --gold: #f8dfa6;
    --gold-dark: #d4af37;
    --navy-deep: #040b1a;
    --blue-dark: #071d42;
    --blue-card: #0a1f38;
    --blue-bright: #297dd8;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0,0,0,0.7);
    --shadow-hover: 0 30px 80px rgba(41, 125, 216, 0.25);
    --radius: 24px;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    /* Amiri: كلاسيكي وراقي للعناوين - Cairo: عصري وواضح للنصوص */
    --font-heading: 'Amiri', serif;
    --font-body: 'Cairo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: var(--white);
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
    cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== المؤشر المخصص ===== */
.cursor-dot {
    width: 8px; height: 8px; background: var(--gold);
    border-radius: 50%; position: fixed; pointer-events: none;
    z-index: 9999; transition: transform 0.1s;
    transform: translate(-50%, -50%);
}
.cursor-ring {
    width: 40px; height: 40px; border: 2px solid rgba(248, 223, 166, 0.4);
    border-radius: 50%; position: fixed; pointer-events: none;
    z-index: 9998; transition: all 0.15s ease-out;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(2px);
}

/* ===== جزيئات المجوهرات ===== */
.particles-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    overflow: hidden;
}
.jewelry-particle {
    position: absolute;
    animation: floatJewelry linear infinite;
    text-shadow: 0 0 20px rgba(248, 223, 166, 0.3);
    opacity: 0.2;
}
@keyframes floatJewelry {
    0% { transform: translateY(100vh) rotate(0deg) scale(0.5); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) rotate(720deg) scale(1.2); opacity: 0; }
}

/* ===== شريط التقدم ===== */
.progress-bar {
    position: fixed; top: 0; left: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    z-index: 10000; width: 0%; transition: width 0.1s;
    box-shadow: 0 0 20px rgba(248, 223, 166, 0.5);
}

/* ===== شريط التمرير ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ===== أزرار ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 44px; background: var(--blue-bright);
    color: var(--white); font-weight: 700; font-size: 1.05rem;
    border: none; border-radius: 60px; cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(41, 125, 216, 0.3);
    font-family: var(--font-body);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--navy-deep); transform: translateY(-5px) scale(1.02); box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 38px; background: transparent;
    color: var(--gold); font-weight: 600; font-size: 1rem;
    border: 2px solid var(--gold); border-radius: 60px;
    cursor: pointer; transition: var(--transition);
    font-family: var(--font-body);
}
.btn-outline:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-5px); box-shadow: 0 0 40px rgba(248, 223, 166, 0.2); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; background: var(--blue-card);
    color: var(--white); font-weight: 600; font-size: 0.95rem;
    border: 1px solid rgba(248, 223, 166, 0.2); border-radius: 60px;
    cursor: pointer; transition: var(--transition);
    font-family: var(--font-body);
}
.btn-secondary:hover { background: var(--blue-bright); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(41,125,216,0.3); }

.btn-danger {
    background: #e74c3c; color: white; border: none;
    padding: 8px 16px; border-radius: 12px; cursor: pointer;
    transition: var(--transition); font-size: 0.85rem;
}
.btn-danger:hover { background: #c0392b; transform: scale(1.1); }

.btn-view-all {
    background: var(--gold-dark);
    color: var(--navy-deep);
    font-weight: 800;
}
.btn-view-all:hover { background: var(--white); }

.pulse-btn {
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(248, 223, 166, 0.3); }
    50% { box-shadow: 0 0 0 20px rgba(248, 223, 166, 0); }
}

/* ===== Glassmorphism ===== */
.glass-card {
    background: rgba(10, 31, 56, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(248, 223, 166, 0.1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(4, 11, 26, 0.92);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(248, 223, 166, 0.1);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-heading); font-size: 1.6rem;
    font-weight: 700; color: var(--white);
}
.nav-logo span { color: var(--gold); }
.logo-svg { filter: drop-shadow(0 0 15px rgba(248, 223, 166, 0.3)); transition: var(--transition); }
.nav-logo:hover .logo-svg { transform: rotate(10deg) scale(1.1); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: rgba(255,255,255,0.8); font-weight: 500; font-size: 1rem;
    transition: var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cart { position: relative; display: flex; align-items: center; gap: 6px; }
.cart-badge {
    position: absolute; top: -8px; right: -12px;
    background: var(--gold); color: var(--navy-deep);
    font-size: 0.7rem; font-weight: 800;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 28px; height: 2.5px; background: var(--white); border-radius: 4px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; background: radial-gradient(ellipse at 30% 50%, #0a1f38, var(--navy-deep) 80%);
    display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-glow {
    position: absolute; top: 20%; left: 10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(41, 125, 216, 0.15), transparent 70%);
    border-radius: 50%; filter: blur(60px); animation: glowMove 8s infinite alternate;
}
@keyframes glowMove {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(100px, -50px) scale(1.2); opacity: 1; }
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content h1 {
    font-family: var(--font-heading); font-size: 4rem; font-weight: 800;
    color: var(--white); line-height: 1.1; margin-top: 10px;
}
.hero-content h1 span { color: var(--gold); text-shadow: 0 0 40px rgba(248, 223, 166, 0.2); }
.hero-logo-big { margin-bottom: 10px; }
.hero-logo-big svg { filter: drop-shadow(0 0 30px rgba(248, 223, 166, 0.4)); animation: floatLogo 4s ease-in-out infinite; }
@keyframes floatLogo {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(4deg); }
}

.typed-output {
    font-size: 1.3rem; color: rgba(255,255,255,0.85); margin: 20px 0 32px;
    min-height: 50px; font-weight: 300;
    border-right: 3px solid var(--gold);
    padding-right: 15px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-deco { font-size: 6rem; color: var(--gold); display: flex; gap: 30px; opacity: 0.2; }
.hero-deco i { animation: float 6s ease-in-out infinite; }
.hero-deco i:nth-child(2) { animation-delay: 1.5s; }
.hero-deco i:nth-child(3) { animation-delay: 3s; }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* ===== موجات ===== */
.wave {
    position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
    background: var(--navy-deep);
    clip-path: polygon(0% 100%, 0% 40%, 25% 70%, 50% 30%, 75% 70%, 100% 40%, 100% 100%);
    opacity: 0.1;
}
.wave1 { bottom: 0; height: 100px; opacity: 0.15; transform: scaleX(-1); }
.wave2 { bottom: -10px; height: 60px; opacity: 0.05; }

/* ===== STATS ===== */
.stats {
    padding: 60px 0; background: transparent;
    position: relative; z-index: 2;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.stat-item {
    text-align: center; padding: 30px 20px; border-radius: var(--radius);
    transition: var(--transition);
}
.stat-item:hover { transform: translateY(-10px); border-color: var(--gold); }
.stat-item i { font-size: 2.8rem; color: var(--gold); margin-bottom: 10px; }
.stat-number { display: block; font-size: 3.2rem; font-weight: 800; color: var(--gold); font-family: var(--font-heading); }
.stat-item p { color: rgba(255,255,255,0.6); font-weight: 500; }

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: var(--font-heading); font-size: 3rem; text-align: center;
    margin: 40px 0 30px; color: var(--white);
}
.section-title::after {
    content: ''; display: block; width: 100px; height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 10px auto 0; border-radius: 4px;
}

/* ===== WHY US ===== */
.why-us { padding: 40px 0; }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px; margin-top: 20px;
}
.feature-item {
    padding: 30px 20px; border-radius: var(--radius); text-align: center;
    transition: var(--transition);
}
.feature-item:hover { transform: translateY(-8px); border-color: var(--gold); }
.feature-item i { font-size: 2.5rem; color: var(--gold); margin-bottom: 12px; }
.feature-item h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px; }
.feature-item p { opacity: 0.7; }

/* ===== OFFERS ===== */
.offers { padding: 20px 0; }
.offers-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.offer-card {
    padding: 20px; border-radius: var(--radius); text-align: center;
    position: relative; transition: var(--transition);
}
.offer-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.offer-badge {
    position: absolute; top: 10px; right: 10px;
    background: #e74c3c; color: white;
    padding: 6px 16px; border-radius: 30px;
    font-weight: 700; font-size: 0.9rem;
}
.offer-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; }
.offer-card h3 { margin: 12px 0 6px; font-family: var(--font-heading); color: var(--gold); }
.offer-price del { color: #999; margin-left: 12px; }
.offer-price span { color: #e74c3c; font-weight: 700; font-size: 1.3rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 40px 0; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.testimonial-card {
    padding: 25px; border-radius: var(--radius); text-align: center;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.testimonial-card i { font-size: 2rem; color: var(--gold); opacity: 0.5; margin-bottom: 10px; }
.testimonial-card p { font-style: italic; margin: 10px 0; opacity: 0.9; }
.testimonial-card .customer { font-weight: 700; color: var(--gold); margin-top: 8px; }

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px; margin-bottom: 20px;
}
.product-card {
    background: rgba(10, 31, 56, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 223, 166, 0.08);
    border-radius: var(--radius); overflow: hidden;
    padding: 20px; text-align: center; cursor: pointer;
    transition: var(--transition); box-shadow: var(--shadow);
    transform-style: preserve-3d;
    perspective: 800px;
}
.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}
.product-card img {
    width: 100%; height: 240px; object-fit: cover;
    border-radius: 16px; background: var(--navy-deep);
    transition: var(--transition);
}
.product-card:hover img { transform: scale(1.05); }
.product-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin: 14px 0 4px; color: var(--gold); }
.product-card .price { color: var(--blue-bright); font-weight: 700; font-size: 1.5rem; margin: 6px 0 14px; }
.product-card .btn-secondary { width: 100%; justify-content: center; }

.view-all-container { display: flex; justify-content: center; margin: 30px 0 50px; }

/* ===== PRODUCT DETAILS ===== */
.product-details-page { padding: 40px 0; min-height: 70vh; }
.product-details {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    padding: 40px; border-radius: var(--radius);
}
.product-details img {
    width: 100%; height: auto; max-height: 500px;
    object-fit: cover; border-radius: 16px;
}
.product-details .info h1 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold); }
.product-details .info .price { font-size: 2.2rem; font-weight: 700; color: var(--blue-bright); margin: 12px 0 20px; }
.product-details .info .description { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 24px; }
.product-details .info .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CART ===== */
.cart-page { padding: 40px 0; min-height: 60vh; }
.cart-item {
    display: flex; align-items: center; gap: 20px;
    background: rgba(10, 31, 56, 0.7); backdrop-filter: blur(10px);
    padding: 16px 20px; border-radius: var(--radius);
    margin-bottom: 16px; flex-wrap: wrap;
    border-right: 4px solid var(--gold);
}
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; }
.cart-item-info { flex: 1; min-width: 120px; }
.cart-item-info h4 { font-family: var(--font-heading); color: var(--gold); }
.cart-item-info .price { color: var(--blue-bright); font-weight: 700; }
.cart-item-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cart-item-actions input {
    width: 60px; padding: 8px; background: var(--navy-deep);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    text-align: center; font-size: 1rem; color: var(--white);
}
.cart-total {
    font-size: 1.8rem; font-weight: 700; text-align: left;
    margin: 30px 0 20px; padding: 16px 24px;
    background: rgba(10, 31, 56, 0.7); border-radius: var(--radius);
    border-right: 4px solid var(--gold);
}
.cart-total span { color: var(--gold); }

/* ===== ORDER FORM ===== */
.order-form { padding: 35px; border-radius: var(--radius); margin: 30px 0; }
.order-form h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 25px; color: var(--gold); }
.order-form h3 i { color: var(--blue-bright); margin-left: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,0.8); }
.form-group label i { color: var(--gold); margin-left: 6px; }
.form-group input {
    width: 100%; padding: 14px 18px;
    background: rgba(4, 11, 26, 0.6); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; font-size: 1rem; transition: var(--transition);
    color: var(--white);
}
.form-group input:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 4px rgba(248, 223, 166, 0.1); }
.whatsapp-btn {
    display: flex; align-items: center; gap: 12px;
    background: #25D366; color: white; border: none;
    padding: 18px 44px; border-radius: 60px; font-size: 1.2rem;
    font-weight: 800; cursor: pointer; transition: var(--transition);
    margin: 10px 0 0; box-shadow: 0 4px 30px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover { background: #128C7E; transform: scale(1.03); }

/* ===== FILTERS & SEARCH ===== */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-bottom: 20px;
}
.filter-btn {
    padding: 10px 24px; background: rgba(10, 31, 56, 0.7);
    border: 1px solid rgba(248, 223, 166, 0.2); border-radius: 40px;
    color: var(--white); font-weight: 500; cursor: pointer;
    transition: var(--transition); font-family: var(--font-body);
}
.filter-btn:hover { background: var(--blue-bright); }
.filter-btn.active {
    background: var(--gold-dark); color: var(--navy-deep);
    border-color: var(--gold-dark);
}
.search-bar {
    display: flex; align-items: center; gap: 12px;
    background: rgba(10, 31, 56, 0.7);
    border-radius: 60px; padding: 8px 20px;
    max-width: 500px; margin: 0 auto 30px;
    border: 1px solid rgba(248, 223, 166, 0.1);
}
.search-bar i { color: var(--gold); font-size: 1.2rem; }
.search-bar input {
    flex: 1; background: transparent; border: none;
    padding: 12px 0; color: var(--white); font-size: 1rem;
    outline: none;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.4); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 30px; left: 30px;
    width: 50px; height: 50px;
    background: var(--gold-dark); color: var(--navy-deep);
    border: none; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top:hover { transform: translateY(-5px) scale(1.1); background: var(--gold); }

/* ===== FOOTER ===== */
.footer {
    background: rgba(4, 11, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(248, 223, 166, 0.08);
    padding: 40px 0 20px;
    margin-top: 40px;
}
.footer-content {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 24px;
}
.footer-brand {
    display: flex; align-items: center; gap: 16px;
}
.footer-logo {
    width: 50px; height: 50px; object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(248, 223, 166, 0.2));
}
.footer-brand span {
    font-family: var(--font-heading);
    font-size: 1.4rem; color: var(--white);
}
.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.85rem; opacity: 0.6;
    margin-top: 2px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { transition: var(--transition); font-weight: 500; }
.footer-links a:hover { color: var(--gold); transform: translateY(-2px); }
.footer-social { display: flex; gap: 18px; font-size: 1.4rem; }
.footer-social a { transition: var(--transition); }
.footer-social a:hover { color: var(--gold); transform: translateY(-5px) scale(1.1); }
.footer-bottom {
    text-align: center; margin-top: 30px;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05);
    opacity: 0.6; font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons { justify-content: center; }
    .hero-deco { font-size: 4rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links {
        display: none; flex-direction: column; gap: 12px;
        background: var(--navy-deep); padding: 20px;
        border-radius: var(--radius); position: absolute;
        top: 70px; right: 20px; width: 200px;
        border: 1px solid rgba(248, 223, 166, 0.1);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .footer-content { flex-direction: column; text-align: center; }
    .product-details { grid-template-columns: 1fr; padding: 20px; }
    .footer-brand { flex-direction: column; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .product-grid { grid-template-columns: 1fr; }
    .cart-item { flex-direction: column; align-items: stretch; text-align: center; }
    .cart-item img { margin: 0 auto; }
    .back-to-top { width: 40px; height: 40px; font-size: 1.2rem; bottom: 20px; left: 20px; }
}/* ===== باقي التنسيقات كما هي ===== */

/* إضافة تنسيق لصورة الشعار في الناف بار */
.nav-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transition: var(--transition);
}
.nav-logo:hover .nav-logo-img {
    transform: scale(1.06);
}
.footer-logo {
    image-rendering: -webkit-optimize-contrast;
}

/* ===== باقي التنسيقات ===== */
/* ============================================================
   طرق الدفع - Cart Page
   ============================================================ */
.payment-methods { margin: 24px 0; }
.payment-methods h4 {
    font-family: var(--font-heading); color: var(--gold);
    font-size: 1.3rem; margin-bottom: 14px;
}
.payment-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.payment-option {
    display: flex; align-items: center; gap: 12px;
    background: rgba(10, 31, 56, 0.7); border: 2px solid rgba(248, 223, 166, 0.12);
    border-radius: 16px; padding: 16px 18px; cursor: pointer;
    transition: var(--transition);
}
.payment-option:hover { border-color: rgba(248, 223, 166, 0.4); }
.payment-option.selected { border-color: var(--gold); background: rgba(248, 223, 166, 0.08); box-shadow: 0 0 0 3px rgba(248,223,166,0.08); }
.payment-option input { accent-color: var(--gold); width: 18px; height: 18px; }
.payment-option .pm-icon { font-size: 1.5rem; color: var(--gold); width: 30px; text-align: center; }
.payment-option .pm-label { font-weight: 700; }
.payment-option .pm-sub { display: block; font-size: 0.8rem; opacity: 0.6; font-weight: 400; }
.wallet-details {
    display: none; margin-top: 14px; padding: 16px 20px;
    background: rgba(41, 125, 216, 0.08); border-right: 3px solid var(--blue-bright);
    border-radius: 12px; font-size: 0.95rem; line-height: 1.9;
}
.wallet-details.show { display: block; }
.wallet-details strong { color: var(--gold); }

/* ============================================================
   محتوى إضافي للصفحة الرئيسية (عن الماركة + نشرة + بادجات ثقة)
   ============================================================ */
.about-brand { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: var(--font-heading); font-size: 2.4rem; color: var(--gold); margin-bottom: 18px; }
.about-text p { opacity: 0.75; line-height: 2; margin-bottom: 16px; font-size: 1.05rem; }
.about-badges { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.about-badge { text-align: center; }
.about-badge strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); }
.about-badge span { font-size: 0.85rem; opacity: 0.6; }
.about-visual {
    aspect-ratio: 1/1; border-radius: 32px; position: relative;
    background: radial-gradient(circle at 35% 30%, rgba(248,223,166,0.12), transparent 60%),
                linear-gradient(145deg, var(--blue-card), var(--navy-deep));
    border: 1px solid rgba(248,223,166,0.15);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.about-visual i { font-size: 9rem; color: var(--gold); opacity: 0.25; }

.trust-strip { padding: 34px 0; border-top: 1px solid rgba(248,223,166,0.08); border-bottom: 1px solid rgba(248,223,166,0.08); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; opacity: 0.85; }
.trust-item i { color: var(--gold); font-size: 1.6rem; }
.trust-item span { font-weight: 600; font-size: 0.95rem; }

.newsletter { padding: 70px 0; text-align: center; }
.newsletter-box {
    max-width: 620px; margin: 0 auto; padding: 50px 40px; border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(41,125,216,0.08), rgba(248,223,166,0.05));
}
.newsletter-box h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--gold); margin-bottom: 10px; }
.newsletter-box p { opacity: 0.7; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
    flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 50px;
    border: 1px solid rgba(248,223,166,0.2); background: rgba(4,11,26,0.6); color: var(--white); outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }

/* ============================================================
   صفحة الأدمن
   ============================================================ */
.admin-login-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.admin-login-box { max-width: 400px; width: 100%; padding: 44px 36px; border-radius: var(--radius); text-align: center; }
.admin-login-box i.fa-crown { font-size: 2.6rem; color: var(--gold); margin-bottom: 14px; }
.admin-login-box h2 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 6px; }
.admin-login-box p { opacity: 0.6; margin-bottom: 24px; font-size: 0.9rem; }
.admin-login-box input {
    width: 100%; padding: 14px 18px; margin-bottom: 16px; border-radius: 12px;
    background: rgba(4,11,26,0.6); border: 1px solid rgba(255,255,255,0.1); color: var(--white); outline: none;
}
.admin-login-box input:focus { border-color: var(--gold); }
.admin-error { color: #ff6b6b; font-size: 0.85rem; margin-bottom: 12px; display: none; }

.admin-page { display: none; padding: 40px 0 80px; min-height: 80vh; }
.admin-page.show { display: block; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.admin-header h1 { font-family: var(--font-heading); color: var(--gold); font-size: 2.2rem; }
.admin-tabs { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.admin-tab-btn {
    padding: 12px 26px; border-radius: 40px; border: 1px solid rgba(248,223,166,0.2);
    background: rgba(10,31,56,0.7); color: var(--white); cursor: pointer; font-weight: 600;
    font-family: var(--font-body); transition: var(--transition);
}
.admin-tab-btn.active { background: var(--gold-dark); color: var(--navy-deep); border-color: var(--gold-dark); }
.admin-panel { display: none; }
.admin-panel.show { display: block; }

.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; }
.admin-stat-card { padding: 24px; border-radius: 18px; text-align: center; }
.admin-stat-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
.admin-stat-card strong { display: block; font-size: 2rem; font-family: var(--font-heading); color: var(--gold); }
.admin-stat-card span { opacity: 0.6; font-size: 0.85rem; }

.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius); }
.admin-table { width: 100%; border-collapse: collapse; background: rgba(10,31,56,0.5); border-radius: var(--radius); overflow: hidden; }
.admin-table th, .admin-table td { padding: 14px 16px; text-align: right; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.92rem; }
.admin-table th { background: rgba(4,11,26,0.7); color: var(--gold); font-weight: 700; }
.admin-table tr:hover td { background: rgba(248,223,166,0.03); }
.admin-table img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; }
.admin-table input, .admin-table select {
    background: rgba(4,11,26,0.6); border: 1px solid rgba(255,255,255,0.1); color: var(--white);
    padding: 8px 10px; border-radius: 8px; width: 100%; min-width: 90px; font-family: var(--font-body);
}
.admin-actions-cell { display: flex; gap: 8px; }
.admin-icon-btn {
    border: none; border-radius: 8px; width: 34px; height: 34px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.admin-icon-btn.save { background: #2ecc71; color: #04120a; }
.admin-icon-btn.delete { background: #e74c3c; color: white; }
.admin-icon-btn:hover { transform: scale(1.1); }
.admin-badge { padding: 4px 12px; border-radius: 30px; font-size: 0.78rem; font-weight: 700; }
.admin-badge.status-new { background: rgba(41,125,216,0.2); color: #7ab8f5; }
.admin-badge.status-done { background: rgba(46,204,113,0.2); color: #6ee7a4; }
.admin-empty-state { text-align: center; padding: 60px 20px; opacity: 0.6; }
.admin-empty-state i { font-size: 2.6rem; color: var(--gold); margin-bottom: 12px; display: block; }
.admin-loading { text-align: center; padding: 40px; opacity: 0.6; }
.sheet-status { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; opacity: 0.7; }
.sheet-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #e74c3c; }
.sheet-status.connected .dot { background: #2ecc71; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; max-width: 320px; margin: 0 auto; }
}

/* صفحة الأدمن: مؤشر ماوس عادي أوضح للعمل على الجداول والحقول بدل المؤشر المزخرف */
.admin-body { cursor: auto; }
.admin-body input, .admin-body select, .admin-body button, .admin-body a { cursor: pointer; }
.admin-body input[type="text"], .admin-body input[type="password"], .admin-body input[type="number"] { cursor: text; }
