.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__section {
  padding: 40px 0;
}

.page-promotions__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-promotions__text-block {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 50px;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-promotions__hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  margin-top: -150px; /* Overlap slightly for visual effect, but not text on image */
  padding: 30px;
  background: rgba(255, 255, 255, 0.95); /* Card BG with slight transparency */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

.page-promotions__main-title {
  font-size: 44px;
  font-weight: 800;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__description {
  font-size: 18px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button Color */
  color: #ffffff;
  border: none;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-promotions__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
}

.page-promotions__btn-secondary:hover {
  background: #2F6BFF; /* Main Color */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

/* Intro Section */
.page-promotions__intro-section .page-promotions__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Promotions Grid */
.page-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions__promo-card {
  background: #ffffff; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-promotions__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-title {
  font-size: 22px;
  font-weight: 700;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__promo-desc {
  font-size: 15px;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: #6FA3FF; /* Accent Color */
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions__btn-small:hover {
  background: #2F6BFF; /* Main Color */
}

/* How to Claim Section */
.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 900px;
  margin: 30px auto;
}

.page-promotions__steps-list li {
  background: #ffffff; /* Card BG */
  border: 1px solid #D6E2FF; /* Border Color */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__steps-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background: #2F6BFF; /* Main Color */
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.page-promotions__steps-list li strong {
  font-size: 18px;
  color: #2F6BFF; /* Main Color */
  display: block;
  margin-bottom: 10px;
}

.page-promotions__steps-list li p {
  margin: 0;
  font-size: 16px;
  color: #1F2D3D; /* Text Main */
}

/* Important Notes Section */
.page-promotions__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions__note-item {
  background: #ffffff; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.page-promotions__note-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__note-title {
  font-size: 20px;
  font-weight: 700;
  color: #2F6BFF; /* Main Color */
  margin: 20px 15px 10px;
  line-height: 1.3;
}

.page-promotions__note-desc {
  font-size: 15px;
  color: #1F2D3D; /* Text Main */
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* Why Choose Section */
.page-promotions__reason-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions__reason-item {
  background: #ffffff; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-promotions__reason-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-promotions__reason-desc {
  font-size: 16px;
  color: #1F2D3D; /* Text Main */
}

/* FAQ Section */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF; /* Border Color */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #f5f5f5;
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #6FA3FF; /* Accent Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
}

/* Final CTA Section */
.page-promotions__final-cta {
  text-align: center;
  background-color: #2F6BFF; /* Main Color */
  padding: 60px 0;
  color: #ffffff;
}

.page-promotions__final-cta .page-promotions__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-promotions__final-cta .page-promotions__text-block {
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-promotions__cta-buttons--center {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* General image responsiveness */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 38px;
  }
  .page-promotions__description {
    font-size: 17px;
  }
  .page-promotions__hero-content {
    margin-top: -100px;
    padding: 25px;
    max-width: 700px;
  }
  .page-promotions__section-title {
    font-size: 28px;
  }
  .page-promotions__promo-title {
    font-size: 20px;
  }
  .page-promotions__note-title {
    font-size: 18px;
  }
  .page-promotions__reason-title {
    font-size: 20px;
  }
  .page-promotions__steps-list li {
    padding: 20px;
    padding-left: 60px;
  }
  .page-promotions__steps-list li::before {
    left: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
  .page-promotions__cta-buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 849px) {
  /* HERO主图区域 - 移动 object-fit:contain !important; */
  .page-promotions__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    height: auto !important;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 30px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
  }
  .page-promotions__hero-image {
    max-height: 300px;
  }
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 20px;
    max-width: 90%;
  }
  .page-promotions__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-promotions__description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section {
    padding: 30px 0;
  }
  .page-promotions__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-promotions__text-block {
    font-size: 15px;
    margin-bottom: 15px;
  }

  /* Sản phẩm/khuyến mãi grid (products-grid) */
  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }
  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__promo-title {
    font-size: 18px;
  }
  .page-promotions__promo-desc {
    font-size: 14px;
  }
  .page-promotions__btn-small {
    padding: 8px 15px;
    font-size: 14px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Content Grid (important-notes) */
  .page-promotions__content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__note-image {
    height: 150px;
  }
  .page-promotions__note-title {
    font-size: 17px;
    margin: 15px 10px 8px;
  }
  .page-promotions__note-desc {
    font-size: 14px;
    padding: 0 10px 15px;
  }

  /* Reason List (why-choose) */
  .page-promotions__reason-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__reason-item {
    padding: 25px;
  }
  .page-promotions__reason-title {
    font-size: 19px;
  }
  .page-promotions__reason-desc {
    font-size: 15px;
  }

  /* Steps List (how-to-claim) */
  .page-promotions__steps-list {
    margin: 20px auto;
  }
  .page-promotions__steps-list li {
    padding: 18px;
    padding-left: 55px;
    margin-bottom: 15px;
  }
  .page-promotions__steps-list li::before {
    left: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .page-promotions__steps-list li strong {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .page-promotions__steps-list li p {
    font-size: 14px;
  }

  /* FAQ Section */
  details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px; }
  .page-promotions__faq-qtext { font-size: 15px; }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
    margin-left: 10px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
  .page-promotions__faq-answer p {
    font-size: 14px;
  }

  /* Final CTA Section */
  .page-promotions__final-cta {
    padding: 40px 0;
  }
  .page-promotions__final-cta .page-promotions__section-title {
    font-size: 22px;
  }
  .page-promotions__final-cta .page-promotions__text-block {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-promotions__cta-buttons--center {
    flex-direction: column;
    gap: 10px;
  }

  /* General image and container responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__container,
  .page-promotions__section,
  .page-promotions__promo-card,
  .page-promotions__note-item,
  .page-promotions__reason-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__cta-buttons {
    padding-left: 15px;
    padding-right: 15px;
  }
}