:root {
  --orange: #ff6500;
  --green: #82bd37;
  --bg: #000;
  --panel: #191919;
  --panel-soft: #202020;
  --text: #fff;
  --muted: #8f8f8f;
  --line: rgba(255,255,255,.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-top: 174px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.top-offer {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: 18px;
  padding: 0 30px;
  background: #262626;
  color: #fff;
  box-shadow: inset 0 -1px rgba(255,255,255,.04);
}
.top-offer strong { font-size: 27px; color: #fff; }
.top-offer strong::first-letter { color: #7bd43d; }
.top-offer span { margin-left: -160px; font-size: 20px; font-weight: 300; }
.top-offer p {   text-align: center; font-size: 20px;  font-weight: 10; justify-self: center;}
.top-offer a {
  justify-self: end;
  padding: 12px 20px;
  color: #102100;
  background: var(--green);
  border-radius: 5px;
  margin-top: -100px;
  margin-right: -1400px ;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
  min-height: 108px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 7vw, 145px);
   background: rgba(14,14,14,0.5);
  backdrop-filter: blur(20px);
  transition: min-height .25s, box-shadow .25s, transform .28s ease;
}
.site-header.nav-hidden { transform: translateY(-120%); }
.site-header.scrolled {
  min-height: 84px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.brand img { width: 138px; }
.main-nav {
 
  display: flex;
  gap: clamp(18px, 2vw, 40px);
  align-items: center;
  justify-content: center;
  color: #898989;
  font-weight: 800;
  font-size: 16px;
}
/* .main-nav > a,
.main-nav .about-trigger {
  position: relative;
  transition: color .2s;
} */
/* .main-nav > a:hover,
.main-nav > a.active,
.main-nav .nav-item:hover > .about-trigger,
.main-nav .nav-item.active > .about-trigger { color: #fff; }
.main-nav > a::before,
.main-nav .about-trigger::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width .22s ease;
} */
/* .main-nav > a:hover::before,
.main-nav .nav-item:hover > .about-trigger::before { width: 50px; }
.main-nav > a.active::after,
.main-nav .nav-item.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 8px solid var(--orange);
  transform: translateX(-50%);
} */
.nav-item {
  position: relative;
  min-height: 108px;
  display: flex;
  align-items: center;
}
.site-header.scrolled .nav-item { min-height: 84px; }
.about-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-arrow {
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform .24s ease, margin .24s ease;
}
/* السهم يفتح فقط عند hover او open */

.nav-item:hover .nav-arrow,
.nav-item.open .nav-arrow {

  margin-top: 5px;

  transform: rotate(-135deg);
}
.nav-dropdown,
.nav-submenu {
  position: absolute;
  z-index: 80;
  min-width: 260px;
  padding: 20px 0;
  border-radius: 18px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.nav-dropdown {
  top: calc(100% - 10px);
  left: 120px;
  transform: translateX(-60%) translateY(16px);
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 38px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--orange);
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 38px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}
.nav-dropdown a:hover {
  color: #171717;
  transform: translateX(4px);
}
.nested-trigger span {
  width: 10px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}
.nav-submenu {
  top: 40px;
  left: calc(100% + 6px);
  transform: translateX(14px);
}
.nested-trigger:hover ~ .nav-submenu,
.nav-submenu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.help-pill, .button.orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  border: 0;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255,101,0,.18);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}
.button.orange:hover {
  color: var(--orange);
  background: #fff;
  /* transform: translateY(-4px); */
  box-shadow: 0 22px 42px rgba(255,101,0,.34);
}
.help-pill:hover {
  color: var(--orange);
  background: #fff;
  /* transform: translateY(-3px); */
  box-shadow: 0 18px 36px rgba(255,101,0,.28);
}
.button.orange:active { transform: translateY(-1px) scale(.98); }
/* ////////////////// serves button */


.button.orange2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  border: 0;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255,101,0,.18);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}
.button.orange2:hover {
  color: var(--orange);
  background: #fff;
  /* transform: translateY(-4px); */
  box-shadow: 0 22px 42px rgba(255,101,0,.34);
}
.help-pill:hover {
  color: var(--orange);
  background: #fff;
  /* transform: translateY(-3px); */
  box-shadow: 0 18px 36px rgba(255,101,0,.28);
}
.button.orange2:active { transform: translateY(-1px) scale(.98); }

.cta-row{
  margin-top: 50px;
}
.cta-row .note{
  color: var(--muted);
  margin-left: 10px;
}









.round-action {

  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #242424;
  font-size: 34px;
  line-height: 1;
}
.round-action span {
  position: absolute;
  right: -3px;
  top: -6px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--orange);
  font-size: 13px;
  font-weight: 950;
}
.menu-toggle { display: none; }

.side-tools {
  position: fixed;
  right: 24px;
  top: 38vh;
  z-index: 42;
  display: grid;
  width: 54px;
  padding: 12px 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.side-tools a {
  display: grid;
  place-items: center;
  height: 42px;
  color: #777;
  font-size: 24px;
}
.side-tools a:first-child { color: #64d332; }

.hero {
  position: relative;
  min-height: calc(100vh - 174px);
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  padding: 40px 0 0 clamp(28px, 8.8vw, 170px);
  overflow: hidden;
  background: radial-gradient(circle at 42% 45%, #171717 0 20%, transparent 45%), #0e0e0e;
}
.hero-copy { position: relative; z-index: 3; padding-bottom: 54px; }
.hero h1 {
  margin: 0;
  font-size: clamp(44px, 4.25vw, 55px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}
h1 span, h2 span, h3 span { color: var(--orange); }
.hero p {
  max-width: 580px;
  margin: 42px 0 54px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}
.hero-price {
  margin-bottom: 44px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
}
.hero-buttons { display: flex; align-items: center; gap: 42px; flex-wrap: wrap; }
.ghost-link { color: #696969; font-size: 18px; font-weight: 700; }
.hero-art {
  height: 100%;
  min-height: 720px;
  position: relative;
  perspective: 1100px;
}
.hero-bg {
  position: absolute;
  right: -45px;
  top: 0;
  height: 100%;
  width: 80%;
  object-fit: cover;
  border-radius: 420px 0 0 0;
  opacity: .94;
  filter: grayscale(.08) brightness(1.04) contrast(1.08) saturate(1.08);
}
.hero-bike {
  position: absolute;
  right: clamp(-90px, 1vw, 30px);
  bottom: 42px;
  z-index: 2;
  width: min(130%, 1240px);
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 38px rgba(0,0,0,.42));
  transition: transform .14s ease-out;
}
.hotspot {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: 230px;
  min-height: 70px;
  padding: 0 28px;
  color: #fff;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-weight: 850;
  font-size: 18px;
}
.hotspot.seat { left: 18%; top: 48%; }
.hotspot.wheel { right: 5%; bottom: 25%; }

.about-section {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 770px;
  align-items: center;
  padding: 0 clamp(24px, 8.5vw, 160px) 60px 0;
  background: #000;
  overflow: hidden;
}
.about-bike {
  height: 100%;
  min-height: 720px;
  display: grid;
  align-items: end;
  perspective: 1100px;
}
.about-bike img {
  width: 112%;
  max-width: none;
  margin-left: -11%;
  transform-style: preserve-3d;
  transition: transform .14s ease-out;
  filter: drop-shadow(0 30px 35px rgba(0,0,0,.65));

    transform: translateX(-220px); /* بالبداية برا */
  opacity: 0;

  transition: transform .2s linear, opacity .2s linear;
}
.about-copy h2, .ride-panel h2, .section-heading h3, .testimonial-copy h3, .special-offer h3, .page-title h1 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 950;
}
.about-copy h2{
    font-size: 45px;

    font-weight: 800;

}
.about-copy p {
  width: 790px;
  margin: 42px 0 58px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}
.about-copy  {
padding-left: 80px;
margin: auto;
}
.feature-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 0px;
  padding: 0;
  margin: 0;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 800;
    padding-top: 0px;

}
.feature-grid li::before {
  content: "\2714";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--orange);
    background-color: var(--panel);

  border: 1px solid var(--orange);
  border-radius: 50%;
  font-size: 18px;
}
.feature-grid li:hover::before {
  color: var(--text4);
  border: 1px solid var(--orange);
  background-color: var(--orange);
  transform: scale(1.2);
 transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}

/* /////////////////////////////////// */
.feature-grid1 {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 15px 0px;
  padding: 0;
  margin: 0;
}
.feature-grid1 li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 800;
    padding-top: 0px;

}
.feature-grid1 li::before {
  content: "\276F""\276F";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--orange);
    background-color: var(--panel);

  border: 1px solid var(--orange);
  border-radius: 50%;
  font-size: 18px;
}
.feature-grid1 li:hover::before {
  color: var(--text4);
  border: 1px solid var(--orange);
  background-color: var(--orange);
  transform: scale(1.2);
 transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}
/* /////////// serves */
.feature-gridss {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 0px;
  padding: 0;
  margin: 0;
}
.feature-gridss li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 800;
    padding-top: 0px;

}
.feature-gridss li::before {
  content: "\2714";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--orange);
    background-color: var(--panel);

  border: 1px solid var(--orange);
  border-radius: 50%;
  font-size: 18px;
}
.feature-gridss li:hover::before {
  color: var(--text4);
  border: 1px solid var(--orange);
  background-color: var(--orange);
  transform: scale(1.2);
 transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}



.ride-panel {
  margin: 40px clamp(24px, 8.8vw, 170px) 140px;
  height: 400px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--orange);
  border-radius: 64px;
}
.ride-panel p {
  margin: 34px 0 42px;
  color: rgba(221, 205, 205, 0.9);
  font-size: 20px;
}
.ride-panel h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 700;

}
.button.white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 42px;
  border-radius: 999px;
  color: var(--text);
  background: #000000;
  font-weight: 950;
  gap: 0;

  transition: all 0.3s ease;
}
.button.white .arrow {
  display: inline-flex;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
}

/* حجم السهم */
.button.white .arrow svg {
  width: 26px; /* 🔥 كبره */
  height: 30px;
}

/* hover */
.button.white:hover {
  color: var(--orange);
  background: #fff;
  padding: 0 55px;
}

.button.white:hover .arrow {
  opacity: 1;
  transform: translateX(0);
  margin-left: 10px;
}

.button.white.small { min-height: 48px; padding: 0 24px; }

.marquee {
  overflow: hidden;
  margin: -30px 0 30px;
  color: rgba(255,255,255,.06);
  font-size: clamp(68px, 8vw, 150px);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee span { padding-right: 50px; }
/* //////////////////// زر السهم .. */
.buttonn.white1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 42px;
  border-radius: 999px;
  color: var(--text);
  background: #000000;
  font-weight: 950;
  gap: 0;

  transition: all 0.3s ease;
}
.buttonn.white1 .arrow {
  display: inline-flex;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
}

/* حجم السهم */
.buttonn.white1 .arrow svg {
  width: 26px; /* 🔥 كبره */
  height: 30px;
}

/* hover */
.buttonn.white1:hover {
  color: var(--orange);
  background: #fff;
  padding: 0 55px;
}

.buttonn.white1:hover .arrow {
  opacity: 1;
  transform: translateX(0);
  margin-left: 10px;
}

.buttonn.white1.small { min-height: 48px; padding: 0 24px; }



/* /////////////// */
.marquee-about {
 display: flex;
  align-items: center;      /* 👈 بالنص عمودياً */
  justify-content: center;  /* 👈 بالنص أفقياً */

  height: 150px; /* 👈 تحكم بالارتفاع */
  overflow: hidden;

 /* margin-top: -250px;👈 شيل التخبيص القديم */

  color: rgba(255,255,255,.06);
  font-size: clamp(68px, 8vw, 150px);
  line-height: 1;
  font-weight: 950;

  white-space: nowrap;


  
}
.aboutmarquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.aboutmarquee-track span { padding-right: 50px; }


/* ========================= */
/* 🔥 MARQUEE ABOUT */
/* ========================= */

.marquee-aboutt {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 150px;
  overflow: hidden;

  color: rgba(255,255,255,.06);
  font-size: clamp(68px, 8vw, 150px);
  line-height: 1;
  font-weight: 950;

  white-space: nowrap;
}

/* التراك */
.aboutmarquee-trackt {
  display: flex;
  width: max-content;

  /* 🔥 عكس الاتجاه */
  animation: marqueeReverse 24s linear infinite;
}

/* المسافات */
.aboutmarquee-trackt span {
  padding-right: 50px;
}

/* ========================= */
/* 🔥 الحركة العكسية */
/* ========================= */

@keyframes marqueeReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.products { padding: 25px clamp(24px, 8.5vw, 160px) 110px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}
.section-heading p {
  margin: 0;
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0;
}
.section-heading a { color: var(--orange); font-weight: 900; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 120px;
}

:root {
  --orange: #ff6a00;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* CARD */
.product-card {
  min-height: 535px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #191919;
  overflow: hidden;
  border-radius: 0 160px 0 0;
}

/* IMAGE */
.product-image {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 34px 22px 10px;
  overflow: hidden;
}

/* الخلفية */
.product-image::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 0;
  width: 70%;
  height: 100%;
  background: #222;
  border-radius: 0 160px 0 0;
}

/* الصورة */
.product-image img {
  position: relative;
  z-index: 2;
  width: 108%;
}

/* 🔥 ICONS */
.image-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 14px;
  opacity: 0;
  z-index: 5;
  transition: 0.3s;
}

.image-icons span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 39, 181, 0.1);
  color: #fff;
  cursor: pointer;
  transition: 0.25s;
}

.image-icons span:hover {
  background: var(--orange);
}

/* 🔥 يظهر عند hover */
.product-card:hover .image-icons {
  opacity: 1;
}

/* TEXT */
.product-meta {
  padding: 0 50px 34px;
}

.product-meta h4 {
  margin: 0 0 10px;
  font-size: 27px;
  color: #fff;
  transition: 0.25s;
}

/* 🔥 العنوان يصير برتقالي */
.product-card:hover h4 {
  color: var(--orange);
}

.product-meta p {
  color: #9d9d9d;
  font-size: 18px;
}

/* السعر */
.price-row {
  color: var(--orange);
  font-size: 25px;
  font-weight: 900;
}

/* BUTTON */
.product-actions {
  margin-top: 20px;
}

.product-actions button {
  min-width: 176px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #777;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s;
}

/* 🔥 عند hover */
.product-card:hover .product-actions button {
  background: #fff;
  color: var(--orange);
}

/* SALE */
.sale-ribbon {
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--orange);
  font-weight: bold;
  opacity: 0.6;
}

.packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding: 0 clamp(24px, 8.5vw, 160px) 120px;
}

.package-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: #161616;
  border-radius: 26px;

  transition: transform .2s ease;
  will-change: transform;
}

/* FIX PACKAGES FINAL */

.packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  padding: 0 clamp(24px, 8.5vw, 160px) 120px;
}

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #161616;
}

/* الصورة */
.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* hover */
.package-card:hover img {
  transform: scale(1.05);
}

/* البوكس */
.panel {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(20,20,20,0.9);
  border-radius: 20px;
  overflow: hidden;
}

/* النص */
.panel .info {
  padding: 26px 30px;
}

.panel span {
  color: var(--orange);
  font-size: 18px;
}

.panel strong {
  display: block;
  font-size: 32px;
  color: #fff;
}

.panel {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;

  display: flex;
  align-items: stretch; /* 🔥 المهم */

  background: rgba(20,20,20,0.9);
  border-radius: 20px;
  overflow: hidden;
}
/* سهم الكرت */
.panel .card-arrow {
  width: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--orange);
  color: #fff;
  font-size: 26px;

  border-radius: 0 20px 20px 0;

  transition: 0.3s ease;
}

/* hover */
.panel:hover .card-arrow {
  background: #fff;
  color: var(--orange);
}
.slider-controls { display: flex; gap: 22px; margin-left: 44%; }
.slider-controls button {
  border: 0;
  color: #777;
  background: transparent;
  font-size: 42px;
  cursor: pointer;
}
.slider-controls button:hover { color: var(--orange); }
.testimonial-bike {
  height: 100%;
  min-height: 820px;
  display: grid;
  place-items: center;
 
  border-radius: 220px 0 0 0;
  perspective: 1100px;
}
.testimonial-bike img {
  width: 100%;
  max-width: none;
  margin-left: 25%;
  transform-style: preserve-3d;
  transition: transform .14s ease-out;
  filter: drop-shadow(0 30px 38px rgba(0,0,0,.35));
}
/* ========================= */
/* 🔥 SPECIAL OFFER FINAL FIX */
/* ========================= */

.special-offer {
  position: relative;
  min-height: 735px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

/* 🔥 النص الخلفي المتحرك */
.special-bg {
  position: absolute;

  /* 🔥 خليه فوق */
  top: 0px;
  left: 50%;

  transform: translateX(-50%);

  width: max-content;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  font-size: clamp(84px, 10vw, 190px);
  font-weight: 950;
  white-space: nowrap;
   
  z-index: 1;
  pointer-events: none;

  /* 🔥 حركة يمين يسار */
  animation: bgMove 5s linear infinite;
}
/* حركة النص */
@keyframes bgMove {
  0% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(-60%);
  }
}

/* 🔥 المحتوى فوق */
.special-offer h3,
.special-offer p,
.subscribe {
  position: relative;
  z-index: 2;
}

/* العنوان */
.special-offer h3 {
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 900;
}

.special-offer h3 span {
  color: var(--orange);
}

/* النص */
.special-offer p {
  margin: 40px 0 60px;
  color: #878787;
  font-size: 22px;
}

/* ========================= */
/* 🔥 FORM */
/* ========================= */

.subscribe {
  display: flex;
  align-items: center;
  width: min(880px, 88vw);
  min-height: 84px;
  padding: 12px;
  background: #ffffff;
  border-radius: 999px;
  gap: 10px;
}

/* input */
.subscribe input {
  flex: 1;
  border: 0;
  outline: 0;
  color: #2a2727;
  background: transparent;
  padding: 0 30px;
  font-size: 20px;
}

/* 🔥 الزر */
.subscribe button {
  border: 0;
  min-width: 190px;
  height: 60px;
  border-radius: 999px;

  color: #fff;
  background: var(--orange);

  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: 0.3s ease;
}

/* 🔥 hover */
.subscribe button:hover {
  background: #fff;
  color: var(--orange);
}

/* أيقونة */
.subscribe button span {
  font-size: 18px;
}

.footer {
  background: #1a1a1a;
  color: #cfcfcf;
}
.contact-strip {
  width: min(1588px, calc(100% - 48px));
  min-height: 210px;
  margin: 0 auto;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  text-align: center;
  padding-top: 55px;
  background: #202020;
  border-radius: 0 0 56px 56px;
}
.contact-strip div + div { border-left: 1px solid rgba(255,255,255,.08); }
.contact-strip span { display: block; color: var(--orange); font-size: 21px; margin-bottom: 25px; }
.contact-strip strong { color: #fff; font-size: 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 1.3fr 1.3fr;
  gap: 70px;
  padding: 0 clamp(24px, 8.5vw, 160px) 86px;
}
.footer h5 {
  margin: 0 0 50px;
  color: #fff;
  font-size: 23px;
  position: relative;
}
.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -26px;
  width: 32px;
  height: 6px;
  background: var(--orange);
  border-radius: 999px;
}
.footer p { margin: 0 0 20px; font-size: 20px; line-height: 1.65; }
.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #ddd;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.22;
}
.news-item img { width: 100px; height: 100px; object-fit: cover; border-radius: 12px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 48px;
  font-size: 21px;
}
.footer a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 28px clamp(24px, 8.5vw, 160px);
  background: #222;
}

.chat-bubble, .back-top {
  position: fixed;
  z-index: 46;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #222;
  background: #ffbf00;
  left: 30px;
  bottom: 28px;
  font-size: 28px;
}
.back-top {
  left: auto;
  right: 58px;
  color: #fff;
  background: var(--orange);
  font-size: 28px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 70;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background: #242424;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 16px 26px;
  box-shadow: 0 20px 55px rgba(0,0,0,.35);
  transition: .25s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.page-hero, .shop-page {
  padding: 90px clamp(24px, 8.5vw, 160px);
}
.page-title {
  min-height: 270px;
  display: grid;
  align-items: center;
  padding: 70px clamp(24px, 8.5vw, 160px);
  background: #0f0f0f;
}
.page-title p { color: var(--muted); font-size: 22px; }
.shop-list {
  display: grid;
  gap: 24px;
}
.shop-row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: #191919;
  border: 1px solid var(--line);
}
.shop-row img { width: 170px; height: 115px; object-fit: contain; }
.shop-row h3 { margin: 0 0 8px; font-size: 26px; }
.shop-row p { color: var(--muted); }
.shop-row strong { color: var(--orange); font-size: 24px; }
.summary-card, .checkout-form, .product-detail {
  background: #191919;
  border: 1px solid var(--line);
  padding: 34px;
}
.summary-card {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.product-detail {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 70px;
  align-items: center;
}
.product-detail img { width: 100%; }
.product-detail h2 { margin: 0; font-size: clamp(40px, 4vw, 70px); }
.product-detail p { color: var(--muted); font-size: 21px; line-height: 1.7; }
.checkout-form {
  display: grid;
  gap: 18px;
  max-width: 780px;
}
.checkout-form input, .checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  color: #fff;
  background: #101010;
  padding: 18px 20px;
  border-radius: 8px;
}
.empty-state {
  padding: 60px;
  text-align: center;
  background: #171717;
  color: var(--muted);
  font-size: 22px;
}


.inner-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 4.8vw, 82px);
  line-height: 1.08;
}
.inner-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 25px;
  line-height: 1.62;
}

.shop-shell {
  padding: 70px clamp(24px, 8.5vw, 160px) 120px;
}
/* .shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 38px;
} */
.results-pill, .select-pill {
  display: inline-flex;
  align-items: center;
  min-height: 66px;
  padding: 0 36px;
  border-radius: 28px;
  background: #111;
  color: #ddd;
  font-weight: 850;
}
.shop-controls { display: flex; align-items: center; gap: 14px; }
.view-dots { display: flex; gap: 10px; color: #555; font-size: 34px; line-height: 1; }
.select-pill { min-width: 180px; justify-content: space-between; }
.category-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 38px;
}
.category-tab {
  border: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
  color: #a3a3a3;
  background: #101010;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}
.category-tab .icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 11px;
  background: #202020;
  color: #fff;
  font-size: 24px;
}
.category-tab strong { display: block; color: #ddd; font-size: 18px; }
.category-tab span:not(.icon) { display: block; margin-top: 4px; }
.category-tab.active { background: var(--orange); color: #fff; }
.category-tab.active strong { color: #fff; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px 80px;
}
.shop-grid[data-cols="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shop-grid .product-card { min-height: 515px; }

.faq-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  /* padding: 70px clamp(24px, 9vw, 180px); */
}
.faq-bubble {
  min-height: 390px;
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
  border-radius: 40px;
  background: var(--orange);
  color: #060606;
  box-shadow: 28px 28px 0 #050505;
}
.faq-bubble strong { font-size: clamp(54px, 6vw, 110px); line-height: .9; text-align: center; }
.faq-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  padding: 0 clamp(24px, 9vw, 180px) 120px;
}
.accordion {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #0d0d0d;
}
.faq-question {
  width: 100%;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 38px;
  color: #fff;
  background: transparent;
  font-weight: 900;
  font-size: 23px;
  cursor: pointer;
}
.faq-item.active .faq-question {
  color: var(--orange);
  background: #fff;
}
.faq-answer {
  display: none;
  padding: 34px 38px;
  color: #282828;
  background: #fff;
  font-size: 20px;
  line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }
.dark-form {
  display: grid;
  gap: 20px;
  padding: 48px;
  border-radius: 32px;
  background: #101010;
}
.dark-form h2 { margin: 0 0 18px; font-size: 42px; }
.dark-form label { color: #8d8d8d; font-weight: 800; }
.dark-form input, .dark-form textarea, .dark-form select {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 20px 24px;
  color: #fff;
  background: #1b1b1b;
  border-radius: 20px;
}
.dark-form textarea { min-height: 190px; resize: vertical; }

/* ========================= */
/* 🔥 CONTACT PANEL FIX */
/* ========================= */

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;

  margin: 40px auto;
  padding: 0;

  max-width: 1400px;
  background: #101010;
  border-radius: 24px;
  overflow: hidden;
}

/* ========================= */
/* 🔥 MAP */
/* ========================= */

/* .fake-map {
  min-height: 100%;
  background: url("https://maps.googleapis.com/maps/api/staticmap?center=New+York&zoom=13&size=600x800&maptype=roadmap") center/cover no-repeat;
} */

/* ========================= */
/* 🔥 INFO */
/* ========================= */

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  padding: 40px;
}

/* كل سطر */
.contact-line {
  display: flex;
 align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  color: #fff;
}

/* الأيقونة */
.contact-line .icon {
  width: 70px;
  height: 70px;
  min-width: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--orange);

  font-size: 22px;
  color: #fff;

  transition: 0.3s;
}

/* hover */
.contact-line:hover .icon {
  background: #fff;
  color: var(--orange);
}

/* النص */
.contact-line h3 {
  margin: 0;
  font-size: 22px;
}

.contact-line p {
  margin: 5px 0 0;
  color: #aaa;
  font-size: 16px;
}

/* ========================= */
/* 🔥 FORM */
/* ========================= */

.dark-form {
  padding: 60px 40px;
}

/* ========================= */
/* 🔥 RESPONSIVE */
/* ========================= */

/* لابتوب */
@media (max-width: 1200px) {
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .fake-map {
    display: none;
  }
}

/* تابلت */
@media (max-width: 768px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 30px;
  }

  .dark-form {
    padding: 30px;
  }
}

/* موبايل */
@media (max-width: 480px) {

  .contact-line {
    gap: 15px;
  }

  .contact-line .icon {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .contact-line h3 {
    font-size: 18px;
  }

  .contact-line p {
    font-size: 14px;
  }
}
/* ========================= */
/* 🔥 LAYOUT */
/* ========================= */

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 360px; /* 👈 أوسع شوي */
  gap: 50px;

  padding: 40px clamp(20px, 6vw, 120px) 100px;
  margin-top: -30px;

  align-items: start; /* 👈 أهم سطر (حل المشكلة) */
}

/* ========================= */
/* POSTS */
/* ========================= */

.post-list {
  display: grid;
   /* margin-top: -100px; */

  gap: 55px;
}

/* الكارد */
.post-card {
  display: grid;
  grid-template-columns: 320px 1fr; /* 👈 توازن مع sidebar */
  gap: 40px;

  align-items: center;

  padding-bottom: 35px;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

/* الصورة */
.post-card img {
  width: 320px;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;

  box-shadow: -18px 18px 0 #111;
}

/* النص */
.post-content h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.25;
}

.post-content p {
  color: #a8a8a8;
  font-size: 15px;
  line-height: 1.6;
}

/* meta */
.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
    box-shadow:  none;
}

.meta span {
  font-weight: 700;
  font-size: 14px;
}

.meta small {
  color: #aaa;
  font-size: 12px;
}

/* زر */
.read-more {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 16px;
  border-radius: 999px;

  background: rgba(255,101,0,.2);
  color: #fff;

  font-size: 14px;
  font-weight: 800;

  transition: 0.25s ease;
}

.read-more:hover {
  background: var(--orange);
}

/* ========================= */
/* SIDEBAR */
/* ========================= */



/* ========================= */
/* 🔥 BREADCRUMB CLEAN */
/* ========================= */



/* أيقونة الهوم */
.crumb-icon {
  display: grid;
  place-items: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;
  background: #1a1a1a;

  color: #fff;
  font-size: 14px;

  transition: 0.25s ease;
}

.crumb-icon:hover {
  color: #ffffff;
}

/* أيقونة الوسط */

/* /////////////////// */

.blog-sidebar {
  display: grid;
  gap: 20px;
  align-content: start;
  /* margin-top: 100px; */

  top: 0; /* 👈 مهم */
  position: relative;
}

/* الكارد */
.side-card {
  background: #0f0f0f;
  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* العنوان */
.side-card h3 {
  margin: 0;
  padding: 14px;
  text-align: center;

  font-size: 14px;
  background: #1a0e08;

  border-bottom: 1px solid rgba(255,101,0,.25);
}

/* body */
.side-card .body {
  padding: 18px;
}

/* ========================= */
/* 🔥 SEARCH (مميز) */
/* ========================= */
/* ========================= */
/* 🔥 BLOG SEARCH FIX */
/* ========================= */

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: nowrap;
}

/* input */
.blog-input {
  flex: 1;
  min-width: 0;

  height: 46px;
  border-radius: 30px;

  background: #1b1b1b;
  border: none;

  color: #fff;
  padding: 0 18px;

  font-size: 14px;
}

/* button */
.blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 34px;
  padding: 0 14px;

  border-radius: 20px;

  background: var(--orange);
  color: #fff;

  font-size: 12px;
  font-weight: 600;

  border: none;
  cursor: pointer;

  white-space: nowrap;

  transition: background 0.25s ease;
}

/* hover (بدون حركة) */
.blog-btn:hover {
  color: var(--orange);
  background: #ffffff;
}
/* ========================= */
/* TAGS */
/* ========================= */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  padding: 6px 12px;
  background: #1a1a1a;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  transition: 0.25s;
}

.tag-cloud span:hover {
  background: var(--orange);
}

/* ========================= */
/* ADS */
/* ========================= */

.ad-box {
  min-height: 260px;
  display: grid;
  place-items: center;

  border-radius: 14px;

  background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,.7)),
              url("assets/hero-bg-nature.png") center/cover;

  font-size: 24px;
  color: #888;
}

/* ========================= */
/* PAGINATION */
/* ========================= */

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);

  font-weight: 800;
  transition: 0.25s;
}

.pagination a.active {
  background: var(--orange);
  border-color: var(--orange);
}

.pagination a:hover {
  background: var(--orange);
}


/* ========================= */
/* 🔥 POST CARD */
/* ========================= */

.post-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;

  position: relative;
  padding-bottom: 35px;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

/* ========================= */
/* 🔥 IMAGE WRAP */
/* ========================= */

.post-image {
  position: relative;
  /* overflow: hidden; */
  border-radius: 14px;
    overflow: visible; /* 👈 أهم سطر (الحل الحقيقي) */

}

/* الصورة */
.post-image img {
  width: 320px;
  height: 260px;
  object-fit: cover;
  display: block;
box-shadow: -18px 18px 0 #111;
  transition: transform 0.4s ease;
    z-index: 2; /* 👈 أهم سطر */

}

/* 👇 الحركة فقط عند الوقوف على الصورة */
.post-image:hover img {
  transform: scale(1.08);
}
.post-image::before {
  z-index: 1;
}
.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  z-index: 2;
}
.img-wrap img {
  width: 320px;
  height: 260px;
  object-fit: cover;

  transition: transform 0.4s ease;
}

/* 🔥 zoom فقط على الصورة */
.img-wrap:hover img {
  transform: scale(1.08);
}

/* ========================= */
/* 🔥 ICON */
/* ========================= */

.post-icon {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;

  pointer-events: none; /* 👈 مهم */
}

/* شكل الأيقونة */
.post-icon i {
  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  background: var(--orange);
  color: #fff;

  border-radius: 50%;
  font-size: 26px;

  transform: scale(0);
  opacity: 0;

  transition: 0.3s ease;
}

/* 👇 يظهر فقط عند hover على الكارد */
.post-card:hover .post-icon i {
  transform: scale(1);
  opacity: 1;
}

/* ========================= */
/* 🔥 CONTENT */
/* ========================= */

.post-content h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;

  transition: color 0.25s ease;
  cursor: pointer;
}

.post-content h2:hover {
  color: var(--orange);
}

.post-content p {
  color: #a8a8a8;
  font-size: 15px;
  line-height: 1.6;
}

/* ========================= */
/* 🔥 META */
/* ========================= */

.meta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.meta img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.meta div {
  display: flex;
  flex-direction: column;
}

.meta span {
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.meta span:hover {
  color: var(--orange);
}

.meta small {
  color: #888;
  font-size: 12px;
}

/* ========================= */
/* 🔥 BUTTON */
/* ========================= */

.read-more {
  margin-top: 0px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 16px;
  border-radius: 999px;

  background: rgba(255,101,0,.2);
  color: #fff;

  font-size: 14px;
  font-weight: 800;

  transition: background 0.25s ease;
}

.read-more:hover {
  background: var(--orange);
}
.post-image::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(-18px, 18px);
  width: 100%;
  height: 100%;

  top: 18px;
  left: -18px;

  background: #111;
  border-radius: 14px;

  z-index: 1;
}

/* الصورة فوقه */
.post-image img {
  position: relative;
  z-index: 2;
}
.post-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.45);
  border-radius: 14px;

  opacity: 0;
  transition: 0.3s ease;

  z-index: 3;
}

/* يظهر فقط عند hover على الكارد */
.post-card:hover .post-image::after {
  opacity: 1;
}
.post-icon {
  z-index: 4;
}








.services-hero {
  padding: 86px clamp(24px, 8.5vw, 160px) 90px;
  text-align: center;

}
.services-hero h1 { margin-bottom:5px; margin-top: 30px; font-size: clamp(10px, 2.8vw, 60px); }
.services-hero p {  color: var(--muted); font-size: 20px; line-height: 1.55; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding: 0 clamp(24px, 9vw, 180px) 100px;
}

.service-card {
  min-height: 300px;
  width: 100%;
  max-width: 380px;

  display: grid;
  justify-items: center;
  align-content: center;
  gap: 30px;
  padding: 40px;
  text-align: center;

  background: #0e0e0e;
  border-radius: 20px;
}

/* 👈 اليسار */
.service-card:first-child {
  transform: translateX(40px);
}

/* 👈 اليمين */
.service-card:last-child {
  transform: translateX(-40px);
}

/* 👈 الأوسط */
.service-card.featured {
  min-height: 400px;
  max-width: 380px;
  background: #242424;

  transform: scale(1.08);
  z-index: 2;
}
/* الأيقونة */
.service-icon {
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  margin-top: -130px;

  color: #080808;
  background: var(--orange);
  border-radius: 50%;
  font-size: 62px;
}

/* أيقونة الوسط */
.service-card.featured .service-icon {
  margin-top: -150px; /* 👈 أخف من -180 عشان ما تطير لفوق */
}
  /* ========================= */
/* 🔥 خلي الصورة سوداء */
/* ========================= */

.service-icon img {
 filter: brightness(0) contrast(300%);
  transition: transform 0.6s ease;
}

/* ========================= */
/* 🔥 حركة الكارد (ناعمة) */
/* ========================= */

.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* 👇 hover طبيعي */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* 👇 نحافظ على اليمين واليسار */
.service-card:first-child:hover {
  transform: translateX(40px) translateY(-12px);
}

.service-card:last-child:hover {
  transform: translateX(-40px) translateY(-12px);
}

/* 👇 الكرت الأوسط */
.service-card.featured:hover {
  transform: scale(1.08) translateY(-12px);
}

/* ========================= */
/* 🔥 دوران ناعم للأيقونة */
/* ========================= */
/* ========================= */
/* 🔥 دوران الأيقونة */
/* ========================= */

.service-icon {
  transition: transform 0.6s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg);
}
/* ========================= */
/* 🔥 TABLET + SMALL DESKTOP */
/* ========================= */
@media (max-width: 1199px) {

  .services-hero {
    padding: 60px 40px 60px;
  }

  .services-hero h1 {
    font-size: 42px;
  }

  .services-hero p {
    font-size: 18px;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 30px;
    padding: 0 40px 80px;
  }

  /* ❌ الغي الانحراف */
  .service-card,
  .service-card:first-child,
  .service-card:last-child,
  .service-card.featured {
    transform: none !important;
  }
.service-card.featured .service-icon {
  margin-top: -50px; /* 👈 أخف من -180 عشان ما تطير لفوق */
}
  
  .service-card {
        max-width: 60%;
  }

  .service-card.featured {
    min-height: 320px;
        max-width: 60%;

  }

.service-icon {

  margin-top: -50px;


}
}

/* ========================= */
/* 🔥 TABLET SMALL */
/* ========================= */
@media (max-width: 991px) {

  .services-hero {
    padding: 50px 30px 50px;
  }

  .services-hero h1 {
    font-size: 36px;
  }

  .services-hero p {
    font-size: 17px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;
    padding: 0 30px 70px;
  }

  .service-card {
    max-width: 420px;
    width: 100%;
  }
}


/* ========================= */
/* 🔥 MOBILE */
/* ========================= */
@media (max-width: 575px) {

  .services-hero {
    padding: 40px 20px 40px;
  }

  .services-hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .services-hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .service-cards {
    padding: 0 20px 60px;
    gap: 20px;
  }

  .service-card {
    max-width: 100%;
    padding: 30px 20px;
    gap: 20px;
  }

  .service-icon {
    width: 100px;
    height: 100px;
    margin-top: -80px;
  }

  .service-card h2 {
    font-size: 22px;
  }

  .service-card p {
    font-size: 16px;
  }

    .service-card.featured {
    min-height: 320px;
        max-width: 600%;

  }
}


.service-card:hover .service-icon {
  transform: rotate(360deg);
}
.service-card h2 { margin: 0; font-size: 30px; }
.service-card p { margin: 0; color: #a8a8a8; font-size: 20px; line-height: 1.45; }
.service-cta { text-align: center; margin-bottom: 105px; }
.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 0 clamp(24px, 8.5vw, 160px) 120px;
  align-items: center;
}
.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.image-mosaic img {
  width: 100%;
  min-height: 225px;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  filter: brightness(.82);
}
.image-mosaic img.tall { grid-row: span 2; }
.service-gallery .copy h2 { font-size: clamp(42px, 4vw, 40px); }
.service-gallery .copy p { color: var(--muted); font-size: 18px; line-height: 1.6; }

