/* Right Side: Booking Card */
.booking-card {
  width: 500px;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.price-tag {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.price-tag span {
  font-size: 16px;
  color: #222;
  font-weight: 400;
}

.booking-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #222;
}

.input-group {
  margin-bottom: 20px;
}

.input-group-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.btn-booking {
  width: 100%;
  padding: 15px;
  background: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-booking:hover {
  background: var(--dark-navy);
}
/* Animated Tab - Thêm vào cuối file CSS */
.list_tab_menu {
  position: relative;
  display: inline-flex;
  border-radius: 50px;
  border: none;
  justify-content: center;
  align-items: center;
}

.list_tab_menu .tab-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #f06c28;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.list_tab_menu ul {
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50px;
}

.list_tab_menu li {
  position: relative;
  z-index: 2;
  border: none;
  margin-bottom: 0;
  border-radius: 50px;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}

.list_tab_menu li a {
  position: relative;
  z-index: 2;
  padding: 5px 30px;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #374151;
  transition: color 0.3s ease;
  height: unset;
}

.list_tab_menu li a:hover {
  color: #111827;
}

.list_tab_menu li.active a {
  color: white;
}
.list_tab_menu .active {
  background: #f06c28; /* Đổi màu thành #e24d14 */
}
.tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.brands-container {
  width: 100%;
}
/* SAVVY Logo */
.brand-savvy {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -1px;
  color: #c44536;
}

/* SIGNATURE Logo */
.brand-signature {
  position: relative;
  display: inline-block;
}

.brand-signature .text-main {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
}

.brand-signature .text-sub {
  position: absolute;
  bottom: -2px;
  right: -65px;
  background: #c44536;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  letter-spacing: 0.5px;
}

/* M Hotel Logo */
.brand-m-hotel,
.brand-m-living {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.brand-m-hotel .letter-m,
.brand-m-living .letter-m {
  font-size: 48px;
  font-weight: 400;
  color: #000;
  line-height: 1;
}

.brand-m-hotel .bar,
.brand-m-living .bar {
  width: 6px;
  height: 48px;
  background: linear-gradient(to bottom, #d97236, #c44536);
  margin: 0 2px;
}

.brand-m-hotel .text,
.brand-m-living .text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Express Logo */
.brand-express {
  position: relative;
  display: inline-block;
}

.brand-express .text-main {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  font-style: italic;
  letter-spacing: -1px;
}

.brand-express .text-sub {
  position: absolute;
  bottom: 2px;
  right: -65px;
  color: #888;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
}

.brand-express .text-sub span {
  background: #c44536;
  color: white;
  padding: 1px 4px;
  margin-left: 2px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 480px) {
  .brands-container {
    max-width: 100%;
  }

  .brand-item {
    padding: 20px;
  }
}
.brands-container {
  width: 100%;
}

.brand-tab-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin: 0 0 20px 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.brand-item:hover {
  border-color: #e24d14;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.brand-item.active {
  border-color: #e24d14;
  background: linear-gradient(90deg, #fff 0%, #fff8f5 100%);
  box-shadow: 0 4px 12px rgba(255, 140, 90, 0.15);
}

.brand-item.disable {
  opacity: 0.5;
}

.brand-item.disable:hover {
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.brand-item.title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  cursor: default;
  background: #f8f9fa;
  border-color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-item.title:hover {
  border-color: #e0e0e0;
  box-shadow: none;
  transform: none;
  background: #f8f9fa;
}

.brand-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.brand-item.active .brand-name {
  color: #e24d14;
}

/* SAVVY Logo */
.brand-savvy {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -1px;
  color: #c44536;
}

/* SIGNATURE Logo */
.brand-signature {
  position: relative;
  display: inline-block;
}

.brand-signature .text-main {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
}

.brand-signature .text-sub {
  position: absolute;
  bottom: -2px;
  right: -60px;
  background: #c44536;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* M Hotel & M Living Logo */
.brand-m-hotel,
.brand-m-living {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.brand-m-hotel .letter-m,
.brand-m-living .letter-m {
  font-size: 40px;
  font-weight: 400;
  color: #000;
  line-height: 1;
}

.brand-m-hotel .bar,
.brand-m-living .bar {
  width: 5px;
  height: 40px;
  background: linear-gradient(to bottom, #d97236, #c44536);
  margin: 0 2px;
}

.brand-m-hotel .text,
.brand-m-living .text {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Express Logo */
.brand-express {
  position: relative;
  display: inline-block;
}

.brand-express .text-main {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  font-style: italic;
  letter-spacing: -1px;
}

.brand-express .text-sub {
  position: absolute;
  bottom: 2px;
  right: -60px;
  color: #888;
  font-size: 9px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  white-space: nowrap;
}

.brand-express .text-sub span {
  background: #c44536;
  color: white;
  padding: 1px 4px;
  margin-left: 2px;
  font-weight: 700;
}

/* Right side content */
.tab-grid .right {
  width: 100%;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

.tab-content {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .tab-grid {
    grid-template-columns: 280px 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .tab-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tab-grid .left {
    position: static;
    order: 2;
  }

  .tab-grid .right {
    order: 1;
  }

  .brands-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brand-item.title {
    grid-column: 1 / -1;
  }
}
.list_rh2.content > li {
  transform: scale(0);
  transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform-origin: 0px 0px 0px;
}

.list_rh2 > li,
.list_rh_index > li {
  margin: 0 0 10px 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.list_rh2 > li h3,
.list_rh_index > li h3 {
  margin: 15px 0 10px 0;
}
.list_rh_index {
  gap: 25px;
}
.list_rh2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.ul_breacrum > li::after {
  margin: 0 1rem;
}
.wrap_loaihinh {
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
}
.wrap_loaihinh:last-child {
  border-bottom: none;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}

@media (max-width: 480px) {
  .brand-item {
    padding: 16px;
  }
  .list_rh2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
