/* Card showroom: địa chỉ + nút Gọi / Bản đồ */
.showroom-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #cccccc73;
  border-radius: 12px;
  width: 280px;
}

.showroom-card__address {
  margin: 0 0 12px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
}

.showroom-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.showroom-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.showroom-card__btn:hover {
  opacity: 0.9;
}

.showroom-card__btn--call {
  background: #fee8e8;
  color: #e20000;
  border: none;
}

.showroom-card__btn--map {
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
}

.showroom-card__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Nút prev/next carousel showroom */
.box-showroom__detail--nav {
  position: relative;
}

.showroom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.showroom-nav:hover {
  background: #f5f5f5;
  color: #000;
}

.showroom-nav--prev {
  left: 0;
}

.showroom-nav--next {
  right: 0;
}