.about-top {
  min-height: 735px;
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.9) 40%,
      rgba(0,0,0,0.75) 60%,
      rgba(0,0,0,0.4) 70%,
      rgba(0,0,0,0.1) 80%,
      rgba(0,0,0,0) 90%
    ),
    url("assets/post4-1.jpg") center/cover no-repeat;
}
.about-top .copy {
  padding-left: clamp(24px, 8.8vw, 170px);
}
.about-top h1 { max-width: 900px; font-size: clamp(48px, 4.8vw, 10px); line-height: 1.08; }
.about-top p { max-width: 820px; color: var(--muted); font-size: 20px; line-height: 1.62; }
.about-slash {
  height: 100%;
  min-height: 735px;
  transform: skewX(-14deg);
  overflow: hidden;
}
.about-slash img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: skewX(14deg) translateX(-8%);
  filter: brightness(.820);
}
.about-feature {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 62px;
  align-items: center;
  padding: 110px clamp(24px, 8.5vw, 160px);
    margin-top: -300px; /* 👈 يرفع السيكشن لفوق */
    margin-bottom: -200px;

}
.about-feature .big-bike {
  width: 150%;
  margin-left: -26%;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.5));
}
.about-feature h2 { font-size: clamp(44px, 4vw, 50px); }
.about-feature p { color: var(--muted); font-size: 18px; line-height: 1.6; }
.about-story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 0 clamp(24px, 8.5vw, 160px) 120px;
}
.story-card {
  min-height: 270px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 9px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.story-card span {
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border: 3px solid #fff;
  transform: rotate(45deg);
  font-size: 28px;
}
.story-card b { transform: rotate(-45deg); }

.partners {
  min-height: 560px;
  text-align: center;
  padding: 120px clamp(24px, 8.5vw, 160px);
}
.partners h2 { font-size: clamp(42px, 4vw, 66px); }
.partners p { color: var(--muted); font-size: 25px; line-height: 1.5; }
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px;
  margin-top: 80px;
  color: rgba(255,255,255,.24);
  font-size: 34px;
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  body { padding-top: 140px; }
  .top-offer { grid-template-columns: 180px 1fr; height: auto; min-height: 56px; }
  .top-offer a { display: none; }
  .top-offer span { margin-left: -118px; }
  .site-header {
    top: 56px;
    grid-template-columns: 1fr auto;
    padding: 16px 24px;
    min-height: 84px;
  }
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 50px;
    height: 50px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
  }
  .menu-toggle span { width: 22px; height: 2px; background: #fff; }
  .main-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 100%;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px;
    background: #171717;
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .22s;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 14px; }
  .main-nav > a::before,
  .main-nav .about-trigger::before,
  .main-nav > a.active::after,
  /* .main-nav .nav-item.active::after { display: none; } */
  .nav-item,
  .site-header.scrolled .nav-item {
    display: block;
    min-height: 0;
  }




  
  .about-trigger { width: 100%; justify-content: space-between; }
  .nav-dropdown,
  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px 14px;
    padding: 8px 0;
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-dropdown::before { display: none; }
  .nav-item:hover .nav-dropdown,
  .nav-item.open .nav-dropdown,
  .nested-trigger:hover ~ .nav-submenu,
  .nav-submenu:hover {
    display: block;
    transform: none;
  }
  .nav-dropdown a {
    padding: 12px 20px;
    font-size: 16px;
  }
  .header-actions .help-pill { display: none; }
  .hero, .about-section, .testimonials, .product-detail { grid-template-columns: 1fr; }
  .hero { padding: 50px 24px 0; }
  .hero-art { min-height: 520px; }
  .about-section { padding: 40px 24px 80px; }
  .about-bike { min-height: 430px; }
  .about-bike img { width: 100%; margin: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
  .testimonial-copy { padding: 80px 24px; }
  .testimonial-bike { min-height: 520px; border-radius: 100px 0 0 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .shop-grid, .category-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-hero, .faq-content, .contact-panel, .blog-layout, .service-gallery, .about-top, .about-feature { grid-template-columns: 1fr; }
  .contact-panel { padding: 0; }
  .service-cards, .about-story-cards { grid-template-columns: 1fr; gap: 90px; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  body { padding-top: 84px; }
  .top-offer { display: none; }
  .site-header { top: 0; }
  .round-action { width: 48px; height: 48px; font-size: 26px; }
  .hero h1, .about-copy h2, .ride-panel h2, .section-heading h3, .testimonial-copy h3, .special-offer h3, .page-title h1 { font-size: 38px; }
  .hero p, .about-copy p, .testimonial p { font-size: 18px; margin: 28px 0; }
  .hero-art { min-height: 360px; }
  .hotspot { display: none; }
  .feature-grid, .product-grid, .packages, .contact-strip, .footer-grid { grid-template-columns: 1fr; }
  .ride-panel { margin: 50px 24px; border-radius: 32px; padding: 34px 20px; }
  .section-heading, .summary-card { align-items: flex-start; flex-direction: column; }
  .product-meta { padding: 0 24px 28px; }
  .product-actions { position: static; margin-top: 20px; }
  .testimonials { min-height: auto; }
  .testimonial { grid-template-columns: 72px 1fr; }
  .testimonial img { width: 72px; height: 72px; border-width: 6px; }
  .special-offer { min-height: 560px; padding: 0 20px; }
  .subscribe { flex-direction: column; border-radius: 22px; }
  .subscribe input { min-height: 58px; }
  .subscribe button { min-height: 58px; }
  .contact-strip { transform: none; width: 100%; border-radius: 0; }
  .contact-strip div { padding: 28px 14px; }
  .contact-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .side-tools { display: none; }
  .chat-bubble { width: 46px; height: 46px; left: 18px; }
  .back-top { width: 46px; height: 46px; right: 18px; }
  .shop-row { grid-template-columns: 1fr; }
  .shop-toolbar, .shop-controls, .search-box { flex-direction: column; align-items: stretch; }
  .shop-grid, .category-tabs, .image-mosaic, .logo-row { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; gap: 28px; }
  .post-card img { width: 100%; }
  .faq-content, .blog-layout, .services-hero, .inner-hero { padding-left: 24px; padding-right: 24px; }
  .contact-strip strong { font-size: 24px; }
}



/* ========================= */
/* 🔥 CONTACT STRIP CLEAN */
/* ========================= */

.contact-strip {
  width: min(1400px, calc(100% - 60px));
  min-height: 160px; /* 🔥 أصغر */
  margin: 0 auto;

  /* 🔥 يطلع لفوق */
margin-top: -80px; /* 👈 نفس التأثير بس بدون تخريب */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;

  padding: 35px 10px;
  margin-top: -80px; /* 👈 نفس التأثير بس بدون تخريب */

  background: linear-gradient(180deg, #252525, #1c1c1c);
  border-radius: 0 0 50px 50px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* كل عمود */
.contact-strip div {
  padding: 10px;
  transition: 0.3s ease;
}

/* الخط الفاصل */
.contact-strip div + div {
  border-left: 1px solid rgba(255,255,255,.08);
}

/* العنوان الصغير */
.contact-strip span {
  display: block;
  color: var(--orange);
  font-size: 16px; /* 🔥 أصغر */
  margin-bottom: 12px;
}

/* النص الكبير */
.contact-strip strong {
  color: #fff;
  font-size: 24px; /* 🔥 أصغر */
  font-weight: 700;
  transition: 0.3s ease;
}

/* ========================= */
/* 🔥 HOVER */
/* ========================= */

.contact-strip div:hover strong {
  color: var(--orange);
}

.contact-strip div:hover {
  transform: translateY(-2px);
}

.contact-strip {
  margin-top: 50px;
  transform: translateY(-70%);
  border-radius: 80px 80px 0 0;
}
/* ========================= */
/* 🚫 إلغاء أي hover قديم */
/* ========================= */
.product-card:hover {
  transform: none !important;
  background: #191919 !important;
}

.product-card:hover .product-image img {
  transform: none !important;
  filter: none !important;
}

.product-image:hover img {
  transform: none !important;
}

.product-card:hover .product-image::after {
  background: #222 !important;
}


/* ========================= */
/* 🎯 الكارد النهائي */
/* ========================= */
.product-card {
  border-radius: 0 160px 0 0 !important;
  overflow: hidden;
  background: #191919;
}


/* ========================= */
/* 🖼️ الصورة ثابتة */
/* ========================= */
.product-image img {
  transform: none !important;
  filter: none !important;
}


/* ========================= */
/* 🔥 الأيقونات فوق الصورة */
/* ========================= */
.image-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 14px;
  z-index: 5;

  opacity: 0;
  transition: 0.25s ease;
}

.product-card:hover .image-icons {
  opacity: 1;
}

/* شكل الأيقونات */
.image-icons span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: 0.2s;
}

.image-icons span  :hover {
  background: var(--orange);
}



/* ========================= */
/* 🟠 العنوان */
/* ========================= */
.product-meta h4 {
  color: #fff;
  transition: 0.25s;
}

.product-card:hover .product-meta h4 .product-meta p{
  color: var(--orange);
}


/* ========================= */
/* 🔘 زر Add to cart */
/* ========================= */
.product-actions button:first-child {
  background: rgba(255,255,255,0.08) !important;
  color: #da7b2c !important;
  transition: 0.25s;
}

.product-card:hover .product-actions button:first-child {
  background: #fff !important;
  color: var(--orange) !important;
}


/* ========================= */
/* 🛒 ترتيب الأزرار */
/* ========================= */
.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* ========================= */
/* 🟠 SALE */
/* ========================= */
.sale-ribbon {
  opacity: 0.6;
  color: var(--orange);
}

/* ========================= */
/* 🧾 السعر + الزر بنفس السطر */
/* ========================= */
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 🔥 يفصل السعر عن الزر */
  gap: 20px;
}

/* خفف المارجن */
.product-actions {
  position: static !important;
  margin: 0;
}

/* خلي الزر بنفس الحجم */
.product-actions button:first-child {
  min-width: 150px;
  height: 42px;
}


/* ========================= */
/* 🟠 تغيير لون الفقرة */
/* ========================= */
.product-meta p {
  color: #9d9d9d;
  transition: 0.25s;
}

/* عند hover */
.product-card:hover .product-meta p {
  color: var(--orange);
}


/* ========================= */
/* 🔥 تحسين ترتيب السعر */
/* ========================= */
.price-row strong {
  font-size: 25px;
    margin-left: -30px;

}

.price-row del {
  margin-left: -40px;
  font-size: 18px;
}
/* السعر + الزر بنفس السطر */
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* مجموعة السعر */
.price {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* إلغاء التموضع القديم */
.product-actions {
  position: static !important;
  margin: 0;
}

/* شكل الزر */
.product-actions button {
  font-size: 20px;
  height: 40px;
  padding: 0 15px;
  border-radius: 999px;
}

/* ========================= */
/* 🎯 CONTAINER */
/* ========================= */
.image-icons {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  gap: 12px;
  padding: 10px 16px;

  border-radius: 999px;

  /* 🔥 بدون blur */
  background: rgba(0, 0, 0, 0.08);

  z-index: 5;
}

/* ========================= */
/* 🔘 ICONS CONTAINER */
/* ========================= */

.image-icons {
  display: flex;
  align-items: center;
  gap: 6px;

background: rgba(0, 0, 0, 0.45);
backdrop-filter: blur(8px);  padding: 4px 8px;

  border-radius: 999px;
}

/* ========================= */
/* 🔘 ICON */
/* ========================= */

.image-icons .icon {
  position: relative;

  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  /* ❌ بدون خلفية */
  background: transparent;

  color: #fff;
  font-size: 20px;

  border-radius: 50%;

  cursor: pointer;

  transition: all 0.25s ease;
}

/* 🔥 hover */
.image-icons .icon:hover {
  background: #fff;
  color: var(--orange);

  transform: translateY(-2px);
}

/* ========================= */
/* 🏷️ TOOLTIP */
/* ========================= */

.image-icons .icon::after {
  content: attr(data-label);

  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;

  transform: translateX(-50%) translateY(10px);

  background: var(--orange);
  color: #fff;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 14px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  transition: 0.25s ease;
}

/* 🔥 السهم */
.image-icons .icon::before {
  content: "";

  position: absolute;

  bottom: calc(100% + 1px);
  left: 50%;

  transform: translateX(-50%) translateY(10px);

  border: 6px solid transparent;
  border-top-color: var(--orange);

  opacity: 0;

  transition: 0.25s ease;
}

/* 🔥 hover */
.image-icons .icon:hover::after,
.image-icons .icon:hover::before {
  opacity: 1;

  transform: translateX(-50%) translateY(0);
}
/* ========================= */
/* 🔥 TESTIMONIAL FINAL CLEAN */
/* ========================= */

.testimonials {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
}

/* الجهة اليسار */
.testimonial-copy {
  padding: 80px 0 80px 100px;
  position: relative;
}

/* العنوان */
.testimonial-copy h3 {
    margin-bottom: 40px; /* زيدنا المسافة */

  font-size: 60px;
  font-weight: 900;
}

.testimonial-copy span {
  color: var(--orange);
}

/* السلايدر */
.testimonial-slider {
  position: relative;
  min-height: 250px;
}

/* كل تعليق */
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: .4s;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

/* ========================= */
/* 🔥 user (الصورة + النص) */
/* ========================= */

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* الصورة */
.user img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 4px solid #2a2a2a;
}

/* النص */
.info {
  display: flex;
  flex-direction: column;
}

/* الاسم */
.info h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

/* الوظيفة */
.info span {
  margin-top: 4px;
  color: var(--orange);
  font-size: 14px;
}

/* النص */
.testimonial p {
  margin-top: 25px;
  font-size: 20px;
  line-height: 1.8;
  color: #9c9c9c;
}

/* ========================= */
/* 🔥 الزخرفة (ثابتة) */
/* ========================= */

.testimonial-copy::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 60px;
  width: 300px;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.05);
  transform: skewX(-15deg);
}

.testimonial-copy::after {
  content: "“";
  position: absolute;
  left: 60px;
  bottom: 0;
  font-size: 130px;
  color: var(--orange);
  font-weight: 900;
}

/* ========================= */
/* 🔥 الصورة */
/* ========================= */

.testimonial-bike {
  display: flex;
  justify-content: center;
  align-items: center;
    /* overflow: hidden; */

}

.testimonial-bike img {
  width: 200%;
  max-width: 900px;
    transform: translateX(10%); /* يختفي جزء أكبر */
}

/* الأسهم */
.slider-controls {
  margin-top: 40px;
}

.slider-controls button {
  border: 0;
  background: transparent;
  font-size: 36px;
  color: #777;
  cursor: pointer;
    opacity: 0.3;
  transition: 0.3s;
}

.slider-controls button.active {
  color: var(--orange);
  opacity: 1;
}

.slider-controls button.disabled {
  opacity: 0.1;
  pointer-events: none;
}

.slider-controls button:hover {
  color: var(--orange);
}

/* ========================= */
/* 🔥 FINAL FOOTER UPGRADE */
/* ========================= */

/* الكونتينر */
.footer {
  background: #1a1a1a;
  color: #cfcfcf;
}

/* الجريد */
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.2fr 1.2fr;
  gap: 50px;
  padding: 0 clamp(24px, 8vw, 140px) 70px;
}

/* العناوين */
.footer h5 {
  padding-top: 25px;
  margin: 0 0 35px;
  color: #fff;
  font-size: 18px;
  position: relative;
}

/* الخط البرتقالي */
.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 26px;
  height: 4px;
  background: var(--orange);
  border-radius: 999px;
}

/* النصوص */
.footer p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.6;
  transition: 0.3s;
}

/* ========================= */
/* 🔥 SHORTCUTS (الأسهم + الحركة) */
/* ========================= */

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  font-size: 17px;
}

/* اللينك */
.footer-links a {
  position: relative;
  padding-left: 18px;
  color: #cfcfcf;
  transition: 0.3s;
}

/* السهم */
.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #777;
  transition: 0.3s;
}

/* 🔥 الحركة لليمين */
.footer-links a:hover {
  color: var(--orange);
  transform: translateX(6px);
}

/* السهم يتحرك */
.footer-links a:hover::before {
  color: var(--orange);
  transform: translateX(4px);
}

/* ========================= */
/* 🔥 NEWS */
/* ========================= */

.news-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #ddd;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  transition: 0.3s;
}

.news-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

/* حركة خفيفة */
.news-item:hover {
  color: var(--orange);
  transform: translateX(6px);
}

/* ========================= */
/* 🔥 OFFICE (حركة بسيطة) */
/* ========================= */

.footer p:hover {
  color: var(--orange);
  transform: translateX(4px);
}

/* ========================= */
/* 🔥 FOOTER BOTTOM */
/* ========================= */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(24px, 8vw, 140px);
  background: #222;
  font-size: 14px;
}

/* ========================= */
/* 🔥 RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}/* ========================= */
/* 🔥 FIX NEWS (بدون حركة + تأثير صورة) */
/* ========================= */

/* إلغاء الحركة */
.news-item {
  transform: none !important;
}

/* منع تحريك النص */
.news-item:hover {
  transform: none !important;
  color: #ddd !important;
}

/* تأثير على الصورة فقط */
.news-item img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* 🔥 تكبير ناعم */
.news-item:hover img {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* ========================= */
/* 🔥 FIX WORKING HOURS (بدون أي تأثير) */
/* ========================= */

/* استهدف العمود الرابع */
.footer-grid > div:last-child p {
  transform: none !important;
  color: #cfcfcf !important;
  cursor: default;
}

/* إلغاء hover */
.footer-grid > div:last-child p:hover {
  transform: none !important;
  color: #cfcfcf !important;
}

body {
  padding-top: 60px;
}

.site-header {
  top: 60px;
}

.top-offer {
  position: fixed;
}


/* ========================= */
/* 🔥 OFFICE ICON STYLE */
/* ========================= */

.footer-office {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* العنصر */
.office-item {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: .3s ease;
}

/* الدائرة */
.office-item .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;

  background: #2a2a2a;
  border-radius: 50%;

  font-size: 16px;
  color: var(--orange);

  transition: .3s ease;
}

/* النص */
.office-item p {
  margin: 0;
  font-size: 17px;
  color: #cfcfcf;
  transition: .3s ease;
}

/* ========================= */
/* 🔥 HOVER */
/* ========================= */

.office-item:hover {
  transform: translateX(10px);
}

.office-item:hover .icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(255,102,0,.35);
}

.office-item:hover p {
  color: #fff;
}

/* ========================= */
/* 🔥 HEADER ACTIONS FIX */
/* ========================= */

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* زر Help */
.help-pill {
  display: flex;
  align-items: center;
  gap: 10px;

  height: 56px;
  padding: 0 30px;

  border-radius: 999px;
  background: var(--orange);
  color: #fff;

  font-weight: 800;
  font-size: 15px;

  box-shadow: 0 10px 25px rgba(255,102,0,.25);
  transition: .3s ease;
}

/* أيقونة البسكليت */
.help-pill i {
  font-size: 18px;
}

/* hover */
.help-pill:hover {
  background: #fff;
  color: var(--orange);
  /* transform: translateY(-2px); */
}

/* ========================= */
/* 🔥 ROUND BUTTONS */
/* ========================= */

.round-action {
  position: relative;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #242424;

  color: #fff;
  font-size: 20px;

  transition: .3s ease;
}

/* hover */
.round-action:hover {
  background: var(--text);
 color: orange; 
  /* transform: translateY(-3px); */
}

/* الرقم */
.round-action .count {
  position: absolute;
  top: -4px;
  right: -4px;

  min-width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;

  background: var(--orange);
  color: #fff;

  border-radius: 50%;
}
/* ========================= */
/* 🔥 SVG ICON STYLE */
/* ========================= */

.icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  transition: .3s ease;
}

/* hover */
.icon:hover svg {
  stroke: var(--orange);
  transform: scale(1.1);
}

.product-actions button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
/* ========================= */
/* EMAIL BUTTON */
/* ========================= */
.mail-btn {
  position: fixed;
 right: 86px;
  bottom: 30px;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--orange);
  color: #fff;

  text-decoration: none;
  border: none;
  cursor: pointer;

  z-index: 999;
}

/* ========================= */
/* BACK TO TOP BUTTON */
/* ========================= */
/* الوضع المخفي (تحت الشاشة) */
.back-top {
  position: fixed;
  right: 30px;
  bottom: 30px;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--orange);
  color: #fff;

  border: none;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;

  /* 🔥 هون السر */
  transform: translateY(80px); /* نازل لتحت */
  transition: all 0.45s cubic-bezier(.22,1,.36,1);

  z-index: 999;
}

/* لما يظهر */
.back-top.show {
  opacity: 1;
  transform: translateY(0); /* يطلع لفوق */
  pointer-events: auto;
}

/* ========================= */
/* ICONS */
/* ========================= */
.mail-btn svg,
.back-top svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ========================= */
/* HOVER */
/* ========================= */
.mail-btn:hover,
.back-top:hover {
  background: #fff;
  color: var(--orange);
  
}

/* ========================= */
/* 🔥 حركة السهم (اقلاع) */
/* ========================= */
.back-top:hover svg {
  animation: flyUp 0.6s ease;
}

@keyframes flyUp {
  0%   { transform: translateY(0); opacity: 1; }
  40%  { transform: translateY(-10px); opacity: 1; }
  60%  { transform: translateY(-16px); opacity: 0; }
  61%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ========================= */
/* 🔥 SIDE TOOLS FINAL */
/* ========================= */

.side-tools {
  position: fixed;
  right: 0; /* 👈 يلزق بالطرف */
  top: 60%;
  transform: translateY(-50%) translateX(80px); /* 👈 بالبداية مخفي */

  background: #ffffff;
  border-radius: 3px 0 0 3px;
  padding: 2px 0;
width: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 999;

  transition: transform 0.4s ease;
}

/* 👈 لما يظهر */
.side-tools.show {
  transform: translateY(-50%) translateX(0);
}

/* كل زر */
.side-tools a {
  width: 35px;   /* 👈 أصغر */
  height: 35px;

  display: grid;
  place-items: center;

  color: #777;
  text-decoration: none;

  position: relative;

  transition: 0.25s ease;
}

/* الأيقونات */
.side-tools i {
  font-size: 15px; /* 👈 أصغر */
  opacity: 0.85;
}

/* hover */
.side-tools a:hover {
  background: #fff;
  color: var(--orange);
}

/* ========================= */
/* 🔥 TOOLTIP */
/* ========================= */

.side-tools a::after {
  content: attr(data-label);

  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) scale(0.9);

  background: var(--orange);
  color: #fff;

  padding: 6px 12px;
  border-radius: 6px;

  font-size: 12px;

  opacity: 0;
  transition: 0.2s ease;
}

.side-tools a::before {
  content: "";
  position: absolute;

  right: 52px;
  top: 50%;
  transform: translateY(-50%);

  border: 5px solid transparent;
  border-left-color: var(--orange);

  opacity: 0;
  transition: 0.2s;
}

.side-tools a:hover::after,
.side-tools a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ========================= */
/* 🔥 FEATURE BIKE EFFECT */
/* ========================= */

.about-feature {
  overflow: hidden;
}

.about-feature .big-bike {
  width: 150%;
  margin-left: -26%;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.5));

  transform: translateX(-220px); /* بالبداية برا */
  opacity: 0;

  transition: transform .2s linear, opacity .2s linear;
}
/* ========================= */
/* 🔥 SECTION */
/* ========================= */

.bike-slider-section {
  padding: 80px 0;
  background: #000;
  overflow: hidden;
}

/* العنوان */
.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  margin-bottom: 40px;
  /* flex-direction: column; 👈 يخليهم تحت بعض */
  /* align-items: flex-start; */
  gap: 10px;
margin-left: 30px;
  margin-bottom: -100px; /* 👈 قربه من الصور */
}

.title-row h2 {
  font-size: 50px;
  color: #fff;
   font-size: 50px; /* 👈 صغرناه شوي */
  line-height: 1.2;
}

.title-row span {
  display: block;
  margin-top: 5px;
  color: var(--orange);
}

/* زر */
.explore-btn {
  padding: 20px 30px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
  margin-right: 50px;
}

.explore-btn:hover {
  background: #fff;
  color: var(--orange);
}

/* ========================= */
/* 🔥 SLIDER */
/* ========================= */

.slider {
  position: relative;
  overflow: hidden;
    margin-top: -px; /* 👈 يقربهم */

}

.slider-track {
  display: flex;
  align-items: center;
  gap: 60px;
  transition: transform 0.6s ease;
  /* justify-content: center; */
}

/* الصور */
.slider-track img {
  width: 400px;
  opacity: 0.2;
  transform: scale(0.8);
  transition: 0.4s;
  filter: brightness(0.5);
}

/* النشطة */
.slider-track img.active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
}

/* القريبة */
.slider-track img.near {
  opacity: 0.5;
  transform: scale(0.9);
}

/* ========================= */
/* 🔥 ARROWS */
/* ========================= */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 60px;
  height: 120px;

  border-radius: 30px;
  border: none;

  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 28px;

  cursor: pointer;
  z-index: 10;

  opacity: 0;
  transition: 0.3s;
}

/* تظهر عند hover */
.slider:hover .arrow {
  opacity: 1;
}

/* hover */
.arrow:hover {
  background: #fff;
  color: var(--orange);
}

/* مكان الأسهم */
.prev { left: 15%; }
.next { right: 15%; }

/* ========================= */
/* 🔥 DOTS */
/* ========================= */

.dots {
  display: flex;
  justify-content: center;
  margin-top: -100px;
  gap: 10px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #444;
  border-radius: 50%;
  transition: 0.3s;
}

.dots span.active {
  background: #fff;
  transform: scale(1.4);
}

/* ========================= */
/* 🔥 ARROWS FINAL PRO */
/* ========================= */

.arrow1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 65px;
  height: 130px;

  border-radius: 40px;
  border: none;

  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 30px;

  cursor: pointer;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 إضاءة */
  box-shadow:
    0 0 20px rgba(255,255,255,0.1),
    inset 0 0 10px rgba(255,255,255,0.05);

  backdrop-filter: blur(6px);

  transition: all 0.3s ease;
}

/* 👇 مكانهم بالنص بين الصور */
.prev {
  left: 25%;
}

.next {
  right: 25%;
}

/* 🔥 hover قوي */
.arrow1:hover {
  background: #fff;
  color: var(--orange);

  transform: translateY(-50%) scale(1.1);

  box-shadow:
    0 0 25px rgba(255,120,0,0.7),
    0 0 50px rgba(255,120,0,0.4);
}

/* 🔥 حركة خفيفة للسهم */
.arrow1:hover span {
  transform: translateX(3px);
}

/* 👇 تحسين شكل السهم */
.arrow1::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(
    circle at center,
    rgba(255,120,0,0.15),
    transparent 70%
  );

  opacity: 0;
  transition: 0.3s;
}

.arrow1:hover::before {
  opacity: 1;
}

/* ========================= */
/* 🔥 PRO SLIDER */
/* ========================= */

.slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  align-items: center;
  gap: 60px;

  /* مهم */
  will-change: transform;
}

/* الصور */
.slider-track img {
  width: 500px; /* كبرها براحتك */
  flex-shrink: 0;
margin-top: -100px; 
  opacity: 0.3;
  transform: scale(0.8);
  filter: brightness(0.5);

  transition: all 0.4s ease;
}

/* النشطة */
.slider-track img.active {
  opacity: 1;
  transform: scale(1.15);
  filter: brightness(1);

  z-index: 2;
}

/* القريبة */
.slider-track img.near {
  opacity: 0.6;
  transform: scale(0.9);
}

/* ========================= */
/* 🔥 PARTNERS FINAL CLEAN */
/* ========================= */

.partners {
  padding: 120px 20px;
  background: #000;
  text-align: center;
}

.partners h2 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: -100px;
}

.partners span {
  color: var(--orange);
}

.partners p {
  color: #777;
  max-width: 800px;
  margin: 0 auto 70px;
  font-size: 23px;
}

/* ========================= */
/* 🔥 LOGOS ROW */
/* ========================= */

.logo-row {
  margin-top: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ========================= */
/* 🔥 LOGO */
/* ========================= */

.logo {
  width: 12%;

  opacity: 0.4;
  filter: grayscale(100%) brightness(0.7);

  transition: transform 0.12s ease, opacity 0.12s ease;
    will-change: transform;

}.logo-row .logo {
  gap: 300px;

}
/* لما تمرر على القسم */
.logo-row:hover .logo {
  opacity: 0.5;
}

/* 🔥 الصورة المختارة */
.logo:hover {
  opacity: 1 !important;

  transform: scale(1.15);

  /* 👇 ما في transition عليها → فورية */
  filter:
    grayscale(0%)
    brightness(1.5)
    drop-shadow(0 0 10px rgba(255,255,255,0.8))
    drop-shadow(0 0 25px rgba(255,255,255,0.6))
    drop-shadow(0 0 50px rgba(255,255,255,0.4));
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
  .logo {
    width: 70px;
  }

  .logo-row {
    gap: 40px;
  }

  .partners h2 {
    font-size: 32px;
  }
}

/* ========================= */
/* 🔥 دخول من تحت */
/* ========================= */

.logo {
  transform: translateY(60px);
  opacity: 0;

  transition: all 0.6s ease;
}

/* لما تظهر */
.logo.show {
  transform: translateY(0);
  opacity: 0.4;
}

/* stagger */
.logo:nth-child(1) { transition-delay: 0.1s; }
.logo:nth-child(2) { transition-delay: 0.2s; }
.logo:nth-child(3) { transition-delay: 0.3s; }
.logo:nth-child(4) { transition-delay: 0.4s; }
.logo:nth-child(5) { transition-delay: 0.5s; }
.logo:nth-child(6) { transition-delay: 0.6s; }

/* ========================= */
/* 🔥 CONTAINER */
/* ========================= */

.about-story-cards {
  display: flex;
  gap: 30px;
  padding: 60px;
}

@media (max-width: 900px) {
  .about-story-cards {
    flex-direction: column;
  }
}

/* ========================= */
/* 🔥 CARD */
/* ========================= */

.story-card {
  position: relative;
  flex: 1;
  height: 280px;

  background-size: cover;
  background-position: center;

  border-radius: 20px;
  overflow: hidden;

  cursor: pointer;
}

/* overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: 0.4s ease;
}

/* ========================= */
/* 🔥 CONTENT */
/* ========================= */

.content {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* النص */
.text {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  z-index: 2;

  transition: all 0.35s ease;
}

/* ========================= */
/* 🔥 DIAMOND */
/* ========================= */

.diamond {
  position: absolute;

  width: 180px;
  height: 180px;

  border: 2px solid #fff;

  transform: rotate(45deg) scale(0.6);
  opacity: 0;

  transition: all 0.4s ease;
}

/* ========================= */
/* 🔥 HOVER */
/* ========================= */

/* تغميق الصورة */
.story-card:hover .overlay {
  background: rgba(0,0,0,0.55);
}

/* المعين يظهر */
.story-card:hover .diamond {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

/* 🔥 النص يدخل داخل المعين */
.story-card:hover .text {
  transform: scale(0.9); /* 👈 يصغر شوي عشان يركب داخل المعين */
  max-width: 160px;
  line-height: 1.3;
}
/* ========================= */
/* 🔥 SWITCH TEXT ONLY */
/* ========================= */

/* النصين فوق بعض */
.text {
  position: absolute;
}

/* النص الأول */
.normal {
  opacity: 1;
}

/* النص الثاني مخفي */
.hover-text {
  opacity: 0;
}

/* عند hover */
.story-card:hover .normal {
  opacity: 0;
}

.story-card:hover .hover-text {
  opacity: 1;
}

/* الافتراضي (ديسكتوب) */
.about-story-cards {
  display: flex;
  gap: 30px;
  padding: 60px;
}

/* 🔥 تابلت → 2 */
@media (max-width: 992px) {
  .about-story-cards {
    flex-wrap: wrap;
  }

  .story-card {
    flex: 1 1 calc(50% - 15px);
  }
}

/* 🔥 موبايل → 1 */
@media (max-width: 600px) {
  .story-card {
    flex: 1 1 100%;
  }
}

/* ========================= */
/* 🔥 MARQUEE */
/* ========================= */

.marquee-about,
.marquee-aboutt {
  display: flex;
  align-items: center;
  justify-content: center;

  height: clamp(80px, 10vw, 150px); /* 👈 يتغير حسب الشاشة */
  overflow: hidden;

  color: rgba(255,255,255,.06);

  font-size: clamp(40px, 8vw, 150px); /* 👈 أهم تعديل */
  line-height: 1;
  font-weight: 950;

  white-space: nowrap;
}

/* المسافات */
.aboutmarquee-track span,
.aboutmarquee-trackt span {
  padding-right: clamp(20px, 3vw, 50px);
}

/* Responseve */
/* ========================= */
/* 🔥 GLOBAL RESPONSIVE */
/* ========================= */

img {
  max-width: 100%;
  height: auto;
}

h1 { font-size: clamp(28px, 5vw, 60px); }
h2 { font-size: clamp(22px, 4vw, 40px); }
p  { font-size: clamp(14px, 1.5vw, 18px); }

/* ========================= */
/* 🔥 CONTACT FINAL FIX */
/* ========================= */

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 10px;
  margin: 100px auto 60px; /* 👈 توسيط + مسافة فوق وتحت */
  max-width: 1250px;
  margin: 60px auto;
margin-top: -50px;
  background: #101010;
  border-radius: 24px;
  overflow: hidden;
}

/* ========================= */
/* 🔥 MAP */
/* ========================= */

/* .fake-map {
  min-height: 100%;
  background: url("assets/map.jpg") center/cover no-repeat;
} */

/* ========================= */
/* 🔥 INFO */
/* ========================= */

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 40px;
}

.contact-line {
  display: flex;
 align-items: flex-start;
   gap: 20px;

  text-decoration: none;
  color: #fff;
}

/* أيقونات */
.contact-line .icon {
  width: 70px;
  height: 70px;
  min-width: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--orange);

  font-size: 22px;
  color: #fff;

  transition: 0.25s;
}

/* hover */
.contact-line:hover .icon {
  background: #fff;
  color: var(--orange);
}

.contact-line h3 {
  margin: 0;
  font-size: 22px;
}

.contact-line p {
  margin: 5px 0 0;
  color: #aaa;
  font-size: 16px;
}

/* ========================= */
/* 🔥 FORM */
/* ========================= */

.dark-form {
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* عنوان */
.dark-form h2 {
  font-size: 34px;
}

.dark-form h2 span {
  color: var(--orange);
}

/* grid */
.dark-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* input */
.dark-form input,
.dark-form select,
.dark-form textarea {
  width: 100%;
  padding: 14px 18px;

  border-radius: 20px;
  border: none;

  background: #1a1a1a;
  color: #fff;

  font-size: 14px;

  outline: none;
  transition: 0.2s;
}

/* focus */
.dark-form input:focus,
.dark-form textarea:focus,
.dark-form select:focus {
  background: #222;
}

/* textarea */
.dark-form textarea {
  height: 140px;
  resize: none;
}

/* زر */
.dark-form button {
  width: 140px;
  padding: 12px;

  border-radius: 30px;
  border: none;

  background: var(--orange);
  color: #fff;

  font-weight: bold;
  cursor: pointer;

  transition: 0.3s;
}

.dark-form button:hover {
  opacity: 0.85;
}

/* ========================= */
/* 🔥 RESPONSIVE */
/* ========================= */

/* لابتوب */
@media (max-width: 1200px) {
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .fake-map {
    display: none;
  }
}

/* تابلت */
@media (max-width: 768px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 30px;
  }

  .dark-form {
    padding: 30px;
  }
}

/* موبايل */
@media (max-width: 480px) {

  .contact-line {
    gap: 15px;
  }

  .contact-line .icon {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .dark-form .form-grid {
    grid-template-columns: 1fr;
  }

  .dark-form button {
    width: 100%;
  }
}
/* ========================= */
/* 🔥 INPUT ACTIVE STYLE */
/* ========================= */

/* الشكل الطبيعي */
.dark-form input,
.dark-form select,
.dark-form textarea {
  background: #1a1a1a;
  color: #fff;
  transition: 0.25s ease;
}

/* 🔥 لما تضغط أو تكتب */
.dark-form input:focus,
.dark-form textarea:focus,
.dark-form select:focus {
  background: #fff !important;
  color: #000 !important;
}

/* لون النص داخل الحقل */
.dark-form input:focus::placeholder,
.dark-form textarea:focus::placeholder {
  color: #666;
}

/* ========================= */
/* 🔥 FORM LAYOUT FIX */
/* ========================= */

/* صفين جنب بعض */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* يخلي كل label عمودي */
.dark-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* الرسالة تاخذ عرض كامل */
.dark-form .full {
  width: 100%;
}

/* ========================= */
/* 🔥 RESPONSIVE */
/* ========================= */

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* 🔥 MOBILE FIX FINAL */
/* ========================= */

@media (max-width: 768px) {

  /* يخلي السيكشن عمودي */


  /* الخريطة */
  .fake-map {
    width: 100%;
    height: 250px;
    border-radius: 20px;
  }

  /* المعلومات */
  .contact-info {
    width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .contact-line {
   align-items: flex-start;
  }

  /* الفورم */
  .dark-form {
    width: 100%;
    padding: 0;
  }



  /* الحقول */
  .dark-form input,
  .dark-form select,
  .dark-form textarea {
    width: 100%;
  }

  /* الزر */
  .dark-form button {
    width: 100%;
  }
}
/* ========================= */
/* 🔥 SPACE UNDER HEADER */
/* ========================= */
/* 
.contact-panel {
  margin-top: 15px !important;
}
.contact-panel {
  margin: 14px auto 8px;
} */

.map-box {
  position: relative;
}

.map-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,120,0,0.2);
  pointer-events: none;
}
/* ========================= */
/* 🔥 GOOGLE MAP FIX */
/* ========================= */

/* ========================= */
/* 🔥 FULL WIDTH MAP */
/* ========================= */

.map-box {
  width: 100%;
  height: 100%;
  min-height: 500px;

  border-radius: 20px;
  overflow: hidden;
}

/* الخريطة نفسها */
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



/* ========================= */
/* 🔥 RESPONSIVE CLEAN */
/* ========================= */

/* ========================= */
/* 💻 1600+ */
/* ========================= */
@media (min-width: 1600px) {
  .contact-panel {
    max-width: 1400px;
  }
}

/* ========================= */
/* 💻 DESKTOP */
/* ========================= */
@media (max-width: 1200px) {
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  /* الخريطة فوق */
  .map-box {
    grid-column: 1 / -1;
    height: 350px;
  }
}

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 992px) {

  .contact-panel {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* الخريطة فوق */
  .map-box {
    grid-column: 1 / -1;
    height: 300px;
  }

}

/* ========================= */
/* 📱 SMALL TABLET */
/* ========================= */
@media (max-width: 768px) {

  .contact-panel {
    grid-template-columns: 1fr;
  }

  /* الخريطة لحالها */
  .map-box {
    height: 260px;
  }

  /* info + form full width */
  .contact-info,
  .dark-form {
    width: 100%;
  }

}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 600px) {

  .contact-panel {
    gap: 18px;
  }

  .map-box {
    height: 230px;
  }

}

/* ========================= */
/* 📱 SMALL MOBILE */
/* ========================= */
@media (max-width: 400px) {

  .map-box {
    height: 200px;
  }

  .contact-line .icon {
    width: 55px;
    height: 55px;
  }

}

/* لا تخليهم ينزلوا */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  gap: 15px;
}
.contact-line .icon {
  margin-top: 4px; /* 👈 يضبط مستوى الأيقونة */
}

/* ========================= */
/* 🔥 FINAL CENTER FIX */
/* ========================= */

/* INFO كله بالنص */
.contact-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 40px;
}

/* كل عنصر */
.contact-line {
  display: flex !important;
  flex-direction: column !important; /* 👈 أهم سطر */
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;

  gap: 15px;
}

/* الأيقونة */
.contact-line .icon {
  margin: 0 !important;

  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--orange);

  font-size: 24px;
}

/* النص */
.contact-line h3 {
  margin: 0;
  font-size: 22px;
}

.contact-line p {
  margin: 0;
  color: #aaa;
  font-size: 15px;
}

