.image1 {
    width: 95vw;
    height: 600px;
}
.category-section {
    text-align: center;
    padding: 20px;
    background-color: white;
}
.category-section h1 {
    margin: 50px;
    color: #000000;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    justify-items: center;
    margin-bottom: 50px;
}
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.category-item {
    text-align: center;
}
.link-circle {
    text-decoration: none;
    color: #0b0f85;
    transition: color 0.3s ease;
}
.link-circle:hover {
    color: #04096c;
}
.icon-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #dfebf6;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.icon-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.category-item:hover .icon-circle {
    transform: scale(1.1);
    background-color: #e0e7f1;
}
.brand {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    max-width: 100%;
    padding: 20px;
    margin: 0 35px;
    background: white;
    justify-content: center;
    justify-items: center;
}
.brand img {
    max-width: 90%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}
.br{
    font-size: 75px;
    font-weight: bold;
    margin-top: 100px;
}
/* compact search box */
  .offers-search {
    --search-width: 320px;               /* desktop width (smaller) */
    width: 100%;
    max-width: var(--search-width);
    margin: 16px;                        /* base margin (overridden below per dir) */
    padding: 10px;
    border: 1px solid #ffffff;
    border-radius: 12px;
    background: #04096c;
    color: white;
  }
  .offers-search .search-row { display: grid; gap: 6px; }
  .offers-search label { font-size: 16px; opacity: .85; text-align: start; }
  .offers-search input[type="search"]{
    height: 36px;                        /* decreased height */
    padding: 0 10px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    font-size: 14px;
    background: #ffffff;
    outline: none;
  }
  .offers-search input[type="search"]:focus { border-color: #ffffff; }

  .offers-suggest-box{
      position: absolute; left: 0; right: 0; top: 100%;
      background: #04096c; border: 1px solid #000000; border-radius: 8px;
      margin-top: 6px; box-shadow: 0 8px 20px rgb(0, 0, 0);
      z-index: 50; max-height: 320px; overflow-y: auto; display: none;
    }
    .offers-suggest-item{ padding: 10px 12px; cursor: pointer; }
    .offers-suggest-item:hover, .offers-suggest-item.active{ background: rgba(255, 255, 255, 0.09); }
    .offers-suggest-model{ font-weight: 600; margin-inline-start: 8px; opacity: .85; }
    .offers-suggest-sec{ font-size: 12px; opacity: .7; margin-top: 2px; }

  /* align box to the start side based on page direction */
  html[dir="ltr"] .offers-search { margin-left: 100px; margin-right: auto; } /* left on English */
  html[dir="rtl"] .offers-search { margin-right: 100px; margin-left:  auto; } /* right on Arabic  */
/* ===== Top Selling Circles (Desktop) =====
   Uses your existing .icon-circle for size/color. Keep GAP in sync with JS (14px). */
.gtext{
    font-size: 35px;
    font-weight: bolder;
}
/* ===== Promo Video Section ===== */
.promo-video {
  text-align: center;
  background: #ffffff;
  padding: 40px 20px;
  margin: 40px auto;
}

.video-player {
  width: 90%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
  background: #000; /* fallback background */
}


