/* style/promotions-weekly-cashback.css */
.page-promotions-weekly-cashback {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2463; /* Main dark blue background */
  line-height: 1.6;
}

.page-promotions-weekly-cashback-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-weekly-cashback-section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-weekly-cashback-section:nth-of-type(even) {
  background-color: #0F347A; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-weekly-cashback-hero {
  background: linear-gradient(135deg, #0A2463 0%, #1A4A9C 100%); /* Gradient with main color */
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-promotions-weekly-cashback-hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-weekly-cashback-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-weekly-cashback-subtitle {
  font-size: 1.4em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  margin-bottom: 40px;
}

.page-promotions-weekly-cashback-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions-weekly-cashback h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-promotions-weekly-cashback p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-weekly-cashback .highlight {
  color: #FFD700;
}

.page-promotions-weekly-cashback-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
}

.page-promotions-weekly-cashback-btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-promotions-weekly-cashback-btn-primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-promotions-weekly-cashback-btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-promotions-weekly-cashback-btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-promotions-weekly-cashback-btn-tertiary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-weekly-cashback-btn-tertiary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

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

.page-promotions-weekly-cashback-benefit-item {
  background-color: #1A4A9C; /* Medium blue for benefit cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-promotions-weekly-cashback-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-promotions-weekly-cashback-full-width-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-weekly-cashback-step-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-weekly-cashback-step-item {
  background-color: #1A4A9C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
}

.page-promotions-weekly-cashback-step-number {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-promotions-weekly-cashback-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-weekly-cashback-detail-card {
  background-color: #1A4A9C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-weekly-cashback-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.95em;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-weekly-cashback-table thead tr {
  background-color: #FFD700;
  color: #0A2463;
  text-align: left;
  font-weight: bold;
}

.page-promotions-weekly-cashback-table th,
.page-promotions-weekly-cashback-table td {
  padding: 12px 15px;
  border: 1px solid #2B5A9E;
}

.page-promotions-weekly-cashback-table tbody tr {
  border-bottom: 1px solid #2B5A9E;
}

.page-promotions-weekly-cashback-table tbody tr:nth-of-type(even) {
  background-color: #113C84;
}

.page-promotions-weekly-cashback-table tbody tr:last-of-type {
  border-bottom: 2px solid #FFD700;
}

.page-promotions-weekly-cashback-table td {
  color: #E0E0E0;
}

.page-promotions-weekly-cashback-detail-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-weekly-cashback-detail-card ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #C0C0C0;
}

.page-promotions-weekly-cashback-card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-weekly-cashback-accordion {
  margin-top: 40px;
  text-align: left;
}

.page-promotions-weekly-cashback-accordion-item {
  margin-bottom: 15px;
  border: 1px solid #2B5A9E;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-weekly-cashback-accordion-header {
  background-color: #1A4A9C;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-promotions-weekly-cashback-accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.page-promotions-weekly-cashback-accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-weekly-cashback-accordion-header:hover {
  background-color: #2B5A9E;
}

.page-promotions-weekly-cashback-accordion-content {
  padding: 0 25px;
  background-color: #0F347A;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-weekly-cashback-accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #C0C0C0;
}

.page-promotions-weekly-cashback-cta-buttons {
  margin-top: 30px;
}

.page-promotions-weekly-cashback-disclaimer {
  font-size: 0.9em;
  color: #888;
  margin-top: 30px;
}

.page-promotions-weekly-cashback-floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700; /* Gold background for floating ad */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  max-width: 300px;
  animation: page-promotions-weekly-cashback-fadeInUp 0.5s ease-out;
}

.page-promotions-weekly-cashback-floating-ad a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0A2463; /* Dark blue text on gold */
  font-weight: bold;
}

.page-promotions-weekly-cashback-floating-icon {
  width: 30px;
  height: 30px;
}

.page-promotions-weekly-cashback-floating-text {
  font-size: 1em;
}

.page-promotions-weekly-cashback-floating-close-btn {
  background: none;
  border: none;
  color: #0A2463;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 10px;
  padding: 0 5px;
  line-height: 1;
}

.page-promotions-weekly-cashback-floating-close-btn:hover {
  color: #333;
}

@keyframes page-promotions-weekly-cashback-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-weekly-cashback-title {
    font-size: 2.5em;
  }
  .page-promotions-weekly-cashback-section-title {
    font-size: 2em;
  }
  .page-promotions-weekly-cashback-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions-weekly-cashback-hero {
    padding: 80px 0 40px;
  }
  .page-promotions-weekly-cashback-title {
    font-size: 2em;
  }
  .page-promotions-weekly-cashback-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-weekly-cashback-section-title {
    font-size: 1.8em;
  }
  .page-promotions-weekly-cashback-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-weekly-cashback-step-list {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-weekly-cashback-step-item {
    max-width: 100%;
  }
  .page-promotions-weekly-cashback-table {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  .page-promotions-weekly-cashback-floating-ad {
    max-width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    bottom: 10px;
    padding: 10px 15px;
  }
  .page-promotions-weekly-cashback-floating-text {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-promotions-weekly-cashback-title {
    font-size: 1.8em;
  }
  .page-promotions-weekly-cashback-section-title {
    font-size: 1.5em;
  }
  .page-promotions-weekly-cashback-btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-promotions-weekly-cashback-hero-image {
    max-width: 95%;
  }
}