/* ========================= */
/* 🔥 FORM CENTER FIX */
/* ========================= */

.dark-form {
  margin: 0 auto !important;
  text-align: center !important;
  align-items: center !important;
}

/* عنوان الفورم */
.dark-form h2 {
  text-align: center !important;
  width: 100%;
}

/* يخلي الحقول جنب بعض حتى بالموبايل */
.form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 15px;
  width: 100%;
}

/* يخلي الفورم بالنص */
.dark-form {
  max-width: 500px;
  margin: 0 auto;
}

/* الزر بالنص */
.dark-form button {
  /* align-self: center; */
}
/* ========================= */
/* 💻 TABLET FIX (رجوع للوضع الطبيعي) */
/* ========================= */

@media (min-width: 768px) and (max-width: 1024px) {

  /* رجّع المعلومات زي قبل */
  .contact-info {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .contact-line {
    flex-direction: row !important; /* 👈 يرجع الأيقونة جنب النص */
    align-items: center !important;
    text-align: left !important;
  }

  .contact-line .icon {
    margin-right: 15px !important;
  }

  /* الفورم */
  .dark-form {
    align-items: stretch !important;
    text-align: left !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .dark-form h2 {
    text-align: left !important;
  }

  /* الحقول */
  .form-row {
    grid-template-columns: 1fr 1fr !important;
  }

  /* الزر */
  .dark-form button {
    align-self: flex-start !important;
  }
} 
/* ========================= */
/* 🔥 FIX INFO BACK TO NORMAL */
/* ========================= */

.contact-info {
  align-items: flex-start !important;
  text-align: left !important;
}

.contact-line {
  display: flex !important;
  flex-direction: row !important; /* 👈 يرجع طبيعي */
  align-items: center !important;
  gap: 20px !important;
}

.contact-line .icon {
  margin: 0 !important;
}

/* ========================= */
/* 🔥 DESKTOP ONLY FIX */
/* ========================= */

@media (min-width: 1200px) {

  /* رجّع layout أفقي */
  .contact-line {
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
  }

  /* النص يكون عاليسار */
  .contact-line div,
  .contact-line h3,
  .contact-line p {
    text-align: left !important;
  }

  /* الفورم */
  .dark-form {
    align-items: flex-start !important;
    text-align: left !important;
  }

  /* عنوان الفورم */
  .dark-form h2 {
    text-align: left !important;
  }

  /* الزر عاليسار */
  .dark-form button {
    align-self: flex-start !important;
  }

}
/* ========================= */
/* 🔥 مسافة عن الناف بار */
/* ========================= */

.services-hero {
  margin-top: 40px; /* 👈 زود/نقص حسب ذوقك */
}

/* ========================= */
/* 🔥 hover برتقالي للهوم فقط */
/* ========================= */

.crumb-icon {
  color: #aaa;
  transition: all 0.3s ease;
  
}

/* 👇 الهوم فقط */
.crumb-icon:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

/* 👇 باقي الأيقونات بدون hover */


/* ========================= */
/* 🔥 تأكيد أن العنوان بالنص */
/* ========================= */

.services-hero h1,
.services-hero p {
  width: 100%;
  text-align: center;
}

/* ========================= */
/* 🔥 FIX breadcrumb LEFT */
/* ========================= */

.services-hero {
  display: flex;
  flex-direction: column;

  align-items: flex-start !important; /* 👈 أهم سطر */
}



/* ========================= */
/* 🔥 العنوان يبقى بالنص */
/* ========================= */

.services-hero h1,
.services-hero p {
  width: 100%;
  text-align: center;
}
/* ========================= */
/* 🔥 RESPONSIVE FIX CLEAN */
/* ========================= */

/* 💻 Laptop صغير */
@media (max-width: 1199px) {
  .services-hero h1 {
    margin-top: -60px; /* أخف شوي */
  }


}

/* 📱 Tablet */
@media (max-width: 991px) {
  .services-hero h1 {
    margin-top: -30px; /* 👈 خفف السحب */
    font-size: 40px;
  }

  .services-hero p {
    font-size: 18px;
  }


}

/* 📱 Mobile كبير */
@media (max-width: 767px) {
  .services-hero h1 {
    margin-top: 0; /* 👈 مهم جداً */
    font-size: 30px;
  }

  .services-hero p {
    font-size: 16px;
  }

 
}

/* 📱 Mobile صغير */
@media (max-width: 480px) {
  .services-hero h1 {
    font-size: 24px;
  }

  .services-hero p {
    font-size: 14px;
  }


}

/* ========================= */
/* 🔥 BACKGROUND CONTAINER */
/* ========================= */

.service-gallery {
  position: relative;
  z-index: 1;

  background: #141414; /* 👈 لون أفتح من الخلفية */
  border-radius: 30px;

  padding: 60px clamp(24px, 8.5vw, 160px) 80px;

  /* 👇 بروز */
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.03);

  margin: 0 auto 120px;

  max-width: 1300px;
}

/* ========================= */
/* 🔥 خليها طالعة عن الصفحة */
/* ========================= */

body {
  background: #000; /* الخلفية الأساسية */
}

.service-gallery::before {
  content: "";
  position: absolute;
  inset: -40px;

  border-radius: 40px;

  background: radial-gradient(
    circle at center,
    rgba(255,120,0,0.08),
    transparent 70%
  );

  z-index: -1;
}

/* ========================= */
/* 🔥 تحسين الصور جواتها */
/* ========================= */

.image-mosaic img {
  border-radius: 18px;
}

/* ========================= */
/* 🔥 DESKTOP XL (1400+) */
/* ========================= */

@media (min-width: 1400px) {

  .service-gallery {
    gap: 70px;
  }

  .service-gallery .copy h2 {
    font-size: 42px;
  }

  .feature-gridss {
    gap: 18px 10px;
  }
}

/* ========================= */
/* 💻 DESKTOP (1200 - 1399) */
/* ========================= */

@media (max-width: 1399px) {

  .service-gallery {
    gap: 60px;
  }

  .service-gallery .copy h2 {
    font-size: 38px;
  }
}

/* ========================= */
/* 💻 SMALL DESKTOP (992 - 1199) */
/* ========================= */

@media (max-width: 1199px) {

  .service-gallery {
    gap: 50px;
  }

  .feature-gridss li {
    font-size: 16px;
  }
}

/* ========================= */
/* 📱 TABLET (768 - 991) */
/* ========================= */

@media (max-width: 991px) {

  .service-gallery {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  /* 👇 كل النص بالنص */
  .service-gallery .copy h2,
  .service-gallery .copy p {
    text-align: center;
  }

  /* 👇 الليست بالنص */
  .feature-gridss {
    justify-items: center;
  }

  .feature-gridss li {
    justify-content: center;
  }

  .cta-row {
    justify-content: center;
  }
}

/* ========================= */
/* 📱 LARGE MOBILE (576 - 767) */
/* ========================= */

@media (max-width: 767px) {

  .service-gallery {
    gap: 40px;
    padding: 0 30px 80px;
  }

  .service-gallery .copy h2 {
    font-size: 30px;
  }

  .service-gallery .copy p {
    font-size: 16px;
  }

  .feature-gridss {
    grid-template-columns: repeat(2, 1fr); /* 👈 يضل 2 جنب بعض */
    gap: 14px 10px;
  }

  .feature-gridss li {
    font-size: 15px;
  }
}

/* ========================= */
/* 📱 MOBILE (0 - 575) */
/* ========================= */

@media (max-width: 575px) {

  .service-gallery {
    padding: 0 20px 70px;
  }

  .service-gallery .copy h2 {
    font-size: 24px;
  }

  .service-gallery .copy p {
    font-size: 14px;
  }

  /* 👇 أهم نقطة عندك */
  .feature-gridss {
    grid-template-columns: repeat(2, 1fr); /* 👈 2 جنب بعض */
    gap: 12px 8px;
  }

  .feature-gridss li {
    font-size: 14px;
    justify-content: center;
    text-align: center;
  }

  .feature-gridss li::before {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-row .note {
    margin-left: 0;
  }
}
/* ////////////////////// */
/* ========================= */
/* 🔥 السكشن */
/* ========================= */

.faq-hero {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: #000;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ========================= */
/* 🔥 النص اللي بالنص */
/* ========================= */

.faq-content2 {
  position: relative;
  z-index: 2;

  max-width: 900px;
  width: 100%;

  text-align: center;
}

.faq-content2 h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  margin-bottom: 20px;
    margin-top: -180px;

}

.faq-content2 h2 span {
  color: var(--orange);
}

.faq-content2 p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: -10px;
}

/* ========================= */
/* 🔥 الخلفية المتحركة */
/* ========================= */

.marquee {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;

}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: moveText 25s linear infinite;
}

.marquee-track span {
  font-size: 120px;
  font-weight: 900;
  white-space: nowrap;

  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
}

/* الحركة */
@keyframes moveText {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* ========================= */
/* 🔥 LARGE DESKTOP (1400+) */
/* ========================= */
@media (min-width: 1400px) {
  .faq-content2 h2 {
    font-size: 50px;
    margin-top: -180px;
  }

  .faq-content2 p {
    font-size: 23px;
  }

  .marquee-track span {
    font-size: 120px;
  }
}

/* ========================= */
/* 🔥 DESKTOP (1200 - 1399) */
/* ========================= */
@media (max-width: 1399px) {
  .faq-content2 h2 {
    font-size: 44px;
    margin-top: -140px;
  }

  .faq-content2 p {
    font-size: 30px;
  }

  .marquee-track span {
    font-size: 100px;
  }
}

/* ========================= */
/* 🔥 SMALL DESKTOP (992 - 1199) */
/* ========================= */
@media (max-width: 1199px) {
  .faq-content2 h2 {
    font-size: 44px;
    margin-top: -120px;
  }

  .faq-content2 p {
    font-size: 30px;
  }

  .marquee-track span {
    font-size: 80px;
  }
}

/* ========================= */
/* 🔥 TABLET (768 - 991) */
/* ========================= */
@media (max-width: 991px) {
  .faq-content2 h2 {
    font-size: 40px;
    margin-top: -100px;
  }

  .faq-content2 p {
    font-size: 25px;
  }

  .marquee {
    top: 25%;
  }

  .marquee-track span {
    font-size: 65px;
  }
}

/* ========================= */
/* 🔥 LARGE MOBILE (576 - 767) */
/* ========================= */
@media (max-width: 767px) {
  .faq-content2 h2 {
    font-size: 35px;
    margin-top: -200px;
  }

  .faq-content2 p {
    font-size: 22px;
  }

  .marquee {
    top: 10%;
  }

  .marquee-track span {
    font-size: 70px;
  }
}

/* ========================= */
/* 🔥 MOBILE (0 - 575) */
/* ========================= */
@media (max-width: 575px) {
  .faq-content2 h2 {
    font-size: 22px;
    margin-top: -200px;
    line-height: 1.3;
  }

  .faq-content2 p {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .marquee {
        margin-top: -150px;

    top: 35%;
  }

  .marquee-track span {
    font-size: 60px;
  }
}

/* ========================= */
/* 🔥 SECTION */
/* ========================= */

.faq-section2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 0 clamp(24px, 8vw, 160px) 120px;

  align-items: start; /* 👈 مهم جداً */
}

/* ========================= */
/* 🔥 IMAGE (تمديد بالطول) */
/* ========================= */

.faq-image {
  perspective: 1000px; /* 👈 مهم للـ 3D */
}

.faq-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 20px;

  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

/* 🔥 hover 3D خفيف */
.faq-image:hover img {
  transform: scale(1.04) rotateX(2deg) rotateY(-2deg);
}

/* ========================= */
/* 🔥 FAQ BOX */
/* ========================= */

.faq-box {
  background: #0d0d0d;
  padding: 10px;
  border-radius: 20px;
}

/* العنصر */
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s ease;
}/* السؤال */
.faq-question {
  padding: 22px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* العنصر */
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;

  transition: background 0.3s ease;
}

/* الجواب */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  overflow: hidden;

  padding: 0 20px;
  color: #aaa;
  font-size: 15px;
  line-height: 1.5;

  transition: grid-template-rows 1.2s cubic-bezier(0.22, 1, 0.36, 1),
            padding 0.4s ease;
}

/* 👇 هذا أهم سطر */
.faq-inner {
  overflow: hidden;
}

/* عند الفتح */
.faq-item.active {
  background: #eaeaea;
}

.faq-item.active .faq-question {
  color: var(--orange);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding: 10px 20px 15px;
  color: #444;
}
/* ========================= */
/* 🔥 ICON */
/* ========================= */

.icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;

  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 14px;

  transition: transform 0.4s ease, background 0.3s ease;
}

/* دوران */
.faq-item.active .icon {
  transform: rotate(180deg);
  background: var(--orange);
  color: #000;
}


/* ========================= */
/* 🔥 الأساس */
/* ========================= */

.faq-section2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 clamp(24px, 8vw, 140px) 120px;
}

.faq-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 18px;
}

/* =========================================
   🔥 ULTRA LARGE DESKTOP (1600px+)
========================================= */

@media (min-width:1600px){

  .faq-section2{
    gap:100px;
    padding:120px 140px;
    align-items:center;
  }

  .faq-image img{

    width:100%;
    max-width:780px;
    height:760px;
    object-fit:cover;
  }

  .faq-box{

    width:100%;
    max-width:850px;
  }

  .faq-question{

    font-size:22px;
    padding:28px 30px;
  }

  .faq-answer{

    font-size:17px;
    line-height:1.8;
  }
  
}


/* =========================================
   🔥 LARGE DESKTOP (1400px - 1599px)
========================================= */
@media (min-width:1400px) and (max-width:1599px){

  .faq-section2{

    transform:translateY(-230px);

    gap:80px;
    padding:100px 90px;
    align-items:center;
  }

  .faq-image img{

    width:100%;
    max-width:700px;
    height:600px;
    object-fit:cover;
  }

  .faq-box{

    max-width:760px;
    width:100%;

    /* transform:translateY(-100px); */
  }

  .faq-question{

    font-size:20px;
    padding:30px 20px;
  }

  .faq-answer{

    font-size:16px;
  }
  .ride-panel{
    transform:translateY(-200px);
  }
}
@media (min-width:1200px){

  .cards-container{

    grid-template-columns:repeat(3,1fr);
  }
  .service-card h2 {
font-size: larger;
}
.service-card p {
font-size: large;
}

}

/* =========================================
   🔥 DESKTOP (1200px - 1399px)
========================================= */

@media (min-width:1200px) and (max-width:1399px){

  .faq-section2{
    transform:translateY(-230px);

    gap:60px;
    padding:90px 70px;
  }

  .faq-image img{

    width:100%;
    max-width:620px;
    height:620px;
    object-fit:cover;
  }

  .faq-box{

    width:100%;
    max-width:680px;
  }

  .faq-question{

    font-size:18px;
    padding:22px 24px;
  }

  .faq-answer{

    font-size:15px;
  }
  
}


/* =========================================
   🔥 SMALL DESKTOP / LAPTOP (992px - 1199px)
========================================= */

@media (min-width:992px) and (max-width:1199px){

  .faq-section2{
  
    transform:translateY(-200px);
  
    gap:40px;
    padding:80px 50px;
    margin-top: -100px;
  }

  .faq-image img{

    width:100%;
    max-width:520px;
    height:560px;
    object-fit:cover;
  }

  .faq-box{

    width:100%;
    max-width:600px;
  }

  .faq-question{

    font-size:17px;
    padding:20px 22px;
  }

  .faq-answer{

    font-size:15px;
  }

  .faq-question .icon{

    font-size:18px;
  }

    .ride-panel{
    transform:translateY(-200px);
  }
}


/* =========================================
   🔥 TABLET (768px - 991px)
========================================= */

@media (min-width:768px) and (max-width:991px){

  .faq-section2{

    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
    padding:70px 40px;
    transform:translateY(-320px);
  }

  .faq-image{

    margin:auto;
  }

  .faq-image img{

    width:100%;
    max-width:650px;
    height:520px;
    object-fit:cover;
    border-radius:18px;
  }

  .faq-box{

    width:100%;
    max-width:760px;
    margin:auto;
  }

  .faq-question{

    font-size:16px;
    padding:20px;
  }

  .faq-answer{

    font-size:14px;
  }

  .faq-question .icon{

    font-size:17px;
  }
    .ride-panel{
    transform:translateY(-230px);
  }
}


/* =========================================
   🔥 LARGE MOBILE (576px - 767px)
========================================= */

@media (min-width:576px) and (max-width:767px){

  .faq-section2{

    grid-template-columns:1fr;
    gap:30px;
    padding:60px 28px;
    text-align:center;
    transform:translateY(-320px);
  }

  .faq-image img{

    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:16px;
  }

  .faq-box{

    width:100%;
  }

  .faq-question{

    font-size:15px;
    padding:18px;
  }

  .faq-answer{

    font-size:14px;
    line-height:1.6;
  }

  .faq-question .icon{

    font-size:16px;
  }
     .ride-panel{
    transform:translateY(-280px);
  }
}


/* =========================================
   🔥 MOBILE (0px - 575px)
========================================= */

@media (max-width:575px){

  .faq-section2{

    grid-template-columns:1fr;
    gap:24px;
    padding:50px 20px;
    text-align:center;
    margin-top: -350px;
  }

  .faq-image img{

    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:14px;
  }

  .faq-box{

    width:100%;
  }

  .faq-question{

    font-size:14px;
    padding:16px;
  }

  .faq-answer{

    font-size:13px;
    line-height:1.5;
  }

  .faq-question .icon{

    font-size:15px;
  }
}
/* WRAP (الخلفية) */
.post-image-wrap {
  position: relative;
}

.post-image-wrap::before {
  content: "";
  position: absolute;

  top: 18px;
  left: -18px;

  width: 100%;
  height: 100%;

  background: #111;
  border-radius: 14px;

  z-index: 1;
}

/* IMAGE */
.post-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  z-index: 2;
}

.post-image img {
  width: 320px;
  height: 260px;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;
}

/* حركة الصورة */
.post-image:hover img {
  transform: scale(1.08);
}

/* التعتيم */
.post-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.45);
  border-radius: 14px;

  opacity: 0;
  transition: 0.3s;

  z-index: 2;
}

.post-card:hover .post-image::after {
  opacity: 1;
}

/* ICON */
.post-icon {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;

  opacity: 0;
  transform: scale(0.8);

  transition: 0.3s;

  z-index: 3;
}

.post-card:hover .post-icon {
  opacity: 1;
  transform: scale(1);
}

.post-icon i {
  width: 65px;
  height: 65px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: var(--orange);
  color: #fff;

  font-size: 22px;
}

/* ========================= */
/* PAGINATION */
/* ========================= */

.pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

/* الأزرار */
.pagi-btn,
.pagi-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);

  color: #aaa;
  font-weight: 700;
  text-decoration: none;

  transition: 0.25s ease;
}

/* 🔥 ACTIVE */
.pagi-btn.active {
  background: #ff6500;
  border-color: #ff6500;
  color: #fff;

  box-shadow: 0 0 18px rgba(255,101,0,.6);
}

/* hover */
.pagi-btn:hover {
  background: rgba(255,101,0,.25);
  color: #fff;
}

/* ========================= */
/* ARROW */
/* ========================= */

.pagi-arrow {
  background: rgba(255,101,0,.15);
  border-color: rgba(255,101,0,.4);
  color: #ffffff;

  box-shadow: 0 0 12px rgba(255,101,0,.4);
  font-size: 20px;
}

.pagi-arrow:hover {
  transform: scale(1.1);
}
/* postes  */


/* 🔥 layout */
.post-layout {
  display: grid;
  grid-template-columns: 2.3fr 0.9fr;
  gap: 40px;
   max-width: 1350px;   /* 👈 هون التحكم الحقيقي */
  margin: 0 auto;     
margin-top: -100px;
  padding: 60px 20px;  
/* background-color: #a30c0c; */
}



/* 🔥 container */
.post-main {
  background: #000000;
  border-radius: 18px;
  overflow: hidden;
}

/* 🔥 header */
.post-main h1 {
  background: #2a1407;
  padding: 20px 30px;
  font-size: 30px;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); /* 👈 الخط الصح */
}

/* 🔥 meta */
.post-meta {
  padding: 15px 30px 20px;
  margin-top: 10px;
}
/* 🔥 meta */
.post-meta {
  display: flex;
  gap: 20px;
  color: #888;
  font-size: 14px;
  padding: 0 30px 20px;
}

.post-meta i {
  margin-right: 6px;
  color: #888;
}
.post-meta .fa-eye{
  margin-right: 6px;
  color: #584f4f;
}


/* 🔥 image */
.post-main-image {
  width: 80%;
  border-radius: 40px;
  margin: 20px 0 30px;
  padding: 0 30px;
  justify-self: center;
}

/* 🔥 content */
.post-content {
  padding: 0 30px 30px;
  color: #cfcfcf;
  line-height: 2;
  font-size: 15px;
}

.post-content p {
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
  color: #dad5d5;
}

/* 🔥 quote */
.post-quote {
  background: #1a1a1a;
  padding: 40px;
  text-align: center;
  border-radius: 5px;
  margin: 4px 0;
  color: #e5e5e5;
  font-size: 17px;
  line-height: 1.8;
  width: 65%; ;
  justify-self: center;
}

/* 🔥 highlight */
.highlight {
  background: #e27c1c;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 14px;
}

/* 🔥 split */
.post-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.split-box {
  float: left; /* 👈 السر كله هون */
  width: 35%;
  background: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  margin: 10px 25px 10px 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}
.post-content::after {
  content: "";
  display: block;
  clear: both;
}


.split-text {
  color: #bbb;
}

/* 🔥 share */
.share-box {
  margin: 30px;
  padding: 10px;
  background: #1a1a1a;
  border-radius: 12px;
    padding: 10px 15px;
}
.comment-top h4 span
{
  color: #d4d6e1;
  font-size: 12px;
}

/* 🔥 sidebar */
.post-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* 🔥 side card */
.side-card {
  background: #0d0d0d;
  border-radius: 16px;
  margin-bottom: 25px;
  overflow: hidden;
}

/* 🔥 header + line */
.side-card h3 {
  background: #2a1407;
  padding: 16px;
  text-align: center;
  font-size: 15px;
  position: relative;
}

.side-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* 🔥 body */
.side-card .body {
  padding: 18px;
}

/* 🔥 search */
.blog-search {
  display: flex;
  gap: 10px;
}

.blog-input {
  flex: 1;
  height: 42px;
  border-radius: 25px;
  border: none;
  background: #1a1a1a;
  padding: 0 15px;
  color: #fff;
}

.blog-btn {
  background: #ff7a00;
  border: none;
  padding: 0 16px;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
}

/* 🔥 tags */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  background: #1a1a1a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  transition: .3s;
}

.tag-cloud span:hover {
  background: #ff7a00;
}

/* 🔥 ads */
.widget img {
  width: 100%;
  border-radius: 12px;
}

/* 🔥 share box */
.share-box {
  max-width: 750px;
  max-height: 200px;        /* 👈 صغر العرض */
  margin: 40px auto;       
  background: #161616;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  /* margin-bottom: 20px; */
}

/* 🔥 title */
.share-title {
  text-align: center;
  padding: 14px;
  background: #2a1407;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;        /* 👈 أخف */
  font-size: 14px;         /* 👈 أصغر */
  letter-spacing: 0.5px;
 
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);

  /* 🔥 الحل السحري */
  margin: -30px -30px 10px -30px;
}

/* 🔥 icons container */
.share-icons {
  display: flex;
 justify-content: space-evenly; /* 👈 توزيع أحسن */
  padding: 20px 10px;
}

/* 🔥 icon base */
.share-btn {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

/* 🔥 hover colors */
.share-btn.facebook:hover {
  background: #1c1b1b;
  color: #1877f2;;
}

.share-btn.twitter:hover {
  background: #1c1b1b;
  color: #fff;
}

.share-btn.pinterest:hover {
  background: #1c1b1b;
  color: #e60023;
}

.share-btn.whatsapp:hover {
  background: #1c1b1b;
  color: #25d366;
}

.share-btn.email:hover {
  background: #1c1b1b;
  color: #ff7a00;
}
.share-btn::after {
  content: attr(data-title);
  position: absolute;
  bottom: 120%;
  background: #111;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
  white-space: nowrap;
}
.share-btn:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.facebook:hover { background: #1877f2; color:#fff; }
.twitter:hover { background: #000; color:#fff; }
.pinterest:hover { background: #e60023; color:#fff; }
.whatsapp:hover { background: #25d366; color:#fff; }
.mail:hover { background: #ff7a00; color:#fff; }

/* 🔥 container */
.post-top-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin: 30px;
}

/* 🔥 item */
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* 🔥 icon circle */
.meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  transition: 0.3s;
}

/* 🔥 text pill */
.meta-text {
  background: #121212;
  padding: 8px 16px;
  border-radius: 25px;

  font-size: 13px;
  color: #ccc;
  transition: 0.3s;
}

/* ========================= */
/* 🎯 ألوان مختلفة لكل نوع */
/* ========================= */

/* 👤 AUTHOR */
.meta-icon.author {
  background: #2a1407;
  color: #ff7a00;
}

/* 🕒 DATE */
.meta-icon.date {
  background: #2a1407;
  color: #ffa94d;
}

/* 📂 CATEGORY */
.meta-icon.category {
  background: #2a1407;
  color: #ff7a00;
}

/* 🏷 TAG */
.meta-icon.tag-icon {
  background: #2a1407;
  color: #ff7a00;
}

/* ========================= */
/* 🔥 HOVER EFFECT */
/* ========================= */

/* .meta-item:hover .meta-icon {
  background: #ff7a00;
  color: #fff;
  transform: translateY(-2px);
} */

.meta-item:hover .meta-text {
  background: #1a1a1a;
  color: #ff7a00;
  /* transform: translateY(-2px); */
}

/* ===== NAVIGATION CONTAINER ===== */
.post-navigation {
  max-width: 920px;
  margin: 20px auto;
  padding: 30px 40px;
margin-left: 100px;
  background: #0f0f0f;
  border-radius: 20px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ===== SIDE BOXES ===== */
.post-nav-box {
  display: flex;
  align-items: center;
  gap: 15px;

  text-decoration: none;
  color: #fff;

  min-width: 0;
  transition: 0.3s;
}

/* LEFT */
.nav-left {
  justify-content: flex-start;
}

/* RIGHT */
.nav-right {
  justify-content: flex-end;
  text-align: right;
}

/* ===== ICON CIRCLE ===== */
.nav-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;

  background: #ff7a00;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 16px;

  flex-shrink: 0;
}

/* ===== TEXT ===== */
.nav-info {
  max-width: 260px;
}

.nav-info span {
  font-size: 12px;
  color: #888;
  display: block;
}

.nav-info h4 {
  font-size: 15px;
  line-height: 1.4;
  margin-top: 5px;

  white-space: normal; /* 👈 يسمح بكسر السطر */

}

/* ===== CENTER BUTTON ===== */
/* ===== الزر ===== */
/* ===== BUTTON ===== */
.nav-middle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  text-decoration: none;
}

/* ===== TEXT ===== */
.nav-middle-text {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  font-size: 11px;
  color: #aaaaaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
background: #1a1a1a;   /* 👈 الخلفية */
  padding: 6px 12px;     /* 👈 المساحة */
  border-radius: 20px;   /* 👈 الشكل pill */
  opacity: 0;
  transition: 0.25s ease;
}

/* ===== ICON ===== */
.grid-icon {
  width: 28px;
  height: 28px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;

  transition: 0.25s ease;
}

/* ===== BOXES ===== */
.grid-icon span {
  width: 100%;
  height: 100%;
  background: #888;
  border-radius: 3px;
  transition: 0.25s ease;
}

/* ===== HOVER ===== */
.nav-middle:hover .nav-middle-text {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  color: #e1b44a;
}

.nav-middle:hover .grid-icon span {
  background-color: orange;
  /* background: #ff7a00; */
}
/* ===== HOVER ===== */
.post-nav-box:hover .nav-circle {
  background: #e2e2e2;
  color: rgb(198, 120, 11);
}

.post-nav-box:hover h4 {
  color: #ff7a00;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .post-nav-box {
    justify-content: center !important;
  }

  .nav-right {
    text-align: center;
  }
}
/* ///////// */
.section-title {
  background: #2a1407;
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px 12px 0 0;
}

.section-title h3 {
  margin: 0;
  font-size: 16px;
}
/*  */
.related-section {
  margin: 50px 30px;
  background: #0f0f0f;
  border-radius: 16px;
  overflow: hidden;
}

.related-grid {
  padding: 25px;
}

.related-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.related-card h4 {
  font-size: 18px;
  line-height: 1.4;
}
/*  *//* 🔥 comments container */
.comments-section {
  max-width: 900px;
  margin: 60px auto;
}

/* 🔥 كل تعليق = كارد */
.comment {
display: flex;
  gap: 18px;

  padding: 30px 35px; /* 👈 أكبر */
  margin-bottom: 30px; /* 👈 مسافة واضحة */

  background: #0f0f0f;
  border-radius: 10px;
  border: 1px solid rgba(255,122,0,0.15);
}
.comments-section .comment:first-of-type {
  margin-top: 300px;
}







/* 🔥 avatar */
.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* 🔥 body */
.comment-body {
  flex: 1;
}

/* 🔥 top */
.comment-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.comment-top h4 {
  font-size: 16px;
  margin: 0;
}

.comment-top span {
  font-size: 12px;
  color: #888;
}

/* 🔥 النص */
.comment-body p {
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 12px;
}

/* 🔥 reply */
.comment-body a {
  font-size: 13px;
  color: #e3dbdb;
  text-decoration: none;
}

.comment-body a:hover {
  color: #aaa;
}

.comment.alt {
  margin-left: 30px; /* 👈 يدخل لجوه */

  /* padding: 22px 28px; 👈 أصغر */

  /* background: #111; 👈 أغمق شوي */

border-radius: 12px;
  border: 1px solid rgba(255,122,0,0.15);

  transform: scale(0.97); /* 👈 subtle */
}

/* 🔥 الرد (المهم) */
.comment.reply {
  margin-left: 70px; /* 👈 يدخل لجوه */
  padding: 20px 25px;

  border: 1px solid rgba(255,122,0,0.1); /* 👈 أخف */
  background: #111; /* 👈 أغمق شوي */

  transform: scale(0.97); /* 👈 يصغر شوي */
}
/* 🔥 الرد (المهم) */
.comment.reply {
  margin-top: 20px;
  margin-left: 65px; /* 👈 يدخل لجوه */
  padding: 20px;

  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;

  background: #121212;
}
/* 🔥 الكونتينر الموحد */
.post-wrapper {
  background: #0f0f0f;
  border-radius: 20px;
  margin-top: 40px;
  overflow: hidden;
}

/* 🔥 إزالة الخلفيات القديمة */
/* .share-box,
.post-navigation,
.related-section,
.comments-section {
  background: none;
  margin: 0;
  border-radius: 0;
} */

/* 🔥 خطوط بين السكاشن */
/* .post-wrapper > div {
  border-bottom: 1px solid rgba(255,255,255,0.05);
} */

.post-wrapper > div:last-child {
  border-bottom: none;
}

/* 🔥 padding داخلي */
.share-box,
.post-navigation,
.related-section,
.comments-section {
  padding: 30px;
}

/* 🔥 عرض موحد لكل السيكشنات */
.rp-section,
.post-navigation,
.related-section,
.comments-section {
  max-width: 850px;
  margin: 40px auto;
  border-radius: 18px;
  background: #0f0f0f;
  overflow: hidden;
}

/* 🔥 عنوان السيكشن */
.rp-title,
.section-title {
 background: #2a1407;
  padding: 18px 25px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);



  /* 🔥 الحل السحري */
  margin: -30px -30px 40px -30px;

}

/* 🔥 محتوى داخلي */
.share-icons,
.related-grid,
.comments-section .comment {
  padding: 25px;
}

/* 🔥 مسافة بين السيكشنات */
.post-navigation {
  padding: 25px 35px;
}

.section-titlecom{
  background: #2a1407;

  padding: 20px 30px;
  text-align: center;

  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);

  /* 🔥 الحل السحري */
  margin: -30px -30px 40px -30px;

}
.section-titlecom h3 {

  font-size: 16px;
  margin: 0;
  /* border-bottom: 1px solid rgba(255,255,255,0.08);  */
}
/* //////////////////////// */
/* 🔥 header */
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cancel-reply {
  font-size: 13px;
  color: #aaa;
  cursor: pointer;
  display: none;
}

.cancel-reply:hover {
  color: #ff7a00;
}

/* 🔥 note */
.form-note {
  color: #888;
  margin: 5px 0 15px;
  font-size: 14px;
}

/* 🔥 group */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

/* 🔥 labels */
.form-group label {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 8px;
}

/* 🔥 inputs */
.form-group input,
.form-group textarea {
  background: #1a1a1a;
  border: none;
  border-radius: 14px;
  padding: 15px;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

/* 🔥 textarea */
.form-group textarea {
  height: 120px;
  resize: none;
}

/* 🔥 focus effect (🔥 هذا المهم) */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  color: #000;
}

/* 🔥 row */
.form-roww {
  display: flex;
  gap: 20px;
}

.form-roww .form-group {
  flex: 1;
}
.save-info {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  font-size: 14px;
}

/* 🔥 button */
.submit-btn {
  margin-top: 20px;
  background: #ff7a00;
  border: none;
  padding: 14px 25px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
}
.submit-btn:hover {
  color: #ff7a00;
  background:white;

}



.comment-form {
  margin-bottom: 40px;
    padding: 20px; /* لو عندك padding كبير */

}

@media (max-width: 768px) {
  .form-roww {
    flex-direction: column;
  }
}

/* 🔥 إجبار تقصير الكونتينر */
.comment-form {
  padding: 15px !important;
  margin-bottom: -20px !important;
}

/* 🔥 تقصير textarea */
.comment-form textarea {
  height: 100px !important;
  min-height: 100px !important;
}

/* 🔥 تقليل المسافات */
.comment-form .form-group {
  margin-bottom: 10px !important;
}

/* 🔥 صف الحقول */
.form-roww {
  gap: 10px !important;
}

/* 🔥 تقصير inputs */
.comment-form input {
  padding: 10px !important;
}

/* 🔥 تقليل المسافة فوق الزر */
.submit-btn {
  margin-top: 10px !important;
}

/* 🔥 تقليل ارتفاع عام */
.comment-form * {
  line-height: 1.3 !important;
}

/* //////////////////// */
/* 🔥 نخلي الصورة قابلة للـ hover */
.related-card .card-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* 🔥 الصورة */
.related-card .card-image img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

/* 🔥 تعتيم */
.related-card .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: 0.3s;
}

/* 🔥 الأيقونة */
.related-card .overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;

  background: #ff7a00;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}
.rp-title h3 {

  font-size: 16px;
  margin: 0;
  /* border-bottom: 1px solid rgba(255,255,255,0.08);  */
}

/* 🔥 سهم CSS */
/* WRAP (الخلفية اللي ورا) */
.post-image-wrap {
  position: relative;
  display: inline-block; /* 👈 مهم عشان يلف على حجم الصورة */
  margin-top: -70px;
}

/* الخلفية اللي طالعة */
.post-image-wrap::before {
  content: "";
  position: absolute;

  top: 15px;
  left: -15px;

  width: 100%;
  height: 100%;

  background: #111;
  border-radius: 16px;

  z-index: 1;
}

/* الصورة */
.post-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  z-index: 2;

  width: 320px; /* 👈 حجمك الصغير */
  height: 220px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.4s;
}

/* zoom */
.post-image:hover img {
  transform: scale(1.08);
}

/* التعتيم */
.post-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: 0.3s;

  z-index: 2;
}

/* hover */
/* .related-card:hover .post-image::after {
  opacity: 1;
} */

/* الأيقونة */
.post-icon {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;

  opacity: 0;
  transform: scale(0.8);

  transition: 0.3s;
  z-index: 3;
}

/* .related-card:hover .post-icon {
  opacity: 1;
  transform: scale(1);
} */
/* التعتيم فقط عند الوقوف على الصورة */
.post-image:hover::after {
  opacity: 1;
}

/* الأيقونة فقط عند الوقوف على الصورة */
.post-image:hover .post-icon {
  opacity: 1;
  transform: scale(1);
}
.post-icon i {
  width: 55px;
  height: 55px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: #ff7a00;
  color: #fff;

  font-size: 20px;
}

/* 🔥 الكونتينر */
.rp-section {
  background: #0f0f0f;
  border-radius: 20px;
  padding: 30px;
}

/* 🔥 العنوان */
.rp-title {
  background: #2a1407;
  padding: 18px;
  text-align: center;
  border-radius: 12px 12px 0 0;
  margin-bottom: 25px;
}

/* 🔥 الكارد */
.rp-card {
  max-width: 320px;
}

/* 🔥 wrapper (الخلفية ورا الصورة) */
.rp-image-wrap {
  position: relative;
  border-radius: 16px;
}

/* الخلفية اللي ورا الصورة */
.rp-image-wrap::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 16px;
  z-index: 1;
}

/* الصورة */
.rp-image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  display: block;

  position: relative;
  z-index: 2;

  transition: 0.4s ease;
}

/* 🔥 التعتيم */
.rp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 16px;

  opacity: 0;
  transition: 0.3s ease;

  z-index: 3;
}

/* 🔥 الأيقونة */
.rp-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);

  width: 60px;
  height: 60px;

  background: #ff7a00;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: 0.3s ease;

  z-index: 4;
}

.rp-icon i {
  font-size: 22px;
  color: #fff;
}

/* 🔥 hover effects */
/* .rp-image-wrap:hover img {
  transform: scale(1.1);
}

.rp-image-wrap:hover .rp-overlay {
  opacity:1;
}

.rp-image-wrap:hover .rp-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
} */

/* 🔥 العنوان */
.rp-card h4 {
  margin-top: 15px;
  color: #fff;
  font-size: 18px;
}
.rp-card:hover h4 {
  color: rgb(225, 86, 22);

}
/* =========================ظظظظظظظظظظظظظظظظظظظظظظ */

/* WRAP (الخلفية) */
.rp-card {
  position: relative;
}

.rp-card::before {
  content: "";
  position: absolute;

  top: 18px;
  left: -18px;

  width: 100%;
  height: 72%;

  background: #151515;
  border-radius: 14px;

  z-index: 1;
}

/* IMAGE */
.rp-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  z-index: 2;
}

.rp-image-wrap img {
  width: 320px;
  height: 260px;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;
}

/* حركة الصورة */
.rp-image-wrap:hover img {
  transform: scale(1.08);
}

/* التعتيم */
.rp-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.45);
  border-radius: 14px;

  opacity: 0;
  transition: 0.3s;

  z-index: 2;
}

.rp-card:hover .rp-image-wrap::after {
  opacity: 1;
}

