/* ===== Design tokens (matched to the React app) ===== */
:root{
  --background:#fdfcfa;
  --foreground:#1f2233;
  --card:#ffffff;
  --muted:#f4f1ec;
  --muted-foreground:#6b6f7d;
  --border:#e7e2da;
  --accent:#fbe9d2;
  --secondary:#202437;
  --secondary-foreground:#ffffff;
  --primary:#fd5700;
  --primary-glow:#f7a55a;
  --blue:#0658c8;
  --primary-foreground:#ffffff;
  --gradient-hero:linear-gradient(135deg,rgba(32,36,55,.7),rgba(28,32,50,.92) 60%,rgba(5,63,144,.55));
  --gradient-primary:linear-gradient(135deg,var(--primary),var(--primary-glow));
  --shadow-elegant:0 20px 50px -20px rgba(32,36,55,.25);
  --shadow-glow:0 10px 40px -10px rgba(240,138,61,.45);
  --radius:14px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Tajawal','Cairo',system-ui,sans-serif;
  background:var(--background);color:var(--foreground);
  line-height:1.6;direction:rtl;text-align:right;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* ===== Header ===== */
.topbar{background:var(--secondary);color:rgba(255,255,255,.85);font-size:12px;display:none}
.site-logo{width:65px;height:65px;object-fit:contain;}
@media(min-width:768px){.topbar{display:block}}
.topbar .container{display:flex;justify-content:space-between;align-items:center;height:40px}
.topbar a{display:inline-flex;align-items:center;gap:6px;margin-left:18px;transition:color .2s}
.topbar a:hover{color:var(--primary)}
.site-header{position:sticky;top:0;z-index:50;background:rgba(253,252,250,.92);backdrop-filter:blur(10px);border-bottom:1px solid rgba(231,226,218,.7)}
.nav-row{display:flex;align-items:center;justify-content:space-between;height:80px}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{width:44px;height:44px;border-radius:10px;background:var(--gradient-primary);color:#fff;font-weight:900;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-glow);font-size:18px}
.brand-text .t1{font-weight:900;color:var(--secondary);font-size:18px;line-height:1.1}
.brand-text .t2{font-size:10px;letter-spacing:.2em;color:var(--muted-foreground);margin-top:2px}
.main-nav{display:none;align-items:center;gap:28px}
@media(min-width:1024px){.main-nav{display:flex}}
.main-nav a, .main-nav button{font-size:14px;font-weight:700;color:rgba(31,34,51,.85);transition:color .2s;display:inline-flex;align-items:center;gap:4px}
.main-nav a:hover, .main-nav button:hover{color:var(--primary)}
.main-nav a.active{color:var(--primary)}
.has-dropdown{position:relative}
.dropdown{
  position:absolute;top:100%;right:0;padding-top:12px;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:all .25s ease;pointer-events:none;
}
.has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto}
.dropdown-inner{
  width:560px;background:var(--card);border:1px solid var(--border);
  border-radius:18px;box-shadow:var(--shadow-elegant);padding:16px;
}
.dropdown-grid{display:grid;grid-template-columns:1fr 1fr;gap:4px}
.dd-item{display:flex;align-items:center;gap:12px;padding:12px;border-radius:12px;transition:background .2s}
.dd-item:hover{background:var(--muted)}
.dd-item img{width:48px;height:48px;border-radius:10px;object-fit:cover}
.dd-item .t1{font-size:13px;font-weight:700;color:var(--secondary)}
.dd-item:hover .t1{color:var(--primary)}
.dd-item .t2{font-size:11px;color:var(--muted-foreground)}
.dd-cta{display:block;text-align:center;margin-top:12px;background:var(--secondary);color:#fff;padding:10px;border-radius:12px;font-weight:700;font-size:14px;transition:background .25s}
.dd-cta:hover{background:var(--gradient-primary)}
.dropdown .dd-cta{color:#fff !important;}
.btn{display:inline-flex;align-items:center;gap:8px;border-radius:999px;font-weight:700;transition:transform .2s, box-shadow .2s; white-space:nowrap}
.btn-primary{background:var(--gradient-primary);color:#fff;padding:12px 24px;font-size:16px;box-shadow:var(--shadow-glow);width:180px;justify-content:center;gap: 10px;}
.btn-primary:hover{transform:scale(1.04)}
.btn-lg{padding:14px 30px;font-size:16px}
.btn-outline{border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.1);color:#fff;padding:14px 30px;backdrop-filter:blur(6px);width:180px;justify-content:center;}
.btn-outline:hover{background:rgba(255,255,255,.2)}
.header-cta{display:none}
@media(min-width:768px){.header-cta{display:inline-flex}}
.menu-btn{width:44px;height:44px;border-radius:10px;border:1px solid var(--border);background:var(--card);color:var(--secondary);display:inline-flex;align-items:center;justify-content:center}
@media(min-width:1024px){.menu-btn{display:none}}
.mobile-nav{display:none;border-top:1px solid var(--border);background:var(--background)}
.mobile-nav.open{display:block}
.mobile-nav .container{padding-top:14px;padding-bottom:14px;}
.mobile-nav a, .mobile-nav button{display:block;width:100%;text-align:right;padding:12px 16px;border-radius:10px;font-weight:700;font-size:14px;color:rgba(31,34,51,.85)}
.mobile-nav .sub{margin-right:16px;padding-right:12px;border-right:2px solid rgba(240,138,61,.3);display:none}
.mobile-nav .sub.open{display:block}
.mobile-nav .sub a{padding:8px 16px;font-weight:500;font-size:13px}
.mobile-nav .sub a.first{color:var(--primary)}
.mobile-nav .cta{margin-top:8px;background:var(--gradient-primary);color:#fff;text-align:center;border-radius:999px;padding:12px}
.chev{width:14px;height:14px;display:inline-block;vertical-align:middle;transition:transform .25s}
.chev.up{transform:rotate(180deg)}

/* ===== Sections ===== */
section{position:relative}
.hero{overflow:hidden;position:relative}
.hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero-overlay{position:absolute;inset:0;background:var(--gradient-hero);z-index:1}
.hero .container{position:relative;z-index:2;padding-top:90px;padding-bottom:110px;text-align:center;display:flex;flex-direction:column;align-items:center;}
@media(min-width:768px){.hero .container{padding-top:90px;padding-bottom:110px}}
.tag{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(240,138,61,.4);background:rgba(240,138,61,.1);color:#fff;padding:6px 16px;border-radius:999px;font-size:12px;font-weight:600;backdrop-filter:blur(6px);margin-bottom:30px;}
.tag .dot{width:8px;height:8px;border-radius:50%;background:var(--primary);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.5}}
.hero h1{font-size:30px;font-weight:800;color:#fff;line-height:1.15;margin-top:24px;max-width:780px;margin-left:auto;margin-right:auto;}
@media(min-width:768px){.hero h1{font-size:60px}}
@media(min-width:1024px){.hero h1{font-size:72px}}
.hero h1 .grad{display:block;background:linear-gradient(to left,var(--primary),var(--primary-glow));-webkit-background-clip:text;background-clip:text;color:transparent}
.hero p.lead{margin-top:24px;max-width:640px;margin-left:auto;margin-right:auto;text-align:center;color:rgba(255,255,255,.85);font-size:18px;line-height:1.7}
@media(min-width:768px){.hero p.lead{font-size:20px}}
.hero-ctas{margin-top:40px;display:flex;flex-wrap:wrap;gap:16px;justify-content:center;}
.hero-stats{margin-top:56px;max-width:640px;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;border-top:1px solid rgba(255,255,255,.2);padding-top:32px;margin-left:auto;margin-right:auto;}
.hero-stats .n{font-size:30px;font-weight:900;color:#fff}
@media(min-width:768px){.hero-stats .n{font-size:36px}}
.hero-stats .l{font-size:13px;color:rgba(255,255,255,.7);margin-top:4px}

.pad{padding:80px 0}
@media(min-width:768px){.pad{padding:112px 0}}
.section-head{max-width:640px;margin:0 auto;text-align:center}
.eyebrow{font-size:12px;font-weight:800;letter-spacing:.25em;text-transform:uppercase;color:var(--blue)}
.h2{font-size:30px;font-weight:900;color:var(--secondary);margin-top:12px;line-height:1.2}
@media(min-width:768px){.h2{font-size:46px}}
.muted{color:var(--muted-foreground);margin-top:14px}

.grid{display:grid;gap:24px}
.g-2{grid-template-columns:repeat(1,1fr)}
.g-3{grid-template-columns:repeat(1,1fr)}
.g-4{grid-template-columns:repeat(1,1fr)}
@media(min-width:640px){.g-2,.g-4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:768px){.g-3{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.g-3{grid-template-columns:repeat(3,1fr)} .g-4{grid-template-columns:repeat(4,1fr)}}

.feature{border:1px solid var(--border);background:var(--card);border-radius:18px;padding:24px;transition:all .3s}
.feature:hover{border-color:rgba(240,138,61,.4);box-shadow:var(--shadow-elegant)}
.icon-box{width:56px;height:56px;border-radius:14px;background:var(--gradient-primary);color:#fff;display:inline-flex;align-items:center;justify-content:center;box-shadow:var(--shadow-glow);transition:transform .3s}
.feature:hover .icon-box{transform:scale(1.08)}
.icon-box svg{width:28px;height:28px}
.feature h3{font-size:20px;font-weight:800;color:var(--secondary);margin-top:20px}
.feature p{font-size:14px;color:var(--muted-foreground);margin-top:8px;line-height:1.7}

.muted-section{background:rgba(244,241,236,.55)}
.row{display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;gap:24px}
@media(min-width:768px){.row{flex-direction:row;align-items:flex-end}}

/* Product cards */
.products-grid{margin-top:56px;display:grid;gap:32px;grid-template-columns:repeat(1,1fr)}
@media(min-width:640px){.products-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.products-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1280px){.products-grid{grid-template-columns:repeat(4,1fr)}}
.product-card{display:flex;flex-direction:column;overflow:hidden;border:1px solid var(--border);background:var(--card);border-radius:18px;transition:all .3s}
.product-card:hover{transform:translateY(-1px);border-color:rgba(240,138,61,.5);box-shadow:var(--shadow-elegant)}
.product-card .img-wrap{position:relative;aspect-ratio:4/3;overflow:hidden}
.product-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s}
.product-card:hover img{transform:scale(1.1)}
.badge{position:absolute;top:16px;right:16px;background:rgb(247, 139, 57);color:#fff;padding:5px 12px;border-radius:999px;font-size:11px;font-weight:700;backdrop-filter:blur(4px)}
.product-card .body{display:flex;flex-direction:column;flex:1;padding:24px}
.product-card h3{font-size:18px;font-weight:900;color:var(--secondary);transition:color .2s}
.product-card:hover h3{color:var(--primary)}
.product-card .short{font-size:13px;color:var(--muted-foreground);margin-top:12px;flex:1;line-height:1.7}
.read-more{margin-top:20px;display:flex;background:#0658c8;color:#fff;border-radius:10px;padding:12px;width:100%;align-items:center;justify-content:center;gap:8px;font-size:14px;font-weight:700;}
.read-more svg{width:14px;height:14px;stroke:#fff;}
.read-more:hover{background:var(--primary);color:#fff;}

/* Values */
.value-card{border:1px solid var(--border);background:var(--card);border-radius:18px;padding:32px;text-align:center;transition:all .3s}
.value-card:hover{border-color:rgba(240,138,61,.4);box-shadow:var(--shadow-elegant)}
.value-icon{width:64px;height:64px;margin:0 auto;background:var(--accent);color:var(--primary);border-radius:16px;display:flex;align-items:center;justify-content:center}
.value-icon svg{width:32px;height:32px}
.value-card h3{font-size:18px;font-weight:900;color:var(--secondary);margin-top:20px}
.value-card p{font-size:13px;color:var(--muted-foreground);margin-top:8px}

/* CTA */
.cta-band{background:var(--secondary);overflow:hidden;padding:80px 0;position:relative}
.cta-band::before{content:"";position:absolute;inset:0;opacity:.3;background:radial-gradient(circle at 20% 20%,rgba(240,138,61,.3),transparent 50%),radial-gradient(circle at 80% 80%,rgba(247,165,90,.25),transparent 50%)}
.cta-band .container{position:relative;display:flex;flex-direction:column;align-items:center;gap:24px;text-align:center}
.cta-band h2{color:#fff;font-size:30px;font-weight:900;line-height:1.2}
@media(min-width:768px){.cta-band h2{font-size:46px}}
.cta-band p{color:rgba(255,255,255,.75);max-width:640px}
.cta-band svg.big{width:48px;height:48px;color:var(--primary)}

/* Page hero */
.page-hero{overflow:hidden;position:relative;text-align:center}
.page-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.page-hero .overlay{position:absolute;inset:0;background:var(--gradient-hero);z-index:1}
.page-hero .container{position:relative;z-index:2;padding:80px 24px;text-align:center}
@media(min-width:768px){.page-hero .container{padding:112px 24px}}
.page-hero h1{font-size:40px;font-weight:900;color:#fff}
@media(min-width:768px){.page-hero h1{font-size:60px}}
.page-hero .sub{color:rgba(255,255,255,.8);font-size:18px;margin:16px auto 0;max-width:640px}
.crumbs{margin-top:24px;display:flex;flex-wrap:wrap;justify-content:center;gap:8px;font-size:13px;color:rgba(255,255,255,.8)}
.crumbs .sep{opacity:.5}
.crumbs a:hover{color:var(--primary)}
.crumbs .here{color:var(--primary)}

/* About */
.two-col{display:grid;gap:48px;align-items:center}
@media(min-width:1024px){.two-col{grid-template-columns:1fr 1fr}}
.rounded-img{overflow:hidden;border-radius:24px;box-shadow:var(--shadow-elegant)}
.rounded-img img{width:100%;height:100%;object-fit:contain}
.bullets{margin-top:24px;display:flex;flex-direction:column;gap:12px}
.bullets li{display:flex;align-items:center;gap:12px;font-size:14px;font-weight:600;list-style:none}
.bullets svg{color:var(--primary);width:20px;height:20px;flex-shrink:0}

.mission-grid{display:grid;gap:24px}
@media(min-width:768px){.mission-grid{grid-template-columns:1fr 1fr}}
.mission-card{border:1px solid var(--border);background:var(--card);border-radius:24px;padding:40px}
.mission-card h3{font-size:22px;font-weight:900;color:var(--secondary);margin-top:20px}
.mission-card p{color:var(--muted-foreground);margin-top:12px;line-height:1.8}

.stats-band{background:var(--secondary);padding:64px 0}
.stats-band .grid{grid-template-columns:repeat(2,1fr);gap:24px;text-align:center}
@media(min-width:1024px){.stats-band .grid{grid-template-columns:repeat(4,1fr)}}
.stats-band .n{font-size:40px;font-weight:900;color:var(--primary)}
@media(min-width:768px){.stats-band .n{font-size:48px}}
.stats-band .l{color:rgba(255,255,255,.75);font-size:14px;margin-top:8px}

/* Services step */
.step{position:relative;border:1px solid var(--border);background:var(--card);border-radius:18px;padding:32px}
.step .n{font-size:46px;font-weight:900;color:rgba(240,138,61,.3)}
.step h3{font-size:18px;font-weight:900;color:var(--secondary);margin-top:8px}
.step p{font-size:13px;color:var(--muted-foreground);margin-top:8px}

/* Contact */
.contact-grid{display:grid;gap:24px;grid-template-columns:1fr}
@media(min-width:768px){.contact-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.contact-grid{grid-template-columns:repeat(4,1fr)}}
.contact-card{border:1px solid var(--border);background:var(--card);border-radius:18px;padding:32px;text-align:center;display:block;transition:all .3s;color:inherit}
.contact-card:hover{transform:translateY(-4px);border-color:rgba(240,138,61,.4);box-shadow:var(--shadow-elegant)}
.contact-card .lbl{font-size:12px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--muted-foreground);margin-top:20px}
.contact-card .val{margin-top:8px;font-weight:700;color:var(--secondary)}

.form-row{display:grid;gap:40px}
@media(min-width:1024px){.form-row{grid-template-columns:1fr 1fr}}
.form-row .info-item{display:flex;align-items:flex-start;gap:16px;margin-top:20px}
.form-row .info-item .ic{width:44px;height:44px;border-radius:12px;background:var(--accent);color:var(--primary);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.form-card{border-radius:24px;border:1px solid var(--border);background:var(--card);padding:32px;box-shadow:var(--shadow-elegant)}
@media(min-width:768px){.form-card{padding:40px}}
.form-card .field{display:grid;gap:16px}
.input, .select, .textarea{
  width:100%;border:1px solid var(--border);background:var(--background);
  border-radius:12px;padding:12px 16px;font-family:inherit;font-size:15px;color:var(--foreground);
  outline:none;transition:border-color .2s;
}
.input:focus,.select:focus,.textarea:focus{border-color:var(--primary)}
.textarea{resize:none}
.two-inputs{display:grid;gap:16px}
@media(min-width:640px){.two-inputs{grid-template-columns:1fr 1fr}}
.submit{width:100%;background:var(--gradient-primary);color:#fff;padding:14px;border-radius:12px;font-weight:700;font-size:16px;box-shadow:var(--shadow-glow);transition:transform .2s}
.submit:hover{transform:scale(1.02)}

/* Product detail */
.pd-grid{display:grid;gap:48px}
@media(min-width:1024px){.pd-grid{grid-template-columns:1fr 1fr}}
.chip{display:inline-block;background:var(--accent);color:var(--primary);padding:4px 12px;border-radius:999px;font-size:12px;font-weight:700}
.spec-table{overflow:hidden;border-radius:16px;border:1px solid var(--border);margin-top:16px}
.spec-row{display:flex;justify-content:space-between;align-items:center;padding:12px 20px;font-size:14px}
.spec-row:nth-child(odd){background:rgba(244,241,236,.6)}
.spec-row .lbl{font-weight:700;color:var(--secondary)}
.spec-row .val{color:var(--muted-foreground)}
.features-grid{margin-top:16px;display:grid;gap:12px;grid-template-columns:1fr}
@media(min-width:640px){.features-grid{grid-template-columns:1fr 1fr}}
.features-grid li{display:flex;align-items:center;gap:12px;font-size:14px;list-style:none}
.features-grid svg{color:var(--primary);width:20px;height:20px;flex-shrink:0}

/* Footer */
.site-footer{background:var(--secondary);color:rgba(255,255,255,.85)}
.footer-grid{display:grid;gap:40px;padding:64px 24px;grid-template-columns:1fr}
@media(min-width:768px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
.footer-grid h3{font-size:16px;font-weight:900;color:#fff;margin-bottom:18px}
.footer-grid p{color:rgba(255,255,255,.75);font-size:14px;line-height:1.7;margin-top:18px}
.footer-list{list-style:none;display:flex;flex-direction:column;gap:12px}
.footer-list a{color:rgba(255,255,255,.7);font-size:14px;transition:color .2s}
.footer-list a:hover{color:var(--primary)}
.footer-contact{list-style:none;display:flex;flex-direction:column;gap:14px;font-size:14px}
.footer-contact li{display:flex;align-items:flex-start;gap:12px;color:rgba(255,255,255,.75)}
.footer-contact svg{color:var(--primary);width:16px;height:16px;flex-shrink:0;margin-top:3px}
.socials{display:flex;gap:8px;margin-top:24px}
.socials a{width:36px;height:36px;background:rgba(255,255,255,.1);color:rgba(255,255,255,.8);border-radius:10px;display:flex;align-items:center;justify-content:center;transition:all .2s}
.socials a:hover{background:var(--primary);color:#fff}
.socials svg{width:16px;height:16px}
.footer-cta{display:inline-flex;margin-top:24px;background:var(--gradient-primary);color:#fff;padding:10px 20px;border-radius:999px;font-weight:700;font-size:14px;box-shadow:var(--shadow-glow)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1)}
.footer-bottom .container{display:flex;flex-direction:column;gap:12px;padding:20px 24px;font-size:12px;color:rgba(255,255,255,.6);text-align:center}
@media(min-width:768px){.footer-bottom .container{flex-direction:row;justify-content:space-between;text-align:right}}

/* زر الواتساب العائم  */
.whatsapp-float{position:fixed;bottom:25px;left:25px;width:60px;height:60px;border-radius:50%;background:#25D366;color:#fff; display:flex;align-items:center;justify-content:center;box-shadow:0 8px 25px rgba(0, 0, 0, .25);z-index:9999;transition:.3s;}
.whatsapp-float:hover{transform:scale(1.1);}
.whatsapp-float svg{display: block;}


/* سهم الصعود إلى الأعلى */
.back-to-top{position:fixed;bottom:25px;right:25px;width:42px;height:42px;border:none;border-radius:50%;background:#F7931E;color:white;font-size:24px;font-weight:bold;cursor:pointer;opacity:0;visibility:hidden;transition:.3s ease;z-index:9999;box-shadow:0 8px 20px rgba(0,0,0,.2);}
.back-to-top.show{opacity:1;visibility:visible;}
.back-to-top:hover{transform:translateY(-3px);}


/*صور قسم السوبر ماركت*/
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:30px;}
.gallery-grid img{width:100%;height:250px;object-fit:cover;border-radius:18px;transition:.3s;}
.gallery-grid img:hover{transform:translateY(-5px);}
@media(max-width:768px){.gallery-grid{grid-template-columns:1fr;}}