/**
 * Coupon announcement bar — sits below breadcrumbs on the pricing/landing page
 * when a visitor's WC session has the daily skills-assessment coupon primed.
 *
 * Visual language matches the child theme's "Ready to start learning?" plans
 * bar: 1px dashed magenta border, very subtle magenta tint, Fira Code at the
 * brand magenta. Sits inside the 1200px content rail with margin above so it
 * doesn't crowd the breadcrumb.
 */

.itu-coupon-bar {
    max-width: 1200px;
    margin: var(--wp--preset--spacing--40, 24px) auto var(--wp--preset--spacing--30, 16px);
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.itu-coupon-bar__inner {
    border: 1px dashed #C026D3;
    background: rgba(192, 38, 211, 0.03);
    padding: 14px 20px;
    box-sizing: border-box;
    border-radius: 0;
}

.itu-coupon-bar__msg {
    margin: 0;
    padding: 0;
    font-family: var(--wp--preset--font-family--fira-code, 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace);
    font-size: var(--wp--preset--font-size--medium, 16px);
    font-weight: 600;
    color: #C026D3;
    line-height: 1.4;
    text-align: left;
}

/* State-driven messages: show the annual variant by default; the monthly
   variant is only visible when the pricing toggle switches to monthly. */
.itu-coupon-bar__msg--monthly {
    display: none;
}

.itu-coupon-bar[data-state="monthly"] .itu-coupon-bar__msg--annual {
    display: none;
}

.itu-coupon-bar[data-state="monthly"] .itu-coupon-bar__msg--monthly {
    display: block;
}

.itu-coupon-bar__emph {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.itu-coupon-bar__amount {
    font-weight: 800;
}

.itu-coupon-bar__products {
    font-weight: 700;
}

.itu-coupon-bar__line {
    display: block;
    margin: 0;
    padding: 0;
}

.itu-coupon-bar__line + .itu-coupon-bar__line {
    margin-top: 2px;
}

.itu-coupon-bar__social {
    color: var(--itu-black, #111);
    font-weight: 500;
    opacity: 1;
}

.itu-coupon-bar__social strong {
    color: var(--itu-black, #111);
    font-weight: 800;
}

@media (max-width: 720px) {
    .itu-coupon-bar {
        padding: 0;
    }

    .itu-coupon-bar__inner {
        padding: 12px 14px;
    }

    .itu-coupon-bar__msg {
        font-size: 14px;
    }
}