/* ICON */
.rp-icon {
  position: absolute;
  inset: 0;
  top: 40%;
  left: 40%;

  transform: translate(-50%, -50%); /* 🔥 هذا السر */
  display: grid;
  place-items: center;

  opacity: 0;
  transform: scale(0.8);
 display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;

  z-index: 3;
}

.rp-card:hover .rp-icon {
  opacity: 1;
  transform: scale(1);
}

.rp-icon i {
  width: 65px;
  height: 65px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: var(--orange);
  color: #fff;

  font-size: 22px;
}
/* 🔥 الكونتينر */
.rp-meta {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;
  font-size: 13px;
}

/* 🔥 الأيقونة (بدون hover) */
.rp-icon-meta {
  color: #777;
  font-size: 14px;
}

/* 🔥 النص */
.rp-link {
  color: #aaa;
  cursor: pointer;
  transition: 0.3s;
}

/* فاصلة بينهم */
.rp-link:not(:last-child)::after {
  content: ",";
  margin-left: 3px;
}

/* 🔥 hover فقط للنص */
.rp-link:hover {
  color: #ff7a00;
}

/* ظظظظظظظظظظظظظظظظظظظ */
/* 🔥 layout */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;

  width: min(1400px, 100%);
  margin: auto;
}

/* 🔥 main */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 50px; /* 👈 هذا أهم اشي */
}

/* 🔥 كل سكشن */
.post-section {
  padding: 30px;
  border-radius: 20px;

  /* بدون background ثقيل */
  background: transparent;

  /* فصل ناعم */
  border: 1px solid rgba(255,255,255,0.04);
}

/* 🔥 خط فاصل خفيف */
.post-section + .post-section {
  position: relative;
}

.post-section + .post-section::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);

  width: 60%;
  height: 1px;

  background: linear-gradient(to right, transparent, rgba(255,122,0,0.3), transparent);
}

.post-main-inner{

  background: #0f0f0f;
  border-radius: 18px;
  overflow: hidden;
}

/* 🔥 الشبكة */
.rp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* جنب بعض */
  gap: 30px;
}

/* لو بدك responsive */
@media (max-width: 768px) {
  .rp-grid {
    grid-template-columns: 1fr;
  }
}

.hidden-nav {
  visibility: hidden; /* يخفيه بس يحافظ على مكانه */
}
.hidden4-nav {
  visibility: hidden; /* يخفيه بس يحافظ على مكانه */
}

/* /////////////////////////////////////////////////////////////////// */
/* 🔥 HERO كامل */
.faq-hero-new {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
align-items: start;
  padding: 80px 120px;
  padding-top: 140px;
  position: relative;
}

/* 🔥 LEFT */
.faq-left h1 {
  font-size: 55px;
  font-weight: 900;
  line-height: 1.1;
}

.faq-left h1 span {
  color: var(--orange);
  transform: skewX(-15deg);
}

.faq-left p {
  margin-top: 0px;
  color: #868181;
  font-size: 18px;
  max-width: 520px;
  line-height: 1.9;
}

/* 🔥 breadcrumb */


/* 🔥 RIGHT */
.faq-right {
  position: relative;
}
/* 🔥 wrapper */
.faq-image-wrap {
  position: relative;
  display: inline-block;
}

/* 🔥 الصورة */
.faq-image-wrap img {
  margin-top: 100px;
  width: 550px;
  display: block;
}

/* 🔥 FAQ LABEL */
.faq-label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.faq-label-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #3d1b06;
  color: #fff;
  font-size: 22px;
  font-weight: bold;

  box-shadow: 0 0 0 2px rgba(255,255,255,0.05),
              0 10px 20px rgba(0,0,0,0.6);
}

.faq-label span {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}
/* ////////////////////////////////////////////////////////////////////// */
/* 🔥 CONTAINER *//* 🔥 layout */
.faq-wrap {
  display: grid;
grid-template-columns: 1.4fr 0.6fr; /* 🔥 نفس التمبلت */
  gap: 50px;

  padding: 0 80px 100px;

  max-width: 1300px;
  margin: auto;

  align-items: start;
  position: relative;
}

/* 🔥 LEFT يطلع لفوق */
.faq-left-side {
 width: 100%;
  margin-top: -120px;
  z-index: 2;
}

/* 🔥 RIGHT ينزل */
.faq-right-side {
  width: 100%;
  margin-top: 0px;
  display: flex;
  justify-content: center; /* 🔥 هذا بيوسطه */
}

/* 🔥 accordion container */
.faq-acc {
  background: #0b0b0b;
  padding: 30px;
  border-radius: 25px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

/* 🔥 item */
.faq-box {
  background: #111;
  border-radius: 14px;
  border: 1px solid #1f1f1f;
  overflow: hidden;
}

/* 🔥 question */
.faq-btn {
  width: 100%;
  padding: 18px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 17px;
  font-weight: 700;
  color: #ddd;

  background: transparent;
  border: none;
  cursor: pointer;
}

/* 🔥 arrow circle */
.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a1a1a;

  position: relative;
  transition: 0.4s;
}

/* + */
.faq-arrow::before,
.faq-arrow::after {
  content: "";
  position: absolute;
  background: #aaa;
  transition: 0.4s;
}

.faq-arrow::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-arrow::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 🔥 answer */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;

  background: #fff;
  color: #444;
  font-size: 14px;
  line-height: 1.6;

  transition: max-height 0.5s ease, padding 0.3s ease;
}

/* 🔥 active */
.faq-box.active {
  background: #fff;
}

.faq-box.active .faq-btn {
  color: var(--orange);
}

.faq-box.active .faq-panel {
  padding: 18px 24px;
}

/* 🔥 arrow animation */
.faq-box.active .faq-arrow {
  transform: rotate(180deg);
  background: var(--orange);
}

.faq-box.active .faq-arrow::after {
  opacity: 0;
}

.faq-box.active .faq-arrow::before {
  background: #000;
}

/* 🔥 FORM */
.dark-form {
  background: #0d0d0d;
  padding: 40px;
  border-radius: 25px;

  display: flex;
  flex-direction: column;
  gap: 15px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.dark-form input,
.dark-form textarea,
.dark-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #1a1a1a;
  color: #fff;
}

.dark-form h2 {
  margin-bottom: 10px;
}

/* 🔥 الكونتينر */
.contact-box {
  background: #0e0e0e;
  padding: 30px;
  border-radius: 22px;
/* margin-right: -200px; */
  display: flex;
  flex-direction: column;
  gap: 16px;

  max-width: 420px;
    width: 100%;
}

/* 🔥 العنوان */
.contact-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

/* 🔥 صف الاسم + الايميل */
.contact-row {
  display: flex;
  gap: 12px;
}

.contact-row .contact-field {
  flex: 1;
}

/* 🔥 كل حقل */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 13px;
  color: #8c8c8c;
}

/* 🔥 inputs */
.contact-field input,
.contact-field textarea,
.contact-field select {
  background: #161616;
  border: none;
  border-radius: 20px;

  padding: 16px 0px;
  color: #000000;
  font-size: 14px;

  transition: 0.3s;
}
.contact-field select{
  background: #161616;
  color: #d1d1d1;
}

/* 🔥 hover / focus */
.contact-field-Ne input:focus,
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: none;
  background: #ffffff;
  color: #000;
  box-shadow: 0 0 0 1px var(--orange);
}




.contact-field-Ne {
  display: flex;
  flex-direction: column;
  gap: 6px;
    /* align-items: center; */

}

.contact-field-Ne label {
  font-size: 13px;
  color: #8c8c8c;
  
}

.contact-field-Ne input
 {
  background: #161616;
  border: none;
  border-radius: 20px;

  padding: 16px 0px;
  color: #000000;
  font-size: 14px;
  transition: 0.3s;
  max-width: 180px;
}


/* 🔥 textarea */
.contact-field textarea {
  height: 140px;
  resize: none;
}

/* 🔥 select arrow */
.contact-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #aaa 50%),
                    linear-gradient(135deg, #aaa 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px),
                       calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* 🔥 زر */
.contact-btn {
  margin-top: 10px;

  background: var(--orange);
  color: #000;

  border: none;
  border-radius: 30px;

  padding: 12px;
  font-size: 15px;
  font-weight: 800;
max-width: 100px;
  cursor: pointer;
  transition: 0.3s;
}

/* 🔥 hover */
.contact-btn:hover {
  background-color: wheat;
  /* transform: translateY(-2px); */
  /* box-shadow: 0 10px 20px rgba(255, 115, 0, 0.3); */
}
/* ////////////////////////////////////////// */
/* 🔥 Breadcrumb */
.breadcrumb-pilll {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 25px;

  padding: 6px 14px;
  background: #111;
  border-radius: 25px;

  font-size: 13px;

  transition: 0.3s ease;
}

/* 🔥 أيقونة الهوم */
.bc-home {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #1a1a1a;

  color: #aaa;
  text-decoration: none;

  transition: 0.35s ease;
}

/* 🔥 تتحرك فقط لما تعمل hover على الديف كامل */
.breadcrumb-pilll:hover .bc-home {
  background: var(--orange);
  color: #000;

  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.45);
}

/* 🚲 أيقونة البسكليت */
.bc-bike {
  font-size: 14px;
  color: var(--orange);

  transition: 0.35s ease;
}

/* 🔥 البسكليت فقط تتحرك */
.breadcrumb-pilll:hover .bc-bike {
  transform: translateX(3px) rotate(-12deg);
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

/* النص */
.breadcrumb-pilll span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* ////////////////////////////////////////// */
/* 🔥 CONTACT BREADCRUMB */
.contact-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  /* margin: 150px 0 40px 90px; */
margin-top: 50px;
margin-bottom: 100px;
  padding: 7px 16px;
margin-left: 70px;
  background: #111;
  border-radius: 30px;

  position: relative;
  z-index: 5;
}

/* 🔥 HOME ICON */
.contact-bc-home {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #1b1b1b;

  color: #aaa;
  text-decoration: none;

  font-size: 12px;

  transition: 0.3s;
}

.contact-bc-home:hover {
  background: var(--orange);
  color: #000;
  transform: scale(1.08);
}

/* 🔥 BIKE ICON */
.contact-bc-bike {
  color: var(--orange);
  font-size: 14px;

  transition: 0.3s;
}

.contact-breadcrumb:hover .contact-bc-bike {
  transform: rotate(-12deg);
}

/* 🔥 TEXT */
.contact-breadcrumb span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
/* ////////////////////////////////////////////// */
/* =========================================
   🔥 BLOG BREADCRUMB
========================================= */

.blog-crumb-wrap {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 8px;

  margin-left: 90px;
  margin-top: 50px;
  margin-bottom: 30px;

  padding: 6px 14px;

  background: #111;
  border-radius: 30px;

  position: relative;
  z-index: 5;
}

/* 🔥 أيقونة الهوم */
.blog-crumb-home {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #1a1a1a;

  color: #aaa;
  text-decoration: none;

  transition: 0.35s ease;
}

/* 🔥 الهوفر */
.blog-crumb-wrap:hover .blog-crumb-home {
  background: var(--orange);
  color: #000;

  transform: scale(1.08);

  box-shadow: 0 0 14px rgba(255, 102, 0, 0.4);
}

/* 🔥 أيقونة البسكليت */
.blog-crumb-bike {
  font-size: 14px;
  color: var(--orange);

  transition: 0.35s ease;
}

/* 🔥 حركة البسكليت */
.blog-crumb-wrap:hover .blog-crumb-bike {
  transform: translateX(3px) rotate(-12deg);

  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

/* 🔥 النص */
.blog-crumb-wrap span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;

  letter-spacing: 0.3px;
}
/* ///////////////////////// */
/* =========================================
   🔥 SERVICES BREADCRUMB
========================================= */

.services-crumb-wrap {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 50px;

  padding: 6px 14px;

  background: #111;
  border-radius: 30px;

  position: relative;
  z-index: 5;
}

/* 🔥 أيقونة الهوم */
.services-crumb-home {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #1a1a1a;

  color: #aaa;
  text-decoration: none;

  transition: 0.35s ease;
}

/* 🔥 hover */
.services-crumb-wrap:hover .services-crumb-home {
  background: var(--orange);
  color: #000;

  transform: scale(1.08);

  box-shadow: 0 0 14px rgba(255, 102, 0, 0.45);
}

/* 🔥 أيقونة البسكليت */
.services-crumb-bike {
  font-size: 14px;
  color: var(--orange);

  transition: 0.35s ease;
}

/* 🔥 حركة البسكليت */
.services-crumb-wrap:hover .services-crumb-bike {
  transform: translateX(3px) rotate(-12deg);

  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

/* 🔥 النص */
.services-crumb-wrap span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;

  letter-spacing: 0.3px;
}

/* ////////////////////////////////////// */
/* =========================================
   🔥 ABOUT BREADCRUMB
========================================= */

.about-crumb-wrap {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 80px;

  padding: 6px 14px;

  background: #111;
  border-radius: 30px;

  position: relative;
  z-index: 5;

  transform: translateY(-10px);
}

/* 🔥 أيقونة الهوم */
.about-crumb-home {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #1a1a1a;

  color: #aaa;
  text-decoration: none;

  transition: 0.35s ease;
}

/* 🔥 Hover */
.about-crumb-wrap:hover .about-crumb-home {
  background: var(--orange);
  color: #000;

  transform: scale(1.08);

  box-shadow: 0 0 14px rgba(255, 102, 0, 0.45);
}

/* 🔥 أيقونة البسكليت */
.about-crumb-bike {
  font-size: 14px;
  color: var(--orange);

  transition: 0.35s ease;
}

/* 🔥 حركة البسكليت */
.about-crumb-wrap:hover .about-crumb-bike {
  transform: translateX(3px) rotate(-12deg);

  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

/* 🔥 النص */
.about-crumb-wrap span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;

  letter-spacing: 0.3px;
}

/* /////////////////////////////////////// */
/* =========================================
   🔥 SHOP BREADCRUMB
========================================= */

.shop-crumb-wrap {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 6px 14px;

  background: #111;
  border-radius: 30px;
margin-bottom: 100px;
  position: relative;
  z-index: 5;

  /* 🔥 الحركة الحقيقية */
  top: 70px;
}

/* 🔥 أيقونة الهوم */
.shop-crumb-home {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #1a1a1a;

  color: #aaa;
  text-decoration: none;

  transition: 0.35s ease;
}

/* 🔥 hover */
.shop-crumb-wrap:hover .shop-crumb-home {
  background: var(--orange);
  color: #000;

  transform: scale(1.08);

  box-shadow: 0 0 14px rgba(255, 102, 0, 0.45);
}

/* 🔥 أيقونة البسكليت */
.shop-crumb-bike {
  font-size: 14px;
  color: var(--orange);

  transition: 0.35s ease;
}

/* 🔥 حركة البسكليت */
.shop-crumb-wrap:hover .shop-crumb-bike {
  transform: translateX(3px) rotate(-12deg);

  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

/* 🔥 النص */
.shop-crumb-wrap span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;

  letter-spacing: 0.3px;
}

/* /////////////////////////////// */
/* =========================================
   🔥 SINGLE POST BREADCRUMB
========================================= */

.post-crumb-wrap {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 10px;
margin-top: 80px;
  padding: 7px 16px;

  background: #111;
  border-radius: 30px;
margin-left: 90px;
  position: relative;
  z-index: 5;

  margin-bottom: 80px;

  /* transform: translateY(-40px); */
}

/* 🔥 HOME ICON */
.post-crumb-home {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #1a1a1a;

  color: #fff;
  text-decoration: none;

  transition: 0.35s ease;
}

/* 🔥 hover */
.post-crumb-wrap:hover .post-crumb-home {
  background: var(--orange);
  color: #000;

  transform: scale(1.08);

  box-shadow: 0 0 14px rgba(255, 102, 0, 0.45);
}

/* 🔥 bike icon */
.post-crumb-bike {
  font-size: 14px;
  color: var(--orange);

  transition: 0.35s ease;
}

/* 🔥 bike move */
.post-crumb-wrap:hover .post-crumb-bike {
  transform: translateX(3px) rotate(-12deg);

  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}

/* 🔥 BLOG LINK */
.post-crumb-link {
  color: #fff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: 0.3s ease;
}

.post-crumb-link:hover {
  color: var(--orange);
}

/* 🔥 CURRENT POST LINK */
.post-current-link {
  text-decoration: none;
}

/* 🔥 current post */
#post-breadcrumb {
  color: #fff;

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s ease;
}

/* 🔥 hover */
.post-current-link:hover #post-breadcrumb {
  color: var(--orange);
}/* =========================================
   🔥 SHOP GRID
========================================= */

.shop-grid{
  display:grid;

  grid-template-columns:repeat(4,minmax(0,1fr));

  gap:30px;

  transition:.35s ease;
}

/* =========================================
   🔥 2 COLUMNS
========================================= */

.shop-grid.cols-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

/* =========================================
   🔥 3 COLUMNS
========================================= */

.shop-grid.cols-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

/* =========================================
   🔥 4 COLUMNS
========================================= */

.shop-grid.cols-4{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

/* =========================================
   🔥 GRID BUTTONS
========================================= */

.view-switchers{
  display:flex;
  align-items:center;
  gap:10px;
}

.grid-btn{
  width:60px;
  height:60px;

  border:none;
  outline:none;

  border-radius:22px;

  background:transparent;

  color:#666;

  font-size:20px;
  font-weight:900;

  cursor:pointer;

  transition:.3s ease;
}

/* hover */
.grid-btn:hover{
  color:#fff;
}

/* active */
.grid-btn.active{
  background:#5f685f;
  color:#fff;
}

/* =========================================
   🔥 SELECT
========================================= */

.shop-select{
  height:60px;

  min-width:180px;

  padding:0 24px;

  border:none;
  outline:none;

  border-radius:999px;

  background:white;

  color:#fff;

  font-size:16px;
  font-weight:500;

  cursor:pointer;

  transition:.3s ease;
}

.shop-select:focus{
  background:#fff;
  color:#111;
}

/* =========================================
   🔥 TOOLBAR
========================================= */

.shop-toolbar{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  margin-bottom:50px;

  flex-wrap:wrap;
}

.shop-controls{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

/* =========================================
   🔥 RESULTS
========================================= */

.results-pill{
  height:60px;

  padding:0 30px;

  border-radius:999px;

  background:#0f0f0f;

  color:#fff;

  display:flex;
  align-items:center;

  font-size:16px;
}

/* =========================================
   🔥 MOBILE
========================================= */

@media(max-width:1100px){

  .shop-grid.cols-4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}

@media(max-width:700px){

  .shop-grid,
  .shop-grid.cols-2,
  .shop-grid.cols-3,
  .shop-grid.cols-4{
    grid-template-columns:1fr;
  }

}

/* =====================================================
   XTRA fixes: top bar, nav, shop grid, product details
   Scoped late overrides so home product sections stay safe.
===================================================== */

body {
  padding-top: 168px;
}

.top-offer {
  height: 68px;
  grid-template-columns: minmax(170px, 240px) minmax(260px, 1fr) minmax(190px, 240px);
  padding: 0 clamp(16px, 2vw, 30px);
  gap: 18px;
  background: #252525;
  z-index: 90;
}

.top-offer strong {
  font-size: clamp(24px, 1.7vw, 31px);
  line-height: 1;
}

.top-offer span {
  margin-left: -150px;
  font-size: clamp(18px, 1.2vw, 24px);
}

.top-offer p {
  margin: 0;
  justify-self: center;
  text-align: center;
  font-size: clamp(15px, 1.15vw, 21px);
  font-weight: 650;
}

.top-offer a {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 clamp(16px, 1.5vw, 28px);
  font-size: clamp(14px, .95vw, 17px);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.top-offer a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(130,189,55,.22);
}

.site-header {
  top: 68px;
  min-height: 100px;
  background: rgba(12,12,12,.72);
  border-top: 0;
  border-bottom: 1px solid rgba(255,101,0,.16);
  backdrop-filter: blur(18px);
  z-index: 85;
}

.site-header.scrolled {
  min-height: 82px;
  background: rgba(12,12,12,.88);
}

.main-nav {
  font-size: 17px;
  font-weight: 800;
}

.main-nav > a::before,
.main-nav .about-trigger::before {
  bottom: -13px;
  height: 2px;
}

.main-nav > a:hover::before,
.main-nav .nav-item:hover > .about-trigger::before {
  width: 36px;
}

.shop-shell {
  padding-top:10px;;
}

.shop-shell .shop-toolbar,
.shop-shell .category-tabs {
  position: relative;
  z-index: 2;
}

.shop-shell .shop-grid {
  display: grid;
  gap: clamp(28px, 3vw, 56px);
  align-items: start;
}

.shop-shell .shop-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-shell .shop-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-shell .shop-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-shell .product-card[hidden] {
  display: none !important;
}

.shop-shell .product-card {
  min-height: 550px;
  border-radius: 0 145px 0 0 !important;
  background: #1a1a1a;
  overflow: hidden;
  transition: transform .26s ease, background .26s ease, box-shadow .26s ease;
}

.shop-shell .product-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 70px rgba(0,0,0,.36);
}

.shop-shell .product-image {
  min-height: 300px;
  display: grid;
  place-items: center;
  position: relative;
  padding: 22px;
}

.shop-shell .product-image img {
  width: 100%;
  max-height: 270px;
  object-fit: contain;
  transition: transform .28s ease;
}

.shop-shell .product-card:hover .product-image img {
  transform: scale(1.05) !important;
}

.shop-shell .sale-stack {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 4;
  display: grid;
  gap: 8px;
}

.shop-shell .sale-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0 18px 18px 0;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.shop-shell .image-icons{
  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  display:flex;
  align-items:center;
  justify-content:center;

  gap:6px;

  opacity:0;

  z-index:50;

  transition:.25s ease;
}

.shop-shell .product-card:hover .image-icons {
  opacity: 1;
  pointer-events: auto;
}

.shop-shell .image-icons button{
  width:44px;
  height:44px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:none;
  outline:none;

  border-radius:50%;

  background:none;
color: white;
  cursor:pointer;

  transition:.25s ease;
}

/* SVG */
.shop-shell .image-icons button svg{
  width:20px;
  height:20px;

  stroke:var(--orange);
  fill:none;
  stroke-width:2;

  transition:.25s ease;
}

/* HOVER */
.shop-shell .image-icons button:hover{
  background:var(--orange);
  color: white;
}

/* SVG HOVER */
.shop-shell .image-icons button:hover svg{
  stroke:#fff;
}
.shop-shell .product-meta {
  padding: 0 50px 0px;
}

.shop-shell .product-meta h4 {
  font-size: clamp(24px, 1.75vw, 31px);
  line-height: 1.08;
}

.shop-shell .product-meta p {
  color: #a7a7a7;
}

.shop-shell .price-row {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 14px;
}

.shop-shell .product-actions {
    width:100%;

  display:flex;
  justify-content:flex-end;
}
.shop-shell .product-actions button {
  min-width: 176px;
  height: 46px;

  border-radius: 999px;
  border: none;

  background: rgba(255,255,255,0.1);

  color: #777;

  font-weight: bold;

  cursor: pointer;

  transition: 0.25s;

  margin-left: auto;

  display:block;
}

.shop-shell .product-card:hover .product-actions button {
  background: #fff !important;
  color: var(--orange) !important;
}

.shop-shell .view-switchers {
  gap: 6px;
}

.shop-shell .grid-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 19px;
  line-height: 1;
}

.shop-shell .grid-btn.active {
  background: #444;
}


.shop-shell .results-pill {
  height: 30px;
  background: #080808;
  border-radius: 28px;
  color: #a8a8a8;
  font-size: 15px;
  font-weight: 120;
}
.shop-shell .shop-select{
  height: 55px;
  background: #313131;
  color: white;
  border-radius: 18px;
}
.shop-shell .shop-select:focus{
   background: white;
  color: black;
}




.product-page {
  padding-bottom: 112px;
}

.product-page .page-title {
  display: none;
}

.product-page .page-hero {
  padding: clamp(60px, 7vw, 132px) clamp(18px, 7.5vw, 145px) 0;
}

.xtra-product-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 44%) minmax(420px, 1fr);
  gap: 44px;
  min-height: 590px;
  padding: clamp(34px, 4vw, 76px);
  border: 0;
  border-radius: 0 145px 0 0;
  background: #1b1b1b;
  overflow: hidden;
}
/* =========================================
   PRODUCT LAYOUT
========================================= */

.xtra-product-layout{
  display:grid;

  grid-template-columns:46% 54%;

  gap:30px;

  align-items:start;

  position:relative;
}

/* =========================================
   FIXED BIKE IMAGE
========================================= */

.xtra-product-visual{
  position:sticky;

  top:30px;

  height:fit-content;

  display:flex;

  align-items:center;

  justify-content:center;
}

.xtra-product-visual img{
  width:min(100%,780px);

  max-width:none;

  filter:drop-shadow(0 25px 40px rgba(0,0,0,.35));
}

/* =========================================
   TOP NAV ICONS
========================================= */

.product-top-tools{
  display:flex;

  align-items:center;

  gap:18px;

  margin-bottom:30px;
}

.product-top-tools a,
.product-top-tools button{
  width:38px;
  height:38px;

  border:none;

  border-radius:50%;

  background:transparent;

  color:#9c9c9c;

  display:grid;

  place-items:center;

  font-size:18px;

  cursor:pointer;

  transition:.25s ease;
}

.product-top-tools a:hover,
.product-top-tools button:hover{
  color:#fff;

  background:#1f1f1f;
}

/* =========================================
   TITLE
========================================= */

.xtra-product-detail h1{
  margin:0 0 14px;

  font-size:30px;

  line-height:1.08;

  color:#fff;
}

/* =========================================
   RATING
========================================= */

.rating-row{
  display:flex;

  align-items:center;

  gap:5px;
flex-wrap: wrap;
  margin-bottom:26px;
    flex-wrap:nowrap !important
}

.rating-row b{
  height:30px;

  padding:0 5px;

  border-radius:3px;

  background:#1f1f1f;

  border:1px solid rgba(255,255,255,.08);

  display:flex;

  align-items:center;

  color:#d7d7d7;

  font-size:18px;
}

.rating-row span{
  color:#ffc400 !important;
display: flex;
  font-size:18px;
align-items: center;
gap: 2px;

letter-spacing:1px;
  width:auto !important;

  flex:none !important;
}

.rating-row small{
  color:#8f8f8f;
margin:0 !important;
  font-size:15px;
    white-space:nowrap
}

/* =========================================
   PRICE
========================================= */

.single-price{
  margin:26px 0 24px;

  color:var(--orange);

  font-size:30px;

  font-weight:400;
}

/* =========================================
   DESCRIPTION
========================================= */

.xtra-product-detail p{
  max-width:620px;

  color:#9d9d9d;

  font-size:16px;

  line-height:1.9;
}

/* =========================================
   BUY ROW
========================================= */

.buy-row{
  display:flex;

  align-items:center;

  gap:12px;

  margin:30px 0 18px;

  flex-wrap:wrap;
}

/* qty */
.qty-control{
  display:flex;

  align-items:center;

  gap:20px;

  height:54px;

  padding:0 14px;

  border-radius:999px;

  background:#181818;

  border:1px solid rgba(255,255,255,.08);
}

.qty-control button{
  width:36px;
  height:36px;

  border:none;

  border-radius:50%;

  background:#262626;

  color:#fff;

  font-size:18px;

  cursor:pointer;

  transition:.2s;
}

.qty-control button:hover{
  background:var(--orange);
}

.qty-control strong{
  color:#fff;
}

/* add cart */
.button.orange{
  height:54px;

  padding:0 34px;

  border-radius:999px;

  font-size:16px;

  font-weight:700;
}

/* round buttons */
.round-buy{
  width:54px;
  height:54px;

  border:none;

  border-radius:50%;

  background:var(--orange);

  color:#fff;

  font-size:19px;

  cursor:pointer;

  transition:.25s ease;
}

.round-buy:hover{
  transform:translateY(-3px);

  background:#fff;

  color:var(--orange);
}
/* =========================================
   ROUND BUTTONS
========================================= */

.round-buy{
  position:relative;

  width:58px;
  height:58px;

  border:none;

  border-radius:50%;

  background:var(--orange);

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:21px;

  cursor:pointer;

  transition:.25s;
}

.round-buy:hover{
  transform:translateY(-3px);
}

/* =========================================
   TOOLTIPS
========================================= */

.round-buy::before{
  content:attr(data-title);

  position:absolute;

  bottom:120%;
  left:50%;

  transform:translateX(-50%) translateY(10px);

  background:#ffb45c;

  color:#fff;

  font-size:12px;
  font-weight:800;

  white-space:nowrap;

  padding:10px 16px;

  border-radius:999px;

  opacity:0;
  visibility:hidden;

  transition:.25s;

  pointer-events:none;
}

.round-buy::after{
  content:"";

  position:absolute;

  bottom:103%;
  left:50%;

  transform:translateX(-50%) translateY(10px);

  border:7px solid transparent;

  border-top-color:#ffb45c;

  opacity:0;
  visibility:hidden;

  transition:.25s;
}

.round-buy:hover::before,
.round-buy:hover::after{
  opacity:1;
  visibility:visible;

  transform:translateX(-50%) translateY(0);
}

/* active wishlist + compare */

.round-buy.active{
  background:#fff;

  color:#ff8a00;

  border:2px solid #ff8a00;

  transform:translateY(-3px);
}

.round-buy.active i{
  color:#ff8a00;
}
.round-buy.active{
  background:#fff;

  color:#ff8a00;

  border:2px solid #ff8a00;
}

.round-buy.active i{
  color:#ff8a00;
}

/* active wishlist */

.round-buy.active{
  background:#fff !important;

  border:2px solid #ff8a00;
}

.round-buy.active i{
  color:#ff8a00 !important;
}

.product-category-link{
  color:#bdbdbd;

  text-decoration:none;

  transition:.25s;
}

.product-category-link:hover{
  color:#32c850;

  text-shadow:0 0 12px rgba(50,200,80,.4);
}
/* =========================================
   THEMEFOREST BUTTON
========================================= */

.themeforest-btn{
  display:flex;

  align-items:center;

  justify-content:center;

  gap:12px;

  width:min(100%,610px);

  height:58px;

  margin-top:12px;

  border-radius:999px;

  background:#bc7743;

  color:#fff;

  font-size:16px;

  font-weight:700;

  transition:.25s ease;
}

.themeforest-btn:hover{
  background:#fff;

  color:#bc7743;
}

/* =========================================
   SPECIALIST CARD
========================================= */

.specialist-card{
  display:flex;
  transition:.25s ease;

  border:3px solid transparent;
  align-items:center;

  gap:18px;

  max-width:500px;

  margin:28px 0;

  padding:10px;

  border-radius:10px;

  background:#171717;
}
.specialist-card *{
  transition:.25s ease;
}

.specialist-card span{
  width:74px;
  height:74px;

  border-radius:14px;

  background:#2ed663;

  color:#fff;

  display:grid;

  place-items:center;

  font-size:28px;

  flex-shrink:0;
}

.specialist-card small{
  display:block;

  margin-bottom:8px;

  color:#8f8f8f;

  font-size:14px;
}

.specialist-card strong{
  display:block;

  color:#fff;

  font-size:15px;

  line-height:1.5;
}

/* phone hover */
/* .specialist-card u{
  cursor:pointer;

  transition:.2s ease;
} */

.specialist-card u:hover{
  color:#32d45f;

  text-decoration:none;

  border-bottom:1px solid #32d45f;
}
/* hover */
.specialist-card:hover{
  border-color:#32d45f;
}

/* text green */
.specialist-card:hover small,
.specialist-card:hover strong,
.specialist-card:hover a,
.specialist-card:hover u{
  color:#32d45f !important;
}
/* =========================================
   PRODUCT FACTS
========================================= */

.product-facts{
  display:grid;

  grid-template-columns:1fr 96px;

  gap:24px;

  max-width:610px;

  padding-top:26px;

  border-top:1px solid rgba(255,255,255,.08);
}

.product-facts dl{
  display:grid;

  grid-template-columns:110px 1fr;

  gap:10px 8px;

  margin:0;
}

.product-facts dt{
  color:#fff;

  font-size:15px;

  font-weight:700;
}

.product-facts dd{
  margin:0;

  color:#9f9f9f;

  font-size:15px;
}

.product-facts dd span{
  color:#35d85f;
}

.brand-badge{
  width:96px;
  height:70px;

  border-radius:10px;

  background:#fff;

  color:#444;

  display:grid;

  place-items:center;

  font-weight:900;
}

/* =========================================
   SECURE PAYMENTS
========================================= */

.secure-payments{
  max-width:610px;

  margin-top:28px;
}

.secure-payments p{
  margin-bottom:10px;

  color:#fff;

  font-size:17px;

  font-weight:600;
}

.secure-payments img{
  max-width:340px;
}

/* =========================================
   SHARE BOX
========================================= */

.share-box{
  width:100%;

  width:100%;

  margin-top:32px;

  border-radius:12px;

  overflow:hidden;

  background:#171717;
}

.share-box h3{
  margin:0;

  height:58px;

  display:flex;

  align-items:center;

  justify-content:center;

  color:#fff;

  font-size:17px;

  background:#24160e;

  border-bottom:1px solid rgba(255,140,0,.2);
}

.share-box div{
  display:flex;

  justify-content:space-around;

  padding:16px 18px;
}

.share-box i{
  color:#8f8f8f;

  font-size:22px;

  cursor:pointer;

  transition:.25s ease;
}

.share-box i:hover{
  color:var(--orange);

  transform:translateY(-3px);
}

/* =========================================
   BREADCRUMB
========================================= */

.product-crumb{
  display:flex;

  align-items:center;

  gap:12px;

  margin-bottom:22px;
}

.product-crumb a,
.product-crumb span{
  color:#9c9c9c;

  font-size:14px;

  font-weight:600;
}

.product-crumb a:hover{
  color:#fff;
}

.product-tabs-shell {
  padding: 0 clamp(18px, 7.5vw, 145px) 170px;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 70px;
  overflow-x: auto;
}

