/* ================= INFO BAR ================= */

.info-bar {
  background: transparent;
  margin-top: -6px;
  margin-bottom: 14px;
  position: relative;
  z-index: 4;
}

.info-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  padding: 12px 8px;
}

/* ROW */
.info-row {
  display: flex;
  align-items: stretch;
  text-align: center;
}

/* ITEM */
.info-item {
  flex: 1;
  text-decoration: none;
  color: #333;
  padding: 8px 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition: transform 0.2s ease;
}

.info-item:hover {
  transform: translateY(-2px);
}

/* GARIS PEMBATAS */
.info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: #f0f0f0;
}

/* ICON WRAP */
.info-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.info-item:hover .info-icon-wrap {
  transform: scale(1.08);
}

/* ICON IMAGE */
.info-icon-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* ICON FA */
.info-icon-wrap i {
  font-size: 22px;
  color: #555;
}

/* TEXT */
.info-item span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  line-height: 1.2;
  white-space: nowrap;
}

.info-item:hover span {
  color: #e31e24;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .info-bar {
    margin-top: -4px;
    margin-bottom: 10px;
  }

  .info-card {
    border-radius: 12px;
    padding: 10px 4px;
  }

  .info-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .info-icon-wrap img {
    width: 22px;
    height: 22px;
  }

  .info-item span {
    font-size: 10px;
  }

  .info-item {
    gap: 5px;
    padding: 6px 2px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 380px) {
  .info-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .info-icon-wrap img {
    width: 20px;
    height: 20px;
  }

  .info-item span {
    font-size: 9px;
  }
}
