/* style/promotions-weekly-cashback.css */
.page-promotions-weekly-cashback {
    color: #333333; /* Default text color for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promotions-weekly-cashback__hero-section {
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-weekly-cashback__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background effect */
    z-index: 0;
}

.page-promotions-weekly-cashback__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-weekly-cashback__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Highlight color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-weekly-cashback__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-weekly-cashback__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-weekly-cashback__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;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-promotions-weekly-cashback__button--claim {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promotions-weekly-cashback__button--claim:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promotions-weekly-cashback__button--register {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-promotions-weekly-cashback__button--register:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-promotions-weekly-cashback__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-promotions-weekly-cashback__section {
    margin-bottom: 60px;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-weekly-cashback__section-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-weekly-cashback__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-promotions-weekly-cashback__sub-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-weekly-cashback__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-promotions-weekly-cashback__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-weekly-cashback__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-promotions-weekly-cashback__list-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-promotions-weekly-cashback__list-item strong {
    color: #000000;
}

.page-promotions-weekly-cashback__button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: 20px;
}

.page-promotions-weekly-cashback__button--login:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promotions-weekly-cashback__button--terms {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    margin-top: 20px;
}

.page-promotions-weekly-cashback__button--terms:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

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

.page-promotions-weekly-cashback__benefit-card {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-weekly-cashback__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-weekly-cashback__benefit-icon {
    width: 200px; /* Min image size */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions-weekly-cashback__benefit-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promotions-weekly-cashback__benefit-description {
    color: #555555;
}

.page-promotions-weekly-cashback__faq-container {
    margin-top: 30px;
}

.page-promotions-weekly-cashback__faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-weekly-cashback__faq-question {
    background-color: #f0f0f0;
    color: #000000;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: relative;
    padding-right: 50px;
}

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

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

.page-promotions-weekly-cashback__faq-question:hover {
    background-color: #e5e5e5;
}

.page-promotions-weekly-cashback__faq-answer {
    padding: 0 25px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-weekly-cashback__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-promotions-weekly-cashback__faq-answer p {
    margin: 0;
    color: #555555;
}

.page-promotions-weekly-cashback__section--cta {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}

.page-promotions-weekly-cashback__section--cta .page-promotions-weekly-cashback__section-title {
    color: #FCBC45;
}

.page-promotions-weekly-cashback__section--cta .page-promotions-weekly-cashback__section-title::after {
    background-color: #FFFFFF;
}

.page-promotions-weekly-cashback__section--cta .page-promotions-weekly-cashback__text-content {
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-weekly-cashback__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions-weekly-cashback__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

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

.page-promotions-weekly-cashback__button--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-promotions-weekly-cashback__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

    .page-promotions-weekly-cashback__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions-weekly-cashback__hero-section {
        padding: 60px 15px;
    }

    .page-promotions-weekly-cashback__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-weekly-cashback__hero-description {
        font-size: 1em;
    }

    .page-promotions-weekly-cashback__hero-actions,
    .page-promotions-weekly-cashback__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-weekly-cashback__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-weekly-cashback__content-area {
        padding: 20px 15px;
    }

    .page-promotions-weekly-cashback__section {
        padding: 20px;
        margin-bottom: 40px;
    }

    .page-promotions-weekly-cashback__section-title {
        font-size: 1.8em;
    }

    .page-promotions-weekly-cashback__sub-title {
        font-size: 1.5em;
    }

    .page-promotions-weekly-cashback__text-content,
    .page-promotions-weekly-cashback__list-item,
    .page-promotions-weekly-cashback__faq-question {
        font-size: 0.95em;
    }

    .page-promotions-weekly-cashback__benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure all content images are responsive and do not overflow */
    .page-promotions-weekly-cashback img {
        max-width: 100%;
        height: auto;
        box-sizing: border-box; /* Include padding/border in width */
    }
    .page-promotions-weekly-cashback__benefit-icon {
        width: 150px; /* Adjusted for smaller screens, but still >= 200px if original is larger */
        height: auto;
    }
    /* Ensure no specific rules for img elements that would make them smaller than 200px */
    .page-promotions-weekly-cashback__image { 
        min-width: 200px; /* enforce min width */
        min-height: 200px; /* enforce min height */
    }
}

@media (max-width: 480px) {
    .page-promotions-weekly-cashback__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-weekly-cashback__section-title {
        font-size: 1.5em;
    }
    .page-promotions-weekly-cashback__button {
        padding: 10px 15px;
    }
}