:root {
    --gc-primary: #0b1b3f;
    --gc-gold: #c5a45c;
    --gc-bg: #f8f9fa;
    --gc-white: #ffffff;
    --gc-text: #444;
}

.gc-landing { font-family: 'Inter', sans-serif; background: var(--gc-bg); color: var(--gc-text); }

/* Header Back Button */
.back-to-home-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(197, 164, 92, 0.1); color: var(--gc-primary);
    padding: 10px 20px; border-radius: 50px; font-weight: 600; text-decoration: none;
}

/* إخفاء أيقونات السوشيال ميديا إجبارياً في صفحة الهبوط */
.social-col { 
    display: none !important; 
}

/* Hero Section Split */
.gc-hero { background: var(--gc-primary); color: #fff; padding: 100px 0; }
.gc-hero .container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.gc-hero-content { flex: 1.2; text-align: left; }
.gc-hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.gc-hero h1 span { color: var(--gc-gold); }
.gc-hero p { font-size: 1.15rem; max-width: 550px; margin-bottom: 35px; color: #cbd5e0; }

.gc-hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
/* زر الطلب الأساسي - نسخة طبق الأصل من الصفحة الرئيسية */
.gc-btn-primary { 
    background: var(--gc-gold); 
    color: #fff; /* النص أبيض بالحالة الطبيعية */
    border: none; 
    padding: 18px 45px; 
    border-radius: 50px; 
    font-size: 1.1rem; 
    font-weight: 800; 
    cursor: pointer; 
    box-shadow: 0 5px 15px rgba(197, 164, 92, 0.2);
    transition: all 0.3s ease; 
}

.gc-btn-primary:hover { 
    background: #fff; /* بيقلب أبيض */
    color: var(--gc-primary); /* النص بيقلب كحلي */
    transform: translateY(-2px); 
    box-shadow: 0 10px 25px rgba(197, 164, 92, 0.4); 
}
.gc-trust-links { font-size: 0.85rem; display: flex; align-items: center; gap: 10px; margin-left: 10px; }
/* تنسيق الـ SVG والأزرار الثانوية */
.gc-btn-secondary { background: rgba(255,255,255,0.1); color: #fff; padding: 6px 15px; border-radius: 8px; text-decoration: none; font-weight: 600; display: flex; align-items: center; justify-content: center; height: 36px; }
.gc-btn-secondary:hover { background: rgba(255,255,255,0.2); }
/* =========================================
   توحيد أزرار أمازون ونون (نفس المقاس بالضبط)
   ========================================= */
.noon-btn, .amazon-btn {
    width: 120px !important;      /* العرض موحد */
    height: 38px !important;      /* الارتفاع موحد */
    border-radius: 8px !important;/* انحناء زوايا موحد */
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease !important;
    box-sizing: border-box !important;
}

/* زر نون */
.noon-btn {
    background-color: #FCE819 !important; /* نقلنا اللون الأصفر لهون */
}
.noon-btn:hover {
    background-color: #f0dd15 !important;
    transform: scale(1.05);
}
/* تكبير لوجو نون ليعبي الزر عالحد */
.noon-svg {
    height: 30px !important; /* كبرنا اللوجو ليكون على حد الزر تماماً */
    width: auto !important;
    display: block;
}

/* زر أمازون */
.amazon-btn {
    background-color: #FF9900 !important;
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    gap: 6px; 
}
.amazon-btn:hover {
    background-color: #e88a00 !important;
    transform: scale(1.05);
}
.amazon-btn i {
    font-size: 16px;
    margin-top: 1px; 
}

/* Rotator Style (From Main Page) */
.gc-hero-image { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.hero-image-wrapper { flex: 0 1 500px; display: flex; justify-content: center; align-items: center; perspective: 1500px; }
.card-rotator { position: relative; width: 350px; height: 220px; transform-style: preserve-3d; animation: floatCard 6s ease-in-out infinite; }
.rotating-card { position: absolute; top: 0; left: 0; width: 100%; height: auto; border-radius: 20px; backface-visibility: hidden; transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1); opacity: 0; transform: rotateY(180deg) scale(0.5) translateZ(-100px); box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.rotating-card.active { opacity: 1; transform: rotateY(-10deg) rotateX(5deg) scale(1); z-index: 2; box-shadow: 20px 30px 60px rgba(197, 164, 92, 0.2); }
.rotating-card.exit { opacity: 0; transform: rotateY(-180deg) scale(0.5) translateZ(-100px); z-index: 1; }

@keyframes floatCard { 
    0%, 100% { transform: translateY(0px) rotateZ(0deg); } 
    50% { transform: translateY(-20px) rotateZ(1deg); } 
}

/* Video Section */
.gc-video-section { padding: 60px 0; text-align: center; }
.gc-video-section h2 { color: var(--gc-primary); margin-bottom: 30px; font-size: 2rem; }
.gc-video-section h2 span { color: var(--gc-gold); }
.gc-video-wrapper { max-width: 800px; margin: 0 auto; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 2px solid #eee; }
.video-placeholder { height: 400px; background: #000; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }
.video-placeholder i { font-size: 4rem; color: var(--gc-gold); margin-bottom: 15px; transition: 0.3s; }
.video-placeholder:hover i { transform: scale(1.1); }

/* Checkout Grid */
.gc-checkout-section { padding: 60px 0 100px; }
.gc-checkout-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
.gc-order-summary, .gc-checkout-form { background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 1px solid #eee; }
.gc-order-summary h3, .gc-checkout-form h3 { color: var(--gc-primary); margin-top: 0; margin-bottom: 25px; font-size: 1.5rem; border-bottom: 2px solid var(--gc-bg); padding-bottom: 15px; }

/* Product Info */
.gc-product-card { display: flex; gap: 15px; align-items: center; margin-bottom: 25px; background: var(--gc-bg); padding: 15px; border-radius: 12px; }
.gc-product-card img { width: 80px; border-radius: 8px; }
.gc-product-info h4 { margin: 0 0 5px; color: var(--gc-primary); }
.gc-price { color: var(--gc-gold); font-weight: 800; font-size: 1.1rem; }
.gc-price del { color: #aaa; font-size: 0.85rem; font-weight: 400; margin-left: 5px; }

/* Qty Selector */
.gc-qty-selector { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.gc-qty-selector label { font-weight: 600; color: var(--gc-primary); }
.qty-controls { display: flex; align-items: center; background: var(--gc-bg); border-radius: 8px; overflow: hidden; border: 1px solid #ddd; }
.qty-controls button { background: none; border: none; width: 35px; height: 35px; font-size: 1.2rem; cursor: pointer; color: var(--gc-primary); transition: 0.3s; }
.qty-controls button:hover { background: #eee; }
.qty-controls input { width: 40px; height: 35px; border: none; text-align: center; font-weight: 700; background: none; pointer-events: none; }
.shipping-notice { font-size: 0.85rem; color: #e67e22; font-weight: 700; text-align: right; margin-top: 0; margin-bottom: 25px; transition: 0.3s; }
.shipping-notice.free { color: #27ae60; }

/* Totals */
.gc-totals .total-row { display: flex; justify-content: space-between; margin-bottom: 12px; color: #666; }
.gc-totals .final { border-top: 2px solid #eee; padding-top: 15px; margin-top: 5px; font-size: 1.2rem; font-weight: 800; color: var(--gc-primary); }

/* Form Elements */
.gc-form-group { margin-bottom: 18px; }
.gc-form-group label { display: block; margin-bottom: 6px; font-size: 0.9rem; font-weight: 600; color: var(--gc-primary); }
.gc-form-group input, .gc-form-group textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; transition: 0.3s; background: var(--gc-bg); }
.gc-form-group input:focus, .gc-form-group textarea:focus { border-color: var(--gc-gold); background: #fff; outline: none; }
.gc-submit-btn { width: 100%; background: var(--gc-primary); color: #fff; border: none; padding: 16px; border-radius: 8px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 10px; }
.gc-submit-btn:hover { background: var(--gc-gold); color: var(--gc-primary); }

/* =========================================
   Features, Bulk, & FAQ Sections
   ========================================= */

/* Section Headers */
.gc-section-header { text-align: center; margin-bottom: 40px; }
.gc-section-header h2 { font-size: 2.2rem; color: var(--gc-primary); font-weight: 800; }

/* Features */
.gc-features { padding: 60px 0; background: #fff; }
.gc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.gc-feature-card { background: #fff; padding: 40px 20px; border-radius: 12px; border: 1px solid var(--gc-gold); text-align: center; transition: 0.3s; }
.gc-feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(197, 164, 92, 0.15); }
.gc-feature-icon { width: 50px; height: 50px; background: #fffbf0; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gc-gold); font-size: 20px; }
.gc-feature-card h3 { color: var(--gc-primary); margin-bottom: 15px; font-size: 1.1rem; font-weight: 800; }
.gc-feature-card p { color: #666; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Bulk Section */
.gc-bulk-section { padding: 20px 0 60px; }
.gc-bulk-box { background: var(--gc-primary); border-radius: 16px; padding: 40px; display: flex; align-items: center; justify-content: space-between; max-width: 1000px; margin: 0 auto; box-shadow: 0 15px 30px rgba(11, 27, 63, 0.15); }
.gc-bulk-text h3 { color: var(--gc-gold); font-size: 2rem; margin: 0 0 10px 0; font-weight: 800; }
.gc-bulk-text p { color: #fff; margin: 0; font-size: 1.1rem; opacity: 0.9; }
.gc-bulk-btn { background: #fff; color: var(--gc-primary); padding: 15px 30px; border-radius: 50px; font-weight: 800; border: none; cursor: pointer; font-size: 1rem; transition: 0.3s; white-space: nowrap; }
.gc-bulk-btn:hover { background: var(--gc-gold); color: #fff; transform: scale(1.05); }

/* FAQ */
.gc-faq-section { padding: 60px 0 80px; background: #fdfdfd; }
.gc-faq-list { max-width: 800px; margin: 0 auto; }
.gc-faq-item { border-bottom: 1px solid #eee; padding: 20px 0; cursor: pointer; }
.gc-faq-q { font-weight: 800; color: var(--gc-primary); font-size: 1.15rem; display: flex; justify-content: space-between; align-items: center; }
.gc-faq-q i { transition: 0.3s; color: var(--gc-primary); }
.gc-faq-a { color: #555; font-size: 1rem; margin-top: 15px; display: none; line-height: 1.6; }
.gc-faq-item.active .gc-faq-a { display: block; animation: fadeIn 0.4s ease; }
.gc-faq-item.active .gc-faq-q i { transform: rotate(45deg); color: var(--gc-gold); } /* تحويل الزائد لـ X وتلوينه ذهبي */

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Modals */
.gc-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 27, 63, 0.85); z-index: 1000; justify-content: center; align-items: center; backdrop-filter: blur(5px); }
.gc-modal.active { display: flex; }
.gc-modal-box { background: white; padding: 40px; border-radius: 15px; width: 90%; max-width: 450px; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.gc-close-btn { position: absolute; top: 15px; right: 15px; font-size: 24px; cursor: pointer; width: 35px; height: 35px; background: #f1f2f6; border-radius: 50%; text-align: center; line-height: 35px; color: #777; transition:0.2s; }
.gc-close-btn:hover { background: #e74c3c; color: white; }

/* Mobile Adjustments for New Sections */
@media (max-width: 991px) {
    .gc-features-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .gc-bulk-box { flex-direction: column; text-align: center; padding: 30px 20px; margin: 0 20px; }
    .gc-bulk-btn { width: 100%; margin-top: 20px; }
    .gc-faq-list { padding: 0 20px; }
}


/* Mobile Adjustment */
@media (max-width: 991px) {
    .gc-hero .container { flex-direction: column; text-align: center; }
    .gc-hero-content { text-align: center; }
    .gc-hero-actions { align-items: center; }
    .gc-hero-image { justify-content: center; margin-top: 30px; }
    .card-rotator { width: 280px; }
    .gc-checkout-grid { grid-template-columns: 1fr; padding: 0 15px; }
	/* ترتيب الروابط عشان ما تنكسر كلمة on */
    .gc-trust-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .gc-trust-links span {
        width: 100%; /* بيجبر النص ياخذ سطر لحاله فوق الأزرار */
        text-align: center;
        margin-bottom: 2px;
    }
}