.product-tabs button {
  min-height: 64px;
  padding: 0 32px;
  border: 0;
  border-radius: 13px 13px 0 0;
  background: #080808;
  color: rgba(255,255,255,.18);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.product-tabs button.active {
  color: #fff;
background:linear-gradient(
  180deg,
  #0d0906 0%,
  #050403 100%
);
  box-shadow: inset 0 -1px var(--orange);
}

.product-tab-panel {
  display: none;
  min-height: 480px;
  padding: clamp(34px, 4vw, 62px);
  border-radius: 6px;
  background: #111;
 
}

.product-tab-panel.active {
  display: block;
  
}

.product-tab-panel h2 {
  margin: 0 0 22px;
  font-size: 23px;
  margin-bottom: 30px;
  
}

.product-tab-panel p,
.product-tab-panel li,
.product-tab-panel td {
  color: #898989;
  font-size: 20px;
  line-height: 1.55;
}
.product-tab-panel p{
  line-height: 2.3;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* =========================================
   PRODUCT INFO TABLE
========================================= */

.product-tab-panel[data-product-panel="information"]{
  /* margin-top:40px; */
}

/* TITLE */
.product-tab-panel[data-product-panel="information"] h2{
  color:#fff;

  font-size:20px;
  font-weight:800;

  padding-bottom:24px;

  margin-bottom:28px;

  border-bottom:1px solid rgba(255,255,255,.08);
}

/* TABLE */
.product-tab-panel[data-product-panel="information"] table{
  width:100%;

  border-collapse:collapse;
}

/* CELLS */
.product-tab-panel[data-product-panel="information"] th,
.product-tab-panel[data-product-panel="information"] td{
  padding:22px 34px;

  border:none;

  transition:.25s ease;
}

/* LEFT */
.product-tab-panel[data-product-panel="information"] th{
  width:260px;

  text-align:left;

  color:#fff;

  font-size:16px;
  font-weight:700;
}

/* RIGHT */
.product-tab-panel[data-product-panel="information"] td{
  color:#9a9a9a;

  font-size:16px;
  font-weight:500;
}

/* =========================================
   ONLY ROW 2 + 4 COLORED
========================================= */

/* TH */
.product-tab-panel[data-product-panel="information"] tr:nth-child(2) th,
.product-tab-panel[data-product-panel="information"] tr:nth-child(4) th{
  background:#141416;
}

/* TD */
.product-tab-panel[data-product-panel="information"] tr:nth-child(2) td,
.product-tab-panel[data-product-panel="information"] tr:nth-child(4) td{
  background:#0d0d0f;
}

/* =========================================
   TH HOVER
========================================= */

.product-tab-panel[data-product-panel="information"] tr:nth-child(2) th:hover,
.product-tab-panel[data-product-panel="information"] tr:nth-child(4) th:hover{
  background:#202024;

  color:#fff;
}

/* =========================================
   TD HOVER
========================================= */

.product-tab-panel[data-product-panel="information"] tr:nth-child(2) td:hover,
.product-tab-panel[data-product-panel="information"] tr:nth-child(4) td:hover{
  background:#18181b;

  color:#fff;
}

/* =========================================
   NORMAL ROWS
========================================= */

.product-tab-panel[data-product-panel="information"] tr:nth-child(1) th,
.product-tab-panel[data-product-panel="information"] tr:nth-child(1) td,

.product-tab-panel[data-product-panel="information"] tr:nth-child(3) th,
.product-tab-panel[data-product-panel="information"] tr:nth-child(3) td,

.product-tab-panel[data-product-panel="information"] tr:nth-child(5) th,
.product-tab-panel[data-product-panel="information"] tr:nth-child(5) td{
  background:none !important;
}

/* NORMAL ROWS HOVER */
.product-tab-panel[data-product-panel="information"] tr:nth-child(1):hover th,
.product-tab-panel[data-product-panel="information"] tr:nth-child(1):hover td,

.product-tab-panel[data-product-panel="information"] tr:nth-child(3):hover th,
.product-tab-panel[data-product-panel="information"] tr:nth-child(3):hover td,

.product-tab-panel[data-product-panel="information"] tr:nth-child(5):hover th,
.product-tab-panel[data-product-panel="information"] tr:nth-child(5):hover td{
  color:#fff;
}/* =========================================
   REVIEWS PANEL
========================================= */

.reviews-panel{
  display:none;

  grid-template-columns:42% 1fr;

  gap:70px;
}

.reviews-panel.active{
  display:grid;
}

/* =========================================
   LEFT SIDE
========================================= */

.review-score strong{
  display:block;

  font-size:76px;
  line-height:1;

  font-weight:300;

  color:#fff;

  margin-bottom:10px;
}

/* STARS */
.review-stars{
  display:flex;
  gap:4px;

  margin-bottom:8px;
}

.review-stars i{
  color:#ffc400;

  font-size:26px;
}

.review-score small{
  color:#7f7f7f;

  font-size:16px;
  font-weight:600;
}

/* TITLE */
.review-score h3{
  color:#fff;

  font-size:20px;
  font-weight:700;

  margin-top:46px;
  margin-bottom:10px;
}

/* LINE UNDER TITLE */
.review-score h3::after{
  content:"";

  display:block;

  width:100%;
  height:1px;

  background:rgba(255,255,255,.08);

  margin-top:22px;
}

/* TEXT */
.review-score p{
  color:#a5a5a5;

  line-height:1.7;

  margin-top:22px;
  margin-bottom:24px;
}

/* =========================================
   FORM RATING
========================================= */

.rating-select{
  display:flex;
  gap:6px;

  margin-bottom:28px;
}

.rating-select i{
  font-size:38px;

  color:#ffc400;

  cursor:pointer;

  transition:.25s ease;
}

.rating-select i:hover{
  transform:scale(1.08);
}

/* =========================================
   TEXTAREA
========================================= */

.review-score textarea{
  width:100%;

  min-height:250px;

  border:none;
  outline:none;

  resize:none;

  border-radius:28px;

  background:#111113;

  color:#fff;

  padding:26px;

  font-size:16px;

  transition:.25s ease;
}

.review-score textarea:focus{
  background:#161618;
}

/* =========================================
   INPUTS
========================================= */

.review-fields{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:22px;

  margin:34px 0;
}

/* EACH FIELD */
.review-fields .field{
  display:flex;
  flex-direction:column;

  gap:12px;
}

/* LABEL */
.review-fields label{
  color:#fff;

  font-size:15px;
  font-weight:600;
}

/* INPUT */
.review-fields input{
  width:100%;

  height:66px;

  border:none;
  outline:none;

  border-radius:24px;

  background:#111113;

  color:#fff;

  padding:0 22px;

  font-size:15px;

  transition:.25s ease;
}

.review-fields input:focus{
  background:#161618;
}

/* =========================================
   CHECKBOX
========================================= */

.review-save{
  display:flex;
  align-items:flex-start;

  gap:14px;

  margin-bottom:38px;
}

.review-save input{
  margin-top:4px;

  width:22px;
  height:22px;
}

.review-save label{
  color:#b8b8b8;

  line-height:1.7;

  cursor:pointer;
}

/* =========================================
   BUTTON
========================================= */

.review-score button{
  min-width:120px;
  height:50px;

  border:none;

  border-radius:999px;

  background:var(--orange);

  color:#fff;

  font-size:15px;
  font-weight:600;

  cursor:pointer;

  transition:.25s ease;
}

.review-score button:hover{
  /* transform:translateY(-4px); */
  background:var(--text);
  color: var(--orange);
  filter:brightness(1.05);
}

/* =========================================
   RIGHT SIDE
========================================= */

.review-list h2{
  color:#fff;

  font-size:22px;
  font-weight:800;

  margin-bottom:28px;
}

/* LINE */
.review-list h2::after{
  content:"";

  display:block;

  width:100%;
  height:1px;

  background:rgba(255,255,255,.08);

  margin-top:26px;
}

/* REVIEW CARD */
.review-list article{
  position:relative;

  display:grid;

  grid-template-columns:60px 1fr auto;

  gap:20px;

  padding:38px;

  margin-top:28px;

  border:1px solid rgba(255,255,255,.08);

  border-radius:8px;

  background:transparent;

  overflow:visible;
}

/* IMAGE */
.review-list img{
  width:52px;
  height:52px;

  border-radius:50%;

  object-fit:cover;

  position:relative;

  z-index:3;
}

/* IMAGE INSIDE BORDER */
.review-list article::before{
  content:"";

  position:absolute;

  left:63px;
  top:0;
  bottom:0;

  width:1px;

  background:rgba(255,255,255,.08);
}

/* NAME */
.review-list h3{
  color:#fff;

  font-size:20px;
  font-weight:700;

  margin-bottom:4px;
}

/* DATE */
.review-list small{
  color:#8d8d8d;

  font-size:14px;
}

/* REVIEW TEXT */
.review-list p{
  margin-top:24px;

  color:#d0d0d0;

  line-height:1.8;

  font-size:18px;
}

/* STARS */
.review-list span{
  color:#ffc400;

  font-size:24px;

  letter-spacing:2px;
}
/* =========================================
   RATING TOP AREA
========================================= */

.review-summary{
  display:grid;

  grid-template-columns:180px 1fr;

  gap:60px;

  align-items:center;

  margin-bottom:50px;
}

/* BARS */
.rating-bars{
  display:flex;
  flex-direction:column;

  gap:14px;
}

.rating-row-r{
  display:grid;

  grid-template-columns:34px 1fr 46px;

  align-items:center;

  gap:16px;
}

.rating-row-r span{
  color:#fff;

  font-size:15px;
  font-weight:600;
}

.rating-track{
  height:8px;

  border-radius:999px;

  background:#1d1d1f;

  overflow:hidden;
}

.rating-fill{
  height:100%;

  border-radius:999px;

  background:#ffc400;
}

/* =========================================
   STAR SELECT
========================================= */

.rating-select{
  display:flex;

  gap:8px;

  margin:30px 0;
}

.rating-select i{
  font-size:42px;

  color:#ffc400;

  cursor:pointer;

  transition:.2s ease;
}

/* hover fill */
.rating-select i:hover,
.rating-select i:hover ~ i{
  color:#ffc400;
}

/* =========================================
   INPUTS
========================================= */

.review-score textarea,
.review-fields input{
  background:#131316 !important;

  border:1px solid rgba(255,255,255,.04);

  color:#fff;

  transition:.25s ease;
}

/* focus */
.review-score textarea:focus,
.review-fields input:focus{
  background:#fff !important;

  color:#111 !important;

  border-color:#fff;
}

/* placeholder */
.review-score textarea::placeholder,
.review-fields input::placeholder{
  color:#7d7d7d;
}

/* =========================================
   COMMENT CARD
========================================= */

/* INNER LINE ONLY */
.review-list article::before{
  left:80px !important;

  background:rgba(255,255,255,.07);
}

/* IMAGE */
.review-list img{
  width:54px;
  height:54px;
}

/* NAME */
.review-list h3{
  font-size:16px !important;

  margin-bottom:2px;
}

/* DATE */
.review-list small{
  font-size:13px !important;
}

/* COMMENT */
.review-list p{
  font-size:15px !important;

  line-height:1.8;

  margin-top:18px;

  max-width:520px;
}

/* STARS */
.review-list span{
  font-size:20px !important;
}

/* =========================================
   FORM LABELS
========================================= */

.review-fields label{
  margin-bottom:10px;

  display:block;

  color:#fff;

  font-size:15px;
}

/* =========================================
   TEXTAREA
========================================= */

.review-score textarea{
  min-height:230px;
}
.faq-tab-panel.active {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 54px;
}

.faq-tab-panel img {
  width: 100%;
  border-radius: 8px;
}

/* .shipping-panel div {
  display: flex;
  gap: 18px;
} */

.sticky-product-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 82;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(24px, 7vw, 145px);
  background: rgba(24,24,24,.96);
  backdrop-filter: blur(22px);
  box-shadow: 0 -20px 60px rgba(0,0,0,.38);
}

.sticky-product-bar > div:first-child {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sticky-product-bar img {
  width: 86px;
  height: 60px;
  object-fit: contain;
}

.sticky-product-bar strong,
.sticky-product-bar small {
  display: block;
}

.sticky-product-bar small {
  color: #9e9e9e;
}

@media (max-width: 1180px) {
  body {
    padding-top: 142px;
  }

  .top-offer {
    height: 64px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .top-offer span {
    margin-left: 4px;
  }

  .top-offer p {
    font-size: 15px;
  }

  .site-header {
    top: 64px;
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
    padding: 0 20px;
  }

  .menu-toggle {
    position: relative;
    display: inline-grid;
    justify-self: end;
    order: 3;
    gap: 5px;
    width: 52px;
    height: 52px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    cursor: pointer;
    transition: transform .5s ease, background .22s ease;
  }

  .menu-toggle:hover {
    transform: rotate(360deg);
    background: var(--orange);
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .2s ease;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 0px);
    display: block;
    max-height: calc(100vh - 154px);
    overflow: auto;
    padding: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 0 0 10px 10px;
    background:
      linear-gradient(rgba(18,14,10,.76), rgba(18,14,10,.82)),
      url("assets/post2-1.jpg") center/cover;
    box-shadow: 0 28px 80px rgba(0,0,0,.55);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .main-nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .main-nav > a,
  .main-nav .about-trigger {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 17px;
  }

  .nav-item,
  .site-header.scrolled .nav-item {
    display: block;
    min-height: 0;
  }

  .nav-dropdown,
  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: rgba(0,0,0,.18);
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-item.open .nav-dropdown,
  .nested-trigger:hover ~ .nav-submenu,
  .nav-submenu:hover {
    display: block;
  }

  .nav-dropdown a {
    padding: 13px 34px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 16px;
  }

  .header-actions .help-pill {
    display: none;
  }

  .shop-shell .shop-grid.cols-3,
  .shop-shell .shop-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xtra-product-detail,
  .reviews-panel.active,
  .faq-tab-panel.active
 {
    grid-template-columns: 1fr;
  }

  .sticky-product-bar {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 132px;
  }

  .top-offer {
    height: auto;
    min-height: 58px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .top-offer p {
    grid-column: 1 / -1;
    order: 3;
    padding-bottom: 8px;
    font-size: 13px;
  }

  .top-offer a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .site-header {
    top: 74px;
    min-height: 58px;
  }

  .brand img {
    width: 110px;
  }

  .header-actions {
    display: none;
  }

  .shop-shell {
    padding-inline: 18px;
  }

  .shop-shell .shop-toolbar,
  .shop-shell .shop-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-shell .shop-select,
  .shop-shell .results-pill {
    width: 100%;
  }

  .shop-shell .category-tabs,
  .shop-shell .shop-grid,
  .shop-shell .shop-grid.cols-2,
  .shop-shell .shop-grid.cols-3,
  .shop-shell .shop-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .shop-shell .product-meta {
    padding-inline: 28px;
  }

  .product-page .page-hero,
  .product-tabs-shell {
    padding-inline: 18px;
  }

  .xtra-product-detail {
    padding: 28px;
    border-radius: 0 70px 0 0;
  }

  .buy-row,
  .sticky-product-bar .buy-row {
    align-items: stretch;
    flex-direction: column;
  }

  .qty-control,
  .buy-row .button.orange,
  .themeforest-btn {
    width: 100%;
  }

  .product-facts,
  .review-fields {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    justify-content: flex-start;
  }

  .product-tabs button {
    min-width: max-content;
  }
}

/* Current fixes: keep shop cards visible and make mobile About submenu smooth */
.top-offer {
  display: grid !important;
  grid-template-columns: auto auto minmax(240px, 1fr) auto;
  column-gap: 8px;
}

.top-offer p {
  justify-self: center;
}

.top-offer a {
  justify-self: end;
}

.shop-shell .shop-grid {
  visibility: visible !important;
}

.shop-shell .product-card,
.shop-shell .product-card.reveal,
.shop-shell .product-card.reveal.visible {
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none;
  color: #fff;
}

.shop-shell .product-card[hidden] {
  display: none !important;
}

.shop-shell .product-card h4,
.shop-shell .product-card h4 a,
.shop-shell .product-meta h4,
.shop-shell .product-meta h4 a {
  color: #fff !important;
  margin-top: 40px;
  font-size: 18px;

}
.shop-shell .product-meta p{
  font-size: 14px;


}
.shop-shell .product-card:hover h4,
.shop-shell .product-card:hover h4 a,
.shop-shell .product-card:hover .product-meta h4,
.shop-shell .product-card:hover .product-meta h4 a {
  color: var(--orange) !important;
}

/* .main-nav a.active,
.main.nav-item.active > .about-trigger-nav  {
  color: #fff !important;
} */

/* .main-nav a.active::before,
.main-nav .nav-item.active > .about-trigger::before {
  width: 36px;
} */

@media (max-width: 1180px) {
  .top-offer {
    grid-template-columns: auto auto minmax(180px, 1fr) auto;
  }

  .nav-dropdown,
  .nav-submenu {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 1;
    transition: max-height .35s ease, padding .35s ease, background .25s ease;
  }

  .nav-item.open .nav-dropdown {
    max-height: 280px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .nav-item.open .nav-arrow {
    margin-top: 5px;
    transform: rotate(-135deg);
  }

  .nav-dropdown .nested-trigger:hover ~ .nav-submenu,
  .nav-submenu:hover {
    max-height: 160px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

@media (max-width: 760px) {
  .top-offer {
    display: grid !important;
    grid-template-columns: auto auto;
    row-gap: 4px;
  }

  .top-offer p,
  .top-offer a {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

.shop-shell .page-shop-title{
  font-size: 30px;
}


/* =========================================
   🔥 CATEGORY TABS
========================================= */

.category-tabs{
  display:flex;
  align-items:center;

  gap:14px;

  overflow-x:auto;
  overflow-y:hidden;

  scrollbar-width:none;

  position:relative;

  padding-right:120px;
}

.category-tabs::-webkit-scrollbar{
  display:none;
}

/* 🔥 fade آخر زر */
.category-tabs::after{
  content:"";

  position:absolute;

  top:0;
  right:0;

  width:140px;
  height:100%;

  pointer-events:none;

  background:linear-gradient(
    to right,
    rgba(0,0,0,0),
    #000 75%
  );
}

/* =========================================
   🔥 TAB
========================================= */

.category-tab{
  flex: 1;
  min-width:200px;
  max-width: 320px;
/* max-width:0px; */
  height:52px;

  padding:8px 16px;
font-weight: 300px;
  border-radius:18px;

  gap:10px;

  transition:.35s ease;

  flex-shrink:0;
}
.tab-copy{
  line-height: 1;
}

.tab-copy strong{
  font-size: 13px;   /* صغر العنوان */
  font-weight: 600px;
}

.tab-copy small{
  font-size: 9px;    /* صغر النص الصغير */
  margin-top: 2px;
}

/* 🔥 ORANGE HOVER */
.category-tab:hover{
  background:var(--orange);

  transform:translateY(-4px);

  box-shadow:0 10px 25px rgba(255,102,0,.25);
}

.category-tab:hover .icon{
  background:rgba(0,0,0,.18);
}

.category-tab:hover i,
.category-tab:hover strong,
.category-tab:hover small{
  color:#fff;
}
/* =========================================
   🔥 TOOLTIP TEXT
========================================= */
/* 
.shop-shell .image-icons .icon{
  position:relative;
}

/* النص */
.shop-shell .image-icons .icon::before{
  content:attr(data-label);

  position:absolute;

  left:50%;
  bottom:62px;

  transform:translateX(-50%) scale(.8);

  background:#111;

  color:#fff;

  padding:8px 14px;

  border-radius:12px;

  font-size:12px;
  font-weight:700;

  white-space:nowrap;

  opacity:0;
  visibility:hidden;

  transition:.25s ease;

  pointer-events:none;

  z-index:999;
}

/* السهم الصغير */
.shop-shell .image-icons .icon::after{
  content:"";

  position:absolute;

  left:50%;
  bottom:54px;

  transform:translateX(-50%);

  border:6px solid transparent;
  border-top-color:#111;

  opacity:0;
  visibility:hidden;

  transition:.25s ease;
}

/* SHOW */
.shop-shell .image-icons .icon:hover::before,
.shop-shell .image-icons .icon:hover::after{
  opacity:1;
  visibility:visible;

  transform:translateX(-50%) scale(1);
} 
/* =========================================
   FIX BUTTON POSITION
========================================= */

.shop-shell .price-row{
  display:flex !important;

  flex-direction:column !important;

  align-items:flex-start !important;

  position:relative !important;

  min-height:120px !important;
}

/* ACTIONS */
.shop-shell .product-actions{
  position:absolute !important;

  right:-20px !important;

  bottom:0 !important;

  width:auto !important;

  display:flex !important;

  justify-content:flex-end !important;
}

/* BUTTON */
.shop-shell .product-actions button{
  margin-left: 0!important;

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;
}
/* RESET */
.shop-shell .product-actions{
  position:static !important;
}

/* PRICE ROW */
.shop-shell .price-row{
  display:flex !important;

  flex-direction:column !important;

  align-items:flex-start !important;

  gap:14px !important;
}

/* BUTTON WRAP */
.shop-shell .product-actions{
  width:100% !important;

  display:flex !important;

  justify-content:flex-end !important;
}
/* =========================================
   TOP STARS UNDER 4.67
========================================= */

.review-stars{
  color:#ffc400 !important;

  font-size:30px;

  letter-spacing:2px;

  margin:12px 0 8px;
}

/* =========================================
   MAKE LEFT SIDE SMALLER
========================================= */

.review-summary{
  grid-template-columns:150px 1fr !important;

  gap:38px !important;
}

/* =========================================
   STAR SELECT
========================================= */

.rating-select{
  display:flex;

  gap:10px;

  margin:30px 0;
}

.rating-select i{
  font-size:48px;

  color:#ffc400;

  cursor:pointer;

  transition:.2s ease;
}

/* hover */
.rating-select i.hovered,
.rating-select i.active{
  color:#ffc400;
}

/* empty stars */
.rating-select i.inactive{
  color:transparent;

  -webkit-text-stroke:2px #ffc400;
}

/* =========================================
   REMOVE INNER LINE
========================================= */

.review-list article::before{
  display:none !important;
}

/* =========================================
   REVIEW BORDER
========================================= */

.review-list article{
  border:1px solid rgba(255,255,255,.09) !important;

  border-radius:8px !important;

  padding:24px !important;

  background:transparent;
}

/* =========================================
   INPUT HEIGHT
========================================= */

.review-fields input{
  height:52px !important;

  border-radius:18px !important;

  padding:0 18px !important;
}

/* TEXTAREA */
.review-score textarea{
  min-height:190px !important;

  border-radius:22px !important;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.review-score button{
  min-width:150px !important;

  height:45px !important;

  border:none !important;

  border-radius:999px !important;

  background:var(--orange) !important;

  color:#fff !important;

  font-size:16px !important;
  font-weight:700 !important;

  cursor:pointer;

  transition:.25s ease;
}

.review-score button:hover{
  /* transform:translateY(-4px); */
   background:var(--text) !important;
      color: var(--orange) !important;
  /* box-shadow:0 10px 30px rgba(255,102,0,.28); */
}

/* =========================================
   SIZE TABLE ONLY
========================================= */

.product-tab-panel[data-product-panel="size"] .size-table{
  width:100%;

  border-collapse:collapse;

  margin-top:10px;
}

/* cells */
.product-tab-panel[data-product-panel="size"] .size-table th,
.product-tab-panel[data-product-panel="size"] .size-table td{
  padding:14px 22px;

  border:1px solid rgba(255,255,255,.08);

  text-align:center;

  font-size:15px;
}

/* HEADER ONLY */
.product-tab-panel[data-product-panel="size"] .size-table thead th{
  background:#1b1b1d;

  color:#fff;

  font-weight:700;
}

/* باقي الجدول بدون لون */
.product-tab-panel[data-product-panel="size"] .size-table tbody th,
.product-tab-panel[data-product-panel="size"] .size-table tbody td{
  background:transparent;

  color:#fff;

  font-weight:500;
}

/* size names */
.product-tab-panel[data-product-panel="size"] .size-table tbody th{
  font-weight:700;
}

/* hover */
.product-tab-panel[data-product-panel="size"] .size-table tbody tr:hover td,
.product-tab-panel[data-product-panel="size"] .size-table tbody tr:hover th{
  color:var(--orange);

  transition:.2s ease;
}
/* =========================================
   FAQ TAB ONLY
========================================= */

.product-tab-panel[data-product-panel="faq"] .faq-tab-panel{
  display:grid;

  grid-template-columns:360px 1fr;

  gap:20px;

  align-items:start;
}

/* title */
.faq-tab-panel h2{
  grid-column:1/-1;

  color:#fff;

  font-size:30px;
  font-weight:800;
margin-top: -20px;
  margin-bottom:10px;
}

/* image */
.faq-tab-panel img{
  width:90%;

  max-width:380px;

  height:550px;

  object-fit:cover;

  border-radius:20px;

  display:block;
}

/* faq list */
.faq-tab-panel ul{
  list-style:none;

  padding:0;
  margin:0;

  display:flex;
  flex-direction:column;

  gap:34px;
}

/* item */
.faq-tab-panel li{
  position:relative;
  margin-top: -20px;

  padding-left:24px;
}

/* bullet */
.faq-tab-panel li::before{
  content:"•";

  position:absolute;

  left:0;
  top:0;

  color:#fff;

  font-size:28px;

  line-height:1;
}

/* question */
.faq-tab-panel li b{
  display:block;

  color:#fff;

  font-size:18px;
  font-weight:600;

  line-height:1.5;
  margin-bottom:10px;
}

/* answer */
.faq-tab-panel li p{
  color:#bdbdbd;

  font-size:15px;

  line-height:1.9;

  margin:0;
}

/* responsive */
@media(max-width:900px){

  .faq-tab-panel{
    grid-template-columns:1fr;
  }

  .faq-tab-panel img{
    max-width:100%;

    height:420px;
  }
}/* =========================================
   SHIPPING TAB FINAL
========================================= */

.product-tab-panel[data-product-panel="shipping"]{
  display:none;
}

.product-tab-panel[data-product-panel="shipping"].active{
  display:block;
}

/* titles */
.shipping-panel h2{
  color:#fff;

  font-size:34px;
  font-weight:800;

  margin-bottom:24px;
}

/* paragraph */
.shipping-panel > p{
  color:#d0d0d0;

  font-size:15px;
font-weight: 600;
  line-height:2;

  margin-bottom:30px;
margin-top: -10px;
  max-width:1400px;
}

/* main row */
.shipping-wrap{
  display:grid;

  grid-template-columns:1fr 430px;

  gap:50px;

  align-items:center;

  margin-bottom:50px;
}

/* list */
.shipping-left ul{
  margin:0;
margin-top: -40px;
  padding-left:24px;
}

.shipping-left li{
  color:#fff;

  font-size:16px;

  line-height:1.8;
}

/* image area */
.shipping-images{
  display:flex;

  gap:16px;

  justify-content:flex-end;
}

/* images */
.shipping-images img{
  width:120%;

  height:240px;

  object-fit:cover;

  border-radius:14px;

  display:block;
}

/* second title */
.returns-title{
  margin-top:-50px !important;
}
.product-tab-panel[data-product-panel="faq"].active{
  display:block;
}
/* اخفاء كل التابات */
.product-tab-panel{
  display:none;
}

/* التاب المفتوح فقط */
.product-tab-panel.active{
  display:block;
}

/* responsive */
@media(max-width:900px){

  .shipping-wrap{
    grid-template-columns:1fr;
  }

  .shipping-images{
    justify-content:flex-start;
  }

  .shipping-images img{
    width:100%;

    height:240px;
  }
}/* =========================================
   FINAL REVIEW CARD
========================================= */

.review-list article{
  position:relative;

  display:flex;

  align-items:flex-start;

  gap:28px;

  min-height:160px;

  padding:26px 30px 26px 78px;

  margin-top:26px;

  border:1px solid rgba(255,255,255,.08);

  border-radius:10px;

  background:transparent;

  overflow:visible;
}

/* image */
.review-list article img{
  width:54px;
  height:54px;

  border-radius:50%;

  position:absolute;

  left:-27px;
  top:24px;

  object-fit:cover;

  background:#111;

  padding:3px;

  z-index:5;
}

/* content */
.review-list article div{
  flex:1;

  min-width:0;
}

/* name */
.review-list article h3{
  color:#fff;

  font-size:18px;
padding-left: 10px;
  margin-bottom:4px;
}

/* date */
.review-list article small{
  display:block;

  margin-bottom:18px;
  padding-left: 10px;
  color:#8b8b8b;

  font-size:15px;
}

/* review text */
.review-list article p{
  margin:0;

  color:#d8d8d8;

  font-size:16px;

  line-height:1.9;

  width:130%;

  max-width:none;
}

/* stars */
.review-list article span{
  color:#ffc400;

  font-size:22px;

  white-space:nowrap;

  flex-shrink:0;

  margin-left:auto;

  margin-top:4px;
}
/* reviews layout */
.reviews-panel.active{
  display:grid !important;

  grid-template-columns:42% 1fr !important;

  gap:70px !important;

  align-items:start;
}

/* prevent review list from dropping */
.review-score,
.review-list{
  width:100%;
  min-width:0;
}
.category-tab{
  transition:.25s ease;

  border:1px solid transparent;
}

.category-tab:hover{
  border-color:#ff7a00;
}

.category-tab.active{
  background:#ff7a00 !important;

  border-color:#ff7a00 !important;
}

.category-tab.active *{
  color:#fff !important;
}
.category-tab small{
  display:block;

  margin-top:4px;

  font-size:13px;

  line-height:1.2;

  opacity:1 !important;

  color:#bcbcbc;
}

.category-tab.active small{
  color:#fff !important;
}
.product-category-link{
  /* color:#32c850; */

  transition:.25s ease;
}

.product-category-link:hover{
  color:#c96d1f;
}
/* =========================================
   STICKY PRODUCT IMAGE
========================================= */

.xtra-product-visual{
  position:sticky;

  top:0px;

  height:max-content;

  align-self:start;
}
/* =========================================
   FIX STICKY IMAGE
========================================= */

.xtra-product-detail{
  overflow:visible !important;
}

.xtra-product-visual{
  position:sticky !important;
  width: 120%;

  top:30px;

  align-self:start;

  height:fit-content;

  overflow:visible !important;
}

.xtra-product-visual img{
  margin-top:120px;
}

/* =========================================
   PRODUCT TOP BAR
========================================= */

.product-head-top{
  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:2px;

  margin-bottom:28px;
}

.product-crumb{
  display:flex;

  align-items:center;

  gap:8px;

  margin:0;
}

.product-top-tools{
  display:flex;

  align-items:center;

  gap:22px;
}

.product-top-tools a{
  color:#9f9f9f;

  font-size:18px;

  transition:.25s ease;
}

.product-top-tools a:hover{
  color:#fff;
}

/* =========================================
   FLOATING BREADCRUMB
========================================= */

.floating-breadcrumb{
  display:inline-flex;
margin-top: -700px ;
  align-items:center;

  gap:12px;

  padding:15px 20px;

  margin-bottom:50px;

  border-radius:999px;

  background:#0d0d0d;

  border:1px solid rgba(255,255,255,.06);

  position:relative;

  overflow:hidden;
}

.floating-breadcrumb::before{
  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.05),
    transparent
  );

  transform:translateX(-100%);

  animation:breadGlow 5s linear infinite;
}

@keyframes breadGlow{

  100%{
    transform:translateX(100%);
  }
}

.floating-breadcrumb a,
.floating-breadcrumb span{
  color:#fff;

  font-size:15px;

  font-weight:800;

  position:relative;

  z-index:2;
}

.floating-breadcrumb i{
  color:var(--orange);

  font-size:13px;

  position:relative;

  z-index:2;
}

.floating-breadcrumb a:hover{
  color:#ffa94d;
}

/* =========================================
   TITLE + ARROWS
========================================= */

.product-head-top{
  display:flex;

  align-items:center;
/* margin-top: -50px; */
  justify-content:space-between;

  gap:20px;

  margin-bottom:20px;
}

.product-head-top h1{
  margin:0;
}

.product-top-tools{
  display:flex;

  align-items:center;

  gap:22px;
}

.product-top-tools a{
  color:#9f9f9f;

  font-size:24px;

  transition:.25s ease;
}

.product-top-tools a:hover{
  color:var(--orange);
}
.share-box{
  padding:0 !important;
}

/* =========================================
   PRODUCT TOP
========================================= */

.product-head-top{
  display:flex;

  align-items:flex-start;

  justify-content:space-between;

  gap:20px;
}

/* title */
.product-head-top h1{
  margin:0;

  line-height:1.1;
}

/* tools */
.product-top-tools{
  display:flex;

  align-items:center;

  gap:10px;

  margin-top:6px;
}

/* arrows + grid */
.product-top-tools a{
  width:34px;

  height:34px;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:18px;

  color:#9b9b9b;

  transition:.25s ease;
}

/* middle grid icon */
.product-top-tools a:nth-child(2){
  opacity:.55;
}

/* hover */
.product-top-tools a:hover{
  color:#ff7a00;
}
/* =========================================
   STICKY BAR
========================================= */

.sticky-product-bar{
  position:fixed;

  left:0;
  right:0;

  bottom:-180px;

  padding:10px 24px;

  min-height:72px;

  transition:.35s ease;

  z-index:999;
}

.sticky-product-bar.show{
  bottom:0;
}

/* image */
.sticky-product-bar img{
  width:130px;
  height: auto;

}

/* title */
.sticky-product-bar h4{
  font-size:14px;

  margin:0 0 2px;
}

/* price */
.sticky-product-bar span{
  font-size:12px;
}

/* buttons smaller */
.sticky-product-bar .qty-control{
  transform:scale(.78);
}

.sticky-product-bar .add-cart-btn{
  transform:scale(.82);
}

.sticky-product-bar .round-buy{
  transform:scale(.78);
}

/* =========================================
   FLOATING BUTTONS
========================================= */

/* فقط لما يظهر sticky bar */

.sticky-product-bar.show ~ .floating-actions{
  bottom:120px;
}
/* الوضع الطبيعي */

/* خلي أزرار الفلوت فوق السلايدر */

/* =========================================
   FLOATING ACTIONS FIX
========================================= */

.floating-actions{
  position:fixed !important;

  right:5px !important;

  bottom:20px !important;

  z-index:999999 !important;

  display:flex !important;

  flex-direction:column !important;

  gap:14px !important;

  transition:.3s ease !important;
}

/* وقت ظهور sticky bar */

.floating-actions.up{
  transform:translateY(-80px) !important;
}

/* //////////////////////////////////// */
/* =========================================
   SMALL PRODUCT SLIDER
========================================= */

/* الكونتينر كامل */
.product-recommendations{
  max-width:1280px;

  margin:40px auto;
margin-top: -60PX;
  padding:0 12px;
}

/* البوكس */
.product-reco-block{
  background:#101010;

  border-radius:14px;

  overflow:hidden;

  margin-bottom:28px;
}

/* الهيدر */
.reco-heading{
  height:52px;

  padding:0 18px;

  display:flex;

  align-items:center;

  justify-content:center;

  position:relative;

  background:#160d08;

  border-bottom:1px solid rgba(255,120,0,.12);
}

/* العنوان بالنص */
.reco-heading h2{
  margin:0;

  color:#fff;

  font-size:20px;

  font-weight:700;

  text-align:center;
}

/* الأسهم */
.reco-arrows{
  position:absolute;

  right:16px;

  display:flex;

  gap:8px;
}

.reco-arrows button{
  width:28px;

  height:28px;

  border:none;

  border-radius:50%;

  background:transparent;

  color:#9a9a9a;

  cursor:pointer;

  transition:.25s ease;
}

/* hover فقط لون */
.reco-arrows button:hover{
  color:var(--orange);

  background:transparent;
}

/* السلايدر */
.reco-viewport{
  overflow:hidden;
}

/* المسار */
.reco-track{
  display:flex;

  gap:30px;

  padding:22px;

  transition:
  transform .9s cubic-bezier(.22,.61,.36,1);}

/* الكرت */
.related-product-card{
  flex:0 0 calc((100% - 36px) / 3) !important;

  max-width:calc((100% - 36px) / 3) !important;

  background:#121212;
gap: 50px;
  overflow:hidden;
}

/* الصورة */
.related-product-card .product-image{
  height:250px !important;

  display:flex;

  align-items:center;

  justify-content:center;

  background:#151515;
}

.related-product-card .product-image img{
  width:130%;

  height:100%;

  object-fit:contain;

  transition:transform .45s ease;
}

/* حركة خفيفة */
.related-product-card:hover img{
  transform:scale(1.04);
}

/* المحتوى */
.related-product-card .product-meta{
  padding:16px 18px 18px;
}

/* العنوان */
.related-product-card h4{
  margin:0 0 8px;
}

.related-product-card h4 a{
  font-size:17px;

  line-height:1.2;

  font-weight:700;

  color:#fff;

  text-decoration:none;
}

/* التصنيف */
.related-product-card p{
  margin:0 0 12px;

  font-size:14px;

  color:#9b9b9b;
}

/* السعر */
.related-product-card strong{
  font-size:19px;
padding-left: 30px;
  color:var(--orange);
}

/* الزر */
.related-product-card .product-actions button{
  height:36px;

  padding:0 16px;

  border-radius:30px;

  font-size:13px;

  background:#242424 !important;

  transition:.25s ease;
}

/* hover للزر */
.related-product-card .product-actions button:hover{
  background:#242424 !important;

  color:var(--orange);
}

/* hover */
.product-recommendations .related-product-card:hover .product-actions button{
  background:#fff !important;

  color:var(--orange) !important;
}
/* wishlist count */
[data-wishlist-count]{
  position:absolute;

  top:-6px;
  right:-6px;

  min-width:18px;
  height:18px;

  padding:0 5px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:999px;

  background:var(--orange);

  color:#fff;

  font-size:11px;
  font-weight:700;

  line-height:1;
}

/* heart active */
[data-wishlist].active{
  background:var(--orange) !important;
}

[data-wishlist].active i{
  color:#fff !important;
}
/* OLD PRICE */
.related-product-card del{
  display:block;

  width:100%;

  color:#ff8c00;

  font-size:20px;

  line-height:1;

  margin-bottom:8px;
padding-left: 25px;
  text-decoration-thickness:2px;
}

/* PRICE COLUMN */
.related-product-card .price-row{
  display:flex;

  flex-direction:column;

  align-items:flex-start;

  gap:4px;
}

/* NEW PRICE */
.related-product-card .price-row strong{
  display:block;

  font-size:28px;
}
/* /////////////// */
.wishlist-btn.active{
  background:var(--orange);
}

.wishlist-btn.active i{
  color:#fff;
}
/* ///////////////////////////////////////////// */
/* =========================================
   RELATED PRODUCTS ONLY
========================================= */

/* الكرت */
.product-recommendations .related-product-card{
  position:relative;

  overflow:hidden;
}

/* الايقونات */
.product-recommendations .related-product-card .image-icons{
  position:absolute;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  display:flex;

  align-items:center;

  justify-content:center;

  gap:6px;

  opacity:0;

  z-index:50;

  transition:.25s ease;
}

/* اظهار الايقونات */
.product-recommendations .related-product-card:hover .image-icons{
  opacity:1;

  pointer-events:auto;
}

/* الايقونة */
.product-recommendations .related-product-card .image-icons .icon,
.product-recommendations .related-product-card .image-icons .wishlist-btn{
  width:42px;

  height:42px;

  display:flex;

  align-items:center;

  justify-content:center;

  border:none;

  outline:none;

  border-radius:50%;

  background:none;

  cursor:pointer;

  transition:.25s ease;
}

/* svg */
.product-recommendations .related-product-card .image-icons svg{
  width:18px;

  height:18px;

  /* stroke:var(--orange); */

  fill:none;

  stroke-width:2;

  transition:.25s ease;
}

/* hover */
.product-recommendations .related-product-card .image-icons .icon:hover,
.product-recommendations .related-product-card .image-icons .wishlist-btn:hover{
  background:var(--bg);
}

/* svg hover */
.product-recommendations .related-product-card .image-icons .icon:hover svg,
.product-recommendations .related-product-card .image-icons .wishlist-btn:hover svg{
  stroke:#fff;
}

/* القلب مفعل */
.product-recommendations .related-product-card .wishlist-btn.active{
  background:var(--orange);
}

.product-recommendations .related-product-card .wishlist-btn.active svg{
  stroke:#fff;
}
/* FOOTER RESPONSEV */




/* ============================
   MEDIA QUERIES
============================ */

/* Extra Small <576px */
@media (max-width: 575.98px) {
  .contact-strip {
    flex-direction: column;
    font-size: 0.8rem;
    gap: 15px;
  }

  .contact-strip div strong {
    font-size: 1rem;
  }

  .contact-strip div span {
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer h5::after {
    margin: 3px auto 0;
  }

  .footer p, .footer a, .footer .office-item p {
    font-size: 0.8rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }
}

/* Small >=576px */
@media (min-width: 576px) and (max-width: 767.98px) {
  .contact-strip {
    flex-direction: column;
    font-size: 0.85rem;
  }

  .contact-strip div strong {
    font-size: 1.05rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer h5::after {
    margin: 4px auto 0;
  }

  .footer p, .footer a, .footer .office-item p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}

/* Medium >=768px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-strip {
    flex-direction: row;
    justify-content: space-around;
    font-size: 0.9rem;
  }

  .contact-strip div {
    width: auto;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .contact-strip div strong {
    font-size: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: start;
    text-align: left;
  }

  .footer h5::after {
    margin: 5px 0 0;
  }

  .footer p, .footer a, .footer .office-item p {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* Large >=992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact-strip {
    font-size: 0.95rem;
  }

  .contact-strip div strong {
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer p, .footer a, .footer .office-item p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}

/* Extra Large >=1200px */
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .contact-strip {
    font-size: 1rem;
  }

  .contact-strip div strong {
    font-size: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer p, .footer a, .footer .office-item p {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}

/* XXL >=1600px */
@media (min-width: 1600px) {
  .contact-strip {
    font-size: 1.1rem;
  }

  .contact-strip div strong {
    font-size: 1.4rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer p, .footer a, .footer .office-item p {
    font-size: 1.05rem;
  }

  .footer-bottom {
    font-size: 1rem;
  }
}
/* ////////////////////// */
/* =========================================
   CONTACT STRIP + FOOTER RESPONSIVE CLEAN
========================================= */

/* ===== MOBILE + TABLET ===== */
@media (max-width:991.98px){

  /* =========================
     CONTACT STRIP
  ========================= */

  .contact-strip{

    display:flex;
    flex-direction:column !important;

    gap:0 !important;

    padding:0;

    overflow:hidden;
  }

  .contact-strip div{

    width:100%;

    text-align:center;

    padding:28px 18px;

    border:none !important;

    border-bottom:1px solid rgba(255,255,255,.08) !important;
  }

  .contact-strip div:last-child{
    border-bottom:none !important;
  }

  /* حذف أي خطوط إضافية */
  .contact-strip::before,
  .contact-strip::after,
  .contact-strip div::before,
  .contact-strip div::after{
    display:none !important;
    content:none !important;
  }

  .contact-strip span{

    display:block;

    font-size:.95rem;

    margin-bottom:12px;
  }

  .contact-strip strong{

    display:block;

    font-size:1.9rem;

    line-height:1.4;

    word-break:break-word;
  }

  /* =========================
     FOOTER
  ========================= */

  .footer-grid{

    grid-template-columns:1fr !important;

    justify-items:center;

    text-align:center;

    gap:45px;
  }

  .footer-grid > div{

    width:100%;
  }

  .footer h5{

    text-align:center;

    margin-bottom:14px;
  }

  .footer h5::after{

    content:"";

    display:block;

    width:38px;

    height:3px;

    background:#ff7a00;

    margin:10px auto 0;
  }

  .footer p,
  .footer a,
  .footer .office-item p{

    font-size:.95rem;

    text-align:center;
  }

  .office-item{

    justify-content:center;
  }

  .footer-links{

    display:flex;

    flex-direction:column;

    align-items:center;
  }

  .news-item{

    justify-content:center;

    text-align:left;
  }

  .footer-bottom{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:18px;

    text-align:center;
  }

  .footer-bottom img{

    max-width:220px;

    width:100%;
  }

}


/* ===== SMALL MOBILE ===== */
@media (max-width:575.98px){

  .contact-strip div{
    padding:24px 14px;
  }

  .contact-strip span{
    font-size:.85rem;
  }

  .contact-strip strong{
    font-size:1.15rem;
  }

  .footer p,
  .footer a{
    font-size:.85rem;
  }

  .footer-bottom{
    font-size:.75rem;
  }

}


/* ===== TABLET ===== */
@media (min-width:768px) and (max-width:991.98px){

  .contact-strip strong{
    font-size:1.4rem;
  }

  .footer-grid{

    grid-template-columns:repeat(2,1fr) !important;

    text-align:center;
  }

}


/* ===== DESKTOP ===== */
@media (min-width:992px){

  .contact-strip{

    display:flex;

    flex-direction:row;

    align-items:center;

    justify-content:space-between;

    gap:0;
  }

  .contact-strip div{

    flex:1;

    padding:30px;

    text-align:center;

    border:none;
  }

  /* خط واحد فقط بين العناصر */
  .contact-strip div:not(:last-child){

    border-right:1px solid rgba(255,255,255,.08);
  }

  .footer-grid{

    grid-template-columns:repeat(4,1fr);
  }

}
/* //////////////////////////////////////////////// */
/* =========================================
   FORCE CENTER CONTACT INFO RESPONSIVE
   حطه آخر ملف CSS
========================================= */

.contact-info{
  width:100%;
}

/* موبايل + تابلت */
@media (max-width:991.98px){

  .contact-info{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

    gap:40px !important;
  }

  .contact-line{

    width:100% !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

    text-align:center !important;

    gap:16px !important;

    margin:0 auto !important;
  }

  .contact-line > div{

    width:100% !important;

    text-align:center !important;
  }

  .contact-line .icon{

    margin:0 auto !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;
  }

  .contact-line h3{

    text-align:center !important;

    margin:0 0 8px !important;
  }

  .contact-line p{

    text-align:center !important;

    margin:0 !important;
  }

}


/* موبايل صغير */
@media (max-width:575.98px){

  .contact-line .icon{

    width:70px !important;
    height:70px !important;

    min-width:70px !important;

    font-size:1.2rem !important;
  }

  .contact-line h3{

    font-size:1.4rem !important;
  }

  .contact-line p{

    font-size:.92rem !important;
  }

}
/*Responsev Blog */

/* =========================================
   BLOG PAGE RESPONSIVE
   حطه آخر ملف CSS
========================================= */


/* =========================================
   XXL ≥ 1600px
========================================= */
@media (min-width:1600px){

  .blog-post{
    gap:40px;
  }

  .post-content h2{
    font-size:2.3rem;
  }

  .post-content p{
    font-size:1.08rem;
  }

  .meta img{
    width:60px;
    height:60px;
  }

  .blog-sidebar{
    width:420px;
  }

}


/* =========================================
   XL 1200px → 1599px
========================================= */
@media (min-width:1200px) and (max-width:1599.98px){

  .post-content h2{
    font-size:2rem;
  }

  .post-content p{
    font-size:1rem;
  }

  .meta img{
    width:55px;
    height:55px;
  }

  .blog-sidebar{
    width:360px;
  }

}


/* =========================================
   LARGE 992px → 1199px
========================================= */
@media (min-width:992px) and (max-width:1199.98px){

  .blog-layout{
    gap:35px;
  }

  .post-content h2{
    font-size:1.7rem;
  }

  .post-content p{
    font-size:.96rem;
  }

  .meta{
    gap:12px;
  }

  .meta img{
    width:50px;
    height:50px;
  }

  .blog-sidebar{
    width:320px;
  }

  .blog-btn{
    font-size:.9rem;
  }

}


/* =========================================
   MEDIUM 768px → 991px
========================================= */
@media (min-width:768px) and (max-width:991.98px){

  .blog-layout{

    display:flex;
    flex-direction:column;

    gap:50px;
  }

  .blog-sidebar{
    width:100%;
  }

  .blog-post{

    display:flex;

    gap:25px;
  }

  .post-content h2{
    font-size:1.55rem;
  }

  .post-content p{
    font-size:.95rem;
  }

  .meta{
    gap:12px;
  }

  .meta img{

    width:46px;
    height:46px;

    min-width:46px;
  }

  .side-card{
    padding:25px;
  }

}


/* =========================================
   SMALL 576px → 767px
========================================= */
@media (min-width:576px) and (max-width:767.98px){

  .blog-layout{

    display:flex;
    flex-direction:column;

    gap:45px;
  }

  .blog-sidebar{
    width:100%;
  }

  .blog-post{

    display:flex;
    flex-direction:column;

    gap:22px;
  }
.post-image-wrap{
margin-top:0px;
}
  .post-content{

    text-align:left;
  }

  .post-content h2{
    font-size:1.4rem;
  }

  .post-content p{
    font-size:.92rem;
    line-height:1.8;
  }

  .meta{

    display:flex;
    align-items:center;

    gap:10px;
  }

  .meta img{

    width:42px;
    height:42px;

    min-width:42px;

    object-fit:cover;
  }

  .blog-search{
    flex-direction:column;
    gap:12px;
  }

  .blog-btn{
    width:100%;
  }

}


/* =========================================
   EXTRA SMALL <576px
========================================= */
@media (max-width:575.98px){

  .blog-layout{

    display:flex;
    flex-direction:column;

    gap:40px;
  }

  .blog-sidebar{
    width:100%;
  }

  .blog-post{

    display:flex;
    flex-direction:column;

    gap:20px;
  }

  .post-content{

    text-align:left;
  }

  .post-content h2{

    font-size:1.2rem;

    line-height:1.5;
  }

  .post-content p{

    font-size:.88rem;

    line-height:1.8;
  }

  /* 🔥 صورة الشخص */
  .meta{

    display:flex;
    align-items:center;

    gap:10px;
  }
.post-image-wrap{
margin-top:0px;
}

  .meta img{

    width:38px !important;
    height:38px !important;

    min-width:38px !important;

    border-radius:50%;

    object-fit:cover;
  }

  .meta span{
    font-size:.85rem;
  }

  .meta small{
    font-size:.72rem;
  }

  .read-more{
    width: 40%;
    font-size:.88rem;
  }

  .pagination{

    gap:10px;

    flex-wrap:wrap;

    justify-content:center;
  }

  .pagi-btn,
  .pagi-arrow{

    width:40px;
    height:40px;

    font-size:.9rem;
  }

  .side-card{

    padding:20px;
  }

  .side-card h3{

    font-size:1.1rem;
  }

  .tag-cloud{

    gap:8px;
  }

  .tag-cloud span{

    font-size:.75rem;

    padding:8px 12px;
  }


}






/* =====================================
   MOBILE FIX
   حطه آخر ملف CSS
===================================== */

@media (max-width:575.98px){

  /* ابعاد اول بوست عن الهيدر */
  .blog-layout,
  .blog-page,
  .blog-container,
  .blog-posts{

    margin-top:35px !important;
  }

  /* البوست نفسه */
  .blog-post{

    text-align:center !important;

    align-items:center !important;
  }

  .post-content{

    text-align:center !important;
  }

  .post-content h2{

    text-align:center !important;

    margin-left:auto;
    margin-right:auto;
  }

  .post-content p{

    text-align:center !important;
  }

  /* بيانات الكاتب */
  .meta{

    justify-content:center !important;

    text-align:center !important;
  }

  .meta > div{

    text-align:center !important;
  }

  /* زر Read More */
  .read-more{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    margin:0 auto !important;
  }

  /* الصورة الرئيسية */
  .post-image img,
  .blog-post img{

    margin:0 auto !important;
  }

}
/* توسيط صورة البوست بالكامل بالموبايل */

@media (max-width:575.98px){

  .blog-post,
  .post-card,
  article{

    text-align:center !important;
  }

  .post-image{

    width:100% !important;

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;
  }

  .post-image img{

    width:90% !important;

    margin:0 auto !important;

    display:block !important;
  }

}
/* =========================================
   موبايل = عمود واحد
========================================= */

@media (max-width:767.98px){

  .blog-sidebar{

    width:100% !important;

    display:grid !important;

    grid-template-columns:1fr !important;

    gap:24px !important;

    margin-top:40px !important;
  }

  .side-card{

    width:100% !important;

    overflow:hidden !important;
  }

  /* العنوان معبا كامل */
  .side-card h3{

    width:100% !important;

    display:block !important;

    margin:0 !important;

    padding:24px 0 !important;

    text-align:center !important;

    box-sizing:border-box !important;
  }

  .side-card .body{

    width:100% !important;

    padding:24px 18px !important;

    box-sizing:border-box !important;
  }

  /* السيرش */
  .blog-search{

    width:100% !important;

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    gap:12px !important;
  }

  .blog-input{

    flex:1 !important;

    width:auto !important;

    min-width:0 !important;

    height:56px !important;

    padding:0 18px !important;

    font-size:1rem !important;

    border-radius:18px !important;
  }

  .blog-btn{

    width:120px !important;

    min-width:120px !important;

    height:56px !important;

    font-size:.95rem !important;

    border-radius:18px !important;

    flex-shrink:0 !important;
  }

}



/* =========================================
   تابلت = عمودين
========================================= */

@media (min-width:768px) and (max-width:991.98px){

  .blog-sidebar{

    width:100% !important;

    display:grid !important;

    grid-template-columns:repeat(2,1fr) !important;

    gap:22px !important;

    margin-top:50px !important;
  }

  .side-card{

    width:100% !important;

    overflow:hidden !important;
  }

  /* العنوان معبا كامل */
  .side-card h3{

    width:100% !important;

    display:block !important;

    margin:0 !important;

    padding:24px 0 !important;

    text-align:center !important;

    box-sizing:border-box !important;
  }

  .side-card .body{

    width:100% !important;

    padding:24px 16px !important;

    box-sizing:border-box !important;
  }

  /* السيرش */
  .blog-search{

    width:100% !important;

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    gap:10px !important;
  }

  .blog-input{

    flex:1 !important;

    width:auto !important;

    min-width:0 !important;

    height:54px !important;

    padding:0 16px !important;

    font-size:.95rem !important;

    border-radius:16px !important;
  }

  .blog-btn{

    width:105px !important;

    min-width:105px !important;

    height:54px !important;

    font-size:.9rem !important;

    border-radius:16px !important;

    flex-shrink:0 !important;
  }

}



/* =========================================
   ديسكتوب
========================================= */

/* @media (min-width:992px){

  .blog-page,
  .blog-layout,
  main{

    display:grid !important;

    grid-template-columns:2fr 1fr !important;

    gap:40px !important;

    align-items:start !important;
  }

  .blog-sidebar{

    display:flex !important;

    flex-direction:column !important;

    gap:28px !important;
  }

} */
/* =========================================
   تابلت = عمودين
   العنوان معبا كامل
========================================= */

@media (min-width:768px) and (max-width:991.98px){

  .blog-sidebar{

    width:100% !important;

    display:grid !important;

    grid-template-columns:repeat(2,minmax(0,1fr)) !important;

    gap:22px !important;

    margin-top:50px !important;
  }

  .side-card{

    width:100% !important;

    min-width:0 !important;

    overflow:hidden !important;
  }

  /* العنوان */
  .side-card h3{

    width:calc(100% + 32px) !important;

    margin:0 -16px 0 -16px !important;

    padding:24px 0 !important;

    display:block !important;

    text-align:center !important;

    box-sizing:border-box !important;
  }

  /* البودي */
  .side-card .body{

    width:100% !important;

    padding:24px 16px !important;

    box-sizing:border-box !important;
  }

  /* السيرش */
  .blog-search{

    width:100% !important;

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    gap:10px !important;
  }

  .blog-input{

    flex:1 !important;

    min-width:0 !important;

    height:54px !important;

    padding:0 16px !important;

    font-size:.95rem !important;

    border-radius:16px !important;
  }

  .blog-btn{

    width:105px !important;

    min-width:105px !important;

    height:54px !important;

    font-size:.9rem !important;

    border-radius:16px !important;

    flex-shrink:0 !important;
  }

}



/* =========================================
🔥 FIX SMALL MOBILE SIDEBAR TITLES
🔥 تعويض padding الكارد
========================================= */

@media (max-width:575.98px){

  main.blog-layout .blog-sidebar .side-card h3{

    width:calc(100% + 40px) !important;

    margin-left:-20px !important;

    margin-right:-20px !important;

    padding:18px 14px !important;

    box-sizing:border-box !important;

    text-align:center !important;

    line-height:1.4 !important;
  }

}
/* =========================================
🔥 FINAL BLOG SIDEBAR FIX
🔥 حطه آخر ملف CSS
========================================= */

@media (max-width:767.98px){

  /* السايدبار بالنص */
  .blog-sidebar{

    width:100% !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    gap:28px !important;

    margin:40px auto 0 auto !important;

    padding:0 14px !important;

    box-sizing:border-box !important;
  }

  /* الكارد نفسه */
  .blog-sidebar .side-card{

    width:100% !important;

    max-width:100% !important;

    margin:0 auto !important;

    overflow:hidden !important;

    border-radius:28px !important;

    box-sizing:border-box !important;
  }

  /* الهيدر تبع الكارد */
  .blog-sidebar .side-card h3{

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    width:calc(100% + 48px) !important;

    margin:-24px -24px 0 -24px !important;

    min-height:92px !important;

    padding:0 20px !important;

    text-align:center !important;

    box-sizing:border-box !important;
  }

  /* البودي */
  .blog-sidebar .side-card .body{

    width:100% !important;

    padding:18px !important;

    box-sizing:border-box !important;
  }

}
@media (max-width:575.98px){

  .blog-sidebar .side-card h3{

    min-height:68px !important;

    padding:0 16px !important;
  }

}
@media (min-width:768px) and (max-width:991.98px){

  .blog-sidebar .side-card h3{

    width:calc(100% + 64px) !important;

    margin:-32px -32px 0 -32px !important;

    box-sizing:border-box !important;
  }

}
@media (min-width:992px) and (max-width:1200px){

  .blog-sidebar{

    display:grid !important;

    grid-template-columns:repeat(3,minmax(0,1fr)) !important;

    gap:22px !important;

    align-items:start !important;

    width:100% !important;
  }

  .blog-sidebar .side-card{

    width:100% !important;

    min-width:0 !important;
  }

}
/* Responsev Faq */
/* =========================================
   FAQ RESPONSIVE
========================================= */


/* =========================================
   موبايل صغير
========================================= */

 @media (max-width:575.98px){

  .breadcrumb-pilll {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 25px;

  padding: 6px 14px;
  background: #111;
  border-radius: 25px;
margin-left: -300px;
  font-size: 13px;

  transition: 0.3s ease;
}
  .faq-hero-new{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    text-align:center !important;

    gap:35px !important;

    padding:70px 20px !important;
  }

  .faq-left{

    width:100% !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;
  }

  .faq-left h1{

    font-size:2.3rem !important;

    line-height:1.2 !important;
  }

  .faq-left p{

    max-width:100% !important;

    font-size:1rem !important;
  }

  .faq-image-wrap{
margin-top: -100px;
margin-bottom: 30px;
    width:100% !important;

    display:flex !important;

    justify-content:center !important;
  }

  .faq-image-wrap img{

    width:100% !important;

    max-width:420px !important;

    height:400px
     !important;
  }

  .faq-wrap{

    display:flex !important;

    flex-direction:column !important;

    gap:35px !important;

    padding:0 18px 70px !important;
  }

  .faq-left-side,
  .faq-right-side{

    width:100% !important;
  }

  .faq-btn{

    text-align:center !important;

    justify-content:center !important;

    font-size:1rem !important;

    padding:24px 18px !important;
  }

  .faq-panel{

    text-align:center !important;

    font-size:.95rem !important;

    line-height:1.9 !important;
  }

  .contact-box{

    width:100% !important;
  }

  .contact-title{

    text-align:center !important;
  }

  .contact-row{

    display:flex !important;

    flex-direction:column !important;

    gap:18px !important;
  }

  .contact-field-Ne,
  .contact-field{

    width:100% !important;
  }

  .contact-field input,
  .contact-field-Ne input,
  .contact-field select,
  .contact-field textarea{

    width:100% !important;

    font-size:1rem !important;
  }

  .contact-btn{

    width:100% !important;
  }

}

 

/* =========================================
   موبايل كبير
========================================= */

@media (min-width:576px) and (max-width:767.98px){
  .breadcrumb-pilll {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 25px;

  padding: 6px 14px;
  background: #111;
  border-radius: 25px;
margin-left: -450px;
  font-size: 13px;

  transition: 0.3s ease;
}
  .faq-hero-new{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    text-align:center !important;

    gap:40px !important;

    padding:80px 30px !important;
  }

  .faq-left{

    width:100% !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;
  }

  .faq-left h1{

    font-size:2.8rem !important;
  }

  .faq-image-wrap{
margin-top: -120px;
    display:flex !important;

    justify-content:center !important;
  }

  .faq-image-wrap img{

    width:100% !important;

    max-width:500px !important;
  }

  .faq-wrap{

    display:flex !important;

    flex-direction:column !important;

    gap:40px !important;

    padding:0 25px 80px !important;
  }

  .faq-btn{

    text-align:center !important;

    justify-content:center !important;
  }

  .faq-panel{

    text-align:center !important;
  }

  .contact-row{

    display:flex !important;

    flex-direction:column !important;

    gap:20px !important;
  }

}


/* =========================================
   تابلت
========================================= */

 @media (min-width:768px) and (max-width:991.98px){

    .breadcrumb-pilll {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 25px;

  padding: 6px 14px;
  background: #111;
  border-radius: 25px;
margin-left: -700px;
  font-size: 13px;

  transition: 0.3s ease;
}
  .faq-hero-new{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    text-align:center !important;

    gap:50px !important;

    padding:90px 40px !important;
  }

  .faq-left{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;
  }

  .faq-left h1{

    font-size:3.3rem !important;
  }

  .faq-left p{

    max-width:700px !important;
  }

  .faq-image-wrap{
margin-top: -120px;
    display:flex !important;

    justify-content:center !important;
  }

  .faq-image-wrap img{

    width:100% !important;

    max-width:500px !important;
  }

  .faq-wrap{

    display:flex !important;

    flex-direction:column !important;

    gap:45px !important;

    padding:0 35px 90px !important;
  }

  .faq-btn{

    justify-content:center !important;

    text-align:center !important;
  }

  .faq-panel{

    text-align:center !important;
  }

}
 


/* =========================================
   لابتوب صغير
========================================= */

 @media (min-width:992px) and (max-width:1199.98px){
.faq-label{
  margin-bottom: 80px;
}
  .faq-hero-new{

    display:grid !important;

    grid-template-columns:1fr 1fr !important;

    align-items:center !important;

    gap:50px !important;
  }

  .faq-image-wrap{

    display:flex !important;

    justify-content:center !important;
  }

  .faq-image-wrap img{

    width:130% !important;

    max-width:480px !important;
  }

  .faq-wrap{

    display:grid !important;

    grid-template-columns:1.2fr .8fr !important;

    gap:35px !important;

    align-items:start !important;
  }
  .faq-arrow{
    max-width: 30px;
  }

} 



/* =========================================
   ديسكتوب كبير
========================================= */

@media (min-width:1200px){

  .faq-hero-new{

    display:grid !important;

    grid-template-columns:1fr 1fr !important;

    align-items:center !important;

    gap:70px !important;
  }

  .faq-image-wrap{

    display:flex !important;

    justify-content:center !important;
  }

  .faq-image-wrap img{

    width:100% !important;

    max-width:560px !important;
  }

  .faq-wrap{

    display:grid !important;

    grid-template-columns:1.3fr .7fr !important;

    gap:45px !important;

    align-items:start !important;
  }

}
/* =========================================
   FORCE NAME + EMAIL SIDE BY SIDE
========================================= */

.contact-row{

  display:grid !important;

  grid-template-columns:repeat(2,minmax(0,1fr)) !important;

  gap:16px !important;

  width:100% !important;

  align-items:start !important;
}

/* كل حقل */
.contact-field-Ne{

  width:100% !important;

  min-width:0 !important;
}

/* الانبوت */
.contact-field-Ne input{

  width:100% !important;

  height:56px !important;

  box-sizing:border-box !important;
}

/* الفورم بالنص */
 .faq-right-side{

  display:flex !important;

  justify-content:center !important;
}

.contact-box{

  width:min(95%,900px) !important;

  margin:0 auto !important;
} 
/* =========================================
   FORM WIDTH LIKE FAQ BOXES
========================================= */

/* موبايل */
@media (max-width:767.98px){

  .contact-box{

    width:100% !important;

    max-width:100% !important;
  }

}


/* تابلت */
@media (min-width:768px) and (max-width:991.98px){

  .contact-box{

    width:100% !important;

    max-width:100% !important;
  }

}


/* لابتوب */
@media (min-width:992px) and (max-width:1199.98px){

  .faq-right-side{

    width:100% !important;
  }

  .contact-box{

    width:100% !important;

    max-width:100% !important;
  }

}


/* ديسكتوب كبير */
@media (min-width:1200px){

  .faq-right-side{

    width:100% !important;
  }

  .contact-box{

    width:100% !important;

    max-width:100% !important;
  }

}
/* الاسم والايميل */
.form-row{

  display:grid !important;

  grid-template-columns:repeat(2,1fr) !important;

  gap:30px !important;

  width:100% !important;
}

/* كل عمود */
.form-row .field{

  width:100% !important;
} 

/* حقول الادخال */
.form-row input{

  width:100% !important;

  min-width:0 !important;

  height:65px !important;

  box-sizing:border-box !important;
}
/* =========================================
   FORCE FULL WIDTH FOR NAME + EMAIL
========================================= */

 .form-row{

  display:flex !important;

  gap:40px !important;

  width:100% !important;
}

/* كل عنصر */
.form-row .field{

  flex:1 !important;

  width:100% !important;

  min-width:0 !important;
}

/* الليبل */
.form-row label{

  display:block !important;

  margin-bottom:14px !important;
}

/* الادخال */
.form-row input{

  width:100% !important;

  height:65px !important;

  max-width:none !important;

  min-width:0 !important;

  box-sizing:border-box !important;
} 
/* Responsev Shop */
/* =========================================
   ABOUT RESPONSIVE
========================================= */


@media (min-width:1600px){

  .partners{

    padding:140px 120px;
  }

  .partners h2{

    font-size:72px;

    margin-bottom:26px;
  }

  .partners p{

    max-width:900px;

    font-size:20px;

    line-height:1.9;
  }

  .logo-row{

    grid-template-columns:repeat(3,1fr);

    gap:45px;

    margin-top:90px;
  }

  .logo{

    max-width:290px;

    height:150px;

    padding:34px;
  }

  .logo.left{

    transform:translateY(-30px);
  }

  .logo.right{

    transform:translateY(30px);
  }

  .logo.bottom{

    transform:translateY(12px);
  }
}


/* =========================================
   🔥 LARGE DESKTOP (1400 - 1599)
========================================= */

@media (min-width:1400px) and (max-width:1599px){

  .partners{

    padding:120px 90px;
  }

  .partners h2{

    font-size:64px;

    margin-bottom:24px;
  }

  .partners p{

    max-width:820px;

    font-size:18px;

    line-height:1.8;
  }

  .logo-row{

    grid-template-columns:repeat(3,1fr);

    gap:36px;

    margin-top:80px;
  }

  .logo{

    width:20%;

    height:150px;

    padding:10px;
  }

  .logo.left{

    transform:translateY(-24px);
  }

  .logo.right{

    transform:translateY(24px);
  }

  .logo.bottom{

    transform:translateY(10px);
  }
  
}


/* =========================================
   🔥 DESKTOP (1200 - 1399)
========================================= */

@media (min-width:1200px) and (max-width:1399px){

  .partners{

    padding:110px 70px;
  }

  .partners h2{

    font-size:56px;

    margin-bottom:22px;
  }

  .partners p{

    max-width:760px;

    font-size:17px;

    line-height:1.8;
  }

  .logo-row{

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:70px;
  }

  .logo{

    max-width:230px;

    height:125px;

    padding:24px;
  }

  .logo.left{

    transform:translateY(-18px);
  }

  .logo.right{

    transform:translateY(18px);
  }

  .logo.bottom{
    transform:translateY(8px);
  }
    .about-feature img{
    margin-top: 100px;
    margin-bottom: 100px
    ;
   
  }
  .about-feature .about{
    padding-bottom: 2000 px;
  }
}


/* =========================================
   🔥 SMALL DESKTOP / LAPTOP (992 - 1199)
========================================= */

@media (min-width:992px) and (max-width:1199px){

  .partners{

    padding:100px 50px;
  }

  .partners h2{

    font-size:48px;

    margin-bottom:20px;
  }

  .partners p{

    max-width:680px;

    font-size:16px;

    line-height:1.7;
  }

  .logo-row{

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    margin-top:60px;
  }

  .logo{

    width:30% !important;

    height:170px !important;

    
  }

  .logo.left,
  .logo.right,
  .logo.bottom{

    transform:none;
  }
    .about-feature img{
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .about-feature .about{
    margin-bottom: 100px;
  }
 .big-bike{
    width: 100% !important;

 }


}


/* =========================================
   🔥 TABLET (768 - 991)
========================================= */

@media (min-width:768px) and (max-width:991px){

  .partners{

    padding:90px 35px;
  }

  .partners h2{

    font-size:42px;

    margin-bottom:18px;
  }

  .partners p{

    max-width:620px;

    font-size:15px;

    line-height:1.7;
  }

  .logo-row{

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-top:55px;
  }

  .logo{

    width:30% !important;

    height:150px !important;

    
  }

  .logo.left,
  .logo.right,
  .logo.bottom{

    transform:none;
  }
    .about-feature img{
    margin-top: 100px;
    margin-bottom: -150px
    ;

  }
  .about-feature .about{
    margin-bottom: 100px;
  }
   .big-bike{
    width: 70% !important;

 }
  .about-feature .about{
  /* margin-top: -10px; */
  margin-bottom: 150px;
 }
}


/* =========================================
   🔥 MOBILE (0 - 767)
========================================= */

@media (max-width:767px){
.about-top p {
  font-size: 15px;
}
  .partners{

    padding:75px 20px;
  }

  .partners h2{

    font-size:34px;

    margin-bottom:16px;
  }

  .partners p{

    max-width:100%;

    font-size:14px;

    line-height:1.7;
  }

.logo-row{

    display:grid !important;

    grid-template-columns:repeat(2,1fr) !important;

    gap:18px !important;

    margin-top:45px !important;
  }

  .logo{

    width:150% !important;

    height:120px !important;

    object-fit:contain !important;
  }
/* السيكشن */
  .bike-slider-section{

    padding:70px 20px !important;
  }

  /* العنوان + الزر */
  .title-row{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    text-align:center !important;

    gap:18px !important;

    margin-bottom:40px !important;
  }

  /* العنوان */
  .title-row h2{

    font-size:30px !important;

    line-height:1.2 !important;
  }

  /* الزر */
  .explore-btn{
    justify-self: center;
 align-self:center !important;
    font-size:13px !important;
margin-bottom: 50px;
    padding:14px 22px !important;
  }

  /* السلايدر */
  .slider{

    width:100% !important;

    overflow:hidden !important;
  }

  /* الصور */
  .slider-track img{

    width:220px !important;

    height:400px !important;

    object-fit:contain !important;
  }

  /* الأسهم */
  .arrow1{

    width:42px !important;

    height:42px !important;

    font-size:18px !important;
  }

  /* الدوتس */
  .dots{

    margin-top:28px !important;
  }
  .about-feature .about{
  margin-top: -10px;
  margin-bottom: 150px;
 }
  .about-crumb-wrap{
margin-top: 50px;
  }
}

/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (min-width:768px) and (max-width:1199px){

  /* صف العنوان */
  .title-row{

    width:100% !important;

    display:grid !important;

    grid-template-columns:1fr auto !important;

    align-items:center !important;

    gap:20px !important;

    margin-bottom:20px !important;
  }

  /* العنوان */
  .title-row h2{

    justify-self:start !important;

    align-self:center !important;

    text-align:left !important;

    font-size:42px !important;

    line-height:1.15 !important;

    margin:0 !important;
  }

  /* الزر */
  .explore-btn{

    justify-self:end !important;

    align-self:center !important;

    margin:0 !important;

    font-size:15px !important;

    padding:18px 24px !important;
  }

  /* السلايدر */
  .slider{

    position:relative !important;

    width:100% !important;
  }

  /* الصور */
  .slider-track img{

    width:320px !important;

    height:500px !important;

    object-fit:contain !important;
  }

  /* الأ[هم */
  .arrow1{

    width:50px !important;

    height:140px !important;

    font-size:28px !important;

    border-radius:40px !important;

    top:50% !important;

    transform:translateY(-50%) !important;
  }

  /* السهم اليسار */
  .arrow1.prev{

    left: 20px !important;
  }

  /* السهم اليمين */
  .arrow1.next{

    right: 20px !important;
  }
  .about-crumb-wrap{
margin-top: 50px;
  }

}

/* Responsev Shop */
/* =========================================
   🔥 LARGE DESKTOP (1600px+)
========================================= */

@media (min-width:1600px){

  .products-grid,
  .shop-products,
  .products-wrapper{

    display:grid !important;

    grid-template-columns:repeat(4,1fr) !important;

    gap:34px !important;
  }

  .product-image img{

    height:320px !important;

    object-fit:contain !important;
  }
}


/* =========================================
   🔥 DESKTOP (1400px - 1599px)
========================================= */

@media (min-width:1400px) and (max-width:1599px){

  .products-grid,
  .shop-products,
  .products-wrapper{

    display:grid !important;

    grid-template-columns:repeat(3,1fr) !important;

    gap:30px !important;
  }

  .product-image img{

    height:290px !important;

    object-fit:contain !important;
  }
}


/* =========================================
   🔥 SMALL DESKTOP (1200px - 1399px)
========================================= */

@media (min-width:1200px) and (max-width:1399px){

  .products-grid,
  .shop-products,
  .products-wrapper{

    display:grid !important;

    grid-template-columns:repeat(3,1fr) !important;

    gap:24px !important;
  }

  .product-image img{

    height:260px !important;

    object-fit:contain !important;
  }
}


/* =========================================
   🔥 LAPTOP (992px - 1199px)
========================================= */

@media (min-width:992px) and (max-width:1199px){

  .products-grid,
  .shop-products,
  .products-wrapper{

    display:grid !important;

    grid-template-columns:repeat(2,1fr) !important;

    gap:18px !important;
  }

  .product-image img{

    height:220px !important;

    object-fit:contain !important;
  }
}


/* =========================================
   🔥 TABLET (768px - 991px)
========================================= */

@media (min-width:768px) and (max-width:991px){

  /* اخفاء ازرار الاعمدة فقط */
  .shop-view,
  .shop-views,
  .grid-buttons,
  .column-buttons,
  .layout-switcher{

    display:none !important;
  }

  .products-grid,
  .shop-products,
  .products-wrapper{

    display:grid !important;

    grid-template-columns:repeat(2,1fr) !important;

    gap:14px !important;
  }

  .product-card{

    padding:10px !important;
  }

  .product-image img{

    height:180px !important;

    object-fit:contain !important;
  }

  .product-meta h4{

    font-size:15px !important;
  }

  .product-meta p{

    font-size:12px !important;
  }

  .product-actions button{

    font-size:12px !important;

    padding:10px !important;
  }
}
/* =========================================
   🔥 MOBILE FIX FINAL
========================================= */

/* =========================================
   🔥 MOBILE CLEAN FIX
========================================= */

@media (max-width:767px){

  /* 🔥 اخفاء ازرار الاعمدة */
  .shop-view,
  .shop-views,
  .grid-buttons,
  .column-buttons,
  .layout-switcher,
  .view-buttons,
  .view-btn,
  .grid-btn{

    display:none !important;
  }

  /* =====================================
  🔥 toolbar
  ===================================== */

  .shop-top,
  .shop-toolbar{

    display:flex !important;

    align-items:center !important;

    justify-content:space-between !important;

    gap:10px !important;

    margin-bottom:18px !important;
  }

  .shop-top p,
  .shop-toolbar p{

    font-size:12px !important;

    margin:0 !important;
  }

  .shop-toolbar,
  .products-toolbar{

    width:100% !important;

    display:flex !important;

    justify-content:flex-start !important;

    align-items:center !important;

    margin-bottom:20px !important;
  }

  .shop-toolbar p,
  .products-toolbar p,
  .woocommerce-result-count{

    font-size:14px !important;

    margin:0 !important;
  }

  /* =====================================
  🔥 filters
  ===================================== */

  .products-filter,
  .shop-filters{

    width:100% !important;

    display:flex !important;

    flex-direction:row !important;

    justify-content:center !important;

    align-items:center !important;

    gap:8px !important;

    flex-wrap:nowrap !important;
  }

  .products-filter select,
  .shop-filters select{

    flex:0 0 48% !important;

    width:48% !important;

    min-width:0 !important;

    max-width:48% !important;

    height:50px !important;

    padding:0 12px !important;

    font-size:12px !important;

    border-radius:16px !important;
  }

  /* =====================================
  🔥 المنتجات فقط
  ===================================== */

  .products-grid,
  .shop-products,
  .products-wrapper{

    display:grid !important;

    grid-template-columns:repeat(2,1fr) !important;

    gap:8px !important;
  }

  /* =====================================
  🔥 الكارد فقط داخل المنتجات
  ===================================== */

  .products-grid .product-card,
  .shop-products .product-card,
  .products-wrapper .product-card{

    width:100% !important;

    max-width:100% !important;

    min-width:0 !important;

    padding:5px !important;

    border-radius:14px !important;

    overflow:hidden !important;
  }

  /* =====================================
  🔥 الصورة
  ===================================== */

  .products-grid .product-image,
  .shop-products .product-image,
  .products-wrapper .product-image{

    padding:2px !important;
  }

  .products-grid .product-image img,
  .shop-products .product-image img,
  .products-wrapper .product-image img{

    width:100% !important;

    height:200px !important;

    object-fit:contain !important;
  }

  /* =====================================
  🔥 النص
  ===================================== */

  .products-grid .product-meta,
  .shop-products .product-meta,
  .products-wrapper .product-meta{

    padding:10px !important;
  }

  .products-grid .product-meta h4,
  .shop-products .product-meta h4,
  .products-wrapper .product-meta h4{

    font-size:15px !important;

    line-height:1.1 !important;

    margin:3px 0 !important;

    white-space:nowrap !important;

    overflow:hidden !important;

    text-overflow:ellipsis !important;
  }

  .products-grid .product-meta p,
  .shop-products .product-meta p,
  .products-wrapper .product-meta p{

    font-size:15px !important;

    margin:0 !important;
  }

  /* =====================================
  🔥 السعر
  ===================================== */

  .products-grid .price-row strong,
  .shop-products .price-row strong,
  .products-wrapper .price-row strong{

    font-size:20px !important;
  }

  /* =====================================
  🔥 الزر
  ===================================== */

  .products-grid .product-actions button,
  .shop-products .product-actions button,
  .products-wrapper .product-actions button{
    width:100% !important;

    padding:8px !important;

    font-size:14px !important;

    border-radius:15px !important;
  }

  /* =====================================
  🔥 الايقونات
  ===================================== */

  .products-grid .image-icons,
  .shop-products .image-icons,
  .products-wrapper .image-icons{

    gap:4px !important;
  }

  .products-grid .image-icons .icon,
  .shop-products .image-icons .icon,
  .products-wrapper .image-icons .icon{

    width:22px !important;

    height:22px !important;
  }

  /* =====================================
  🔥 البادجات
  ===================================== */

  .products-grid .sale-badge,
  .products-grid .discount-badge,
  .shop-products .sale-badge,
  .shop-products .discount-badge,
  .products-wrapper .sale-badge,
  .products-wrapper .discount-badge{

    font-size:9px !important;

    padding:3px 6px !important;

    border-radius:8px !important;
  }

}
/* responsev product  */

/* =========================================
🔥 LARGE DESKTOP 1400+
========================================= */

@media (min-width:1400px){

  .product-detail{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;
  }

  .xtra-product-visual img{

    width:100%;

    max-width:700px;
  }

  .buy-row{

    display:flex;

    align-items:center;

    gap:16px;

    flex-wrap:wrap;
  }
}


/* =========================================
🔥 DESKTOP 1200 - 1399
========================================= */

@media (max-width:1399px){

  .product-detail{

    gap:70px;
  }

  .xtra-product-visual img{

    max-width:620px;
  }

  .xtra-product-copy h1{

    font-size:42px;
  }
}


/* =========================================
🔥 SMALL DESKTOP 992 - 1199
========================================= */

@media (max-width:1199px){

  .product-detail{

    gap:50px;

    align-items:center;
  }

  .xtra-product-visual img{

    max-width:520px;
  }

  .xtra-product-copy h1{

    font-size:36px;
  }

  .buy-row{

    gap:12px;
  }
}


/* =========================================
🔥 TABLET 768 - 991
========================================= */

@media (max-width:991px){

  .product-detail{

    display:flex;

    flex-direction:column;

    text-align:center;

    gap:40px;
  }

  /* 🔥 الصورة اول */
  .xtra-product-visual{

    order:-1;

    width:100%;

    display:flex;

    justify-content:center;
  }

  .xtra-product-visual img{

    width:100%;

    max-width:500px;
  }

  /* 🔥 الكلام تحت */
  .xtra-product-copy{

    width:100%;

    margin:auto;
  }

  /* 🔥 ازرار جنب بعض */
  .buy-row{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;
  }

  /* 🔥 توسيط */
  .product-head-top,
  .rating-row,
  .single-price,
  .share-box{

    justify-content:center;

    text-align:center;
  }


}


/* =========================================
🔥 LARGE MOBILE 576 - 767
========================================= */


/* =========================================
🔥 MOBILE 0 - 575
========================================= */

@media (max-width:575px){

  .page-title{

    text-align:center;

    padding:60px 16px 20px;
  }

  .page-title h1{

    font-size:34px;

    line-height:1.2;
  }

  .page-title p{

    font-size:13px;
  }

  .product-detail{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    gap:25px;

    padding:0 16px;
  }

  /* 🔥 الصورة فوق */
  .xtra-product-visual{

    order:-1;

    width:100%;

    display:flex;

    justify-content:center;
  }

  .xtra-product-visual img{

    width:100%;

    max-width:280px;
  }

  /* 🔥 الكلام */
  .xtra-product-copy{

    width:100%;
  }

  .xtra-product-copy h1{

    font-size:26px;
  }

  .xtra-product-copy p{

    font-size:13px;
    line-height:1.6;
  }

  /* 🔥 الازرار والايقونات جنب بعض */
  .buy-row{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    flex-wrap:wrap;
  }

  .add-cart-btn{

    padding:12px 16px;

    font-size:13px;
  }

  .round-buy{

    width:44px;

    height:44px;
  }

  .qty-control{

    justify-content:center;
  }

  /* 🔥 توسيط كامل */
  .product-head-top,
  .rating-row,
  .share-box div,
  .single-price{

    justify-content:center;

    text-align:center;
  }

  /* 🔥 اخفاء السلايدر */
 
  .sticky-product-bar{

    display:none !important;
  }
}
/* =========================================
🔥 MOBILE FIX PRODUCT PAGE
========================================= */

/* =========================================
🔥 MOBILE PRODUCT PAGE FINAL FIX
========================================= */

@media (max-width:767px){

  /* =====================================
  🔥 اخفاء السلايدر السفلي فقط
  ===================================== */

  .sticky-product-bar{
    display:none !important;
  }

  /* =====================================
  🔥 المنتج
  ===================================== */

  .product-detail{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    text-align:center !important;

    gap:24px !important;

    padding:0 18px !important;
  }

  /* =====================================
  🔥 تثبيت صورة المنتج فعلياً
  ===================================== */

  .xtra-product-visual{

    order:-1 !important;

    position:-webkit-sticky !important;

    position:sticky !important;

    top:90px !important;

    z-index:9999 !important;

    width:100% !important;

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    pointer-events:none !important;
  }

  .xtra-product-visual img{

    width:100% !important;

    max-width:260px !important;

    object-fit:contain !important;

    display:block !important;

    margin:auto !important;
  }

  /* =====================================
  🔥 النص
  ===================================== */

  .xtra-product-copy{

    width:100% !important;

    text-align:center !important;
  }

  .xtra-product-copy h1{

    font-size:30px !important;

    line-height:1.2 !important;
  }

  .xtra-product-copy p{

    font-size:14px !important;

    line-height:1.8 !important;
  }

  /* =====================================
  🔥 لا تلمس ازرار فوق
  ===================================== */

  .product-top-tools{

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    gap:14px !important;
  }

  /* =====================================
  🔥 ازرار الشراء
  ===================================== */

  .buy-row{

    display:flex !important;

    flex-wrap:wrap !important;

    justify-content:center !important;

    align-items:center !important;

    gap:12px !important;
  }

  .round-buy{

    width:56px !important;

    height:56px !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;
  }

  /* =====================================
  🔥 الشير
  ===================================== */

  .share-box{

    text-align:center !important;

    margin-top:30px !important;
  }

  .share-box div{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    flex-wrap:wrap !important;

    gap:26px !important;

    margin-top:16px !important;
  }

  .share-box i{

    font-size:22px !important;
  }

  /* =====================================
  🔥 اخفاء كل التابات
  ===================================== */

  .product-tab-panel{

    visibility:hidden !important;

    opacity:0 !important;

    height:0 !important;

    overflow:hidden !important;

    padding:0 !important;

    margin:0 !important;
  }

  /* =====================================
  🔥 فقط التاب النشطة تظهر
  ===================================== */

  .product-tab-panel.active{

    visibility:visible !important;

    opacity:1 !important;

    height:auto !important;

    overflow:visible !important;

    display:block !important;
  }

  /* =====================================
  🔥 الريفيو
  ===================================== */

  .reviews-panel{

    display:flex !important;

    flex-direction:column !important;

    gap:40px !important;
  }

  /* التعليقات فوق */

  .review-list{

    order:1 !important;

    width:100% !important;
  }

  /* الفورم تحت */

  .review-score{

    order:2 !important;

    width:100% !important;

    margin-top:30px !important;
  }

  /* =====================================
  🔥 شكل التعليق
  ===================================== */

  .review-list article{

    position:relative !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:flex-start !important;

    text-align:left !important;

    padding:22px 18px 18px 78px !important;

    border-radius:24px !important;

    overflow:hidden !important;

    margin-bottom:24px !important;
  }

  /* الصورة */

  .review-list article img{

    position:absolute !important;

    top:22px !important;

    left:18px !important;

    width:44px !important;

    height:44px !important;

    border-radius:50% !important;

    object-fit:cover !important;
  }

  /* النجوم فوق */

  .review-list article span{

    order:-1 !important;

    align-self:flex-end !important;

    margin-bottom:10px !important;

    font-size:12px !important;
  }

  /* النص */

  .review-list article p{

    width:100% !important;

    max-width:100% !important;

    white-space:normal !important;

    overflow-wrap:break-word !important;

    word-break:break-word !important;

    line-height:1.8 !important;

    font-size:12px !important;

    margin-top:14px !important;
  }

  /* =====================================
  🔥 tabs
  ===================================== */

  .product-tabs{

    overflow-x:auto !important;

    white-space:nowrap !important;

    display:flex !important;

    gap:12px !important;

    padding-bottom:10px !important;
  }

  .product-tabs button{

    flex:none !important;
  }

}
/* =========================================
🔥 MOBILE FIX FINAL
========================================= */

@media (max-width:767px){

  /* =====================================
  🔥 تثبيت صورة المنتج فعلياً
  ===================================== */

  .xtra-product-visual{

    position:sticky !important;
    position:-webkit-sticky !important;

    top:90px !important;

    z-index:9999 !important;

    align-self:flex-start !important;

    height:fit-content !important;
  }

  /* =====================================
  🔥 الشير
  ===================================== */

  .share-box div{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    gap:28px !important;

    flex-wrap:wrap !important;
  }

  /* =====================================
  🔥 اخفاء كل التابات
  ===================================== */

  .product-tab-panel{

    display:none !important;
  }

  /* =====================================
  🔥 فقط التاب النشطة تظهر
  ===================================== */

  .product-tab-panel.active{

    display:block !important;
  }

  /* =====================================
  🔥 الريفيو فقط
  ===================================== */

  .reviews-panel.active{

    display:flex !important;

    flex-direction:column-reverse !important;

    gap:40px !important;
  }

  /* =====================================
  🔥 التعليقات
  ===================================== */

  .review-list{

    width:100% !important;
  }

  /* =====================================
  🔥 الفورم
  ===================================== */

  .review-score{

    width:100% !important;
  }

  /* =====================================
  🔥 الريفيو كارد
  ===================================== */

  .review-list article{

    grid-template-columns:50px 1fr !important;

    gap:16px !important;

    padding:22px !important;

    overflow:hidden !important;
  }

  /* =====================================
  🔥 خط العمود
  ===================================== */

  .review-list article::before{

    left:47px !important;
  }

  /* =====================================
  🔥 النجوم فوق
  ===================================== */

  .review-list article span{

    grid-column:2 !important;

    margin-bottom:8px !important;

    font-size:13px !important;
  }

  /* =====================================
  🔥 النص داخل البوكس
  ===================================== */

  .review-list p{

    width:100% !important;

    max-width:100% !important;

    font-size:13px !important;

    line-height:1.8 !important;

    white-space:normal !important;

    word-break:break-word !important;

    overflow-wrap:break-word !important;
  }

  /* =====================================
  🔥 الفورم تحت التعليقات
  ===================================== */

  .review-form{

    margin-top:20px !important;
  }

  /* =====================================
  🔥 inputs تحت بعض
  ===================================== */

  .review-fields{

    grid-template-columns:1fr !important;
  }

}
@media (max-width:767px){

  .reviews-panel.active{

    display:grid !important;

    grid-template-columns:1fr !important;

    gap:40px !important;
  }

  /* التعليقات فوق */

  .review-list{

    order:1 !important;
  }

  /* الفورم تحت */

  .review-score{

    order:2 !important;
  }

}
@media (max-width:767px){

  /* 🔥 ابعاد عناوين كل التابات عن التوب */

  .product-tab-panel h2,
  .review-list h2,
  .faq-tab-panel h2,
  .shipping-panel h2{

    margin-top:35px !important;
  }

}
/* =========================================
🔥 FAQ SECTION
========================================= */


/* =========================================
🔥 LARGE LAPTOP
========================================= */

@media (max-width:1400px){

  .faq-tab-panel{

    gap:50px;
  }

  .faq-tab-panel img{

    max-width:300px;
  }

}

/* =========================================
🔥 LAPTOP
========================================= */

@media (max-width:1200px){

  .faq-tab-panel{

    grid-template-columns:280px 1fr;

    gap:40px;
  }

  .faq-tab-panel li b{

    font-size:20px;
  }

  .faq-tab-panel li p{

    font-size:15px;
  }

}

/* =========================================
🔥 TABLET
========================================= */

/* =========================================
🔥 TABLET
========================================= */

@media (max-width:992px){

  /* =====================================
  🔥 اخفاء السلايدر السفلي بالكامل
  ===================================== */

  .sticky-product-bar,
  body .sticky-product-bar,
  .sticky-bar{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
  }

  /* =====================================
  🔥 FAQ LAYOUT
  ===================================== */

  .faq-tab-panel{

    display:block !important;

    width:100% !important;
  }

  /* =====================================
  🔥 الصورة يسار
  ===================================== */

  .faq-tab-panel img{

    float:left !important;

    width:240px !important;

    max-width:40% !important;

    height:auto !important;

    object-fit:contain !important;

    margin:0 30px 20px 0 !important;
  }

  /* =====================================
  🔥 القائمة
  ===================================== */

  .faq-tab-panel ul{

    width:100% !important;

    margin:0 !important;

    padding:0 !important;

    list-style:none !important;
  }

  /* =====================================
  🔥 العنصر
  ===================================== */

  .faq-tab-panel li{

    position:relative !important;

    padding-left:22px !important;

    margin-bottom:28px !important;

    text-align:left !important;
  }

  /* =====================================
  🔥 النقطة جنب السؤال
  ===================================== */

  .faq-tab-panel li::before{

    content:"" !important;

    position:absolute !important;

    left:0 !important;

    top:12px !important;

    width:8px !important;
    height:8px !important;

    border-radius:50% !important;

    background:#fff !important;
  }

  /* =====================================
  🔥 السؤال
  ===================================== */

  .faq-tab-panel li b{

    display:block !important;

    font-size:18px !important;

    line-height:1.5 !important;

    margin-bottom:10px !important;
  }

  /* =====================================
  🔥 النص
  ===================================== */

  .faq-tab-panel li p{

    font-size:14px !important;

    line-height:1.9 !important;

    color:#cfcfcf !important;

    word-break:break-word !important;
  }

  /* =====================================
  🔥 تنظيف الفلوت
  ===================================== */

  .faq-tab-panel::after{
    content:"";
    display:block;
    clear:both;
  }

}

/* =========================================
🔥 SMALL TABLET
========================================= */

@media (max-width:768px){

  .faq-tab-panel{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

    text-align:center !important;
  }

  /* الصورة */

  .faq-tab-panel img{

    max-width:220px !important;

    margin:0 auto 30px !important;
  }

  /* القائمة */

  .faq-tab-panel ul{

    width:100% !important;
  }

  /* العنصر */

  .faq-tab-panel li{

    padding-left:22px !important;

    text-align:left !important;

    margin-bottom:28px !important;}}

    /* =========================================
🔥 اخفاء السلايدر السفلي بكل الشاشات الصغيرة
========================================= */

@media (max-width:1400px){

  .sticky-product-bar,
  body .sticky-product-bar,
  .sticky-bar{

    display:none !important;

    opacity:0 !important;

    visibility:hidden !important;

    pointer-events:none !important;

    transform:translateY(200px) !important;
  }

}
/* =========================================
🔥 اظهار related + recently viewed
في كل الشاشات
========================================= */

.product-recommendations,
.recently-viewed,
.related-products{

  display:block !important;

  visibility:visible !important;

  opacity:1 !important;
}

/* 🔥 السلايدر الداخلي */
.product-recommendations .swiper,
.recently-viewed .swiper,
.related-products .swiper{

  overflow:visible !important;
}

/* 🔥 الكاردات */
.product-recommendations .product-card,
.recently-viewed .product-card,
.related-products .product-card{

  display:flex !important;

  flex-direction:column !important;
}
/* =========================================
🔥 PRODUCT PAGE SLIDERS RESPONSIVE ONLY
========================================= */

/* فقط صفحة المنتج */
.product-page .product-recommendations,
.product-page .recently-viewed{

  display:block !important;

  visibility:visible !important;

  opacity:1 !important;

  overflow:hidden !important;

  margin-top:40px !important;
}

/* السوايبر */
.product-page .product-recommendations .swiper,
.product-page .recently-viewed .swiper{

  overflow:visible !important;
}

/* الكارد */
.product-page .product-recommendations .product-card,
.product-page .recently-viewed .product-card{

  width:100% !important;

  min-width:0 !important;
}

/* الصورة */
.product-page .product-recommendations .product-image img,
.product-page .recently-viewed .product-image img{

  width:100% !important;

  height:auto !important;

  object-fit:contain !important;
}

/* =========================================
🔥 LARGE TABLET
========================================= */

@media (max-width:1200px){

  .product-page .product-recommendations .swiper-slide,
  .product-page .recently-viewed .swiper-slide{

    width:33.333% !important;
  }

  .product-page .product-card{

    transform:scale(.92);
  }
}

/* =========================================
🔥 TABLET
========================================= */

@media (max-width:992px){

  .product-page .product-recommendations .swiper-slide,
  .product-page .recently-viewed .swiper-slide{

    width:50% !important;
  }

  .product-page .product-card{

    transform:scale(.88);
  }
}

/* =========================================
🔥 SMALL TABLET
========================================= */

@media (max-width:768px){

  .product-page .product-recommendations .swiper-slide,
  .product-page .recently-viewed .swiper-slide{

    width:50% !important;
  }

  .product-page .product-card{

    transform:scale(.82);
  }

  .product-page .product-meta h4{

    font-size:14px !important;
  }

  .product-page .price-row strong{

    font-size:16px !important;
  }
}

/* =========================================
🔥 MOBILE
========================================= */

@media (max-width:576px){

  .product-page .product-recommendations .swiper-slide,
  .product-page .recently-viewed .swiper-slide{

    width:100% !important;
  }

  .product-page .product-card{

    transform:scale(.78);

    margin:auto !important;
  }

  .product-page .product-image img{

    max-height:180px !important;
  }

  .product-page .product-meta{

    padding:12px !important;
  }

  .product-page .product-meta h4{

    font-size:13px !important;
  }

  .product-page .price-row strong{

    font-size:15px !important;
  }
}


/* =========================================
🔥 FORCE SHOW PRODUCT SLIDERS
========================================= */

@media (max-width:1200px){

  .product-recommendations,
  .recently-viewed,
  .related-products,
  .products-slider,
  .products-carousel{

    display:block !important;

    opacity:1 !important;

    visibility:visible !important;

    height:auto !important;

    overflow:visible !important;
  }

  .product-recommendations *,
  .recently-viewed *,
  .related-products *{

    visibility:visible !important;
  }

  .product-recommendations .swiper-wrapper,
  .recently-viewed .swiper-wrapper{

    display:flex !important;
  }

  .product-recommendations .swiper-slide,
  .recently-viewed .swiper-slide{

    width:280px !important;

    flex-shrink:0 !important;
  }

  .product-recommendations .product-card,
  .recently-viewed .product-card{

    display:block !important;

    transform:none !important;
  }
}
/* =========================================
🔥 PRODUCT PAGE CARD CONTROLS ONLY
========================================= */

/* =====================================
🔥 LARGE TABLET
===================================== */

@media (max-width:1200px){

  /* ديف الايقونات */
  .product-page .product-recommendations .image-icons{

    gap:6px !important;

    padding:10px 14px !important;

    border-radius:18px !important;
  }

  /* الايقونات */
  .product-page .product-recommendations .image-icons .icon,
  .product-page .product-recommendations .image-icons i{

    width:34px !important;
    height:34px !important;

    font-size:14px !important;
  }

  /* الزر */
  .product-page .product-recommendations .product-actions button{

    height:42px !important;

    padding:0 16px !important;

    font-size:13px !important;

    border-radius:14px !important;
  }
}

/* =====================================
🔥 TABLET
===================================== */

@media (max-width:992px){

  .product-page .product-recommendations .image-icons{

    gap:5px !important;

    padding:8px 12px !important;

    border-radius:16px !important;
  }

  .product-page .product-recommendations .image-icons .icon,
  .product-page .product-recommendations .image-icons i{

    width:30px !important;
    height:30px !important;

    font-size:12px !important;
  }

  .product-page .product-recommendations .product-actions button{

    height:38px !important;

    padding:0 14px !important;

    font-size:12px !important;

    border-radius:12px !important;
  }
}

/* =====================================
🔥 MOBILE
===================================== */

@media (max-width:576px){

  .product-page .product-recommendations .image-icons{

    gap:4px !important;

    padding:6px 10px !important;

    border-radius:14px !important;
  }

  .product-page .product-recommendations .image-icons .icon,
  .product-page .product-recommendations .image-icons i{

    width:26px !important;
    height:26px !important;

    font-size:11px !important;
  }

  .product-page .product-recommendations .product-actions button{

    height:30px !important;

    padding:0 12px !important;

    font-size:8px !important;

    border-radius:15px !important;
  }
}
/* =========================================
🔥 FIX PRODUCT IMAGE + BUTTONS
========================================= */

/* =========================================
🔥 PRODUCT BUY SECTION CLEAN
========================================= */

/* =====================================
🔥 العداد ثابت بكل الشاشات
===================================== */

.buy-row .qty-control{

  width:170px !important;

  min-width:170px !important;

  max-width:170px !important;

  height:58px !important;

  flex:none !important;
}

/* ازرار العداد */

.buy-row .qty-control button{

  width:46px !important;

  height:46px !important;

  font-size:22px !important;
}

/* الرقم */

.buy-row .qty-control span,
.buy-row .qty-control input{

  width:40px !important;

  font-size:22px !important;

  text-align:center !important;
}


/* =====================================
🔥 الشاشات الصغيرة فقط
===================================== */

@media (max-width:767px){

  /* =================================
  🔥 الصورة ثابتة وما تنزل
  ================================= */

  .xtra-product-visual{

    position:static !important;

    transform:none !important;

    top:auto !important;

    left:auto !important;

    z-index:1 !important;

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;
  }

  .xtra-product-visual img{

    width:100% !important;

    max-width:260px !important;

    height:auto !important;

    object-fit:contain !important;

    display:block !important;

    margin:auto !important;
  }

  /* =================================
  🔥 الازرار جنب بعض دائماً
  ================================= */

  .buy-row{

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    justify-content:center !important;

    flex-wrap:nowrap !important;

    gap:14px !important;
  }

  /* =================================
  🔥 زر add to cart
  ================================= */

  .add-cart-btn{

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    justify-content:center !important;

    gap:8px !important;

    white-space:nowrap !important;

    word-break:normal !important;

    line-height:1 !important;

    overflow:hidden !important;

    flex:1 !important;

    max-width:220px !important;

    height:52px !important;

    font-size:13px !important;

    border-radius:18px !important;

    text-align:center !important;
  }

  .add-cart-btn i,
  .add-cart-btn svg{

    flex:none !important;
  }

  /* =================================
  🔥 الايقونات
  ================================= */

  .round-buy{

    width:52px !important;

    height:52px !important;

    min-width:52px !important;

    border-radius:50% !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;
  }

  /* =================================
  🔥 العداد بالموبايل
  ================================= */

  .buy-row .qty-control{

    width:150px !important;

    min-width:150px !important;

    max-width:150px !important;

    height:52px !important;
  }

  .buy-row .qty-control button{

    width:40px !important;

    height:40px !important;

    font-size:18px !important;
  }

  .buy-row .qty-control span,
  .buy-row .qty-control input{

    font-size:18px !important;
  }

}


/* =====================================
🔥 لما الشاشة تكبر
🔥 كبر نص add to cart فقط
===================================== */

@media (min-width:768px){

  .add-cart-btn{

    font-size:18px !important;
  }

}

@media (min-width:1200px){

  .add-cart-btn{

    font-size:20px !important;
  }

}
/* =========================================
🔥 PRODUCT LAYOUT FINAL
========================================= */


/* =========================================
🔥 TABLET FIX
🔥 نفس نظام الموبايل لكن لشاشة اكبر
========================================= */

@media (min-width:768px) and (max-width:991px){

  /* الصورة فوق */
  .product-detail{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    text-align:center !important;
  }

  /* الصورة ثابتة */
  .xtra-product-visual{

    order:-1 !important;

    position:static !important;

    top:auto !important;

    transform:none !important;

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    width:100% !important;
  }

  .xtra-product-visual img{

    width:100% !important;

    max-width:420px !important;

    height:auto !important;

    object-fit:contain !important;

    display:block !important;

    margin:auto !important;
  }

  /* الازرار */
  .buy-row{

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    justify-content:center !important;

    flex-wrap:nowrap !important;

    gap:16px !important;
  }

}
/* =========================================
🔥 FIX PRODUCT SLIDER ARROWS
========================================= */

/* خلي الاسهم فوق كل العناصر */
.product-detail .swiper-button-prev,
.product-detail .swiper-button-next{

  position:relative !important;

  z-index:99999 !important;

  pointer-events:auto !important;
}

/* لا تخلي الصورة تغطي عليهم */
.xtra-product-visual{

  z-index:1 !important;

  pointer-events:none !important;
}

/* لكن السوايبر نفسه يضل شغال */
.xtra-product-visual .swiper,
.xtra-product-visual .swiper-wrapper,
.xtra-product-visual .swiper-slide{

  pointer-events:auto !important;
}
/* FIX PREV NEXT BUTTONS */

.product-prev,
.product-next{

  position:relative !important;

  z-index:999999 !important;

  pointer-events:auto !important;
}

.product-head-top,
.product-top-tools{

  position:relative !important;

  z-index:999999 !important;
}

.xtra-product-visual{

  pointer-events:none !important;
}
/* Responsev Home */
/* =========================================
🔥 HOME HERO RESPONSIVE ONLY
🔥 لا يلمس اي section ثانية
========================================= */


/* =========================================
🔥 LARGE DESKTOP 1400+
========================================= */

@media (min-width:1400px){

  .home-page .hero{

    display:grid !important;

    grid-template-columns:1fr 1fr !important;

    align-items:center !important;

    gap:100px !important;

    min-height:100vh !important;
  }

  .home-page .hero-content{

    text-align:left !important;
  }

  .home-page .hero-content h1{

    font-size:88px !important;

    line-height:1.02 !important;
  }

  .home-page .hero-content p{

    font-size:26px !important;

    line-height:1.8 !important;
  }

  .home-page .hero-bike{

    display:flex !important;

    justify-content:flex-end !important;

    align-items:flex-end !important;
  }

  .home-page .hero-bike img{

    width:100% !important;

    max-width:780px !important;

    height:auto !important;

    object-fit:contain !important;
  }
}


/* =========================================
🔥 DESKTOP 1200 - 1399
========================================= */

@media (max-width:1399px){

  .home-page .hero{

    gap:70px !important;
  }

  .home-page .hero-content h1{

    font-size:72px !important;
  }

  .home-page .hero-content p{

    font-size:22px !important;
  }

  .home-page .hero-bike img{

    max-width:680px !important;
  }
}


/* =========================================
🔥 SMALL DESKTOP 992 - 1199
========================================= */

@media (max-width:1199px){

  .home-page .hero{

    gap:50px !important;
  }

  .home-page .hero-content h1{

    font-size:58px !important;

    line-height:1.08 !important;
  }

  .home-page .hero-content p{

    font-size:20px !important;
  }

  .home-page .hero-bike img{

    max-width:560px !important;
  }
}


/* =========================================
🔥 TABLET 768 - 991
🔥 الصورة تحت
========================================= */

@media (max-width:991px){

  .home-page .hero{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

    text-align:center !important;

    gap:50px !important;

    padding:80px 30px !important;
  }

  /* الكلام فوق */

  .home-page .hero-content{

    order:1 !important;

    width:100% !important;

    max-width:900px !important;

    margin:auto !important;
  }

  .home-page .hero-content h1{

    font-size:54px !important;

    line-height:1.12 !important;
  }

  .home-page .hero-content p{

    font-size:20px !important;

    line-height:1.9 !important;

    max-width:760px !important;

    margin:auto !important;
  }

  /* الصورة تحت */

  .home-page .hero-bike{

    order:2 !important;

    width:100% !important;

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;
  }

  .home-page .hero-bike img{

    width:100% !important;

    max-width:520px !important;

    height:auto !important;

    object-fit:contain !important;
  }

  /* الازرار */

  .home-page .hero-buttons{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    gap:18px !important;

    flex-wrap:wrap !important;
  }
}


/* =========================================
🔥 LARGE MOBILE 576 - 767
========================================= */

@media (max-width:767px){

  .home-page .hero{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

    text-align:center !important;

    gap:40px !important;

    padding:70px 22px !important;
  }
.hero-copy h1{
  font-size: 30px;
}
  .home-page .hero-content{

    width:100% !important;
  }

  .home-page .hero-content h1{

    font-size:42px !important;

    line-height:1.15 !important;
  }

  .home-page .hero-content p{

    font-size:17px !important;

    line-height:1.9 !important;

    max-width:100% !important;

    margin:auto !important;
  }

  .home-page .hero-bike{
    width:100% !important;

    display:flex !important;

    justify-content:center !important;
  }

  .home-page .hero-bike img{

    width:100% !important;

    max-width:420px !important;

    height:auto !important;

    object-fit:contain !important;
  }

  .home-page .hero-price{

    font-size:74px !important;
  }

  .home-page .hero-buttons{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    gap:14px !important;

    flex-wrap:wrap !important;
  }
}


/* =========================================
🔥 MOBILE 0 - 575
========================================= */

@media (max-width:575px){

  .home-page .hero{

    padding:60px 18px !important;

    gap:34px !important;
  }

  .home-page .hero-content h1{

    font-size:32px !important;

    line-height:1.2 !important;
  }

  .home-page .hero-content p{

    font-size:15px !important;

    line-height:1.95 !important;
  }

  .home-page .hero-bike img{

    width:100% !important;

    max-width:300px !important;

    height:auto !important;
  }

  .home-page .hero-price{

    font-size:56px !important;
  }

  .home-page .hero-buttons{

    flex-direction:column !important;

    width:100% !important;

    gap:16px !important;
  }

  .home-page .hero-btn{

    width:100% !important;

    max-width:260px !important;

    height:56px !important;

    margin:auto !important;

    font-size:15px !important;
  }
}
/* =========================================
🔥 ABOUT SECTION RESPONSIVE FIX


/* =========================================
📱 من 0 الى 1199
الصورة تحت دائماً
========================================= */

@media screen and (max-width:1199px){

  .about-section{

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    gap:40px !important;

    width:100% !important;

    margin:0 auto !important;

    padding-inline:20px !important;
  }

  /* الكلام */

  .about-copy{

    order:1 !important;

    width:100% !important;

    max-width:760px !important;

    margin:0 auto !important;

    text-align:center !important;
  }

  .about-copy h2,
  .about-copy p{

    text-align:center !important;

    margin-left:auto !important;
    margin-right:auto !important;
  }

  .about-copy p{

    max-width:760px !important;

    line-height:1.9 !important;
  }

  /* العمودين */

  .feature-grid{

    width:100% !important;

    max-width:700px !important;

    margin:0 auto !important;

    display:grid !important;

    grid-template-columns:repeat(2,1fr) !important;

    justify-content:center !important;

    align-items:center !important;

    column-gap:28px !important;

    row-gap:22px !important;
  }

  .feature-grid li{

    display:flex !important;

    align-items:center !important;

    gap:12px !important;
  }

  /* الصورة تحت دائماً */

  .about-bike{

    order:3 !important;

    width:100% !important;

    display:flex !important;

    justify-content:center !important;

    margin:0 auto !important;
  }

  .about-bike img{

    width:100% !important;

    max-width:540px !important;

    height:auto !important;

    object-fit:contain !important;

    display:block !important;

    margin:0 auto !important;
  }

}

/* =========================================
💻 فقط من 1200 وفوق
يرجع التنسيق الاصلي (جنب)
========================================= */

@media screen and (min-width:1200px){

  .about-section{

    flex-direction:row !important;
  }

  .about-copy{

    order:2 !important;

    text-align:left !important;
  }

  .about-bike{

    order:1 !important;
  }

}
@media screen and (max-width:991px){

  .about-section{

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    width:100% !important;

    margin:0 auto !important;

    padding-inline:20px !important;

    gap:40px !important;

    overflow:hidden !important;
  }

  /* =====================================
  🔥 الكلام
  ===================================== */

  .about-copy{

    order:1 !important;

    width:100% !important;

    max-width:760px !important;

    margin:0 auto !important;

    padding:0 !important;

    text-align:center !important;
  }

  .about-copy h2{

    width:100% !important;

    max-width:100% !important;

    margin:0 auto 28px !important;

    text-align:center !important;

    line-height:1.18 !important;
  }

  .about-copy p{

    width:100% !important;

    max-width:760px !important;

    margin:0 auto 34px !important;

    text-align:center !important;

    line-height:1.9 !important;
  }

  /* =====================================
  🔥 العمودين بالنص الحقيقي
  ===================================== */

  .feature-grid{

    width:100% !important;

    max-width:700px !important;

    margin:0 auto !important;

    padding:0 !important;

    list-style:none !important;

    display:grid !important;

    grid-template-columns:repeat(2,minmax(0,1fr)) !important;

    justify-content:center !important;

    align-items:center !important;

    column-gap:28px !important;

    row-gap:22px !important;
  }

  .feature-grid li{

    width:100% !important;

    display:flex !important;

    align-items:center !important;

    justify-content:flex-start !important;

    gap:12px !important;

    text-align:left !important;
  }

  /* =====================================
  🔥 الصورة دائماً تحت
  ===================================== */

  .about-bike{

    order:3 !important;

    width:100% !important;

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    margin:0 auto !important;
  }

  .about-bike img{

    width:100% !important;

    max-width:500px !important;

    height:auto !important;

    object-fit:contain !important;

    display:block !important;

    margin:0 auto !important;
  }

}

/* =========================================
📱 موبايل متوسط
========================================= */

@media screen and (max-width:767px){

  .about-copy h2{

    font-size:38px !important;
  }

  .about-copy p{

    font-size:16px !important;
  }

  .feature-grid{

    max-width:560px !important;

    column-gap:18px !important;
  }

  .feature-grid li{

    font-size:15px !important;
  }

  .about-bike img{

    max-width:500px !important;
  }

}

/* =========================================
📱 موبايل صغير
========================================= */

@media screen and (max-width:575px){

  .about-section{

    padding-inline:16px !important;
  }

  .about-copy h2{

    font-size:30px !important;

    line-height:1.2 !important;
  }

  .about-copy p{

    font-size:15px !important;

    line-height:1.8 !important;
  }

  .feature-grid{

    max-width:100% !important;

    column-gap:14px !important;

    row-gap:18px !important;
  }

  .feature-grid li{

    font-size:15px !important;

    gap:4px !important;
  }

  .about-bike img{
margin-top: -50px !important;
    max-width:300px !important;
    /* margin-bottom: -50px !important; */
  }
.ride-panel#services{
  margin-top:-120px !important;
}

}
.ride-panel#services{
  margin-top: 250px;
}

.marquee#home{
  margin-top: 2200px;
}/* =========================================
🔥 ضبط التوسيط الحقيقي
🔥 بدون امتداد كامل
🔥 شاشات مترابطة
========================================= */

/* =========================================
💻 1199 ↓
========================================= */

@media screen and (max-width:1199px){

  #services.ride-panel{

    width:min(92%,900px) !important;

    margin:0 auto !important;

    justify-self:center !important;

    padding:90px 30px !important;

    text-align:center !important;

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;

    border-radius:40px !important;
    margin-top: 200px !important;
  }

  #services.ride-panel .reveal{

    width:100% !important;

    max-width:760px !important;

    margin:0 auto !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;
  }

  #services.ride-panel h2{

    width:100% !important;

    max-width:760px !important;

    margin:0 auto 24px !important;

    text-align:center !important;

    line-height:1.15 !important;
  }

  #services.ride-panel p{

    width:100% !important;

    max-width:650px !important;

    margin:0 auto 36px !important;

    text-align:center !important;

    line-height:1.9 !important;
  }

  #home.marquee{

    width:100% !important;

    margin:120px auto 0 !important;

    overflow:hidden !important;

    padding:22px 0 !important;
    margin-top: 2600px !important;
  }

}

/* =========================================
📱 991 ↓
========================================= */

@media screen and (max-width:991px){

  #services.ride-panel{

    width:min(93%,820px) !important;

    padding:80px 26px !important;
        margin-top: 200px !important;

  }

  #services.ride-panel h2{

    font-size:52px !important;
  }

  #services.ride-panel p{

    font-size:18px !important;
  }

  #home.marquee{

    margin:100px auto 0 !important;
    margin-top: 2500px !important;
  }

  #home.marquee span{

    font-size:38px !important;
  }

}

