.page-promotions {
  color: #f0f0f0; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Ensure body is dark as per shared.css expectation */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #0d0d0d; /* Slightly lighter dark for hero */
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffc107; /* Highlight with secondary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color, #0056b3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  background: #004085; /* Darker primary color on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary {
  background: var(--primary-color, #0056b3);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  background: #004085;
}

.page-promotions__btn-secondary {
  background: #ffc107;
  color: #000000; /* Dark text for light secondary color */
  border: 2px solid transparent;
}

.page-promotions__btn-secondary:hover {
  background: #e0a800;
}

.page-promotions__btn-link {
  display: inline-block;
  margin-top: 15px;
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__btn-link:hover {
  color: #e0a800;
  text-decoration: underline;
}

.page-promotions__section {
  padding: 60px 20px;
  color: #f0f0f0;
}

.page-promotions__dark-bg {
  background-color: #1a1a1a; /* Darker background for sections */
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #2a2a2a; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-promotions__section-description {
  font-size: 17px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-promotions__sub-section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #ffc107;
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__card {
  background-color: #2a2a2a; /* Card background in dark sections */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

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

.page-promotions__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffc107;
}

.page-promotions__card-sub-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffc107;
}

.page-promotions__card-text {
  font-size: 16px;
  color: #e0e0e0;
  flex-grow: 1;
}

.page-promotions__category-grid,
.page-promotions__product-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__step-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
}

.page-promotions__step-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffc107;
}

.page-promotions__step-text {
  font-size: 16px;
  color: #e0e0e0;
}

.page-promotions__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__terms-item {
  background-color: #2a2a2a;
  border-left: 5px solid #0056b3;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions__terms-heading {
  font-size: 20px;
  color: #ffc107;
  margin-bottom: 10px;
}

.page-promotions__terms-text {
  font-size: 16px;
  color: #e0e0e0;
}

.page-promotions__terms-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__vip-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-promotions__vip-item {
  background-color: #0056b3; /* Primary color for VIP items */
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__vip-item::before {
  content: '⭐';
  margin-right: 10px;
  font-size: 20px;
}

.page-promotions__vip-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 40px;
  }

  .page-promotions__section-title {
    font-size: 32px;
  }

  .page-promotions__sub-section-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-promotions__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-promotions__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    padding: 12px 30px;
    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__cta-wrapper {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-promotions__sub-section-title {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-promotions__grid,
  .page-promotions__category-grid,
  .page-promotions__product-promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card {
    padding: 20px;
  }

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__card-sub-title {
    font-size: 18px;
  }

  .page-promotions__card-text {
    font-size: 15px;
  }

  .page-promotions__step-item {
    padding: 20px;
  }

  .page-promotions__step-title {
    font-size: 18px;
  }

  .page-promotions__step-image {
    width: 120px;
    height: 120px;
  }

  .page-promotions__terms-item {
    padding: 15px 20px;
  }

  .page-promotions__terms-heading {
    font-size: 18px;
  }

  .page-promotions__vip-list {
    grid-template-columns: 1fr;
  }
  
  /* Ensure all images are responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__container,
  .page-promotions__hero-content,
  .page-promotions__grid-item,
  .page-promotions__category-item,
  .page-promotions__product-promo-item,
  .page-promotions__step-item,
  .page-promotions__terms-item,
  .page-promotions__vip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
}