/**
 * aaryans-trust-bar.css  v6
 *
 * Upload path (FileZilla):
 *   /usr/documents/upload/CSSkodyCLAUDE/aaryans-trust-bar.css
 *
 * Responsive card — 4 col desktop · 2×2 tablet · 1 col mobile
 * Desktop is deliberately thicker/larger; mobile stays compact.
 */

/* ─── 1. OUTER WRAPPER ──────────────────────────────────────────── */
#aaryans-trust-bar-el {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 16px 0 24px !important;    /* no side padding — card handles its own centering */
  background: transparent !important;
  position: relative !important;
  z-index: 1 !important;
}

/* ─── 2. ROUNDED CARD ───────────────────────────────────────────── */
.aaryans-trust-bar__card {
  background: linear-gradient(160deg, #1E1D1C 0%, #2E2D2C 55%, #3A3938 100%) !important;
  border-radius: 14px !important;
  max-width: 1418px !important;        /* JS overrides this on load+resize to match carousel exactly */
  margin: 0 auto !important;
  overflow: visible !important;
  box-shadow: 0 4px 20px rgba(0, 118, 160, 0.25) !important;
}

/* ─── 3. GRID INNER ─────────────────────────────────────────────── */
.aaryans-trust-bar__inner {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  padding: 0 8px !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}

/* ─── 4. EACH ITEM — desktop (default) ─────────────────────────── */
.aaryans-trust-bar__item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 42px 22px !important;      /* tall, premium feel on desktop */
  box-sizing: border-box !important;
  border: none !important;
  color: #ffffff !important;
  text-decoration: none !important;
  cursor: default !important;
  -webkit-tap-highlight-color: transparent !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.aaryans-trust-bar__item:hover,
.aaryans-trust-bar__item:focus,
.aaryans-trust-bar__item:active {
  background: transparent !important;
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none !important;
}

/* ─── 5. ICON CIRCLE — desktop size ────────────────────────────── */
.aaryans-trust-bar__icon {
  flex-shrink: 0 !important;
  width: 62px !important;
  height: 62px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #EBB21C !important;
  overflow: hidden !important;
}

.aaryans-trust-bar__icon svg {
  width: 32px !important;
  height: 32px !important;
  display: block !important;
  flex-shrink: 0 !important;
}

/* ─── 6. HEUREKA IMAGE — no circle, same fixed width as icon ────── */
.aaryans-trust-bar__heureka-img {
  flex-shrink: 0 !important;
  width: 62px !important;             /* match icon circle width */
  height: 62px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.aaryans-trust-bar__heureka-img img {
  width: 58px !important;
  height: 58px !important;
  display: block !important;
  object-fit: contain !important;
}

/* ─── 7. TEXT BLOCK — desktop size ─────────────────────────────── */
.aaryans-trust-bar__text {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  min-width: 0 !important;
}

.aaryans-trust-bar__title {
  display: block !important;
  font-size: 17px !important;         /* bigger on desktop */
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aaryans-trust-bar__desc {
  display: block !important;
  font-size: 14px !important;         /* bigger on desktop */
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: rgba(255, 255, 255, 0.80) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ─── 8. TABLET: 2 × 2 ─────────────────────────────────────────── */
@media (max-width: 1023px) {
  .aaryans-trust-bar__inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ─── 9. MOBILE: single column · compact sizes ──────────────────── */
@media (max-width: 767px) {
  #aaryans-trust-bar-el {
    padding: 16px 8px 16px !important; /* small side gap on mobile */
  }

  .aaryans-trust-bar__inner {
    grid-template-columns: 1fr !important;
    padding: 0 4px !important;
  }

  .aaryans-trust-bar__item {
    gap: 14px !important;
    padding: 14px 16px !important;
  }

  .aaryans-trust-bar__icon {
    width: 52px !important;
    height: 52px !important;
  }

  .aaryans-trust-bar__icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .aaryans-trust-bar__heureka-img {
    width: 52px !important;
    height: 52px !important;
  }

  .aaryans-trust-bar__heureka-img img {
    width: 48px !important;
    height: 48px !important;
  }

  .aaryans-trust-bar__title {
    font-size: 15px !important;
  }

  .aaryans-trust-bar__desc {
    font-size: 13px !important;
  }
}