/* =========================================
📱 767 ↓
========================================= */

@media screen and (max-width:767px){

  #services.ride-panel{
    width:min(94%,680px) !important;

    padding:70px 22px !important;
    margin-top: 200px !important;
     

  }

  #services.ride-panel h2{

    font-size:42px !important;

    line-height:1.2 !important;
  }

  #services.ride-panel p{

    font-size:16px !important;

    line-height:1.8 !important;
  }

  #services.ride-panel .buttonn.white1{

    min-width:220px !important;

    height:56px !important;

    border-radius:20px !important;
  }

  #home.marquee{
   
    margin:85px auto 0 !important;
     margin-top: 2300px !important;
  }

  #home.marquee span{

    font-size:30px !important;
  }

}

/* =========================================
📱 575 ↓
========================================= */

@media screen and (max-width:575px){

  #services.ride-panel{

    width:min(95%,520px) !important;

    padding:60px 18px !important;

    margin:0 auto 120px !important;
  }

  #services.ride-panel h2{

    font-size:34px !important;
  }

  #services.ride-panel p{

    font-size:15px !important;
  }

  #services.ride-panel .buttonn.white1{

    width:100% !important;

    max-width:260px !important;

    height:54px !important;

    border-radius:50px !important;
  }

  #home.marquee{

    margin:70px auto 0 !important;
    margin-top: 2200px !important;
  }

  #home.marquee span{

    font-size:40px !important;
  }

}
/* =========================================
🔥 PACKAGES RESPONSIVE FINAL
🔥 فقط هذا القسم
🔥 بدون تخريب اي كاردات ثانية
========================================= */


