/* style/promotions-rebate-rules.css */

/* Base Styles for the Page */
.page-promotions-rebate-rules {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-promotions-rebate-rules__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-rebate-rules__section:nth-of-type(even) {
  background-color: #1a2a44; /* Slightly lighter dark blue for contrast */
}

.page-promotions-rebate-rules__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a416a 100%); /* Gradient with brand colors */
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-promotions-rebate-rules__hero-title {
  font-size: 3.5em;
  color: #E0B400; /* Gold for main title */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(224, 180, 0, 0.5);
}

.page-promotions-rebate-rules__hero-subtitle {
  font-size: 1.3em;
  color: #e0e0e0; /* Light gray for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-rebate-rules__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

.page-promotions-rebate-rules__section-title {
  font-size: 2.5em;
  color: #E0B400; /* Gold for section titles */
  margin-bottom: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-promotions-rebate-rules__sub-title {
  font-size: 1.8em;
  color: #FFFFFF; /* White for sub-titles */
  margin-bottom: 25px;
  font-weight: 500;
  text-align: left;
}

.page-promotions-rebate-rules__text-block {
  font-size: 1.1em;
  color: #cccccc; /* Light gray for body text */
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions-rebate-rules__text-block strong {
  color: #E0B400;
}

.page-promotions-rebate-rules__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  text-align: left;
  color: #cccccc;
}

.page-promotions-rebate-rules__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-rebate-rules__list li strong {
  color: #E0B400;
}

.page-promotions-rebate-rules__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  text-align: left;
  color: #cccccc;
}

.page-promotions-rebate-rules__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-rebate-rules__formula {
  font-size: 1.2em;
  font-weight: bold;
  color: #E0B400;
  background-color: #1a2a44;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-rebate-rules__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

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

.page-promotions-rebate-rules__product-card {
  background-color: #1a2a44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-rebate-rules__product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions-rebate-rules__product-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-rebate-rules__product-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-promotions-rebate-rules__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-rebate-rules__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-rebate-rules__cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-rebate-rules__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-promotions-rebate-rules__button--primary {
  background-color: #E0B400; /* Gold button */
  color: #0A192F; /* Dark blue text */
  border-color: #E0B400;
}

.page-promotions-rebate-rules__button--primary:hover {
  background-color: #f0c800;
  border-color: #f0c800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(224, 180, 0, 0.4);
}

.page-promotions-rebate-rules__button--secondary {
  background-color: transparent;
  color: #E0B400; /* Gold text */
  border-color: #E0B400;
}

.page-promotions-rebate-rules__button--secondary:hover {
  background-color: #E0B400;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(224, 180, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-rebate-rules__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-rebate-rules__section-title {
    font-size: 2em;
  }

  .page-promotions-rebate-rules__sub-title {
    font-size: 1.5em;
  }

  .page-promotions-rebate-rules__content-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-rebate-rules__product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-rebate-rules__hero {
    padding: 80px 0 40px;
  }

  .page-promotions-rebate-rules__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-rebate-rules__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions-rebate-rules__section {
    padding: 40px 0;
  }

  .page-promotions-rebate-rules__section-title {
    font-size: 1.8em;
  }

  .page-promotions-rebate-rules__sub-title {
    font-size: 1.3em;
  }

  .page-promotions-rebate-rules__text-block,
  .page-promotions-rebate-rules__list li,
  .page-promotions-rebate-rules__ordered-list li,
  .page-promotions-rebate-rules__product-description {
    font-size: 0.95em;
  }

  .page-promotions-rebate-rules__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-rebate-rules__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-rebate-rules__section-title {
    font-size: 1.5em;
  }

  .page-promotions-rebate-rules__hero-image {
    max-width: 95%;
  }

  .page-promotions-rebate-rules__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-rebate-rules__button {
    width: 80%;
    max-width: 300px;
  }
}