/* style/promotions-daily-weekly-offers.css */
.page-promotions-daily-weekly-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-promotions-daily-weekly-offers__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Rely on body for header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-daily-weekly-offers__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-promotions-daily-weekly-offers__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-daily-weekly-offers__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Adjust to place content below image without overlap */
  background-color: var(--card-b-g); /* Use a background to ensure contrast */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
}

.page-promotions-daily-weekly-offers__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-daily-weekly-offers__intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-promotions-daily-weekly-offers__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-daily-weekly-offers__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-promotions-daily-weekly-offers__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-promotions-daily-weekly-offers__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-promotions-daily-weekly-offers__dark-section {
  background-color: var(--background);
  color: var(--text-main);
}

.page-promotions-daily-weekly-offers__section-title {
  font-size: 2.5rem;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-daily-weekly-offers__text-block {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-weekly-offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-weekly-offers__card {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main);
  border: 1px solid var(--border);
}

.page-promotions-daily-weekly-offers__light-bg {
  background-color: var(--card-b-g);
  color: var(--text-main);
}

.page-promotions-daily-weekly-offers__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-daily-weekly-offers__card-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-weekly-offers__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.page-promotions-daily-weekly-offers__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-weekly-offers__feature-item {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.page-promotions-daily-weekly-offers__feature-title {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-weekly-offers__feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.page-promotions-daily-weekly-offers__step-item {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.page-promotions-daily-weekly-offers__step-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-weekly-offers__step-title a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-daily-weekly-offers__step-title a:hover {
  color: var(--glow);
}

.page-promotions-daily-weekly-offers__step-description {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-promotions-daily-weekly-offers__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-weekly-offers__feature-card {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.page-promotions-daily-weekly-offers__feature-card-title {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-weekly-offers__feature-card-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-promotions-daily-weekly-offers__feature-card-text a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-daily-weekly-offers__feature-card-text a:hover {
  color: var(--glow);
}

.page-promotions-daily-weekly-offers__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-weekly-offers__faq-item {
  background-color: var(--card-b-g);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-promotions-daily-weekly-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-main);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions-daily-weekly-offers__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-daily-weekly-offers__faq-question:hover {
  background-color: var(--deep-green);
}

.page-promotions-daily-weekly-offers__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--glow);
}

.page-promotions-daily-weekly-offers__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-promotions-daily-weekly-offers__faq-answer p {
  margin: 0;
}

.page-promotions-daily-weekly-offers__cta-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-promotions-daily-weekly-offers__cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(17, 39, 27, 0.85); /* Card BG with transparency for overlay */
  padding: 40px;
  border-radius: 10px;
  color: var(--text-main);
  border: 1px solid var(--border);
}

.page-promotions-daily-weekly-offers__cta-title {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-daily-weekly-offers__cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-promotions-daily-weekly-offers__cta-content .page-promotions-daily-weekly-offers__cta-button {
  margin-top: 20px;
}

/* Text colors */
.page-promotions-daily-weekly-offers__text-main {
  color: var(--text-main);
}

.page-promotions-daily-weekly-offers__text-secondary {
  color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-daily-weekly-offers__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-promotions-daily-weekly-offers__section-title {
    font-size: 2rem;
  }
  .page-promotions-daily-weekly-offers__cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-weekly-offers {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-daily-weekly-offers__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-promotions-daily-weekly-offers__main-title {
    font-size: 2.2rem !important;
  }
  .page-promotions-daily-weekly-offers__intro-text {
    font-size: 1rem;
  }
  .page-promotions-daily-weekly-offers__content-area {
    padding: 40px 15px;
  }
  .page-promotions-daily-weekly-offers__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-promotions-daily-weekly-offers__text-block {
    font-size: 0.95rem;
  }
  .page-promotions-daily-weekly-offers__grid,
  .page-promotions-daily-weekly-offers__feature-list,
  .page-promotions-daily-weekly-offers__steps-list,
  .page-promotions-daily-weekly-offers__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-daily-weekly-offers__card-title,
  .page-promotions-daily-weekly-offers__feature-title,
  .page-promotions-daily-weekly-offers__step-title,
  .page-promotions-daily-weekly-offers__feature-card-title {
    font-size: 1.3rem;
  }
  .page-promotions-daily-weekly-offers__cta-title {
    font-size: 1.8rem;
  }
  .page-promotions-daily-weekly-offers__cta-description {
    font-size: 1rem;
  }
  .page-promotions-daily-weekly-offers__cta-section {
    padding: 60px 15px;
  }
  .page-promotions-daily-weekly-offers__cta-content {
    padding: 30px 20px;
  }

  /* Mobile responsive for images */
  .page-promotions-daily-weekly-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-daily-weekly-offers__section,
  .page-promotions-daily-weekly-offers__card,
  .page-promotions-daily-weekly-offers__container,
  .page-promotions-daily-weekly-offers__hero-section,
  .page-promotions-daily-weekly-offers__content-area,
  .page-promotions-daily-weekly-offers__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-daily-weekly-offers__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Mobile responsive for buttons */
  .page-promotions-daily-weekly-offers__cta-button,
  .page-promotions-daily-weekly-offers__btn-primary,
  .page-promotions-daily-weekly-offers__btn-secondary,
  .page-promotions-daily-weekly-offers a[class*="button"],
  .page-promotions-daily-weekly-offers a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-daily-weekly-offers__cta-buttons,
  .page-promotions-daily-weekly-offers__button-group,
  .page-promotions-daily-weekly-offers__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions-daily-weekly-offers__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

/* Colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-b-g: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Ensure contrast for all text elements */
.page-promotions-daily-weekly-offers h1,
.page-promotions-daily-weekly-offers h2,
.page-promotions-daily-weekly-offers h3,
.page-promotions-daily-weekly-offers h4,
.page-promotions-daily-weekly-offers h5,
.page-promotions-daily-weekly-offers h6 {
  color: var(--text-main);
}

.page-promotions-daily-weekly-offers p,
.page-promotions-daily-weekly-offers li {
  color: var(--text-secondary);
}

.page-promotions-daily-weekly-offers a {
  color: var(--gold);
}

.page-promotions-daily-weekly-offers a:hover {
  color: var(--glow);
}

.page-promotions-daily-weekly-offers__faq-question {
  background-color: var(--card-b-g);
  color: var(--text-main);
}

.page-promotions-daily-weekly-offers__faq-answer {
  background-color: var(--card-b-g);
  color: var(--text-secondary);
}