/* =========================================
💻 1199 ↓
========================================= */

@media screen and (max-width:1199px){

  section.packages{

    width:min(94%,1200px) !important;

    margin:120px auto 0 !important;

    display:grid !important;

    grid-template-columns:repeat(2,minmax(0,1fr)) !important;

    gap:28px !important;

    justify-content:center !important;

    align-items:stretch !important;
  }

  section.packages .package-card{

    width:100% !important;

    min-height:420px !important;

    overflow:hidden !important;

    border-radius:34px !important;

    position:relative !important;
  }

  section.packages .package-card img{

    width:100% !important;

    height:100% !important;

    object-fit:cover !important;

    display:block !important;
  }

  section.packages .package-card .panel{

    width:calc(100% - 40px) !important;

    left:20px !important;

    bottom:20px !important;

    position:absolute !important;

    display:flex !important;

    justify-content:space-between !important;

    align-items:center !important;

    gap:20px !important;
  }

  section.packages .package-card .info{

    display:flex !important;

    flex-direction:column !important;

    justify-content:center !important;
  }

}


/* =========================================
📱 991 ↓
========================================= */

@media screen and (max-width:991px){

  section.packages{

    width:min(95%,900px) !important;

    gap:24px !important;
  }

  section.packages .package-card{

    min-height:360px !important;

    border-radius:30px !important;
  }

  section.packages .package-card .panel{

    width:calc(100% - 34px) !important;

    left:17px !important;

    bottom:17px !important;

    padding:18px 20px !important;
  }

  section.packages .package-card .info strong{

    font-size:24px !important;
  }

}


/* =========================================
📱 767 ↓
========================================= */

@media screen and (max-width:767px){

  section.packages{

    width:min(94%,700px) !important;

    grid-template-columns:1fr !important;

    gap:26px !important;

    margin:90px auto 0 !important;
  }

  section.packages .package-card{

    min-height:340px !important;

    border-radius:28px !important;
  }

  section.packages .package-card .panel{

    width:calc(100% - 28px) !important;

    left:14px !important;

    bottom:14px !important;

    padding:16px 18px !important;

    border-radius:20px !important;
  }

  section.packages .package-card .info span{

    font-size:14px !important;
  }

  section.packages .package-card .info strong{

    font-size:22px !important;

    line-height:1.2 !important;
  }

  section.packages .package-card .card-arrow{

    width:52px !important;

    height:52px !important;

    min-width:52px !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;
  }

}


/* =========================================
📱 575 ↓
🔥 عمودين
========================================= */

@media screen and (max-width:575px){

  section.packages{

    width:min(96%,520px) !important;

    grid-template-columns:repeat(2,minmax(0,1fr)) !important;

    gap:12px !important;

    margin:70px auto 0 !important;
  }

  section.packages .package-card{

    min-height:190px !important;

    border-radius:18px !important;
  }

  section.packages .package-card img{

    width:100% !important;

    height:100% !important;

    object-fit:cover !important;
  }

  section.packages .package-card .panel{

    width:calc(100% - 14px) !important;

    left:7px !important;

    bottom:7px !important;

    padding:10px 12px !important;

    border-radius:14px !important;

    gap:10px !important;
  }

  section.packages .package-card .info span{

    font-size:10px !important;
  }

  section.packages .package-card .info strong{font-size:13px !important;

    line-height:1.2 !important;
  }

  section.packages .package-card .card-arrow{

    width:34px !important;

    height:34px !important;

    min-width:34px !important;

    font-size:18px !important;
  }

}
/* =========================================
🔥 PACKAGE ARROW FULL
🔥 نفس التنسيق الاصلي بدون تغيير الوان
========================================= */

section.packages .package-card .card-arrow{

  position:absolute !important;

  top:0 !important;

  right:0 !important;

  height:100% !important;

  width:88px !important;

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;

  font-size:34px !important;

  opacity:1 !important;
}


/* =========================================
📱 TABLET
========================================= */

@media screen and (max-width:991px){

  section.packages .package-card .card-arrow{

    width:74px !important;

    font-size:30px !important;
  }

}


/* =========================================
📱 MOBILE
========================================= */

@media screen and (max-width:767px){

  section.packages .package-card .card-arrow{

    width:64px !important;

    font-size:26px !important;
  }
  #shop.products .product-card .price-row{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-left: 20px;
  }
}


/* =========================================
📱 SMALL MOBILE
========================================= */

@media screen and (max-width:575px){

  section.packages .package-card .card-arrow{

    width:58px !important;

    font-size:22px !important;
  }

}
/* =========================================
📱 SMALL MOBILE
🔥 package cards فوق بعض
🔥 تقليل الارتفاع فقط
========================================= */

