/* style/promotions-today-hot-deals.css */

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

/* Base styles for the page content */
.page-promotions-today-hot-deals {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions-today-hot-deals__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-promotions-today-hot-deals__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions-today-hot-deals__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
  color: var(--text-main);
}

.page-promotions-today-hot-deals__main-title {
  font-size: clamp(2.2em, 5vw, 3.5em);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-promotions-today-hot-deals__hero-description {
  font-size: clamp(1em, 2.5vw, 1.25em);
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-promotions-today-hot-deals__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-promotions-today-hot-deals__btn-primary,
.page-promotions-today-hot-deals__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-today-hot-deals__btn-primary {
  background: var(--btn-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions-today-hot-deals__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-promotions-today-hot-deals__btn-secondary {
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.page-promotions-today-hot-deals__btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

/* General Section Styling */
.page-promotions-today-hot-deals__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promotions-today-hot-deals__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-today-hot-deals__text-block {
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-today-hot-deals__introduction-section {
  padding: 60px 0;
  background-color: var(--bg-card);
}

/* Featured Promotions */
.page-promotions-today-hot-deals__featured-promotions {
  padding: 60px 0;
}

.page-promotions-today-hot-deals__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-today-hot-deals__promotion-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  border: 1px solid var(--color-border);
}

.page-promotions-today-hot-deals__promotion-card:hover {
  transform: translateY(-5px);
}

.page-promotions-today-hot-deals__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions-today-hot-deals__card-title {
  font-size: 1.4em;
  color: var(--color-gold);
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-promotions-today-hot-deals__card-description {
  font-size: 0.95em;
  color: var(--text-secondary);
  padding: 0 15px;
  margin-bottom: 25px;
}

.page-promotions-today-hot-deals__card-button {
  display: inline-block;
  background: var(--btn-gradient);
  color: var(--text-main);
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-promotions-today-hot-deals__card-button:hover {
  filter: brightness(1.1);
}

/* How to Participate Section */
.page-promotions-today-hot-deals__how-to-participate {
  background-color: var(--bg-card);
  padding: 60px 0;
}

.page-promotions-today-hot-deals__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions-today-hot-deals__step-card {
  background-color: var(--bg-primary);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-divider);
}

.page-promotions-today-hot-deals__step-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions-today-hot-deals__step-title {
  font-size: 1.3em;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.page-promotions-today-hot-deals__step-description {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-promotions-today-hot-deals__step-description a {
  color: var(--color-secondary);
  text-decoration: none;
}

.page-promotions-today-hot-deals__step-description a:hover {
  text-decoration: underline;
}

/* Benefits Section */
.page-promotions-today-hot-deals__benefits-section {
  padding: 60px 0;
}

.page-promotions-today-hot-deals__benefits-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-promotions-today-hot-deals__benefits-text {
  flex: 1;
  min-width: 300px;
}

.page-promotions-today-hot-deals__benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-today-hot-deals__benefits-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%2322C768"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-promotions-today-hot-deals__benefits-list li strong {
  color: var(--color-gold);
}

.page-promotions-today-hot-deals__benefits-list li a {
  color: var(--color-secondary);
  text-decoration: none;
}

.page-promotions-today-hot-deals__benefits-list li a:hover {
  text-decoration: underline;
}

.page-promotions-today-hot-deals__benefits-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
}

/* FAQ Section */
.page-promotions-today-hot-deals__faq-section {
  background-color: var(--bg-card);
  padding: 60px 0;
}

.page-promotions-today-hot-deals__faq-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-today-hot-deals__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-divider);
  list-style: none; /* For details/summary compatibility */
}

.page-promotions-today-hot-deals__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker */
}

.page-promotions-today-hot-deals__faq-qtext {
  flex-grow: 1;
}

.page-promotions-today-hot-deals__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--color-gold);
}

.page-promotions-today-hot-deals__faq-answer {
  padding: 15px 25px;
  font-size: 0.95em;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
}

.page-promotions-today-hot-deals__faq-answer p {
  margin-bottom: 10px;
}

.page-promotions-today-hot-deals__faq-answer a {
  color: var(--color-secondary);
  text-decoration: none;
}

.page-promotions-today-hot-deals__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-promotions-today-hot-deals__final-cta-section {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-today-hot-deals__hero-content {
    padding: 100px 20px;
  }

  .page-promotions-today-hot-deals__benefits-content {
    flex-direction: column;
  }

  .page-promotions-today-hot-deals__benefits-image {
    max-width: 100%;
  }
}

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

  .page-promotions-today-hot-deals__container {
    padding: 30px 15px;
  }

  .page-promotions-today-hot-deals__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-promotions-today-hot-deals__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-today-hot-deals__hero-content {
    padding: 80px 15px;
  }

  .page-promotions-today-hot-deals__main-title {
    font-size: 2.5em;
  }

  .page-promotions-today-hot-deals__hero-description {
    font-size: 1em;
  }

  .page-promotions-today-hot-deals__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px; /* Limit button group width */
    margin: 0 auto;
  }

  .page-promotions-today-hot-deals__btn-primary,
  .page-promotions-today-hot-deals__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Image responsive */
  .page-promotions-today-hot-deals img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-today-hot-deals__hero-image {
    filter: brightness(0.4) !important;
  }
  
  .page-promotions-today-hot-deals__promotion-card,
  .page-promotions-today-hot-deals__step-card,
  .page-promotions-today-hot-deals__benefits-section .page-promotions-today-hot-deals__container,
  .page-promotions-today-hot-deals__faq-section .page-promotions-today-hot-deals__container,
  .page-promotions-today-hot-deals__final-cta-section .page-promotions-today-hot-deals__container,
  .page-promotions-today-hot-deals__introduction-section .page-promotions-today-hot-deals__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-today-hot-deals__card-image,
  .page-promotions-today-hot-deals__step-image,
  .page-promotions-today-hot-deals__benefits-image {
    height: auto !important; /* Ensure images scale */
    min-height: 200px; /* Minimum size for content images */
    object-fit: cover !important;
  }

  .page-promotions-today-hot-deals__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-promotions-today-hot-deals__faq-answer {
    padding: 10px 20px;
  }
}