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

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

.page-promotions-daily-offers__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue to lighter blue */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-daily-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-daily-offers__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-daily-offers__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #003366; /* Deep blue text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-daily-offers__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-daily-offers__hero-image {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 400px;
    opacity: 0.3;
    z-index: 0;
    display: none; /* Hidden by default for smaller screens */
}

@media (min-width: 768px) {
    .page-promotions-daily-offers__hero-image {
        display: block;
    }
}

.page-promotions-daily-offers__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-offers__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-daily-offers__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-promotions-daily-offers__text-content {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-promotions-daily-offers__offer-card {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-offers__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-offers__card-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-promotions-daily-offers__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-daily-offers__card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-daily-offers__card-button {
    display: inline-block;
    background-color: #003366; /* Deep blue button */
    color: #FFD700; /* Gold text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-daily-offers__card-button:hover {
    background-color: #004d99; /* Lighter blue on hover */
    color: #fff;
}

.page-promotions-daily-offers__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-daily-offers__step-list li {
    background-color: #f5f5f5;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-promotions-daily-offers__step-list li strong {
    color: #003366;
}

.page-promotions-daily-offers__step-list li a {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-daily-offers__step-list li a:hover {
    color: #004d99;
}

.page-promotions-daily-offers__info-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 20px;
    color: #555;
}

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

.page-promotions-daily-offers__image-small {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-offers__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-promotions-daily-offers__feature-list li {
    background-color: #e6f0ff; /* Light blue background */
    color: #003366;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-offers__feature-list li::before {
    content: '✓';
    color: #FFD700; /* Gold checkmark */
    font-size: 1.5em;
    margin-right: 10px;
    font-weight: bold;
}

.page-promotions-daily-offers__faq-section {
    background-color: #f0f8ff;
}

.page-promotions-daily-offers__faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions-daily-offers__faq-question {
    background-color: #003366; /* Deep blue background */
    color: #fff;
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-offers__faq-question:hover {
    background-color: #004d99;
}

.page-promotions-daily-offers__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-daily-offers__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-daily-offers__faq-answer {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-daily-offers__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px;
}

.page-promotions-daily-offers__faq-answer p {
    margin: 0;
    color: #444;
}

.page-promotions-daily-offers__final-cta {
    text-align: center;
    background: linear-gradient(135deg, #003366, #004d99);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-promotions-daily-offers__final-cta .page-promotions-daily-offers__section-title {
    color: #FFD700;
    margin-bottom: 30px;
}

.page-promotions-daily-offers__final-cta .page-promotions-daily-offers__section-title::after {
    background-color: #FFD700;
}

.page-promotions-daily-offers__final-cta .page-promotions-daily-offers__text-content {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-daily-offers__cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-daily-offers__cta-button--primary {
    background-color: #FFD700;
    color: #003366;
}

.page-promotions-daily-offers__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-promotions-daily-offers__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-promotions-daily-offers__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #003366;
}

.page-promotions-daily-offers__image-large {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Floating Promotion Menu */
.page-promotions-daily-offers__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #003366;
    color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 280px;
    display: none; /* Hidden by default, shown by JS */
    transform: translateX(100%);
    transition: transform 0.5s ease-out;
    border: 2px solid #FFD700;
}

.page-promotions-daily-offers__floating-promo.active {
    transform: translateX(0);
}

.page-promotions-daily-offers__floating-promo-close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.8em;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.page-promotions-daily-offers__floating-promo-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.page-promotions-daily-offers__floating-promo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.page-promotions-daily-offers__floating-promo-list li {
    margin-bottom: 10px;
}

.page-promotions-daily-offers__floating-promo-list li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 8px 10px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.page-promotions-daily-offers__floating-promo-list li a:hover {
    background-color: rgba(255, 215, 0, 0.25);
    color: #FFD700;
}

.page-promotions-daily-offers__floating-promo-cta {
    display: block;
    background-color: #FFD700;
    color: #003366;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-daily-offers__floating-promo-cta:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-daily-offers__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-offers__section-title {
        font-size: 2em;
    }
    .page-promotions-daily-offers__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-daily-offers__hero-image {
        width: 300px;
        right: -50px;
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-offers__hero-section {
        padding: 60px 0;
    }
    .page-promotions-daily-offers__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-offers__hero-description {
        font-size: 1em;
    }
    .page-promotions-daily-offers__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-daily-offers__section {
        padding: 40px 0;
    }
    .page-promotions-daily-offers__section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-offers__text-content {
        font-size: 0.95em;
    }
    .page-promotions-daily-offers__offer-card {
        padding: 20px;
    }
    .page-promotions-daily-offers__card-title {
        font-size: 1.3em;
    }
    .page-promotions-daily-offers__floating-promo {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 15px;
        transform: translateY(150%); /* Adjust for full width */
    }
    .page-promotions-daily-offers__floating-promo.active {
        transform: translateY(0);
    }
    .page-promotions-daily-offers__cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-daily-offers__cta-button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-offers__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-offers__section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-offers__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
}