
  /* =============================================
     CUSTOM BANNER - ALL CSS CLASSES
  ============================================= */

  .custom_banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
	  margin-top:60px !important;
	  margin-bottom:60px !important;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* ---- HERO ---- */
  .custom_banner__hero {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    color: #fff;
  }

  /* ---- CAROUSEL TRACK ---- */
  .custom_banner__carousel {
    position: absolute;
    inset: 0;
    display: flex;
    width: 300%;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  }

  /* ---- EACH SLIDE ---- */
  .custom_banner__slide {
    width: calc(100% / 3);
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 36px 32px 52px;
    color: #fff;
  }

  /* Slide 1 — Blue Kitchen */
  .custom_banner__slide--1 {
    background: linear-gradient(135deg, #4a5ba8 0%, #6878c8 100%);
  }
  /* Slide 2 — Dark Green Electronics */
  .custom_banner__slide--2 {
    background: linear-gradient(135deg, #1a6b4a 0%, #27ae70 100%);
  }
  /* Slide 3 — Deep Orange */
  .custom_banner__slide--3 {
    background: linear-gradient(135deg, #b84a00 0%, #e67e22 100%);
  }

  /* Product image */
  .custom_banner__slide-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    max-width: 300px;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
    transition: transform 0.55s ease;
  }

  /* Discount badge */
  .custom_banner__badge-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f4a425;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .custom_banner__tag {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .custom_banner__slide--2 .custom_banner__tag { background: #1a2340; }
  .custom_banner__slide--3 .custom_banner__tag { background: #c0392b; }

  .custom_banner__slide-content {
    position: relative;
    z-index: 2;
    max-width: 52%;
  }

  .custom_banner__hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2px;
    opacity: 0.9;
  }

  .custom_banner__hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .custom_banner__hero-list {
    list-style: disc;
    padding-left: 18px;
    font-size: 0.82rem;
    opacity: 0.85;
    margin-bottom: 22px;
    line-height: 1.8;
  }

  .custom_banner__cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .custom_banner__btn-primary {
    background: #1a2340;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  .custom_banner__btn-primary:hover { background: #0f1625; }

  .custom_banner__btn-link {
    background: none;
    border: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.85;
    transition: opacity 0.2s;
  }
  .custom_banner__btn-link:hover { opacity: 1; }

  /* ---- DOTS ---- */
  .custom_banner__dots {
    position: absolute;
    bottom: 18px;
    left: 32px;
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .custom_banner__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
  }
  .custom_banner__dot:hover { background: rgba(255,255,255,0.7); }
  .custom_banner__dot--active {
    background: #f4a425;
    transform: scale(1.25);
  }

  /* ---- RIGHT GRID ---- */
  .custom_banner__grid-right {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
  }

  .custom_banner__card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 16px 14px;
    min-height: 164px;
  }

  .custom_banner__card-product-img {
    position: absolute;
    right: 10px;
    bottom: 0px;
    width: 44%;
    max-width: 130px;
    height: 70%;
    object-fit: contain;
    pointer-events: none;
  }

  .custom_banner__card-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
  }

  .custom_banner__card-label {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 3px;
  }

  .custom_banner__card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 3px;
  }

  .custom_banner__card-desc {
    font-size: 0.72rem;
    color: #27ae60;
    font-weight: 500;
  }

  .custom_banner__card-link {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e67e22;
    text-decoration: none;
    cursor: pointer;
  }
  .custom_banner__card-link:hover { text-decoration: underline; }

  .custom_banner__card--tables { background: linear-gradient(135deg, #d6e8f7 0%, #b8d4f0 100%); }
  .custom_banner__card--xbox   { background: linear-gradient(135deg, #d4ede3 0%, #b8e0cc 100%); }
  .custom_banner__card--apple  { background: linear-gradient(135deg, #fef5e4 0%, #fde8c2 100%); }
  .custom_banner__card--samsung{ background: linear-gradient(135deg, #fce8e8 0%, #f8d0d0 100%); }

  .custom_banner__card-product-bg {
  position: absolute;
  right: -10px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;          /* makes it a circle */
  background: #E6F1FB;         /* your chosen color */
  pointer-events: none;
}
@media (max-width: 480px) {
  .custom_banner__card-product-bg {
    width:  100px;
    height: 100px;
    right:  -6px;
    bottom: -24px;
  }
	  .custom_banner {
		padding:0px; 
	  }  
	  }

@media (min-width: 481px) and (max-width: 768px) {
  .custom_banner__card-product-bg {
    width:  130px;
    height: 130px;
    right:  -8px;
    bottom: -30px;
  }
}

@media (min-width: 769px) {
  .custom_banner__card-product-bg {
    width:  180px;
    height: 180px;
    right:  -10px;
    bottom: -40px;
  }
}
  /* =============================================
     RESPONSIVE
  ============================================= */
  @media (max-width: 768px) {
    .custom_banner {
		padding:4px;
		  margin-top:30px;
	  margin-bottom:30px;
      grid-template-columns: 1fr;
    }
    .custom_banner__hero {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
      min-height: 400px;
    }
    .custom_banner__slide { padding: 24px 20px 48px; }
    .custom_banner__hero-title { font-size: 1.5rem; }
    .custom_banner__hero-subtitle { font-size: 0.95rem; }
    .custom_banner__slide-img { width: 46%; }
    .custom_banner__grid-right {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
      grid-template-columns: 1fr 1fr;
    }
    .custom_banner__card { min-height: 140px; }
  }

  @media (max-width: 480px) {
    .custom_banner__hero {
      min-height: 500px;
    }
	    .custom_banner {
	
		  margin-top:40px !important;
	  margin-bottom:70px;
    }
    .custom_banner__grid-right { grid-template-columns: 1fr 1fr; }
    .custom_banner__slide-content { max-width: 68%; }
    .custom_banner__slide-img { width: 75%; }
    .custom_banner__hero-title { font-size: 1.25rem; }
  }




  /* =============================================
     CUSTOM BRANDS — ALL CSS CLASS NAMES
  ============================================= */

  /* Outer wrapper — hides overflow for infinite scroll */
  .custom_brands {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 18px 0;
    position: relative;
  }

  /* Fade edges left & right */
  .custom_brands::before,
  .custom_brands::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  .custom_brands::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
  }
  .custom_brands::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
  }

  /* The scrolling track — duplicated for seamless loop */
  .custom_brands__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: custom_brands_scroll 28s linear infinite;
  }

  /* Pause on hover */
  .custom_brands:hover .custom_brands__track {
    animation-play-state: paused;
  }

  /* One set of brand items */
  .custom_brands__list {
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* Individual brand item */
  .custom_brands__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 38px;
    border-right: 1.5px solid #e8ecf4;
    flex-shrink: 0;
  }
  .custom_brands__item:last-child {
    border-right: none;
  }

  /* Brand logo image */
  .custom_brands__logo {
    height: 28px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.35) brightness(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
    display: block;
  }

  /* Brand text fallback (shown when no real image) */
  .custom_brands__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #b0b8d0;
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-style: italic;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
  }

  /* Hover — reveal color */
  .custom_brands__item:hover .custom_brands__logo {
    filter: grayscale(0%) opacity(1) brightness(1);
    transform: scale(1.08);
  }
  .custom_brands__item:hover .custom_brands__name {
    color: #3a5bd9;
    transform: scale(1.08);
  }

  /* ---- Keyframe: infinite left scroll ---- */
  @keyframes custom_brands_scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* =============================================
     RESPONSIVE
  ============================================= */
  @media (max-width: 768px) {
    .custom_brands__item { padding: 0 24px; }
    .custom_brands__logo { height: 22px; }
    .custom_brands__name { font-size: 0.88rem; }
    .custom_brands__track { animation-duration: 20s; }
  }

  @media (max-width: 480px) {
    .custom_brands__item { padding: 0 18px; }
    .custom_brands__logo { height: 18px; }
    .custom_brands__name { font-size: 0.75rem; }
    .custom_brands__track { animation-duration: 16s; }
  }


.custom_categories { padding: 1.5rem 0; }

.custom_categories__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.custom_categories__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
}

.custom_categories__subtitle {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}

.custom_categories__nav {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.custom_categories__btn {
  width: 32px;
  height: 32px;
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.custom_categories__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.custom_categories__btn:not(:disabled):hover {
  background: #f8f9fa;
}

/* Desktop grid */
.custom_categories__outer { overflow: hidden; }

.custom_categories__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

/* Tablet */
@media (max-width: 991px) {
  .custom_categories__track {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile — horizontal scroll */
@media (max-width: 575px) {
  .custom_categories__outer { overflow-x: auto; }

  .custom_categories__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .custom_categories__track::-webkit-scrollbar { height: 3px; }
  .custom_categories__track::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
  }

  .custom_categories__item {
    flex: 0 0 calc(33.33% - 7px);
    scroll-snap-align: start;
  }
}

/* Card */
.custom_categories__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 14px 10px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  background: #fff;
  gap: 8px;
  transition: border-color 0.15s, background 0.15s;
  height: 100%;
  box-sizing: border-box;
}

.custom_categories__item a:hover {
  border-color: #adb5bd;
  background: #f8f9fa;
}

.custom_categories__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: #f1f3f5;
  display: block;
}

.custom_categories__name {
  font-size: 12px;
  font-weight: 600;
  color: #212529;
  line-height: 1.35;
  word-break: break-word;
}

.custom_categories__count {
  font-size: 11px;
  color: #6c757d;
}

/* ── MAIN FOOTER ── */
    .custom_footer {
      background-color: #eef1f6;
      padding: 48px 70px 40px;
    }

    .custom_footer__top {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: space-between;
    }

    /* columns */
    .custom_footer__col {
      flex: 1 1 160px;
      min-width: 140px;
    }

    .custom_footer__col--contact { flex: 1 1 220px; max-width: 280px; }
    .custom_footer__col--app     { flex: 1 1 220px; max-width: 280px; }

    .custom_footer__heading {
      font-size: 16px;
      font-weight: 700;
      color: #1a2e4a;
      margin-bottom: 18px;
    }

    /* contact info */
    .custom_footer__contact-item {
      margin-bottom: 10px;
      line-height: 1.55;
      color: #3a4e65;
    }
    .custom_footer__contact-item strong { color: #1a2e4a; }

    /* social icons */
    .custom_footer__social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }
    .custom_footer__social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #cdd6e3;
      color: #3a5070;
      font-size: 15px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .custom_footer__social a:hover { background: #1a2e4a; color: #fff; }

    /* nav lists */
    .custom_footer__list {
      list-style: none;
      padding: 0;
    }
    .custom_footer__list li {
      margin-bottom: 9px;
    }
    .custom_footer__list li a {
      text-decoration: none;
      color: #3a4e65;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
    }
    .custom_footer__list li a::before {
      content: '▶';
      font-size: 7px;
      color: #3a5070;
      flex-shrink: 0;
    }
    .custom_footer__list li a:hover { color: #1565c0; }

    /* app section */
    .custom_footer__app-text {
      color: #3a4e65;
      line-height: 1.55;
      margin-bottom: 16px;
    }
    .custom_footer__store-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .custom_footer__badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #111;
      color: #fff;
      border-radius: 6px;
      padding: 7px 14px;
      text-decoration: none;
      min-width: 120px;
    }
    .custom_footer__badge i { font-size: 22px; }
    .custom_footer__badge-text { display: flex; flex-direction: column; line-height: 1.2; }
    .custom_footer__badge-text span:first-child { font-size: 10px; opacity: 0.85; }
    .custom_footer__badge-text span:last-child  { font-size: 14px; font-weight: 600; }

    .custom_footer__payment-label {
      font-size: 13px;
      color: #3a4e65;
      margin-bottom: 10px;
    }
    .custom_footer__payment-icons {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
    }
    .custom_footer__payment-icons img {
      height: 28px;
      object-fit: contain;
    }

    /* payment card badges via CSS */
    .pay-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      height: 28px;
      padding: 0 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .pay-visa     { background:#1a1f71; color:#fff; font-size:14px; font-style:italic; padding: 0 10px; }
    .pay-master   { background:#eb001b; color:#fff; position:relative; width:44px; border-radius:4px; overflow:hidden; }
    .pay-master::after {
      content:''; position:absolute; right:0; top:0; bottom:0;
      width:22px; background:#f79e1b; border-radius:0 4px 4px 0;
    }
    .pay-maestro  { background:#0099df; color:#fff; }
    .pay-amex     { background:#007bc1; color:#fff; letter-spacing:0; font-size:10px; }

    /* ── BOTTOM STRIP ── */
    .custom_footer__bottom {

      padding: 28px 0px 0;
    }

    .custom_footer__brand {
      font-size: 22px;
      font-weight: 700;
      color: #1565c0;
      margin-bottom: 14px;
    }

    .custom_footer__electronics {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0;
      font-size: 13px;
      color: #3a4e65;
      padding-bottom: 18px;
      border-bottom: 1px solid #dde2ea;
    }
    .custom_footer__electronics strong {
      color: #1a2e4a;
      margin-right: 8px;
    }
    .custom_footer__electronics a {
      color: #3a4e65;
      text-decoration: none;
      white-space: nowrap;
    }
    .custom_footer__electronics a:hover { color: #1565c0; }
    .custom_footer__electronics .sep {
      margin: 0 6px;
      color: #aab3be;
    }

    .custom_footer__copyright-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0 20px;
      gap: 12px;
    }
    .custom_footer__copyright {
      font-size: 13px;
      color: #5a6d82;
    }
    .custom_footer__legal {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }
    .custom_footer__legal a {
      font-size: 13px;
      color: #3a4e65;
      text-decoration: none;
    }
    .custom_footer__legal a:hover { color: #1565c0; text-decoration: underline; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .custom_footer__top { gap: 24px; }
      .custom_footer__col--contact,
      .custom_footer__col--app { max-width: 100%; }
    }

    @media (max-width: 600px) {
      .custom_footer        { padding: 36px 0px 28px; }
      .custom_footer__bottom{ padding: 0px 0px 0; }
      .custom_footer__top   { flex-direction: column; gap: 28px; }
      .custom_footer__col   { min-width: 100%; }
      .custom_footer__store-badges { flex-direction: column; }
      .custom_footer__copyright-bar { flex-direction: column; align-items: flex-start; }
      .custom_footer__legal { gap: 14px; }
      .custom_footer__electronics { font-size: 12px; }
    }


  /* Outer section wrapper */
  .custom_subscription {
    background-color: #0d1f4c;
    background-image:
      radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 55%);
    overflow: hidden;
    position: relative;
   width: 100%;
    margin: 0 auto;
    min-height: 160px;
    display: flex;
    align-items: center;
  }

  /* Inner layout: text | form | devices */
  .custom_subscription__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 32px 40px 32px 44px;
    position: relative;
    z-index: 2;
  }

  /* ---- TEXT BLOCK ---- */
  .custom_subscription__text {
    flex: 1;
  }

  .custom_subscription__title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .custom_subscription__highlight {
    color: #f4a425;
    font-weight: 800;
  }

  .custom_subscription__desc {
    font-size: 0.88rem;
    color: #a8b8d8;
    line-height: 1.5;
  }

  .custom_subscription__desc strong {
    color: #ffffff;
    font-weight: 700;
  }

  /* ---- FORM BLOCK ---- */
  .custom_subscription__form {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }

  .custom_subscription__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }

  .custom_subscription__input {
    height: 46px;
    width: 280px;
    border: none;
    border-radius: 6px 0 0 6px;
    padding: 0 16px;
    font-size: 0.85rem;
    color: #333;
    background: #ffffff;
    outline: none;
    transition: box-shadow 0.2s;
  }
  .custom_subscription__input::placeholder {
    color: #aab;
  }
  .custom_subscription__input:focus {
    box-shadow: 0 0 0 2px rgba(244,164,37,0.4);
  }

  .custom_subscription__btn {
    height: 46px;
    padding: 0 22px;
    background: #f4a425;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
	  z-index:100;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
  }
  .custom_subscription__btn:hover {
    background: #e0921a;
    transform: scale(1.02);
  }
  .custom_subscription__btn:active {
    transform: scale(0.98);
  }

  /* ---- DEVICE IMAGES BLOCK ---- */
  .custom_subscription__devices {
    position: relative;
    width: 300px;
    height: 130px;
    flex-shrink: 0;
    align-self: flex-end;
  }

  /* Base for all device images */
  .custom_subscription__device-img {
    position: absolute;
    object-fit: contain;
    bottom: 0;
  }

  /* MacBook / Laptop — largest, back-center */
  .custom_subscription__device-img--laptop {
    width: 300px;
    right: 60px;
    top: 0px;
    z-index: 1;
  }

  /* iPad / Tablet — right side */
  .custom_subscription__device-img--tablet {
    width: 120px;
    right: 0;
    bottom: 0;
    z-index: 2;
  }

  /* iPhone — far right */
  .custom_subscription__device-img--phone {
    width: 52px;
    right: -14px;
    bottom: 4px;
    z-index: 3;
  }

  /* Apple TV box — front left */
  .custom_subscription__device-img--tv {
    width: 80px;
    right: 168px;
    bottom: 0;
    z-index: 3;
  }

  /* Apple Watch — small, bottom right */
  .custom_subscription__device-img--watch {
    width: 36px;
    right: -16px;
    bottom: 38px;
    z-index: 4;
  }

  /* =============================================
     RESPONSIVE
  ============================================= */
  @media (max-width: 960px) {
    .custom_subscription__inner {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 32px 28px 28px;
      gap: 18px;
    }
    .custom_subscription__form {
      justify-content: center;
    }
    .custom_subscription__input {
      width: 220px;
    }
    .custom_subscription__devices {
      margin: 0 auto;
      width: 260px;
      height: 110px;
    }
    .custom_subscription__device-img--laptop { width: 180px; right: 46px; }
    .custom_subscription__device-img--tablet { width: 100px; }
    .custom_subscription__device-img--phone  { width: 44px; }
    .custom_subscription__device-img--tv     { width: 66px; right: 144px; }
    .custom_subscription__device-img--watch  { width: 30px; }
  }

  @media (max-width: 560px) {
    .custom_subscription__devices { display: none; }
    .custom_subscription__input   { width: 180px; }
    .custom_subscription__title   { font-size: 1.15rem; }
    .custom_subscription__inner   { padding: 28px 20px; }
  }

  /* =============================================
     CUSTOM INFO — ALL CSS CLASS NAMES
  ============================================= */

  .custom_info {
    margin: 0 auto;
    display: grid;
	  margin-top:60px !important;
	  margin-bottom:60px !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .custom_info__card {
    background: #ffffff;
    border: 1.5px solid #e4e8f0;
    border-radius: 10px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    cursor: default;
  }

  .custom_info__card:hover {
    border-color: #2d4fad;
    box-shadow: 0 4px 18px rgba(45, 79, 173, 0.10);
    transform: translateY(-2px);
  }

  .custom_info__card--active {
    border-color: #2d4fad;
  }

  /* Font Awesome icon wrapper */
  .custom_info__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom_info__icon i {
    font-size: 2.2rem;
    color: #1e3a8a;
    transition: transform 0.2s, color 0.2s;
  }

  .custom_info__card:hover .custom_info__icon i {
    color: #2d4fad;
    transform: scale(1.12);
  }

  .custom_info__body {}

  .custom_info__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2a5e;
    margin-bottom: 3px;
    line-height: 1.25;
  }

  .custom_info__desc {
    font-size: 0.78rem;
    color: #7a8aaa;
    line-height: 1.4;
  }

  /* =============================================
     RESPONSIVE
  ============================================= */
  @media (max-width: 960px) {
    .custom_info { 
		grid-template-columns: repeat(3, 1fr);
		
	}
  }
  @media (max-width: 600px) {
    .custom_info { 
		grid-template-columns: repeat(2, 1fr); 
		padding:10px;
	}
  }
  @media (max-width: 400px) {
    .custom_info { grid-template-columns: 1fr; }
    .custom_info__card { padding: 16px 14px; }
  }