/**
 * MaskeZaMob.rs — Homepage Styles + Mobile Fixes
 */

/* ==========================================================
 * TRUST BAR — Desktop
 * ========================================================== */

.mzm-trust-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
}

.mzm-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mzm-trust-icon {
  font-size: 20px;
  line-height: 1;
}

.mzm-trust-text {
  display: flex;
  flex-direction: column;
}

.mzm-trust-text strong {
  font-size: 14px;
  color: #0e1629;
  font-family: var(--mzm-font-family);
}

.mzm-trust-text span {
  font-size: 12px;
  color: #64748b;
  font-family: var(--mzm-font-family);
}

/* ==========================================================
 * TRUST BAR — Mobile 2x2 grid
 * ========================================================== */

@media screen and (max-width: 549px) {

  .mzm-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

  .mzm-trust-item {
    padding: 12px 16px;
    gap: 8px;
    border-bottom: 1px solid #e0e7ef;
  }

  .mzm-trust-item:nth-child(odd) {
    border-right: 1px solid #e0e7ef;
  }

  .mzm-trust-item:nth-child(n+3) {
    border-bottom: none;
  }

  .mzm-trust-icon {
    font-size: 18px;
  }

  .mzm-trust-text strong {
    font-size: 12px;
  }

  .mzm-trust-text span {
    font-size: 10px;
  }

  /* HERO dugmad */
  .hero-buttons {
    gap: 8px !important;
  }

  .hero-buttons a {
    font-size: 12px !important;
    padding: 10px 16px !important;
  }

  /* Male kartice brendova */
  table.mzm-brand-cards {
    border-spacing: 4px !important;
    margin-top: -20px !important;
  }

  table.mzm-brand-cards tr {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px;
  }

  table.mzm-brand-cards td {
    display: block !important;
    width: calc(50% - 4px) !important;
    box-sizing: border-box !important;
    margin-bottom: 4px !important;
    padding: 10px !important;
  }
  /* Trust bar — skloni višak prostora */
.mzm-trust-bar {
  margin-bottom: -10px;
}
/* Pronađi masku — mobile razmaci */
@media screen and (max-width: 549px) {
  .mzm-find-phone {
    padding-top: 16px !important;
    padding-bottom: 0 !important;
  }
  
  .mzm-find-phone .col {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}
}