@media screen and (max-width:575px){

  section.packages{

    display:flex !important;

    flex-direction:column !important;

    gap:18px !important;
  }

  section.packages .package-card{

    width:100% !important;

    min-height:220px !important;

    height:220px !important;

    overflow:hidden !important;
  }

  section.packages .package-card img{

    height:100% !important;

    object-fit:cover !important;
  }

  section.packages .package-card .panel{

    min-height:64px !important;

    padding:1px 10px !important;
  }

}
/* =========================================
📱 SMALL MOBILE
🔥 margin للديف
========================================= */

@media screen and (max-width:575px){


  #shop.products .product-card .price-row{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-left: 20px;
  }
}

/* =========================================
🔥 TESTIMONIAL FIX
🔥 فقط لهاي الصفحة
🔥 بدون تخريب التنسيق الاصلي
========================================= */

@media screen and (max-width:767px){

  #blog.testimonials{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

    gap:40px !important;

    padding-inline:18px !important;

    overflow:hidden !important;
  }

  /* =====================================
  🔥 التعليق فوق
  ===================================== */

  #blog.testimonials .testimonial-copy{

    width:100% !important;

    max-width:100% !important;

    position:relative !important;

    z-index:5 !important;

    text-align:left !important;
  }

  #blog.testimonials h3{
    width:100% !important;

    text-align:left !important;

    margin-bottom:30px !important;

  }

  #blog.testimonials .testimonial-slider{

    width:100% !important;
  }

  #blog.testimonials .testimonial{

    width:100% !important;

    text-align:left !important;
  }

  #blog.testimonials .testimonial .user{

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    justify-content:flex-start !important;

    gap:18px !important;

    text-align:left !important;
  }

  #blog.testimonials .testimonial .info{

    text-align:left !important;
  }

  #blog.testimonials .testimonial p{

    width:100% !important;

    text-align:left !important;

    margin-top:24px !important;

    line-height:1.9 !important;
  }

  #blog.testimonials .slider-controls{

    justify-content:flex-start !important;

    margin-top:28px !important;
  }

  /* =====================================
  🔥 الصورة تحت وعلى الجنب
  ===================================== */

  #blog.testimonials .testimonial-bike{

    width:100% !important;

    display:flex !important;

    justify-content:flex-end !important;

    align-items:flex-end !important;

    margin-top:-60px !important;

    position:relative !important;

    z-index:1 !important;
    margin-top: -250px !important;
  }

  #blog.testimonials .testimonial-bike img{

    width:100% !important;

    max-width:360px !important;

    height:auto !important;

    object-fit:contain !important;
  }

}


/* =========================================
📱 SMALL MOBILE
========================================= */

@media screen and (max-width:575px){

  #blog.testimonials{

    padding-inline:16px !important;
  }

  #blog.testimonials h3{

    font-size:34px !important;

    line-height:1.15 !important;
  }

  #blog.testimonials .testimonial p{

    font-size:15px !important;
  }

  #blog.testimonials .testimonial-bike{

    margin-top:-300px !important;
  }

  #blog.testimonials .testimonial-bike img{

    max-width:300px !important;
  }

}
/* =========================================
📱 BETWEEN 676 AND 991
🔥 التعليق فوق والصورة تحت عالجنب
========================================= */

@media screen and (min-width:676px) and (max-width:991px){

  #blog.testimonials{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    justify-content:center !important;

    gap:50px !important;

    padding-inline:24px !important;

    overflow:hidden !important;
  }

  /* =====================================
  🔥 التعليق
  ===================================== */

  #blog.testimonials .testimonial-copy{

    width:100% !important;

    max-width:820px !important;

    text-align:left !important;

    position:relative !important;

    z-index:5 !important;
  }

  #blog.testimonials h3{

    text-align:left !important;

    margin-bottom:34px !important;
  }

  #blog.testimonials .testimonial .user{

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    justify-content:flex-start !important;

    gap:20px !important;
  }

  #blog.testimonials .testimonial .info{

    text-align:left !important;
  }

  #blog.testimonials .testimonial p{

    text-align:left !important;

    line-height:1.9 !important;

    margin-top:26px !important;
  }

  #blog.testimonials .slider-controls{

    justify-content:flex-start !important;

    margin-top:30px !important;
  }

  /* =====================================
  🔥 الصورة تحت وعلى اليمين
  ===================================== */

  #blog.testimonials .testimonial-bike{

    width:100% !important;

    display:flex !important;

    justify-content:flex-end !important;

    align-items:flex-end !important;

    margin-top:-70px !important;

    position:relative !important;

    z-index:1 !important;
  }

  #blog.testimonials .testimonial-bike img{

    width:100% !important;

    max-width:520px !important;

    height:auto !important;

    object-fit:contain !important;
  }

}
/*Responsev post blog */

/* =========================================================
🔥 STACK BLOG PAGE
🔥 خلي كل السكاشن تحت بعض بدون تخريب التنسيق
========================================================= */

@media screen and (max-width:991px){

  /* =====================================
  🔥 layout تحت بعض
  ===================================== */

  main.post-layout{

    display:flex !important;

    flex-direction:column !important;

    gap:40px !important;

    /* align-items:center !important; */
  }
main.post-layout > *{

  width:100% !important;
}
  /* =====================================
  🔥 البوست الرئيسي
  ===================================== */

  main.post-layout .post-main{

    width:100% !important;

    max-width:900px !important;

    margin:0 auto !important;
  }

  /* =====================================
  🔥 السايد بار تحت
  ===================================== */

  main.post-layout .post-sidebar{

    width:100% !important;

    max-width:900px !important;

    margin:0 auto !important;

    display:flex !important;

    flex-direction:column !important;

    gap:28px !important;
  }

  /* =====================================
  🔥 تعبئة كل الكروت
  ===================================== */

  main.post-layout .post-sidebar .side-card {

    width:100% !important;
  }
.post-crumb-wrap{
  margin-left: 30px;
}

  /* =====================================
  🔥 اظهار عنوان الشير
  ===================================== */


  main.post-layout .share-box .share-title{

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    width:100% !important;

    text-align:center !important;

    opacity:1 !important;

    visibility:visible !important;

    position:relative !important;

    z-index:5 !important;
  }

  /* =====================================
  🔥 ترتيب الاسهم جنب بعض
  ===================================== */

  main.post-layout .post-navigation{

    display:flex !important;

    flex-direction:row !important;

    justify-content:space-between !important;

    align-items:center !important;

    flex-wrap:nowrap !important;

    gap:20px !important;
  }

  main.post-layout .post-nav-box{

    flex:1 1 0 !important;

    width:auto !important;

    min-width:0 !important;

    display:flex !important;

    align-items:center !important;
  }

  /* =====================================
  🔥 اخفاء النزول تحت
  ===================================== */

  main.post-layout .nav-left,
  main.post-layout .nav-right{

    margin-top:0 !important;
  
}

  /* =====================================
  🔥 تعبئة عنوان النافيجيشن
  ===================================== */

  /* main.post-layout .post-nav-box .nav-info{

    width:100% !important;
  }

  main.post-layout .post-nav-box .nav-info h4{

    width:100% !important;

    line-height:1.3 !important;
  } */

  /* =====================================
  🔥 اخفاء زر المربعات
  ===================================== */

  main.post-layout .nav-middle{

    display:none !important;
  }

  /* =====================================
  🔥 توسيط محتوى النافيجيشن
  ===================================== */

  main.post-layout .post-navigation{

    display:flex !important;

    justify-content:center !important;

    align-items:center !important;
  }

  main.post-layout .post-nav-box{

    width:100% !important;

    justify-content:space-between !important;
  }

}
/* =========================================
🔥 ترتيب الاسهم بعد اخفاء زر المربعات
========================================= */

@media screen and (max-width:767px){

  main.post-layout .post-navigation{

    display:flex !important;

    flex-direction:row !important;

    justify-content:space-between !important;

    align-items:stretch !important;

    gap:18px !important;
  }
  main.post-layout .nav-middle{

    display:none !important;
  }
  main.post-layout .post-nav-box{

    flex:1 1 0 !important;

    width:auto !important;

    min-width:0 !important;
  }

}

/* =========================================================
🔥 POST FORM SMALL MOBILE
🔥 فقط لهاي الصفحة بدون تخريب اي صفحة ثانية
========================================================= */

@media screen and (max-width:575px){

  main.post-layout .comments-section .form-roww{

    display:grid !important;

    grid-template-columns:repeat(3,minmax(0,1fr)) !important;

    gap:12px !important;

    align-items:start !important;
  }

  main.post-layout .comments-section .form-roww .form-group{

    width:100% !important;

    min-width:0 !important;
  }

  main.post-layout .comments-section .form-roww .form-group input{

    width:100% !important;
  }
  main.post-layout .post-sidebar .side-card {

    width:100% !important;
  }
}
/* =========================================================
🔥 POST FORM MOBILE + TABLET
🔥 الحقول الثلاثة جنب بعض
🔥 بدون تخريب الصفحات الثانية
========================================================= */

@media screen and (max-width:767px){

  main.post-layout .comments-section .form-roww{

    display:grid !important;

    grid-template-columns:repeat(3,minmax(0,1fr)) !important;

    gap:14px !important;

    align-items:start !important;
  }

  main.post-layout .comments-section .form-roww .form-group{

    width:100% !important;

    min-width:0 !important;
  }

  main.post-layout .comments-section .form-roww .form-group input{

    width:100% !important;
  }

}
/* =========================================================
🔥 POST CONTENT ALIGN
🔥 اصغر شاشتين فقط
🔥 بدون تخريب التنسيق الاصلي
========================================================= */

@media screen and (max-width:767px){

  main.post-layout .post-content,
  main.post-layout .post-content p
  
  {

    text-align:left !important;
  }
.post-crumb-wrap{
  margin-left: 0;
}
  main.post-layout .post-sidebar .side-card {

    width:100% !important;
  }
}
/* =========================================
🔥 FIX SIDE TITLES FILL
🔥 كل الشاشات الصغيرة
========================================= */

@media screen and (max-width:991px){


  main.post-layout .share-box{

    width:100% !important;

    max-width:100% !important;

    min-width:0 !important;

    box-sizing:border-box !important;
  }


  main.post-layout .share-title{

    width:100% !important;

    max-width:100% !important;

    min-width:0 !important;

    margin:0 !important;

    box-sizing:border-box !important;
  }

}
@media screen and (min-width:992px){

  main.post-layout .share-title{

    display:flex !important;

    opacity:1 !important;

    visibility:visible !important;
  }

}
main.post-layout .share-title{

  min-height:72px !important;

  line-height:72px !important;

  text-align:center !important;

  padding:0 !important;
  padding-top: 15px !important;
  
}

@media screen and (max-width:575px){

  /* السايدبار بالنص */
  main.post-layout .post-sidebar{

    width:100% !important;

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    gap:26px !important;

    padding:0 14px !important;

    box-sizing:border-box !important;
  }

  /* الكارد */
  main.post-layout .post-sidebar .side-card{

    width:100% !important;

    margin:0 auto !important;

    overflow:hidden !important;

    border-radius:26px !important;

    box-sizing:border-box !important;
  }

  /* العنوان */
  main.post-layout .post-sidebar .side-card h3{

    width:calc(100% + 48px) !important;

    margin:-24px -24px 0 -24px !important;

    min-height:64px !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    text-align:center !important;

    box-sizing:border-box !important;
  }

}
@media screen and (min-width:576px) and (max-width:991px){

  /* السايدبار */
  main.post-layout .post-sidebar{

    width:100% !important;

    display:grid !important;

    grid-template-columns:repeat(2,minmax(0,1fr)) !important;

    gap:24px !important;

    align-items:start !important;
  }

  /* الكارد */
  main.post-layout .post-sidebar .side-card{

    width:100% !important;

    min-width:0 !important;

    overflow:hidden !important;

    box-sizing:border-box !important;
  }

  /* العنوان */
  main.post-layout .post-sidebar .side-card h3{

    width:calc(100% + 48px) !important;

    margin:-24px -24px 0 -24px !important;

    min-height:72px !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    text-align:center !important;

    box-sizing:border-box !important;
  }

}
/* =========================================
   CONTACT PAGE INPUT FIX
   فقط صفحة التواصل
========================================= */

.contact-panel .dark-form input{

  height:45px !important;

  padding:0 18px !important;

  box-sizing:border-box !important;
}

/* الدروب داون أعلى */
.contact-panel .dark-form select{

  height:50px !important;

  padding:0 20px !important;

  box-sizing:border-box !important;
}
/* =========================================
   CONTACT LABEL + SELECT FIX
   فقط صفحة التواصل
========================================= */

/* النص فوق الحقول */
.contact-panel .dark-form label{

  display:flex !important;

  flex-direction:column !important;

  gap:8px !important; /* فراغ بسيط بين النص والحقل */

  font-weight:600 !important; /* تخفيف سماكة الخط */
}

/* النص داخل الدروب */
.contact-panel .dark-form select{

  text-align:left !important;

  direction:ltr !important;

  padding-left:18px !important;
}
/* =========================================
   CONTACT WIDTH FIX
   فقط صفحة التواصل
========================================= */

.contact-panel .dark-form .form-row{

  display:grid !important;

  grid-template-columns:.8fr 1.2fr !important;

  gap:28px !important;
}
/* =========================================
   EXPLORE BUTTON CLEAN FIX
========================================= */

.ride-panel .buttonn.white1{

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;

  gap:0 !important;

  width:260px !important;

  height:78px !important;

  border-radius:999px !important;

  transition:all .35s ease !important;

  overflow:hidden !important;

  white-space:nowrap !important;
}

/* السهم */
.ride-panel .buttonn.white1 .arrow{

  position:static !important;

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;

  width:0 !important;

  opacity:0 !important;

  overflow:hidden !important;

  transition:all .35s ease !important;
}

/* hover */

.ride-panel .buttonn.white1:hover{

  width:330px !important;

  gap:14px !important;
}

.ride-panel .buttonn.white1:hover .arrow{

  width:24px !important;

  opacity:1 !important;
}
/* =========================================
   RIDE BUTTON FINAL FIX
========================================= */

.ride-panel .buttonn.white1{

  margin:0 auto !important;

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;

  width:220px !important;

  height:68px !important;

  border-radius:999px !important;

  transition:all .35s ease !important;

  overflow:hidden !important;

  white-space:nowrap !important;
}

/* السهم */
.ride-panel .buttonn.white1 .arrow{

  position:static !important;

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;

  width:0 !important;

  opacity:0 !important;

  overflow:hidden !important;

  transition:all .35s ease !important;

  transform:translateY(2px) !important;
}

/* لون السهم */
.ride-panel .buttonn.white1 .arrow svg{

  color:var(--orange) !important;
}

/* hover */

.ride-panel .buttonn.white1:hover{

  width:290px !important;

  gap:5px !important;
}

.ride-panel .buttonn.white1:hover .arrow{

  width:100% !important;
  opacity:1 !important;
  /* transform:translateY(-1px) !important; */
}
/* =========================================
   SERVICES RIDE BUTTON
========================================= */

#servicess .button.white{

  margin:0 auto !important;

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;

  width:220px !important;

  height:68px !important;

  border-radius:999px !important;

  overflow:hidden !important;

  white-space:nowrap !important;

  transition:all .35s ease !important;
}

/* السهم */

#servicess .button.white .arrow{

  position:static !important;

  display:flex !important;

  align-items:center !important;

  justify-content:center !important;

  width:0 !important;

  opacity:0 !important;

  overflow:hidden !important;

  transform:translateY(2px) !important;

  transition:all .35s ease !important;
}

/* لون السهم */

#servicess .button.white .arrow svg{

  color:var(--orange) !important;
}

/* hover */

#servicess .button.white:hover{

  width:290px !important;

  gap:5px !important;
}

#servicess .button.white:hover .arrow{

  width:26px !important;

  opacity:1 !important;

  /* transform:translateY(-1px) !important; */
}
/* NAVEBARE */
/* =========================================
   TOP OFFER + HEADER FIX
========================================= */

/* التوب بار */

.top-offer{

  height:60px !important;

  display:flex !important;

  align-items:center !important;

  justify-content:space-between !important;

  gap:20px !important;

  padding:0 24px !important;
}

/* envato market */

.top-offer strong,
.top-offer span{

  display:inline-block !important;

  line-height:1 !important;

  margin:0 !important;
}

.top-offer span{

  margin-left:-18px !important;

  margin-top:5px !important;
}

/* النص */

.top-offer p{

  flex:1 !important;

  margin:0 !important;

  text-align:center !important;

  font-size:14px !important;

  white-space:nowrap !important;
}

/* الزر */

.top-offer a{

  margin:0 !important;

  min-height:36px !important;

  display:inline-flex !important;

  align-items:center !important;
}

/* ---------------------------------
   HEADER POSITION
--------------------------------- */

.site-header{

  top:60px !important;
}

/* ---------------------------------
   PAGE OFFSET
--------------------------------- */

body{

  padding-top:168px !important;
}

/* ---------------------------------
   ACTIVE NAV
--------------------------------- */

/* اخفاء الخط وقت active */

.main-nav > a.active::before,
.main-nav .about-trigger.active::before{

  width:0 !important;

  opacity:0 !important;
}

/* سهم about يكون طبيعي */

.main-nav .about-trigger.active::after{

  content:"" !important;

  position:absolute !important;

  left:50% !important;

  bottom:-8px !important;

  transform:translateX(-50%) !important;

  border-left:10px solid transparent !important;

  border-right:10px solid transparent !important;

  border-bottom:8px solid var(--orange) !important;
}

/* الغاء السهم القديم */

/* .main-nav .nav-item.active::after{

  display:none !important;
} */
/* =========================================
   HEADER FINAL SAFE FIX
========================================= */

/* الناف */

.site-header{

  min-height:74px !important;

  height:74px !important;

  padding:0 clamp(18px,4vw,90px) !important;

  box-shadow:none !important;

  border:none !important;
}

/* وقت السكروول */

.site-header.scrolled{

  min-height:74px !important;

  height:74px !important;

  box-shadow:none !important;
}

/* تصغير العناصر */

.main-nav{

  gap:clamp(12px,1.4vw,24px) !important;

  font-size:16px !important;

  font-weight:600 !important;
}

/* اللوجو */

.brand img{

  width:112px !important;
}

/* الأزرار */

.help-pill{

  min-height:44px !important;

  padding:0 18px !important;

  font-size:13px !important;
}

.round-action{

  width:44px !important;

  height:44px !important;
}

/* حذف الخط البرتقالي/الظل */

.site-header::before,
.site-header::after{

  display:none !important;
}

/* إزالة الفراغ تحت الناف */

body{

  padding-top:134px !important;
}
.site-header{
    background: radial-gradient(circle at 42% 45%, #171717 0 20%, transparent 45%), #0e0e0e;

}
/* =========================================
   DESKTOP HEADER FIX ONLY
========================================= */

@media screen and (min-width:1181px){

  .site-header,
  .site-header.scrolled{

    min-height:74px !important;

    height:74px !important;

    align-items:center !important;
  }

  .nav-item,
  .site-header.scrolled .nav-item{

    height:74px !important;

    min-height:74px !important;

    display:flex !important;

    align-items:center !important;
  }

  /* تثبيت المحتويات */

  .site-header .brand,
  .site-header .main-nav,
  .site-header .header-actions{

    margin-top:0 !important;

    transform:none !important;
  }

}
/* =========================================
   HERO UNDER HEADER FIX
========================================= */

.home-page .hero,
.home-page .page-hero{

  margin-top:-74px !important;

  padding-top:74px !important;
}
.site-header#ser{
    background: var(--bg);

}
.site-header#blog{
    background: var(--bg);

}
.site-header#shop{
    background: var(--bg);

}
.site-header#faq{
    background: var(--bg);

}
.site-header#contact{
    background: var(--bg);

}
.site-header#post{
    background: var(--bg);

}
.site-header#ser{
    background: var(--bg);

}
.site-header#ser{
    background: var(--bg);

}

/* =========================================
   FAQ HERO DESKTOP ONLY
========================================= */

@media screen and (min-width:1181px){

  .faq-hero-new {

    margin-top:-150px !important;
  }

.services-hero{
      margin-top:-50px !important;

}
}/* =========================================
   TOP OFFER RESPONSIVE FINAL
========================================= */

@media screen and (max-width:768px){

  .top-offer{

    position:fixed !important;

    display:grid !important;

    grid-template-columns:1fr auto !important;

    grid-template-rows:auto auto !important;

    align-items:center !important;

    gap:3px 12px !important;

    height:auto !important;

    padding:6px 14px !important;
  }

  /* اللوجو كامل */

  .top-offer strong,
  .top-offer span{

    display:inline-block !important;

    margin:0 !important;

    line-height:1 !important;

    vertical-align:middle !important;
  }

  .top-offer strong{

    font-size:20px !important;
  }

  .top-offer span{

    font-size:15px !important;

  }

  /* النص */

  .top-offer p{

    grid-column:1 / -1 !important;

    margin:0 !important;

    text-align:center !important;

    white-space:normal !important;

    line-height:1.35 !important;

    font-size:12px !important;
  }

  /* الزر */

  .top-offer a{

    grid-column:2 !important;

    grid-row:1 !important;

    justify-self:end !important;

    align-self:start !important;

    min-height:30px !important;

    padding:0 12px !important;

    font-size:11px !important;

    white-space:nowrap !important;

    margin:0 !important;

  }
    .top-offer span{
    margin-left: 68px !important;
margin-top: -35px !important;
    font-size:14px !important;
  }

  .top-offer p{
margin-top: -6px !important;
    font-size:10px !important;
justify-self: start;
    line-height:1.4 !important;
  }


}


/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media screen and (max-width:575px){

  .top-offer{

    padding:8px 10px !important;

    gap:1px 10px !important;
  }

  .top-offer strong{

    font-size:18px !important;
  }

  .top-offer span{
    margin-left: 60px !important;
margin-top: -30px !important;
    font-size:14px !important;
  }

  .top-offer p{
margin-top: -1px !important;
    font-size:10px !important;
justify-self: start;
    line-height:1.4 !important;
  }

  .top-offer a{

    min-height:28px !important;

    padding:0 10px !important;

    font-size:10px !important;
  }

}
/* السهم فقط للرابط النشط */

.main-nav > a.active::after,
.about-trigger.active::after{

  content:"";

  position:absolute;

  left:50%;

  bottom:-14px;

  width:0;
  height:0;

  border-left:8px solid transparent;

  border-right:8px solid transparent;

  border-bottom:8px solid var(--orange);

  transform:translateX(-50%);
}
/* =========================================
   NAV ACTIVE FINAL FIX
========================================= */

/* الطبيعي */

.main-nav > a,
.main-nav .about-trigger{

  color:#8f8f8f;
}

/* hover فقط */

.main-nav > a:hover,
.main-nav .nav-item:hover > .about-trigger{

  color:#fff;
}

/* الصفحة النشطة فقط */

.main-nav > a.active,
.main-nav .about-trigger.active{

  color:#fff !important;
}

/* الخط البرتقالي */

.main-nav > a::before,
.main-nav .about-trigger::before{

  content:"";

  position:absolute;

  left:50%;

  bottom:-10px;

  width:0;

  height:3px;

  border-radius:999px;

  background:var(--orange);

  transform:translateX(-50%);

  transition:width .22s ease;
}

/* hover line */

.main-nav > a:hover::before,
.main-nav .nav-item:hover > .about-trigger::before{

  width:36px;
}

/* active line */

.main-nav > a.active::before,
.main-nav .about-trigger.active::before{

  width:36px;
}

/* السهم */

.main-nav > a.active::after,
.main-nav .about-trigger.active::after{

  content:"";

  position:absolute;

  left:50%;

  bottom:-16px;

  transform:translateX(-50%);

  border-left:8px solid transparent;

  border-right:8px solid transparent;

  border-bottom:8px solid var(--orange);
}

/* منع أي active قديم */

/* .nav-item.active::after,
.nav-item.active > .about-trigger::before,
.nav-item.active > .about-trigger::after{

  display:none !important;
} */
 /* =========================================
   FINAL NAV ACTIVE
========================================= */

/* active للرابط الحقيقي فقط */

.main-nav > a.active,
.main-nav > .nav-item > .about-trigger.active{

  color:#fff !important;
}

/* الخط */

.main-nav > a.active::before,
.main-nav > .nav-item > .about-trigger.active::before{

  width:36px !important;
}

/* السهم */

.main-nav > a.active::after,
.main-nav > .nav-item > .about-trigger.active::after{

  content:"";

  position:absolute;

  left:50%;

  bottom:-14px;

  transform:translateX(-50%);

  border-left:8px solid transparent;

  border-right:8px solid transparent;

  border-bottom:8px solid var(--orange);
}
/* =========================================
   NAV ACTIVE FINAL REAL FIX
========================================= */

/* اللون عند التفعيل */

.main-nav > a.active,
.main-nav .about-trigger.active{

  color:#fff !important;
}

/* الخط عند hover فقط */

.main-nav > a:hover::before,
.main-nav .nav-item:hover > .about-trigger::before{

  width:36px;
}

/* active links بدون الخط */

.main-nav > a.active::before,
.main-nav .about-trigger.active::before{

  width:0 !important;
}

/* السهم لكل رابط active */

.main-nav > a.active::after,
.main-nav .about-trigger.active::after{

  content:"";

  position:absolute;

  left:50%;

  bottom:-10px;

  transform:translateX(-50%);

  width:0;
  height:0;

  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-bottom:8px solid var(--orange);
}

/* اصلاح بعد السهم تبع about */

.main-nav .about-trigger.active::after{

  bottom:-10px !important;
}
/* =========================================
   ACTIVE NAV REAL FIX
========================================= */

/* hover line فقط */

.main-nav > a:hover::before,
.main-nav .about-trigger:hover::before{

  width:36px;
}

/* active بدون خط */

.main-nav > a.active::before,
.main-nav .about-trigger.active::before{

  width:0 !important;
}

/* active color */

.main-nav > a.active,
.main-nav .about-trigger.active{

  color:#fff !important;
}

/* السهم */

.main-nav > a.active::after,
.main-nav .about-trigger.active::after{

  content:"";

  position:absolute;

  left:50%;

  bottom:-10px;

  transform:translateX(-50%);

  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-bottom:8px solid var(--orange);
}
/* ////////////////////////////lodig bage */
/* =========================================
   ULTRA CINEMATIC INTRO
========================================= */

body.loading{
  overflow:hidden;
}

#ultraIntro{

  position:fixed;
  inset:0;

  z-index:999999;

  overflow:hidden;

  background:
  radial-gradient(circle at center,
  #111 0%,
  #000 72%);

  transition:
  opacity 1s ease,
  visibility 1s ease,
  transform 1s ease;
}

#ultraIntro.hide{

  opacity:0;
  visibility:hidden;

  transform:scale(1.08);
}

/* =========================================
   CANVAS
========================================= */

#introCanvas{

  position:absolute;
  inset:0;

  width:100%;
  height:100%;
}

/* =========================================
   DARK OVERLAY
========================================= */

.introOverlay{

  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at center,
  transparent 0%,
  rgba(0,0,0,.35) 50%,
  rgba(0,0,0,.88) 100%);

  pointer-events:none;
}

/* =========================================
   FLASH
========================================= */

.introFlash{

  position:absolute;
  inset:0;

  background:#fff;

  opacity:0;

  mix-blend-mode:screen;

  pointer-events:none;
}

/* =========================================
   TEXT
========================================= */

.introText{

  position:absolute;

  left:50%;
  bottom:10%;

  transform:translateX(-50%);

  text-align:center;

  z-index:20;
}

.introText h1{

  margin:0;

  font-size:clamp(60px,8vw,130px);

  color:#fff;

  font-weight:900;

  letter-spacing:8px;

  text-transform:uppercase;

  text-shadow:
  0 0 25px rgba(255,120,0,.35),
  0 0 60px rgba(255,120,0,.22);
}

.introText h1 span{

  color:#ff7a00;
}

.introText p{

  margin-top:18px;

  color:#d6d6d6;

  font-size:13px;

  letter-spacing:7px;
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width:768px){

  .introText h1{

    letter-spacing:3px;
  }

  .introText p{

    font-size:10px;

    letter-spacing:3px;
  }
}

/* =========================================
   NAV ARROW + HOVER ONLY
   Scoped to the top-level navbar links.
========================================= */
.main-nav > a,
.main-nav > .nav-item > .about-trigger{
  position:relative !important;
}

.main-nav > a::before,
.main-nav > .nav-item > .about-trigger::before{
  content:"" !important;
  position:absolute !important;
  left:50% !important;
  bottom:-10px !important;
  width:0 !important;
  height:3px !important;
  border-radius:999px !important;
  background:var(--orange) !important;
  opacity:1 !important;
  transform:translateX(-50%) !important;
  transition:width .22s ease !important;
  pointer-events:none !important;
}

.main-nav > a:hover::before,
.main-nav > .nav-item:hover > .about-trigger::before{
  width:36px !important;
}

.main-nav > a.active::before,
.main-nav > a.active:hover::before,
.main-nav > .nav-item > .about-trigger.active::before,
.main-nav > .nav-item:hover > .about-trigger.active::before{
  width:0 !important;
  opacity:0 !important;
}

.main-nav > a::after,
.main-nav > .nav-item > .about-trigger::after,
.main-nav > .nav-item::after{
  display:none !important;
}

.main-nav > a.active,
.main-nav > .nav-item > .about-trigger.active{
  color:#fff !important;
}

.main-nav > a.active::after,
.main-nav > .nav-item > .about-trigger.active::after{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  left:50% !important;
  bottom:-10px !important;
  width:0 !important;
  height:0 !important;
  border-left:8px solid transparent !important;
  border-right:8px solid transparent !important;
  border-bottom:8px solid var(--orange) !important;
  transform:translateX(-50%) !important;
  pointer-events:none !important;
}

.main-nav .nav-dropdown a::before,
.main-nav .nav-dropdown a::after{
  display:none !important;
}

/* =========================================
   PREMIUM CINEMATIC LOADER
========================================= */
body.loading{
  overflow:hidden !important;
}

#ultraIntro{
  position:fixed !important;
  inset:0 !important;
  z-index:999999 !important;
  isolation:isolate;
  overflow:hidden !important;
  background:
    radial-gradient(circle at 18% 72%, rgba(255,106,0,.35), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(255,138,36,.28), transparent 30%),
    linear-gradient(135deg, #050505 0%, #0d0d0d 40%, #000 100%) !important;
  color:#fff;
  opacity:1;
  visibility:visible;
  transform:scale(1);
  transition:opacity .85s ease, visibility .85s ease, transform .85s ease, filter .85s ease !important;
}

#ultraIntro.hide{
  opacity:0 !important;
  visibility:hidden !important;
  transform:scale(1.08) !important;
  filter:blur(10px);
  pointer-events:none;
}

#introCanvas,
.introGrid,
.introOverlay,
.introNoise,
.introFlash{
  position:absolute;
  inset:0;
}

#introCanvas{
  width:100%;
  height:100%;
  z-index:1;
}

.introGrid{
  z-index:2;
  background:
    linear-gradient(rgba(255,106,0,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,.08) 1px, transparent 1px);
  background-size:74px 74px;
  mask-image:radial-gradient(circle at center, #000 0 34%, transparent 74%);
  animation:introGridMove 1.1s linear infinite;
  opacity:.46;
}

.introOverlay{
  z-index:3;
  background:
    radial-gradient(ellipse at 66% 50%, transparent 0 28%, rgba(0,0,0,.4) 54%, rgba(0,0,0,.9) 100%),
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.16) 45%, rgba(0,0,0,.72));
  pointer-events:none;
}

.introNoise{
  z-index:8;
  opacity:.11;
  mix-blend-mode:screen;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.55) 0 1px, transparent 1px 5px);
  animation:introNoise .22s steps(2) infinite;
  pointer-events:none;
}

.introFlash{
  z-index:12;
  background:#fff;
  opacity:0;
  mix-blend-mode:screen;
  pointer-events:none;
}

.introHud{
  position:absolute;
  top:clamp(22px,4vw,52px);
  right:clamp(22px,5vw,72px);
  z-index:15;
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 16px;
  border:1px solid rgba(255,106,0,.35);
  border-radius:999px;
  background:rgba(10,10,10,.42);
  box-shadow:0 0 40px rgba(255,106,0,.18), inset 0 0 22px rgba(255,106,0,.08);
  backdrop-filter:blur(16px);
}

.introHud span{
  font-size:11px;
  font-weight:900;
  color:#c9c9c9;
  letter-spacing:3px;
}

.introHud strong{
  min-width:42px;
  color:#ff6a00;
  font-size:24px;
  font-weight:950;
  line-height:1;
  text-shadow:0 0 20px rgba(255,106,0,.75);
}

.introBikeStage{
  position:absolute;
  z-index:9;
  right:clamp(-110px,-4vw,-28px);
  top:50%;
  width:min(68vw,1040px);
  aspect-ratio:16 / 9;
  transform:translateY(-48%);
  perspective:1200px;
  filter:drop-shadow(0 42px 60px rgba(0,0,0,.85));
}

.introBikeStage::before{
  content:"";
  position:absolute;
  inset:8% 8% 12% 24%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,106,0,.35), transparent 62%);
  filter:blur(54px);
  animation:introPulse 1.8s ease-in-out infinite alternate;
}

.introBikeImage{
  position:absolute;
  right:0;
  bottom:9%;
  width:100%;
  max-height:82%;
  object-fit:contain;
  transform:rotateY(-8deg) rotateZ(-1deg);
  animation:introBikeFloat 2.2s ease-in-out infinite alternate;
  opacity:.96;
}

.introBeam{
  position:absolute;
  right:10%;
  height:3px;
  width:78%;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(255,106,0,.92), rgba(255,255,255,.8), transparent);
  filter:blur(.4px);
  transform:skewX(-20deg);
  animation:introBeam 1.05s linear infinite;
}

.beam-a{ top:28%; animation-delay:0s; }
.beam-b{ top:49%; width:92%; animation-delay:.2s; opacity:.85; }
.beam-c{ top:68%; width:70%; animation-delay:.42s; opacity:.7; }

.introWheel{
  position:absolute;
  bottom:14%;
  width:15.7%;
  aspect-ratio:1;
  border:3px solid rgba(255,106,0,.78);
  border-radius:50%;
  box-shadow:
    0 0 0 7px rgba(255,106,0,.09),
    inset 0 0 28px rgba(255,106,0,.22),
    0 0 34px rgba(255,106,0,.42);
  animation:introWheelSpin .48s linear infinite;
  mix-blend-mode:screen;
}

.introWheel::before,
.introWheel::after{
  content:"";
  position:absolute;
  left:50%;
  top:4%;
  width:2px;
  height:92%;
  background:rgba(255,255,255,.52);
  transform:translateX(-50%);
}

.introWheel::after{
  transform:translateX(-50%) rotate(90deg);
}

.wheel-left{ left:31%; }
.wheel-right{ right:9.7%; }

.introText{
  z-index:16 !important;
  left:clamp(24px,8vw,150px) !important;
  top:50% !important;
  bottom:auto !important;
  width:min(620px,calc(100vw - 48px));
  text-align:left !important;
  transform:translateY(-44%) !important;
}

.introKicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  color:#ff8a2b;
  font-size:12px;
  font-weight:950;
  letter-spacing:4px;
}

.introKicker::before{
  content:"";
  width:44px;
  height:2px;
  border-radius:999px;
  background:#ff6a00;
  box-shadow:0 0 22px rgba(255,106,0,.9);
}

.introText h1{
  font-size:clamp(64px,9vw,150px) !important;
  line-height:.82;
  letter-spacing:0 !important;
  text-shadow:
    0 0 18px rgba(255,255,255,.2),
    0 0 55px rgba(255,106,0,.22) !important;
}

.introText h1 span{
  display:block;
  color:#ff6500 !important;
}

.introText p{
  width:min(520px,100%);
  margin-top:26px !important;
  color:#b8b8b8 !important;
  font-size:clamp(13px,1.5vw,18px) !important;
  line-height:1.8;
  letter-spacing:2px !important;
  font-weight:800;
}

.introProgress{
  position:relative;
  width:min(520px,100%);
  height:8px;
  margin-top:30px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.07);
}

.introProgress span{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:0;
  border-radius:inherit;
  background:linear-gradient(90deg, #ff4d00, #ff8a00, #fff2b8);
  box-shadow:0 0 24px rgba(255,106,0,.85);
  transition:width .18s ease;
}

@keyframes introGridMove{
  to{ background-position:74px 74px; }
}

@keyframes introNoise{
  0%{ transform:translate3d(0,0,0); }
  100%{ transform:translate3d(-2%,1%,0); }
}

@keyframes introPulse{
  to{ transform:scale(1.18); opacity:.78; }
}

@keyframes introBikeFloat{
  to{ transform:translate3d(-18px,-16px,0) rotateY(-12deg) rotateZ(.6deg); }
}

@keyframes introBeam{
  from{ transform:translateX(36%) skewX(-20deg); opacity:0; }
  18%{ opacity:1; }
  to{ transform:translateX(-56%) skewX(-20deg); opacity:0; }
}

@keyframes introWheelSpin{
  to{ transform:rotate(360deg); }
}

@media screen and (max-width:900px){
  .introHud{
    top:18px;
    right:18px;
    padding:10px 12px;
  }

  .introHud span{
    display:none;
  }

  .introBikeStage{
    right:-10vw;
    top:30%;
    width:125vw;
    opacity:.62;

  }

  .introText{
    top:auto !important;
    bottom:8vh !important;
    left:22px !important;
    transform:none !important;
  }

  .introKicker{
    font-size:10px;
    letter-spacing:2px;
  }

  .introText h1{
    font-size:clamp(54px,19vw,98px) !important;
  }

  .introText p{
    font-size:12px !important;
    letter-spacing:1px !important;
  }

  .introProgress{
    width:min(86vw,440px);
  }
}

@media (prefers-reduced-motion:reduce){
  #ultraIntro *,
  #ultraIntro *::before,
  #ultraIntro *::after{
    animation:none !important;
    transition:none !important;
  }
}

/* =========================================
   MOBILE NAV: NO ACTIVE ARROWS OR HOVER LINES
========================================= */
@media screen and (max-width:1180px){
  .main-nav > a::before,
  .main-nav > a::after,
  .main-nav > a:hover::before,
  .main-nav > a.active::before,
  .main-nav > a.active::after,
  .main-nav > .nav-item::after,
  .main-nav > .nav-item > .about-trigger::before,
  .main-nav > .nav-item > .about-trigger::after,
  .main-nav > .nav-item:hover > .about-trigger::before,
  .main-nav > .nav-item:hover > .about-trigger::after,
  .main-nav > .nav-item > .about-trigger.active::before,
  .main-nav > .nav-item > .about-trigger.active::after{
    content:none !important;
    display:none !important;
    width:0 !important;
    height:0 !important;
    border:0 !important;
    opacity:0 !important;
  }
}
@media screen and (max-width: 575px){

  .testimonial-bike{
    right: -80px !important;
  }

}
@media screen and (max-width: 991px) {
  .testimonial-bike {
    right: -80px !important;  
  }
}