/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 1270:4 Unexpected "<"
Line 1418:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
     
      /* body, html {
        font-family: 'Segoe UI', sans-serif;
        color: #fff;
        height: 100%;
        overflow-x: hidden;
        width: 100%;
      } */

      .header_custom {
        display: flex;
        justify-content: right;
        align-items: right;
        width: 100%;
        border: #000000 2px;
        padding: 20px 50px;
        background: white;
      }

      .logo_custom {
        display: flex;
        align-items: center;
        font-size: 24px;
        font-weight: bold;
        color: red;
      }

      .logo_custom img {
        height: 80px;
        margin-right: 10px;
      }

      nav_custom a {
        margin-left: 30px;
        text-decoration: none;
        color: black;
        font-weight: 500;
      }

      nav_custom a:first-child {
        color: red;
      }

      .slider {
        position: relative;
        height: 90vh;
        overflow: hidden;

      }

      .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;

        transition: opacity 1s ease-in-out;
      }

      .slide.active {
        opacity: 1;
        z-index: 1;
      }

      /* .overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 2;
      } */

      .hero-content {
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 50px;
        transform: translateY(-50%);
        max-width: 500px;
      }

      .hero-content h1 {
        font-size: 36px;
        line-height: 1.4;
      }

      .hero-content h1 span {
        color: red;
      }

      .circle-icons {
        position: absolute;
        right: 100px;
        top: 50%;
        transform: translateY(-50%);
        width: 500px;
        height: 500px;
        border-radius: 50%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 3;
      }

      .circle-icons::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(0, 191, 255, 0.2);
        border: 1px dashed cyan;
        z-index: -1;
      }
