/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/bon-plans/bon-plans.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
.bon-plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.bon-plans-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    color: var(--primary);
}

.bon-plans-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.promo-banner {
    background-color: var(--secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.promo-banner-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.promo-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.promo-banner-text {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 80%;
}

.promo-banner-button {
    background-color: white;
    color: var(--secondary);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
    transition: transform 0.2s;
}

.promo-banner-button:hover {
    transform: scale(1.05);
}

.promo-banner-decoration {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.promo-banner-decoration span {
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

@media (max-width: 768px) {
    .promo-banner-decoration {
        display: none;
    }
    
    .promo-banner-text {
        max-width: 100%;
    }
}

.promotions-section, .promo-code-section, .loyalty-section {
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .promotions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.promotion-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.promotion-header {
    height: 4rem;
    width: 100%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotion-header h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.promotion-content {
    padding: 1rem;
}

.promotion-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promotion-description {
    color: #666;
    margin-bottom: 0.5rem;
}

.promotion-dates {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.promo-code-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #ffffff;
}

.promo-code-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-code-container {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.promo-code {
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border: 1px dashed #ccc;
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 1rem;
    letter-spacing: 2px;
}

.promo-copy-button {
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.promo-copy-button:hover {
    opacity: 0.9;
}

.promo-code-details {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.loyalty-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: #ffffff;
}

.loyalty-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.loyalty-points {
    display: flex;
    margin-bottom: 1rem;
}

.loyalty-point {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.loyalty-point.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.loyalty-info {
    margin-top: 1rem;
    color: #666;
}

.button {
    width: auto;
    min-width: 120px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 0 1.5rem;
    margin-top: 1rem;
}

.button:hover {
    opacity: 0.9;
}

