.showroom-section {
  background-image: url("../images/bg.5fc709131814.webp");
  background-repeat: repeat;
  padding: 40px 0;

}

.showroom-section__title {
  font-size: 24px;
  color: #43230C;
  margin-bottom: 20px;
}

.showroom-section__offices {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.showroom-section__office-box {
  background-color: transparent;
  border: 1px solid #d8cabb;
  padding: 12px 16px;
  border-radius: 4px;
  width: 250px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 16px;
  border-radius: 8px;
  min-width: 330px;
}



.showroom-section__office-box h4,
.showroom-section__office-box p {
  color: #43230C !important;
  margin: 0 0 8px;
}

.showroom-section__office-box h4 {
  font-size: 14px;
  font-weight: 600;
}

.showroom-section__office-box  p {
  font-size: 16px;
   margin: 0;
}


.showroom-section__map {
  border-radius: 10px;            /* Bo góc khung */
  overflow: hidden;               /* Ẩn phần vượt ra ngoài */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Đổ bóng nhẹ */
  margin-top: 20px;
   padding: 20px 25px;
   background-color: #FFF7EC;
}

/* Đảm bảo iframe không có viền riêng và lấp đầy khung */
.showroom-section__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  min-height: 300px; /* đảm bảo đủ chiều cao nếu khung nhỏ */
}

.showroom-section__header-row {
  display: flex;
  align-items: flex-start; /* Hoặc center nếu bạn muốn căn giữa theo chiều dọc */
  gap: 20px; /* Khoảng cách giữa title và office boxes */
  flex-wrap: wrap; /* Để tránh vỡ layout khi nhỏ màn hình */
  justify-content: space-between;
}

.showroom-section__title {
  margin: 0;
  white-space: nowrap; /* Giữ title trên một dòng */
  font-size: 24px;
  flex-shrink: 0; /* Không cho title bị co lại khi thiếu không gian */
}

.showroom-section__offices {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


/* HCM styles */
.showroom-section__office-box.active  {
  background-color: #8C795F;
}

.showroom-section__office-box.active  h4,
.showroom-section__office-box.active  p {
  color: white !important;
}

.showroom-section__office-box.active  h4 {
  font-size: 14px;
  font-weight: 600;
}

.showroom-section__office-box.active  p {
  font-size: 16px;
}

/* HN styles */


