.hero-section {
  padding: 24px 0;
  background-color: #ffffff;
}

/* Layout chung bằng CSS Grid: Cột trái lớn, cột phải nhỏ */
.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 2fr 1fr; /* Chia tỉ lệ 2:1 */
  gap: 24px;
}

/* ----------------------------------
   1. BANNER LỚN BÊN TRÁI (Xbox)
---------------------------------- */
.hero-main-banner {
  background-color: #f2f4f5;
  border-radius: 6px;
  padding: 48px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.banner-content {
  max-width: 350px;
  z-index: 2;
}

.sub-title {
  color: #2da5f3;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub-title::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #2da5f3;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  color: #191c1f;
  margin: 12px 0 16px 0;
  line-height: 1.2;
}

.description {
  color: #5f6c72;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Nút bấm Cam chung cho Banner */
.btn-shop-orange {
  background-color: #fa8232;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-shop-orange:hover {
  background-color: #e07024;
}

/* Khung chứa ảnh + badge giá tròn */
.banner-image {
  position: relative;
}

.banner-image img {
  max-width: 380px;
  height: auto;
}

.price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 88px;
  height: 88px;
  background-color: #2da5f3;
  color: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

/* Slider Dots ở góc dưới bên trái */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #adb7bc;
  cursor: pointer;
}

.dot.active {
  background-color: #191c1f;
  width: 10px;
  height: 10px;
}

/* ----------------------------------
   2. BANNER PHỤ BÊN PHẢI (Google & Xiaomi)
---------------------------------- */
.hero-side-banners {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-banner {
  border-radius: 6px;
  padding: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1; /* Sửa height: 50% thành flex: 1 */
  overflow: hidden;
}

/* Banner 1: Dark Mode */
.banner-dark {
  background-color: #191c1f;
  color: #ffffff;
}

.badge-yellow {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #efd33d;
  color: #191c1f;
  font-weight: bold;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 3;
}

.side-content {
  max-width: 55%; /* Giới hạn chiều rộng chữ để tự động xuống dòng trước khi chạm ảnh */
  position: relative;
  z-index: 2; /* Đảm bảo chữ luôn hiển thị phía trên hình ảnh */
}

.side-sub {
  color: #e0a753;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

.side-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  word-wrap: break-word; /* Tự động ngắt dòng gọn gàng */
}

.side-banner img {

  position: absolute; 
  right: 0; 
  bottom: 0;
}

/* Banner 2: Light Mode */
.banner-light {
  background-color: #f2f4f5;
  color: #191c1f;
}

.side-price {
  color: #2da5f3;
  font-weight: bold;
  font-size: 18px;
  display: block;
  margin-bottom: 16px;
}

/* ----------------------------------
   3. SERVICES SECTION (4 Cột chính sách)
---------------------------------- */
.services-section {
  padding: 16px 0;
  background-color: #ffffff;
}

.services-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid #e4e7e9;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 12px;
  border-right: 1px solid #e4e7e9;
}

.service-item:last-child {
  border-right: none;
}

.service-item i {
  font-size: 32px;
  color: #191c1f;
}

.service-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #191c1f;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.service-text p {
  font-size: 13px;
  color: #5f6c72;
}

