

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
/* تقدير ارتفاع الهيدر */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fffefef5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 60px; /* اعمل ارتفاع ثابت */
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/*.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}*/

.logo {
      font-size: 30px;
    font-weight: bold;
    color: #14304e;
    text-decoration: none;
}

.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
    color: #525151;
    FONT-WEIGHT: BOLD;
    FONT-SIZE: 21px;
  transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #0077c8;
}

.header-actions {
  display: flex;
  gap: 10px;
}


.header-actionsm {
  display: none;
  gap: 10px;
}



    /* ====== Custom Language Dropdown ====== */
.custom-select { position: relative; cursor: pointer; display: inline-block;  }
.select-selected {    background: #ffffff;
    color: #393939;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px; }
    .select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: none;
    flex-direction: column;
    z-index: 999;
}
.select-items div { padding:5px 10px; display:flex; align-items:center; gap:5px;     color: #4a4a4a;}
.select-items div:hover { background:#4a4a4a; color: #fdfdfd;FONT-WEIGHT: BOLD;}
.select-show { display:flex !important; }
.select-selected::after {
  content: '▼';       /* سهم لأسفل */
  margin-left: 8px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* عند فتح القائمة */
.select-show + .select-selected::after {
  transform: rotate(180deg);  /* السهم للأعلى */
}

.select-selected.open::after {
  transform: rotate(180deg);
}

.contact-section {
    padding: 50px 20px;
}
.custom-selectm { position: relative; cursor: pointer; display: inline-block; margin-top:10px; }
.select-selectedm { background:#fff; color:#005fa3; padding:5px 10px; border-radius:6px; font-weight:bold; display:flex; align-items:center; gap:5px; }

.select-itemsm { position:absolute; top:100%; left:0; right:0; background:#fff; border:1px solid #ccc; border-radius:6px; display:none; flex-direction:column; z-index:999; }
.select-itemsm div { padding:5px 10px; display:flex; align-items:center; gap:5px;     color: #0a7575;}
.select-itemsm div:hover { background:#eee; color: #005fa3;FONT-WEIGHT: BOLD;}
.select-showm { display:flex !important; }
.select-selectedm::after {
  content: '▼';       /* سهم لأسفل */
  margin-left: 8px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* عند فتح القائمة */
.select-showm + .select-selectedm::after {
  transform: rotate(180deg);  /* السهم للأعلى */
}

.select-selectedm.open::after {
  transform: rotate(180deg);
}

.contact-sectionm {
    padding: 50px 20px;
}

img.IMG-PR {
    width: 98%;
    height: 580px;
    object-fit: inherit;
    max-width: 100%;
    max-height: 50%;
    vertical-align: middle;
}

h2 {
    TEXT-ALIGN: center;
    FONT-SIZE: 33px;
    FONT-WEIGHT: BOLD;
    MARGIN: 2%;
}

h3 {
    MARGIN: 5%;
    FONT-WEIGHT: BOLD;
}
.mobile-menu-btn { display: none; flex-direction: column; cursor: pointer; }
.mobile-menu-btn span { background: #555c88; height: 5px; width: 29px; margin: 4px 0; border-radius: 5px; }


/* =========================
   HERO SLIDER
========================= */
.hero {
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
}

.slide-Top {
  display: none;
  position: relative;
}

.slide-Top.active {
  display: block;
}


.slide-Top img {
      width: 98%;
      height: 450px;
     object-fit: inherit;
     max-width: 100%;
     max-height: 50%;
     vertical-align: middle;
}

.slide-content {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(0,0,0,0.55);
  padding: 20px;
  border-radius: 8px;
  color: #fff;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 32px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }


.section {
  padding: 60px 0;
}

/* =========================
   INTRO
========================= */
.section {
  padding: 60px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* =========================
   PRODUCTS
========================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.product-card h4 {
  margin: 10px 0;
}

/* =========================
   BRANDS
========================= */
.brands-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.brands-row img {
  width: 120px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.brands-row img:hover {
  filter: none;
  opacity: 1;
}

/* =========================
   FOOTER
========================= */
/* ===== FOOTER ===== */
.site-footer {
  background: #1c1c1c;
  color: #eee;
  padding: 60px 0 25px;
  font-family: "Cairo", sans-serif;
      FONT-WEIGHT: BOLD;
          width: 100%;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
}



.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
  border-right: 3px solid #0077c8;
  padding-right: 8px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
  color: #ccc;
  font-size: 15px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.social:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* ألوان الأيقونات */
.fb  { background: #1877f2; }
.tw  { background: #1da1f2; }
.ig  { background: #e1306c; }

/* خط الحقوق */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

.footer-bottom p {
  color: #bbb;
  font-size: 14px;
}


.copyright {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

/* ======== FIX FOOTER ON MOBILE ======== */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;   /* عمود واحد مرتب */
    gap: 20px;
    text-align: center;
    justify-items: center;
  }

  .footer-col h4 {
    border-right: none;      
    padding-right: 0;
    border-bottom: 2px solid #0077c8;
    display: inline-block;
    padding-bottom: 5px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 20px;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .main-nav { display: none; }
   .mobile-menu-btn { display: flex; }
  
  .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(13px, 14px);
}


.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
  .grid-2 { grid-template-columns: 1fr; }
  

.slide-Top img {
      width: 98%;
    height: 45%;
    object-fit: inherit;
    max-width: 100%;
    max-height: 50%;
    height: auto;
    vertical-align: middle;
}
}



.contact-section {
    padding: 50px 20px;
}

.title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
    font-weight: bold;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.form-box, .map-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.send-btn {
    background: #0077c8;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.send-btn:hover {
    background: #005fa3;
}

.google-map {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* واتساب */
.whatsapp-btn {
    display: block;
    margin-top: 20px;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}




.about-grid {
  display: flex;
  position: relative;
  gap: 25px;
  align-items: stretch; /* يجعل العناصر بنفس الارتفاع */
  min-height: 400px; /* لتوحيد ارتفاع أولي */
      Max-height: 90%; 
  align-items: flex-end;
  justify-content: center;
}

/* صندوق النص */
.slide-content-text {
  position: absolute;
  top: 0;
    right: 17.5%;
    width: 37%;            /* ياخد تقريباً نص الشاشة */
  height: 100%;             /* نفس طول الصورة */
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* الصورة */
.about-img {
  width: 65%;
}

.about-img img {
    max-width: 200%;
      width: 90%;
    height: 78%;
  object-fit: cover;
  border-radius: 12px;
}
.about-text h2 {
  margin-top: 20px;
  font-size: 22px;
}

.about-text p {
  line-height: 1.9;
  margin-top: 10px;
}


/* ============ Responsive ============ */
@media (max-width: 960px) {
  
    .about-grid {
        display: flex;
        position: relative;
        gap: 29px;
        align-items: stretch;
        min-height: 431px;
        justify-content: space-between;
    }
.about-img {
  width: 50%;
}
.slide-content-text {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    padding: 7px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.about-img img {
    max-width: 200%;
    width: 200%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.about-text h2 {
    margin-top: 6px;
    font-size: 17px;
}
.about-text p {
    line-height: 1.2;
    margin-top: 8px;
}
 
}


.page-header {
    text-align: center;
    padding: 13px 14px;
    background: #f4f7ff;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}




.values {
  margin: 15px 0;
  padding-left: 20px;
}

.values li {
  margin-bottom: 10px;
  font-size: 16px;
}


/*.mobile-menu-btn {
  display: none;
  background: none;
  font-size: 28px;
  border: none;
  cursor: pointer;
}*/

/* =========================
   MOBILE MENU
========================= */
#mobileMenu {
    display: none;
    transition: 0.3s ease;
    background: #fdfdfd;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

#mobileMenu.show-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  font-weight: 600;
      TEXT-ALIGN: CENTER;
}








/* ======================
   MOBILE STYLES
=========================*/
@media (max-width: 768px) {
   .main-nav { display: none; }

  .header-actionsm {display: flex;gap: 10px;}
  .custom-select {display: none;gap: 10px;}
}





 .DIV-BOX{
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline
}

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    background: #f9f9f9;
    margin: 0;
    padding-top: 80px;
    font-family: "Cairo", sans-serif;
}

.main-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #000;
    color: #fff;
}

.navbar ul { display: flex; gap: 20px; list-style: none; }
.navbar a { color: #fff; text-decoration: none; }

.menu-btn { display: none; cursor: pointer; }



main {
    MARGIN-TOP: 0pX;
    MARGIN-BOTTOM: 0pX;
}
.hero { height: 70vh; background: #f2f2f2; color:#fff; display:flex; justify-content:center; align-items:center; }

/*.product-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }*/
.product-grid {
    display: flex;
    grid-template-columns: repeat(1, minmax(200px, 1fr));
    gap: 20px;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}
.product-card{ background:#fff; padding:10px; border-radius:10px; }

.contact-grid { display:grid; grid-template-columns:repeat(2,minmax(280px,1fr)); gap:20px; }




     .toyota-slider { background:#111; padding:40px 0; text-align:center; color:#fff; }
        .slider-title { font-size:32px; margin-bottom:20px; }
        .slider-container { position:relative; max-width: 100%; margin:auto; }
        .slides-wrapper { position:relative; overflow:hidden; height:600px; border-radius:10px; }
        .slide { position:absolute; inset:0; opacity:0; transition:.6s; }
        .slide.active { opacity:1; }
        .slide img { width:85%; height:100%; object-fit:cover; }
        .slide-btn { position:absolute; top:50%; transform:translateY(-50%); background:#fff2; border:none; padding:10px 15px; cursor:pointer; font-size:24px; color:#fff; border-radius:50%; transition:.3s; }
        .slide-btn:hover { background:#fff4; }
        .prev { left:10px; }
        .next { right:10px; }
        .dots { margin-top:15px; display:flex; justify-content:center; gap:8px; }
        .dots span { width:12px; height:12px; border-radius:50%; background:#555; cursor:pointer; transition:.3s; }
        .dots span.active { background:#fff; width:28px; border-radius:20px; }

        /* Fullscreen Info Popup */
        .info-popup { position:fixed; inset:0; background:#000c; backdrop-filter:blur(4px); display:flex; justify-content:center; align-items:center; opacity:0; pointer-events:none; transition:.4s; }
        .info-popup.active { opacity:1; pointer-events:auto; }
        .info-box { background:#fff; color:#000; padding:25px; border-radius:10px; max-width:400px; text-align:center; }
        .close-info { margin-top:10px; background:#000; color:#fff; padding:8px 20px; border:none; cursor:pointer; border-radius:6px; }
        .info-btn { position:absolute; bottom:3%; right:10%; background:#000c; color:#fff; padding:5px 12px; border-radius:8px; cursor:pointer; }
   
   


        @media(max-width:768px){
    .navbar { display:none; }
    .menu-btn{ display:block; }
    .hero { height: 50vh; background: #f2f2f2; color:#fff; display:flex; justify-content:center; align-items:center; }
  .slide img {     width: 80%;
    height: 90%; object-fit:cover; }
    .info-btn {
    position: absolute;
    bottom: 12%;
    right: 13%;
    background: #000c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.slides-wrapper { position:relative; overflow:hidden; height:320px; border-radius:10px; }

.contact-grid {
    display: grid
;
    grid-template-columns: repeat(1, minmax(280px, 1fr));
    gap: 20px;
}
img.IMG-PR {
    width: 98%;
    height: 300px;
    object-fit: inherit;
    max-width: 100%;
    max-height: 50%;
    vertical-align: middle;
}
}

 .prod_TOP {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
       padding: 55px 10px;
    vertical-align: baseline;
}
        .prod {
          margin-bottom: 48px;
         scroll-margin-top: 80px;
             BACKGROUND-COLOR: #ededed;
       }

       .prod_tile {
         font: 624 37px / 52px ToyotaTypeReact;
          letter-spacing: 0px;
          margin-bottom: 32px;
           text-align: center;
               BACKGROUND: #dde1f2;
        }
        .prod_list{
                  gap: 20px;
                  position: relative; display: grid;
                  grid-template-columns: repeat(3, 1fr);
        }


        @media (min-width: 1001px) {
        .prod_list_det {
         padding: 56px 56px 48px;
       }
}

@media (min-width: 641px) {
    .prod_list_det {
        padding: 56px 58px 40px;
    }
}

.prod_list_det {
    border: 1px solid rgb(239, 239, 239);
    padding: 24px 16px;
}


.prod_list_taple {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.MAKE_year {
    padding: 4px 8px;
    border-radius: 4px;
    background-color: oklab(0.68 0.01 -0.03);
    color: rgb(255, 255, 255);
    position: absolute;
  /*  top: 4px;
    left: 4px; */
    font: 600 12px / 1.4 ToyotaTypeReact;
    letter-spacing: normal;
}



.prod_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

@media (max-width: 640px) {
    .prod_list_det .sc-hgaCvi {
            font: 600 23px / 24px ToyotaTypeReact;
        letter-spacing: 0px;
        BACKGROUND: #ddddd4;
        HEIGHT: 45px;
        /* FONT-WEIGHT: BOLD; */
        /* TEXT-ALIGN: center; */
        /* BORDER-INLINE: #b3d8cc; */
        /* ALIGN-ITEMS: center; */
        PADDING: 10px;
    }
}

.prod_list_det .sc-ggpZZC {
    padding: 0px;
        margin: 15px 0px 5px;
}

.dSsJAS {
    position: relative;
}

.hsithn {
    position: relative;
    width: 100%;
    z-index: 0;
}




@media (max-width: 1200px) {
   .prod_list {
    gap: 20px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
}


@media (max-width: 650px) {
   .prod_list {
    gap: 20px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
}





.intro-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.intro-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.icon-box {
  width: 55px;
  height: 55px;
  background: #0066cc10;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-box img {
  width: 28px;
}

.intro-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.intro-card p {
  line-height: 1.8;
  font-size: 15px;
  color: #555;
}

.fa{
  display:inline-block;
  font:normal normal normal 14px/1 FontAwesome;
  font-size:inherit;
  text-rendering:auto;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale}

.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}


.fa-whatsapp:before{content:"\f232"}

.fa-twitter:before{content:"\f099"}

.fa-instagram:before{content:"\f16d"}
.fa-youtube:before{content:"\f167"}

img.img-responsive {
    max-width: 35%;
    /* display: block; */
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}


/* =======================
      GRID SYSTEM --cz-gutter-x: 1.875rem;
======================= */

.row {
  --cz-gutter-x: 0;
  --cz-gutter-y: 0;
  margin-top: calc(-1 * var(--cz-gutter-y));
  margin-right: calc(-0.5 * var(--cz-gutter-x));
  margin-left: calc(-0.5 * var(--cz-gutter-x));
      align-content: space-around;
    justify-content: center;
    justify-items: stretch;
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
}

.row > * {
  flex-shrink: 0;
    width: 50%;         /* 4 أعمدة افتراضياً */
  padding-right: calc(var(--cz-gutter-x) * .5);
  padding-left: calc(var(--cz-gutter-x) * .5);
  margin-top: var(--cz-gutter-y);
}



.row-CON {
  --cz-gutter-x: 0;
  --cz-gutter-y: 0;
  margin-top: calc(-1 * var(--cz-gutter-y));
  margin-right: calc(-0.5 * var(--cz-gutter-x));
  margin-left: calc(-0.5 * var(--cz-gutter-x));
      align-content: space-around;
    justify-content: center;
    justify-items: stretch;
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
}

.row-CON > * {
  flex-shrink: 0;
    width: 50%;         /* 4 أعمدة افتراضياً */
  padding-right: calc(var(--cz-gutter-x) * .5);
  padding-left: calc(var(--cz-gutter-x) * .5);
  margin-top: var(--cz-gutter-y);
}
/* موبايل – عمودين */
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

/* تابلت – 3 أعمدة */
@media (min-width: 500px) {
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
    .col-sm-con {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

/* ديسكتوب – 4 أعمدة */
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (max-width: 750px) {
.col-6 {
    flex: 0 0 auto;
    width: 70%;
}

    .row,.row-CON {
        --cz-gutter-x: 0;
        --cz-gutter-y: 0;
        display: grid;
           grid-template-columns: repeat(1, 1fr);
        margin-top: calc(-1 * var(--cz-gutter-y));
        margin-right: calc(-0.5 * var(--cz-gutter-x));
        margin-left: calc(-0.5 * var(--cz-gutter-x));
        justify-content: space-between;
        TEXT-ALIGN: center;
    }

    img.img-responsive {
      max-width: 40%;
    /* display: block; */
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
}
/* =======================
      BRAND BOX
======================= */
.opening-hours {
    width: 100%;
    TEXT-ALIGN: center;
}

.footer-thumb{
    width: 100%;
}
a.d-block.bg-white.shadow-sm.rounded-3.py-3.py-sm-4.mb-grid-gutter {
  width: 200px;        /* حجم ثابت للصندوق */
  height: 100px;
  display: flex;       /* مركز الصورة بالكامل */
  justify-content: center;
  align-items: center;
  margin: auto;        /* يخلي كل box في النص */
}

img.d-block.mx-auto {
  max-width: 100%;
  height: auto;
}

/* =======================
      UTILITIES
======================= */

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-sm-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-lg-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.rounded-3 {
  border-radius: var(--cz-border-radius-lg) !important;
}

.bg-white {
  background-color: rgba(255, 255, 255, 1) !important;
}

.mb-grid-gutter {
  margin-bottom: 1.875rem !important;
}

.shadow-sm {
  box-shadow: 0 .125rem .3rem -0.0625rem rgba(0,0,0,.03),
              0 .275rem .75rem -0.0625rem rgba(0,0,0,.06) !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =======================
    CONTAINER SYSTEM
======================= */

.containers,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-right: calc(var(--cz-gutter-x) * .5);
  padding-left: calc(var(--cz-gutter-x) * .5);
}

/* اختيار النص */
::selection {
  background: rgba(78, 84, 200, .15);
}




.col-lg-1,.col-sm-con,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-sm-1,.col-sm-10,.col-sm-con,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9 {
        float:left;
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }
   .col-sm-con {
        width: 33.33333333%
    }
    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}


@media (min-width: 768px) {
    .col-sm-1,.col-sm-con,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9 {
        float:left;
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-con {
       /* width: 33.33333333%*/
        width: 100%;
        TEXT-ALIGN: center;
        HEIGHT: 100px;
    }
  .col-sm-4 {
       width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}