/* 
      .icon {
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
      }

      .icon img {
        width: 40px;
        height: 40px;
      } */

      .floating-bar {
        position: absolute;
        bottom: 50px;
        right: 200px;
        background: white;
        border-radius: 30px;
        padding: 10px 20px;
        display: flex;
        gap: 20px;
        align-items: center;
        z-index: 4;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      }

      .floating-bar .icon-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        color: black;
      }

      .floating-bar .icon-bar img {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
      }

      .info-cards {
      display: flex;
      justify-content: center;
      gap: 30px;
      background: #f7f7f7;
      padding: 60px 20px;
    }

    .card {
      background: #fff;
      padding: 100px 100px;
      border-radius: 10px;
      text-align: center;
      width: 500px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .card h2 {
      margin-bottom: 20px;
      color: #000000;
      font-size: 34px;
      font-weight: 100;
    }

    .card img {
      max-width: 300px;
      height: auto;
    }

    .about-itel {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 80px 60px;
      background: #fff;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
      max-width: 600px;
    }

    .about-text h2 {
      margin-bottom: 20px;
      color: #000000;
      font-size: 34px;
      font-weight: 100;
    }

    .underline {
      width: 40px;
      height: 3px;
      background: red;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 18px;
      line-height: 1.7;
      color: #555;
    }

    .about-image {
      flex: 1;
      max-width: 600px;
    }

    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 6px;
    }

    @media screen and (max-width: 768px) {
      .about-itel {
        flex-direction: column;
        padding: 40px 20px;
      }

      .about-text,
      .about-image {
        max-width: 100%;
      }

      .about-text h2 {
        font-size: 28px;
      }
    }

    .news-events {
      padding: 80px 40px;
      background: #fff;
      text-align: center;
    }

    .section-title {
      font-size: 36px;
      color: #333;
      margin-bottom: 8px;
    }

    .underline {
      width: 40px;
      height: 3px;
      background: red;
      margin: 0 auto 40px;
    }

    .news-grid {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .news-card {
      background: #fff;
      width: 400px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .news-card img {
      width: 100%;
      border-radius: 6px;
      margin-bottom: 15px;
    }

  .news-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.4; /* keeps proper spacing between lines */
  min-height: 30px; /* ensures consistent card alignment if you need it */
}

    .news-card p {
      font-size: 15px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 15px;
    }

    .news-card .date {
      font-size: 14px;
      color: #888;
    }

    @media screen and (max-width: 992px) {
      .news-grid {
        flex-direction: column;
        align-items: center;
      }
    }
    .store-locator {
      padding: 80px 40px;
      background: #fff;
      text-align: center;
    }

    .store-locator h2 {
      font-size: 32px;
      color: #222;
      margin-bottom: 8px;
    }

    .underline {
      width: 40px;
      height: 2px;
      background: red;
      margin: 0 auto 40px;
    }

    .selectors {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .selectors select {
      padding: 12px 16px;
      font-size: 16px;
      border: 1px solid #ccc;
      min-width: 200px;
      border-radius: 4px;
      appearance: none;
      background: white url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='black' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 10px center;
      background-size: 16px;
      cursor: pointer;
    }

    .store-info {
      max-width: 800px;
      margin: auto;
      text-align: left;
      color: #000000;
    }

    .store-info h3 {
      margin-bottom: 15px;
      color: #111;
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    table th,
    table td {
      padding: 12px 16px;
      border: 1px solid #ddd;
      text-align: left;
    }

    table th {
      background: #d40707;
      color: white;
    }


    .franchise-section {
      background: #2c2c2c;
      color: white;
      padding: 60px 0;
      font-family: MarkOT, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial;
    }

    .franchise-container {
      width: 60%;
      margin: 0 auto;
    }

    .form-grid {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }

    .form-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 500;
    }
    .form-group{
      padding: 10px;
    }
    .form-group input[type="text"],
    .form-group input[type="number"],
    .form-group select {
      width: 100%;
      padding: 10px;
      margin-top: 20px;
      border: none;
      border-radius: 4px;
      font-size: 15px;
    }

    .form-submit {
      text-align: center;
      margin-top: 20px;
    }

    .form-submit button {
      background: red;
      border: none;
      padding: 14px 40px;
      color: white;
      font-size: 18px;
      border-radius: 4px;
      cursor: pointer;
    }

    .form-footer {
      display: flex;
      justify-content: space-between;
      margin-top: 40px;
      font-size: 14px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .form-footer a {
      color: #fff;
      text-decoration: underline;
    }

    @media (max-width: 992px) {
      .franchise-container {
        width: 80%;
      }
      .form-grid {
        flex-direction: column;
      }
    }

    @media (max-width: 576px) {
      .franchise-container {
        width: 95%;
      }
    }
    .hero-pagination {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .hero-pagination .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: white;
      opacity: 0.5;
      cursor: pointer;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .hero-pagination .dot.active {
      opacity: 1;
      transform: scale(1.3);
      background: red;
    }

    .products-section {
      padding: 60px 40px;
      text-align: center;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      margin-left: 200px;
      margin-right: 200px;
      align-content: center;
    }

    .products-section h2 {
      font-size: 36px;
      color: #222;
    }

    .underline {
      width: 40px;
      height: 2px;
      background: red;
      margin: 10px auto 30px;
    }

    .products-intro {
      max-width: 800px;
      margin: 0 auto 50px;
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    /* .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      justify-content: center;
    } */

    .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* fixed 3 columns */
    justify-content: center;
  }

  #secondbox{
    background-color: white;
  }

  @media (max-width: 992px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
    .products-section{
      margin: 0;
    }
  }

  @media (max-width: 576px) {
    .product-grid {
      grid-template-columns: 1fr; /* 1 column for mobile */
    }
    .products-section{
      margin: 0;
    }
  }

    .product-box {
      background: #f8f8f8;
      padding: 20px;
      position: relative;
      border-radius: 8px;
      transition: box-shadow 0.3s ease;
    }

    .product-box:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .product-box img {
      width: 100%;
      height: auto;
      margin-top: 15px;
    }

    .tag {
      position: absolute;
      top: 0;
      left: 0;
      background: red;
      color: white;
      padding: 6px 14px;
      font-size: 14px;
      font-weight: bold;
      border-radius: 0 0 6px 0;
    }
    .our-service-section {
      background: #f9f9f9;
      padding: 100px 20px;
      font-family: 'Segoe UI', sans-serif;
    }

    .services-wrapper {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      text-align: center;
      color: white;
    }

    .services-col {
      display: flex;
      flex-direction: column;
      gap: 40px;
      flex: 1;
      align-items: center;
    }

    .services-center {
      flex: 1;
      text-align: center;
      padding: 0 40px;
    }

    .services-center h2 {
      font-size: 36px;
      color: #111;
    }

    .services-center .underline {
      width: 100px;
      height: 2px;
      background: red;
      margin: 10px auto 0;
    }

    .service-box {
      background: #f7023b;
      padding: 30px 20px;
      border-radius: 30px;
      width: 230px;
      color: white;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .service-box img {
      width: 40px;
      margin-bottom: 15px;
    }

    .service-box h4 {
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .service-box p {
      font-size: 13px;
      line-height: 1.4;
    }

    @media (max-width: 992px) {
      .services-wrapper {
        flex-direction: column;
        gap: 50px;
      }

      .services-center {
        order: -1;
        padding: 0;
      }
    }

    .join-itel-home {
    background: #4b0003 url('your-pattern.png') center/cover no-repeat;
    color: WHITE;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }

  .join-itel-home h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .form-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    text-align: left;
  }

  .form-group label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .form-group input[type="text"],
  .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #fff;
    border-radius: 30px;
    background: transparent;
    color: white;
    font-size: 15px;
    outline: none;
  }

  .form-group input::placeholder,
  .form-group select {
    color: #ccc;
  }

  input[type="radio"],
  input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    vertical-align: middle;
    position: relative;
  }

  input[type="radio"]:checked::before,
  input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
  }

  input[type="checkbox"] {
    border-radius: 4px;
  }

  input[type="checkbox"]:checked::before {
    width: 6px;
    height: 6px;
    border-radius: 2px;
  }

  .form-submit {
    margin-top: 50px;
  }

  .form-submit button {
    background: #fff;
    color: #f7023b;
    border: none;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 60px;
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .form-submit button:hover {
    background: #f1f1f1;
  }

  .icon-links {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 40px 0;
    background: #fff;
  }

  .link-box {
    text-align: center;
  }

  .link-box img {
    height: 60px;
    margin-bottom: 10px;
  }

  .link-box p {
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    color: #000000;
  }

  .link-box .underline {
    width: 100px;
    height: 2px;
    background-color: red;
    margin: 6px auto 0;
    border-radius: 2px;
  }


  @media (max-width: 768px) {
    .form-grid {
      grid-template-columns: 1fr;
    }

    .form-group {
      width: 100%;
    }
  }
  /* ==== TOP CATEGORIES (REPLACEMENT) ==== */
.top-categories-section {
  background: #fff;
  padding: 0px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.top-categories-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.top-categories-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 on desktop/tablet */
  gap: 20px;
  padding: 16px;                 /* remove big inner padding so cards align nicely */
  background: transparent;    /* let the page control background, not the grid */
  border-radius: 16px;
}

.category-card {
  position: relative;
  background: #fff;           /* card is white */
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px 16px 20px;    /* top padding gives space under the tag */
  height: 220px;              /* shorter than before */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.category-card img {
  display: block;
  max-width: 86%;
  max-height: 72%;
  width: auto;                /* scale proportionally */
  height: auto;
  object-fit: contain;        /* keep image intact */
  pointer-events: none;       /* avoid accidental drags */
}

/* Red pill tag stays inside, not overlapping weirdly */
.category-card .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f7023b;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 2;
  white-space: nowrap;        /* keep one-line */
}

/* MOBILE: 2 per row only here */
@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .category-card {
    height: 200px;
    padding: 14px 12px 16px;
  }

  .category-card img {
    max-width: 90%;
    max-height: 70%;
  }

  .category-card .tag {
    font-size: 8px;
    flex-wrap: wrap;
    padding: 6px 10px;
  }
}

  .eid-banner {
    background:  url('https://images.unsplash.com/photo-1568535904307-f48b760a39f3?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8cmVkJTIwdGV4dHVyZXxlbnwwfHwwfHx8MA%3D%3D') center/cover no-repeat;;
    padding: 30px 20px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .eid-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .left-text,
  .right-text {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    color: white;
    flex: 1;
  }

  .timer {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .timer-box {
    background: white;
    color: black;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    min-width: 60px;
  }

  .timer-box small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .eid-banner-inner {
      flex-direction: column;
      gap: 20px;
    }

    .left-text,
    .right-text {
      font-size: 20px;
    }
  }
  .deals-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    text-align: center;
  }

  .deals-section h2 {


    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .deals-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .deal-left {
    flex: 1 1 300px;
    max-width: 320px;
  }

  .deal-banner {
    background-color: #101010;
    border-radius: 20px;
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    text-align: left;
  }

  .banner-text h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .banner-text p {
    font-size: 14px;
    margin-bottom: 16px;
    color: #555;
  }

  .banner-text button {
    padding: 8px 16px;
    border: 1px solid #333;
    background: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
  }

  .deal-banner img {
    width: 100%;
    border-radius: 20px;
    height: auto;
  }

  .deal-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* flex: 2 1 600px; */
  }

  .deal-card {
    background: #f8f8f8;
    border-radius: 20px;
    transition: all 0.3s ease;
    width: 300px;
    height: 300px;
  }

  .deal-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .deal-card img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }

  @media (max-width: 768px) {
    .deals-grid {
      flex-direction: column;
    }

    .deal-right {
      grid-template-columns: 1fr;
    }

    .deal-left {
      max-width: 100%;
    }
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 40px;
    position: relative;
  }

  .product-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 16px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }

  .product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  }

  .badge-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .eid-badge {
    background: linear-gradient(135deg, #9c0101, #ce3333);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
  }

  .badge-best {
    background: gold;
    color: #333;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 12px;
    font-weight: 600;
  }

  .product-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
  }

  .product-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    min-height: 42px;
    margin-bottom: 4px;
  }

  .eid-offer-text {
    color: #008060;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .price-section {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }

  .old-price {
    text-decoration: line-through;
    color: #999;
  }

  .discount {
    background-color: #e50914;
    color: white;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: 600;
  }

  .new-price {
    font-size: 18px;
    font-weight: 700;
    margin-top: 6px;
    color: #111;
  }

  .actions {
    margin-top: 12px;
  }

  .add-to-cart {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 10px 16px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .add-to-cart:hover {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
  }

  .eid-stamp {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 40px;
  }

  .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .product-link:hover .product-card {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
  }

  .eid-sale-heading {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: #1E1E3F;
    text-transform: uppercase;
    background: linear-gradient(to right, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
  }

    </style>
<style>
    /* ====== GLOBAL / RESET-LITE ====== */
    :root{
      --itel-red:#f7023b;
      --text:#111;
      --muted:#555;
      --card:#f8f8f8;
      --radius:20px;
    }
    *,*::before,*::after{box-sizing:border-box}
    #itel-home img{max-width:100%;height:auto;display:block}
    #itel-home a{text-decoration:none;color:inherit}

    /* Better responsive typography */
    #itel-home h1{font-size:clamp(24px,5vw,40px);line-height:1.25;margin:0 0 12px}
    #itel-home h2{font-size:clamp(20px,3.5vw,36px);line-height:1.3;margin:0 0 10px}
    #itel-home h3{font-size:clamp(18px,2.8vw,22px);line-height:1.35;margin:0 0 8px}
    #itel-home p{font-size:clamp(14px,1.8vw,16px);line-height:1.7;color:var(--muted)}

    /* Utility: centered container that breathes on desktop, hugs on mobile */
    .itel-home-wrap{max-width:1200px;margin:0 auto;padding:0 16px}

    /* ====== HEADER (optional slot styles if used later) ====== */
    .itel-home-header_custom{display:flex;justify-content:flex-end;align-items:center;width:100%;padding:16px 24px;background:#fff}
    .itel-home-logo_custom{display:flex;align-items:center;font-weight:700;color:red}
    .itel-home-logo_custom img{height:64px;margin-right:10px}

    /* ====== HERO / SLIDER (kept minimal; auto-scales) ====== */
    .itel-home-slider{position:relative;height:70vh;min-height:360px;max-height:820px;overflow:hidden}
    .itel-home-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity .6s ease}
    .itel-home-slide.active{opacity:1;z-index:1}
    .itel-home-hero-content{position:absolute;z-index:3;inset:auto auto 12% 16px;max-width:min(560px,90%)}
    .itel-home-hero-content h1 span{color:var(--itel-red)}

    /* Circle icons: show on lg, hide on small */
    .itel-home-circle-icons{position:absolute;right:40px;top:50%;transform:translateY(-50%);width:420px;height:420px;border-radius:50%;display:none;flex-wrap:wrap;justify-content:center;align-items:center;gap:16px;z-index:3}
    .itel-home-circle-icons::before{content:"";position:absolute;inset:0;border-radius:50%;background:rgba(0,191,255,.08);border:1px dashed cyan;z-index:-1}

    /* ====== TOP CARDS SECTION ====== */
    .itel-home-top-cards{display:flex;justify-content:center;gap:32px;padding:48px 16px;background:#fff;flex-wrap:wrap}
    .itel-home-top-card{background:#fff;border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,.1);padding:40px 32px;text-align:center;min-width:280px;flex:1;transition:transform .3s ease, box-shadow .3s ease}
    .itel-home-top-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.15)}
    .itel-home-top-card h3{font-size:clamp(24px,3.5vw,36px);font-weight:700;color:#000;margin:0 0 20px}
    .itel-home-top-card-icon{width:180px;height:180px;margin:0 auto 20px;display:flex;align-items:center;justify-content:center}
    .itel-home-top-card-icon img{max-width:100%;max-height:100%;object-fit:contain}
    .itel-home-top-card-logo{width:280px;height:auto;margin:25px auto;display:block}

    /* ====== ABOUT SECTION ====== */
    .itel-home-about-itel{display:flex;gap:48px;align-items:center;padding:64px 16px;background:#fff}
    .itel-home-about-text{flex:1;min-width:260px;max-width:600px}
    .itel-home-about-text h2{font-size:clamp(24px,3.5vw,36px);font-weight:700;color:#000;margin:0 0 24px;position:relative;display:inline-block;padding-bottom:8px}
    .itel-home-about-text h2::after{content:"";position:absolute;left:0;bottom:0;width:100px;height:3px;border-top:3px solid #f7023b;display:block;z-index:1}
    .itel-home-about-text .itel-home-underline{display:none}
    .itel-home-about-text p{font-size:clamp(15px,1.8vw,17px);line-height:1.8;color:var(--muted);margin:0}
    .itel-home-about-image{flex:1;min-width:300px}
    .itel-home-about-image img{width:100%;height:auto;border-radius:12px;box-shadow:0 6px 24px rgba(0,0,0,.1)}

    /* ====== NEWS / EVENTS (kept optional) ====== */
    .itel-home-news-events{padding:56px 0;background:#fff;text-align:center}
    .itel-home-news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
    .itel-home-news-card{background:#fff;text-align:left;border-radius:12px;box-shadow:0 5px 15px rgba(0,0,0,.06);padding:16px;transition:transform .25s ease, box-shadow .25s ease}
    .itel-home-news-card:hover{transform:translateY(-4px);box-shadow:0 10px 24px rgba(0,0,0,.1)}
    .itel-home-news-card h3{font-weight:500;line-height:1.35;min-height:30px}

    /* ====== STORE LOCATOR (table becomes scrollable on small) ====== */
    .itel-home-store-locator{padding:56px 0;background:#fff;text-align:center}
    .itel-home-selectors{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin:0 0 20px}
    .itel-home-selectors select{padding:10px 14px;font-size:16px;border:1px solid #ccc;min-width:200px;border-radius:6px;background:#fff}
    .itel-home-store-info{max-width:900px;margin:0 auto;text-align:left;color:#000}
    .itel-home-table-scroll{overflow-x:auto;border-radius:8px}
    #itel-home table{width:100%;border-collapse:collapse;min-width:640px}
    #itel-home table th,#itel-home table td{padding:12px 14px;border:1px solid #eee;text-align:left}
    #itel-home table th{background:#d40707;color:#fff}

    /* ====== PRODUCTS GRID ====== */
    .itel-home-products-section{padding:48px 0;text-align:center;background:#fff}
    .itel-home-products-intro{max-width:800px;margin:0 auto 28px}
    .itel-home-product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
    .itel-home-product-box{background:var(--card);padding:16px;border-radius:12px;position:relative;transition:box-shadow .25s ease}
    .itel-home-product-box:hover{box-shadow:0 6px 20px rgba(0,0,0,.1)}
    .itel-home-product-box .itel-home-tag{position:absolute;top:0;left:0;background:var(--itel-red);color:#fff;padding:6px 12px;border-radius:0 0 8px 0;font-size:12px;font-weight:700}

    /* ====== SERVICES ====== */
    .itel-home-our-service-section{background:#f9f9f9;padding:56px 0}
    .itel-home-services-wrapper{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:1fr auto 1fr;gap:28px;align-items:center;text-align:center}
    .itel-home-service-box{background:var(--itel-red);padding:24px;border-radius:28px;width:100%;max-width:240px;color:#fff;margin:0 auto;box-shadow:0 4px 20px rgba(0,0,0,.08)}

    /* ====== DEALS (image cards) ====== */
    .itel-home-deals-section{padding:48px 0;background:#fff;text-align:center}
    .itel-home-deals-grid{display:grid;grid-template-columns:320px 1fr;gap:20px;align-items:start}
    .itel-home-deal-left .itel-home-deal-banner{background:#101010;border-radius:20px;overflow:hidden}
    .itel-home-deal-right{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
    .itel-home-deal-card{background:#f8f8f8;border-radius:20px;overflow:hidden;transition:transform .25s ease, box-shadow .25s ease}
    .itel-home-deal-card:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(0,0,0,.12)}
    .itel-home-deal-card img{width:100%;height:100%;object-fit:cover}

    /* ====== Eid Product Cards (kept) ====== */
    .itel-home-product-card{background:#fff;border-radius:16px;box-shadow:0 6px 18px rgba(0,0,0,.08);overflow:hidden;padding:16px;position:relative;transition:transform .25s ease, box-shadow .25s ease}
    .itel-home-product-card:hover{transform:scale(1.02)}

    /* ====== RESPONSIVE BREAKPOINTS ====== */
    @media (max-width:1200px){
      .itel-home-circle-icons{display:none}
    }
    @media (max-width:992px){
      .itel-home-news-grid{grid-template-columns:repeat(2,1fr)}
      .itel-home-product-grid{grid-template-columns:repeat(2,1fr)}
      .itel-home-deals-grid{grid-template-columns:1fr}
      .itel-home-deal-left{order:2}
      .itel-home-deal-right{order:1}
    }
    @media (max-width:768px){
      .itel-home-slider{height:56vh}
      .itel-home-hero-content{inset:auto 16px 14% 16px}
      .itel-home-top-cards{flex-direction:column;gap:24px;padding:32px 16px}
      .itel-home-top-card{max-width:100%;padding:32px 16px }
      .itel-home-about-itel{flex-direction:column;padding:32px 16px;gap:24px;text-align:left}
      .itel-home-about-text{max-width:100%;text-align:left}
      .itel-home-about-text h2{text-align:left;font-size:clamp(22px,4vw,28px);padding-bottom:8px}
      .itel-home-about-text .itel-home-underline{margin:0 0 20px}
      .itel-home-about-image{min-width:100%;order:2}
      .itel-home-services-wrapper{grid-template-columns:1fr;gap:36px}
      .itel-home-deal-right{grid-template-columns:1fr}
      .itel-home-product-grid{grid-template-columns:1fr}
    }
    @media (max-width:480px){
      .itel-home-top-cards{padding:24px 12px;gap:20px;max-width: 100%}
      .itel-home-top-card{padding:28px 20px;min-width:100%; max-width: 100%}
      .itel-home-top-card h3{font-size:clamp(20px,4vw,24px);margin:0 0 16px}
      .itel-home-top-card-icon{width:140px;height:140px;margin:0 auto 16px}
      .itel-home-top-card-logo{width:200px}
      .itel-home-about-itel{padding:24px 12px;gap:20px}
      .itel-home-about-text h2{font-size:clamp(20px,5vw,24px);margin:0 0 20px; max-width: 1000px;width: 100%;text-align: center;padding-bottom:8px}
      .itel-home-about-text h2::after{left:50%;bottom:0;transform:translateX(-50%);height:3px;border-top:3px solid #f7023b;z-index:1}
      .itel-home-about-text p{font-size:clamp(14px,3.5vw,16px);line-height:1.6}
      .itel-home-about-image img{border-radius:8px}
      .itel-home-selectors select{min-width:160px}
      .about-itel-home{text-align: center;}
    }

    /* ====== ACCESSIBILITY / MOTION ====== */
    @media (prefers-reduced-motion:reduce){
      .itel-home-slide,.itel-home-news-card,.itel-home-product-box,.itel-home-product-card,.itel-home-deal-card{transition:none}
    }

    /* Touch target sizes */
    #itel-home button, #itel-home .add-to-cart, .itel-home-selectors select{min-height:44px}
  </style>
.product-card__features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .product-card__feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-foreground, currentColor);
  }

  .product-card__feature-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 0.7;
  }

  .product-card__feature-icon svg {
    width: 100%;
    height: 100%;
  }

  .product-card__feature-text {
    flex: 1;
  }

  @media (max-width: 699px) {
    .product-card__features {
      gap: 5px;
      margin-top: 6px;
      margin-bottom: 6px;
    }

    .product-card__feature-item {
      font-size: 12px;
      gap: 6px;
    }

    .product-card__feature-icon {
      width: 14px;
      height: 14px;
    }
  }

/* CSS from snippet stylesheet tags */
/* ============================================
     PRODUCT CARD TITLE - 2 Lines Max
     ============================================ */
  
  .product-card__title-wrapper {
    min-height: 3em; /* Ensures consistent height for 2 lines (1.5 line-height * 2 lines) */
  }

  .product-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ============================================
     PRODUCT CARD FEATURES - Single Line Design
     ============================================ */
  
  .product-card__features {
    margin-top: 8px;
    margin-bottom: 8px;
    width: 100%;
    position: relative;
    min-height: 1px; /* Ensures div always renders and maintains spacing even when empty */
  }

  .product-card__features-text {
    display: inline-block;
    font-size: 13px;
    line-height: 1.5;
    color: rgb(var(--text-primary) / 0.75);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  /* Hover effect on card hover */
  .product-card:hover .product-card__features-text {
    color: rgb(var(--text-primary));
    font-weight: 600;
  }

  /* Shimmer effect on hover */
  .product-card__features-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent) / 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
  }

  .product-card:hover .product-card__features-text::after {
    left: 100%;
  }

  /* Style pipe separators */
  .product-card__features-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Responsive adjustments for tablets */
  @media (max-width: 999px) and (min-width: 700px) {
    .product-card__features {
      margin-top: 6px;
      margin-bottom: 6px;
    }

    .product-card__features-text {
      font-size: 12.5px;
    }
  }

  /* Mobile responsive styles */
  @media (max-width: 699px) {
    .product-card__features {
      margin-top: 6px;
      margin-bottom: 6px;
    }

    .product-card__features-text {
      font-size: 12px;
      line-height: 1.4;
    }
  }

  /* Extra small screens */
  @media (max-width: 480px) {
    .product-card__features-text {
      font-size: 11px;
    }
  }

  /* Reduced motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    .product-card__features-text {
      transition: none;
    }

    .product-card__features-text::after {
      display: none;
    }
  }

  /* ============================================
     MOBILE OVERLAYS - Ensure visibility
     ============================================ */
  
  @media screen and (max-width: 699px) {
    /* Ensure rating overlay is visible on mobile */
    .product-card__rating-overlay {
      display: block !important;
      position: absolute;
      bottom: 6px;
      left: 6px;
      z-index: 10;
    }

    .product-card__rating-content {
      padding: 4px 8px;
      font-size: 11px;
      flex-wrap: nowrap;
      white-space: nowrap;
      line-height: 1.2;
      display: inline-flex !important;
      gap: 4px;
      border-radius: 14px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    }

    .product-card__rating-star,
    .product-card__rating-value,
    .product-card__rating-count {
      display: inline-block !important;
      white-space: nowrap;
    }

    .product-card__rating-star {
      width: 12px;
      height: 12px;
      margin-right: 1px;
      color: #000000;
    }

    .product-card__rating-value {
      font-size: 11px;
      font-weight: 700;
      color: #1a1a1a;
    }

    .product-card__rating-count {
      font-size: 10px;
      font-weight: 500;
      color: #666666;
      margin-left: 1px;
    }

    /* Ensure variant indicator is visible on mobile */
    .product-card__variant-indicator {
      display: flex !important;
      position: absolute;
      top: 6px;
      right: 6px;
      z-index: 10;
      padding: 3px 6px;
    }

    .product-card__variant-icon {
      width: 28px;
      height: 28px;
    }
  }