/* style/promotions-limited-time-offers.css */
.page-promotions-limited-time-offers {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-promotions-limited-time-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-limited-time-offers__container--center {
    text-align: center;
}

.page-promotions-limited-time-offers__hero {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-limited-time-offers__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-promotions-limited-time-offers__pulse 15s infinite ease-in-out;
}

@keyframes page-promotions-limited-time-offers__pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.page-promotions-limited-time-offers__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-promotions-limited-time-offers__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-limited-time-offers__link--brand {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-limited-time-offers__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
}

.page-promotions-limited-time-offers__btn--primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #000; /* Ensure high contrast */
    border: 2px solid #ffc107;
}

.page-promotions-limited-time-offers__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__btn--secondary {
    background-color: #007bff; /* Primary color */
    color: #fff; /* Ensure high contrast */
    border: 2px solid #007bff;
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions-limited-time-offers__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-promotions-limited-time-offers__btn--tertiary {
    background-color: #f0f0f0; /* Light background */
    color: #007bff; /* Primary color for text */
    border: 1px solid #ddd;
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-promotions-limited-time-offers__btn--tertiary:hover {
    background-color: #e2e6ea;
    border-color: #c6c6c6;
}

.page-promotions-limited-time-offers__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions-limited-time-offers__section {
    padding: 60px 0;
}

.page-promotions-limited-time-offers__section--offers {
    background-color: #fff;
}

.page-promotions-limited-time-offers__section--events {
    background-color: #f0f8ff; /* Light blue background */
}

.page-promotions-limited-time-offers__section--benefits {
    background-color: #e9f7ef; /* Light green background */
}

.page-promotions-limited-time-offers__section--guide {
    background-color: #fff;
}

.page-promotions-limited-time-offers__section--terms {
    background-color: #fdf3e2; /* Light yellow background */
}

.page-promotions-limited-time-offers__section--faq {
    background-color: #fff;
}

.page-promotions-limited-time-offers__section--cta-bottom {
    background-color: #007bff; /* Primary color */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-limited-time-offers__heading {
    font-size: 2.5em;
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-limited-time-offers__section--cta-bottom .page-promotions-limited-time-offers__heading {
    color: #fff;
}

.page-promotions-limited-time-offers__text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #555;
}

.page-promotions-limited-time-offers__section--cta-bottom .page-promotions-limited-time-offers__text {
    color: #e0e0e0;
}

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

.page-promotions-limited-time-offers__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-limited-time-offers__card-img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-limited-time-offers__card-title {
    font-size: 1.5em;
    color: #007bff; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-limited-time-offers__card-text {
    color: #666;
    margin-bottom: 25px;
}

.page-promotions-limited-time-offers__list {
    list-style: disc inside;
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
    color: #444;
}

.page-promotions-limited-time-offers__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-promotions-limited-time-offers__list strong {
    color: #007bff;
}

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

.page-promotions-limited-time-offers__step-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    border-top: 5px solid #ffc107; /* Auxiliary color */
}

.page-promotions-limited-time-offers__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffc107; /* Auxiliary color */
    margin-bottom: 15px;
    background-color: #fff3cd; /* Light background for icon */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 20px auto;
}

.page-promotions-limited-time-offers__step-title {
    font-size: 1.4em;
    color: #007bff; /* Primary color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-limited-time-offers__step-text {
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-limited-time-offers__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-limited-time-offers__faq-question {
    font-size: 1.3em;
    color: #007bff; /* Primary color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-limited-time-offers__faq-answer {
    color: #555;
    line-height: 1.8;
}

/* Floating Ad */
.page-promotions-limited-time-offers__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.page-promotions-limited-time-offers__floating-btn {
    background-color: #ffc107; /* Auxiliary color */
    color: #000; /* High contrast text */
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-limited-time-offers__floating-btn:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotions-limited-time-offers__floating-text {
    font-size: 1em;
}

.page-promotions-limited-time-offers__floating-icon {
    font-size: 1.2em;
    line-height: 1;
}

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

    .page-promotions-limited-time-offers__subtitle {
        font-size: 1.1em;
    }

    .page-promotions-limited-time-offers__heading {
        font-size: 2em;
    }

    .page-promotions-limited-time-offers__card {
        padding: 25px;
    }

    .page-promotions-limited-time-offers__card-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-promotions-limited-time-offers__hero {
        padding: 60px 0;
    }

    .page-promotions-limited-time-offers__title {
        font-size: 2.2em;
    }

    .page-promotions-limited-time-offers__subtitle {
        font-size: 1em;
    }

    .page-promotions-limited-time-offers__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-limited-time-offers__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promotions-limited-time-offers__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions-limited-time-offers__text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-promotions-limited-time-offers__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-limited-time-offers__list {
        margin: 20px auto;
        padding-left: 20px;
    }

    .page-promotions-limited-time-offers__list li {
        font-size: 1em;
    }

    .page-promotions-limited-time-offers__step-item {
        padding: 25px;
    }

    .page-promotions-limited-time-offers__step-icon {
        font-size: 2em;
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-bottom: 15px;
    }

    .page-promotions-limited-time-offers__step-title {
        font-size: 1.2em;
    }

    .page-promotions-limited-time-offers__faq-question {
        font-size: 1.1em;
    }

    .page-promotions-limited-time-offers__floating-btn {
        padding: 10px 15px;
        font-size: 0.9em;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .page-promotions-limited-time-offers__hero {
        padding: 40px 0;
    }

    .page-promotions-limited-time-offers__title {
        font-size: 1.8em;
    }

    .page-promotions-limited-time-offers__subtitle {
        font-size: 0.9em;
    }

    .page-promotions-limited-time-offers__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotions-limited-time-offers__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-limited-time-offers__heading {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .page-promotions-limited-time-offers__card-img {
        height: 150px;
    }

    .page-promotions-limited-time-offers__card-title {
        font-size: 1.3em;
    }

    .page-promotions-limited-time-offers__floating-ad {
        bottom: 15px;
        right: 15px;
    }

    .page-promotions-limited-time-offers__floating-btn {
        padding: 8px 12px;
        font-size: 0.8em;
        gap: 5px;
    }
}