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

.page-promotions-daily-rebate {
  background-color: var(--68wim-background-color);
  color: var(--68wim-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

.page-promotions-daily-rebate__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  overflow: hidden;
}

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

.page-promotions-daily-rebate__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-sizing: border-box;
  color: var(--68wim-text-main);
}

.page-promotions-daily-rebate__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: var(--68wim-gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions-daily-rebate__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  color: var(--68wim-text-secondary);
  margin-bottom: 30px;
}

.page-promotions-daily-rebate__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-daily-rebate__btn-primary,
.page-promotions-daily-rebate__btn-secondary {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-promotions-daily-rebate__btn-primary {
  background: var(--68wim-button-gradient);
  color: var(--68wim-text-main);
  border: 2px solid var(--68wim-primary-color);
}

.page-promotions-daily-rebate__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--68wim-primary-color), 0.4);
}

.page-promotions-daily-rebate__btn-secondary {
  background: transparent;
  color: var(--68wim-primary-color);
  border: 2px solid var(--68wim-primary-color);
}

.page-promotions-daily-rebate__btn-secondary:hover {
  background: var(--68wim-primary-color);
  color: var(--68wim-text-main);
}

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

.page-promotions-daily-rebate__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: var(--68wim-gold-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-promotions-daily-rebate__introduction-section,
.page-promotions-daily-rebate__eligibility-rules,
.page-promotions-daily-rebate__types-of-rebates,
.page-promotions-daily-rebate__how-to-claim,
.page-promotions-daily-rebate__why-choose,
.page-promotions-daily-rebate__faq-section,
.page-promotions-daily-rebate__cta-final {
  padding: 60px 0;
}

.page-promotions-daily-rebate__dark-section {
  background-color: var(--68wim-card-bg);
  color: var(--68wim-text-main);
}

.page-promotions-daily-rebate__light-bg {
  background-color: var(--68wim-background-color);
  color: var(--68wim-text-main);
}

.page-promotions-daily-rebate__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--68wim-text-secondary);
  text-align: justify;
}

.page-promotions-daily-rebate__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-daily-rebate__list,
.page-promotions-daily-rebate__steps-list,
.page-promotions-daily-rebate__features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-daily-rebate__list-item {
  background: var(--68wim-deep-green-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--68wim-text-main);
  border-left: 5px solid var(--68wim-primary-color);
}

.page-promotions-daily-rebate__list-item strong {
  color: var(--68wim-gold-color);
}

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

.page-promotions-daily-rebate__card {
  background-color: var(--68wim-background-color);
  border: 1px solid var(--68wim-divider-color);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--68wim-text-main);
}

.page-promotions-daily-rebate__card:hover {
  transform: translateY(-5px);
}

.page-promotions-daily-rebate__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-daily-rebate__card-title {
  font-size: 1.4em;
  color: var(--68wim-gold-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-promotions-daily-rebate__card-description {
  font-size: 0.95em;
  color: var(--68wim-text-secondary);
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-promotions-daily-rebate__card-link {
  display: inline-block;
  background: var(--68wim-button-gradient);
  color: var(--68wim-text-main);
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: background 0.3s ease;
}

.page-promotions-daily-rebate__card-link:hover {
  background: var(--68wim-primary-color);
}

.page-promotions-daily-rebate__faq-list {
  margin-top: 30px;
}

.page-promotions-daily-rebate__faq-item {
  background-color: var(--68wim-card-bg);
  border: 1px solid var(--68wim-divider-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-daily-rebate__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--68wim-text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-daily-rebate__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-daily-rebate__faq-item summary:hover {
  background-color: var(--68wim-deep-green-color);
}

.page-promotions-daily-rebate__faq-qtext {
  color: var(--68wim-gold-color);
}

.page-promotions-daily-rebate__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--68wim-primary-color);
}

.page-promotions-daily-rebate__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 1em;
  color: var(--68wim-text-secondary);
  border-top: 1px solid var(--68wim-divider-color);
  margin-top: -1px; /* Overlap border for cleaner look */
}

.page-promotions-daily-rebate__cta-final .page-promotions-daily-rebate__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions-daily-rebate__cta-final .page-promotions-daily-rebate__section-title {
  margin-bottom: 20px;
}

.page-promotions-daily-rebate__cta-final .page-promotions-daily-rebate__text-block {
  max-width: 800px;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-daily-rebate__hero-content {
    padding: 15px;
  }

  .page-promotions-daily-rebate__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-promotions-daily-rebate__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-rebate {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-daily-rebate__hero-section {
    padding-top: 10px !important;
  }

  .page-promotions-daily-rebate__hero-content {
    position: static;
    transform: none;
    padding: 30px 15px;
    background: var(--68wim-background-color);
    border-radius: 0;
    width: 100%;
  }

  .page-promotions-daily-rebate__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-promotions-daily-rebate__hero-description {
    font-size: clamp(0.9em, 3.5vw, 1em);
    margin-bottom: 20px;
  }

  .page-promotions-daily-rebate__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-promotions-daily-rebate__btn-primary,
  .page-promotions-daily-rebate__btn-secondary,
  .page-promotions-daily-rebate a[class*="button"],
  .page-promotions-daily-rebate 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-rebate__container,
  .page-promotions-daily-rebate__section,
  .page-promotions-daily-rebate__card,
  .page-promotions-daily-rebate__cta-final .page-promotions-daily-rebate__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-rebate__introduction-section,
  .page-promotions-daily-rebate__eligibility-rules,
  .page-promotions-daily-rebate__types-of-rebates,
  .page-promotions-daily-rebate__how-to-claim,
  .page-promotions-daily-rebate__why-choose,
  .page-promotions-daily-rebate__faq-section,
  .page-promotions-daily-rebate__cta-final {
    padding: 40px 0;
  }

  .page-promotions-daily-rebate__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }

  .page-promotions-daily-rebate__text-block {
    font-size: 1em;
  }

  .page-promotions-daily-rebate__image-content,
  .page-promotions-daily-rebate img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-promotions-daily-rebate__grid-cards {
    grid-template-columns: 1fr;
  }

  .page-promotions-daily-rebate__card-image {
    height: 180px;
  }

  .page-promotions-daily-rebate__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-daily-rebate__faq-answer {
    padding: 0 20px 15px 20px;
  }
}