:root {
    --primary: #42aac7;
    --secondary: #8bc636;
    --dark: #1f2937;
    --light: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Cairo', sans-serif; direction: rtl; color: #333; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-announcement { background: var(--dark); color: #fff; padding: 8px 0; font-size: 14px; }

/* Header */
.main-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.header-wrapper { display: flex; justify-content: space-between; align-items: center; }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo img { height: 50px; }
.brand-logo h1 { font-size: 18px; margin: 0; color: var(--primary); }
.brand-logo span { font-size: 11px; color: #999; }
.desktop-menu { display: flex; gap: 25px; }
.desktop-menu a { font-weight: 700; font-size: 16px; }
.desktop-menu a:hover { color: var(--primary); }
.header-actions { display: flex; gap: 20px; align-items: center; }
.cart-icon { position: relative; font-size: 22px; cursor: pointer; }
.cart-badge { position: absolute; top: -8px; right: -8px; background: var(--secondary); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 10px; }
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* Mobile Menu */
.mobile-sidebar { position: fixed; top: 0; right: -280px; width: 280px; height: 100%; background: #fff; z-index: 2000; padding: 20px; transition: 0.3s; box-shadow: -2px 0 10px rgba(0,0,0,0.1); }
.mobile-sidebar.active { right: 0; }
.mobile-sidebar nav a { display: block; padding: 15px; border-bottom: 1px solid #eee; font-weight: 700; }
.close-sidebar { background: none; border: none; font-size: 30px; cursor: pointer; margin-bottom: 20px; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1999; display: none; }
.mobile-overlay.active { display: block; }

/* Banner 1: Hero */
.hero-main-banner { height: 700px; position: relative; display: flex; align-items: center; color: #fff; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-tag { background: var(--secondary); padding: 8px 20px; border-radius: 30px; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.hero-title { font-size: 56px; line-height: 1.2; margin-bottom: 20px; }
.hero-title span { color: var(--secondary); }
.hero-description { font-size: 20px; margin-bottom: 40px; opacity: 0.95; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; }
.btn-hero-primary { background: var(--primary); color: #fff; padding: 15px 40px; border-radius: 50px; font-weight: 700; font-size: 18px; }
.btn-hero-outline { background: transparent; border: 2px solid #fff; color: #fff; padding: 15px 40px; border-radius: 50px; font-weight: 700; font-size: 18px; }

/* Features Strip */
.features-strip { padding: 40px 0; background: #f9f9f9; }
.strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.strip-item { display: flex; align-items: center; gap: 15px; }
.strip-item i { font-size: 28px; color: var(--primary); }
.strip-item strong { display: block; font-size: 16px; }
.strip-item span { font-size: 13px; color: #777; }

/* CTA 1 */
.cta-free-shipping { padding: 60px 0; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; text-align: center; }
.cta-box-large { max-width: 700px; margin: 0 auto; }
.cta-icon { font-size: 60px; margin-bottom: 20px; }
.cta-box-large h2 { font-size: 36px; margin-bottom: 15px; }
.btn-cta { display: inline-block; background: #fff; color: var(--dark); padding: 15px 50px; border-radius: 50px; font-weight: 700; margin-top: 20px; }

/* Banner 2 */
.banner-quality { position: relative; padding: 100px 0; background: #333; color: #fff; }
.banner-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; opacity: 0.3; }
.banner-text-overlay { position: relative; z-index: 2; }
.quality-list { list-style: none; margin: 30px 0; }
.quality-list li { padding: 10px 0; font-size: 18px; }
.quality-list i { color: var(--secondary); margin-left: 10px; }
.btn-outline-light { border: 2px solid #fff; color: #fff; padding: 12px 35px; border-radius: 30px; display: inline-block; }

/* Products */
.products-mega-section { padding: 80px 0; background: #fafafa; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 36px; color: var(--dark); margin-bottom: 10px; }
.section-subtitle { font-size: 18px; color: #777; }
.product-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; flex-wrap: wrap; }
.tab-btn { padding: 10px 25px; background: #fff; border: 1px solid #ddd; border-radius: 30px; cursor: pointer; font-family: 'Cairo'; font-weight: 600; }
.tab-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.products-mega-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
.product-item { background: #fff; border-radius: 15px; padding: 20px; text-align: center; border: 1px solid #eee; transition: 0.3s; }
.product-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.product-item img { width: 100%; height: 220px; object-fit: cover; margin-bottom: 15px; border-radius: 10px; }
.product-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.product-price { color: var(--primary); font-weight: 800; font-size: 20px; display: block; margin: 10px 0; }
.btn-add-to-cart { width: 100%; padding: 10px; background: var(--dark); color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 700; }
.load-more-section { text-align: center; margin-top: 50px; }
.btn-load-more { background: transparent; border: 2px solid var(--primary); color: var(--primary); padding: 12px 40px; border-radius: 30px; cursor: pointer; font-weight: 700; }

/* CTA 2 */
.cta-wholesale { padding: 60px 0; background: #fff; }
.wholesale-wrapper { display: flex; align-items: center; gap: 50px; }
.wholesale-text { flex: 1; }
.wholesale-text h2 { font-size: 32px; margin-bottom: 20px; }
.btn-wholesale { background: var(--secondary); color: #fff; padding: 12px 35px; border-radius: 30px; display: inline-block; margin-top: 20px; }
.wholesale-img { flex: 1; }
.wholesale-img img { width: 100%; border-radius: 15px; }

/* Banner 3 */
.banner-tech { position: relative; padding: 100px 0; color: #fff; text-align: center; }
.tech-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; }
.tech-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
.tech-content { position: relative; z-index: 2; }
.tech-content h2 { font-size: 42px; margin-bottom: 20px; }
.tech-stats { display: flex; justify-content: center; gap: 50px; margin-top: 40px; }
.stat-box { display: flex; flex-direction: column; }
.stat-num { font-size: 42px; font-weight: 900; color: var(--secondary); }
.stat-label { font-size: 14px; opacity: 0.9; }

/* Features Detail */
.features-detail { padding: 80px 0; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-box { padding: 30px; background: #f9f9f9; border-radius: 15px; text-align: center; transition: 0.3s; }
.feature-box:hover { background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.f-icon { font-size: 40px; margin-bottom: 15px; }

/* Banner 4 */
.banner-reviews { padding: 80px 0; background: var(--primary); color: #fff; }
.section-title-light { text-align: center; font-size: 32px; margin-bottom: 50px; }
.reviews-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-slide { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 15px; }
.stars { color: gold; margin-bottom: 15px; font-size: 18px; }
.review-slide p { font-size: 16px; margin-bottom: 15px; }

/* CTA 3 */
.cta-contact { padding: 60px 0; background: #f9f9f9; text-align: center; }
.contact-cta-box h2 { font-size: 32px; margin-bottom: 20px; }
.cta-buttons-row { display: flex; justify-content: center; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
.btn-whatsapp { background: #25D366; color: #fff; padding: 12px 30px; border-radius: 30px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.btn-call { background: var(--dark); color: #fff; padding: 12px 30px; border-radius: 30px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.btn-contact-page { background: var(--primary); color: #fff; padding: 12px 30px; border-radius: 30px; font-weight: 700; }

/* Banner 5 */
.banner-payment-shipping { padding: 60px 0; background: #fff; border-top: 1px solid #eee; }
.payment-ship-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; }
.ps-column h3 { margin-bottom: 20px; font-size: 20px; }
.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-badge { background: #f0f0f0; padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; }
.shipping-logos img { height: 50px; }

/* Footer */
.main-footer { background: #111; color: #ccc; padding: 60px 0 20px; }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: #fff; margin-bottom: 20px; }
.footer-col a { display: block; margin-bottom: 10px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 13px; }

/* Cart Sidebar */
.cart-sidebar { position: fixed; top: 0; left: -380px; width: 380px; height: 100%; background: #fff; z-index: 2001; transition: 0.3s; box-shadow: 2px 0 10px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
.cart-sidebar.active { left: 0; }
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; display: none; }
.cart-overlay.active { display: block; }
.cart-head { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; }
.cart-head button { background: none; border: none; font-size: 28px; cursor: pointer; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-foot { padding: 20px; background: #f9f9f9; }
.cart-total-line { display: flex; justify-content: space-between; font-weight: 800; font-size: 20px; margin-bottom: 15px; }
.btn-checkout { width: 100%; background: var(--secondary); color: #fff; padding: 15px; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; }

@media (max-width: 992px) {
    .hamburger { display: block; }
    .desktop-menu { display: none; }
    .hero-main-banner { height: auto; padding: 80px 0; }
    .hero-title { font-size: 36px; }
    .wholesale-wrapper { flex-direction: column; }
    .cart-sidebar { width: 100%; left: -100%; }
}
