/**
 * Available Licenses Shortcode — Frontend Styles
 * YOOAdmin brand: #5A5A59 (dark) · #EEB44E (golden) · #fafaf9 (soft bg)
 *
 * @package YOOPixel Management
 * @since 2.5.0
 */

/* ── Wrapper — breakout from narrow theme columns ────────────── */
.yoopxl-available-licenses {
    box-sizing: border-box !important;
    margin-bottom: 48px !important;
}
.yoopxl-lic-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    padding: 0 24px !important;
}

/* ── Grid wrapper (carousel) ─────────────────────────────────── */
.yoopxl-grid-carousel {
    position: relative;
}
.yoopxl-grid-carousel-track {
    overflow: hidden;
}

/* Grid + card overrides */
.yoopxl-licenses-grid {
    display: flex !important;
    gap: 22px !important;
    align-items: stretch !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
/* Default: wrap (≤4 cards behave like grid) */
.yoopxl-licenses-grid:not(.yoopxl-carousel-active) {
    flex-wrap: wrap !important;
}
/* Carousel mode: no wrap, fixed card widths */
.yoopxl-licenses-grid.yoopxl-carousel-active {
    flex-wrap: nowrap !important;
	padding-top: 10px;
	padding-bottom: 28px;
}
.yoopxl-licenses-grid.yoopxl-carousel-active .yoopxl-license-card {
    flex: 0 0 calc(25% - 17px) !important; /* 4 visible, 3 gaps of 22px */
    min-width: 220px !important;
}

/* Grid card base */
.yoopxl-available-licenses .yoopxl-license-card {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}
/* Non-carousel: equal flex columns */
.yoopxl-licenses-grid:not(.yoopxl-carousel-active) .yoopxl-license-card {
    flex: 1 1 250px !important;
}

/* Carousel nav buttons */
.yoopxl-carousel-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.12) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    color: #5A5A59 !important;
    transition: background .15s, border-color .15s, color .15s !important;
    z-index: 5 !important;
    line-height: 1 !important;
    padding: 0 !important;
}
.yoopxl-carousel-nav:hover:not(:disabled) {
    background: #EEB44E !important;
    border-color: #EEB44E !important;
    color: #fff !important;
}
.yoopxl-carousel-nav:disabled {
    opacity: .3 !important;
    cursor: default !important;
    pointer-events: none !important;
}
.yoopxl-carousel-prev { left: -18px !important; }
.yoopxl-carousel-next { right: -18px !important; }

@media (max-width: 640px) {
    .yoopxl-available-licenses { overflow-x: hidden !important; }
    .yoopxl-lic-inner { padding: 0 44px !important; }
    .yoopxl-licenses-grid { flex-wrap: wrap !important; }
    .yoopxl-licenses-grid.yoopxl-carousel-active .yoopxl-license-card { flex: 0 0 100% !important; min-width: 0 !important; }
    .yoopxl-carousel-prev { left: 4px !important; }
    .yoopxl-carousel-next { right: 4px !important; }
}

/* ── Header ──────────────────────────────────────────────────── */
.yoopxl-licenses-header {
    text-align: center;
    margin-bottom: 36px;
}
.yoopxl-licenses-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #3d3d3c;
    margin: 0 0 10px !important;
    line-height: 1.25;
}
.yoopxl-licenses-subtitle {
    font-size: 1rem;
    color: #9ca3af;
    margin: 0 !important;
}

/* ── Billing toggle ──────────────────────────────────────────── */
.yoopxl-billing-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    margin: 0 0 36px !important;
}
.yoopxl-toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    cursor: pointer;
    transition: color .18s;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    flex: 0 0 auto;
}
.yoopxl-toggle-label.active { color: #3d3d3c; }

/* Yearly label glows when active */
.yoopxl-toggle-label[data-interval="yearly"].active {
    color: #d99e30;
}

.yoopxl-toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
}
.yoopxl-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.yoopxl-toggle-track {
    position: absolute;
    inset: 0;
    background: #EEB44E;
    border-radius: 26px;
    transition: background .18s;
}
.yoopxl-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .18s;
    box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
/* Monthly (unchecked) = dark navy, Yearly (checked) = orange */
.yoopxl-toggle-track { background: #5A5A59; }
.yoopxl-toggle-switch input:checked + .yoopxl-toggle-track { background: #EEB44E; }
.yoopxl-toggle-switch input:checked + .yoopxl-toggle-track .yoopxl-toggle-thumb {
    transform: translateX(22px);
}

/* "Save X%" pill next to Yearly label in toggle (legacy, kept for compat) */
.yoopxl-yearly-save {
    display: inline-flex;
    align-items: center;
    background: rgba(238,180,78,.15);
    color: #b07c1e;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    white-space: nowrap;
}

/* ── Prominent promo badge to the right of the toggle ───────── */
.yoopxl-toggle-promo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #EEB44E, #d99e30);
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 5px 14px !important;
    border-radius: 99px !important;
    white-space: nowrap;
    letter-spacing: .2px;
    box-shadow: 0 2px 10px rgba(238,180,78,.40);
    animation: yoopxl-promo-pulse 2.4s ease-in-out infinite;
    cursor: default;
    user-select: none;
    line-height: 1.2;
    margin-left: 6px;
    vertical-align: middle;
    visibility: visible !important;
    opacity: 1 !important;
}
.yoopxl-toggle-promo svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 2px rgba(255,255,255,.6));
}

/* When yearly is active — calm the badge (mission accomplished) */
.yoopxl-interval-yearly .yoopxl-toggle-promo {
    animation: none;
    background: rgba(238,180,78,.18) !important;
    color: #b07c1e !important;
    box-shadow: none;
    opacity: .85 !important;
}

@keyframes yoopxl-promo-pulse {
    0%, 100% { transform: scale(1);     box-shadow: 0 2px 10px rgba(238,180,78,.40); }
    50%       { transform: scale(1.05); box-shadow: 0 4px 20px rgba(238,180,78,.55); }
}

/* ── Yearly savings ribbon on cards ──────────────────────────── */
.yoopxl-yearly-ribbon {
    display: none;          /* hidden by default (monthly active) */
    position: absolute;
    top: 16px;
    right: 0;
    background: linear-gradient(135deg, #EEB44E, #d99e30);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px 5px 12px;
    border-radius: 99px 0 0 99px;
    letter-spacing: .3px;
    white-space: nowrap;
    box-shadow: -3px 2px 10px rgba(238,180,78,.35);
    animation: yoopxl-ribbon-in .22s ease both;
    z-index: 2;
}

@keyframes yoopxl-ribbon-in {
    from { opacity: 0; transform: translateX(8px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Show ribbons when yearly is active (JS adds this class to the wrapper) */
.yoopxl-interval-yearly .yoopxl-yearly-ribbon {
    display: block;
}

/* ── Grid (duplicate declaration removed — see top section) ──── */

/* ── Card ─────────────────────────────────────────────────────── */
.yoopxl-license-card {
    background: #fff !important;
    border: 1px solid #ede8df !important;
    border-radius: 14px !important;
    /* visible so fair-use popover is not clipped (tooltip must paint outside the card) */
    overflow: visible !important;
    box-shadow: 0 2px 12px rgba(90,90,89,.06) !important;
    display: flex !important;
    flex-direction: column !important;
    transition: box-shadow .2s, transform .2s;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative;
}
.yoopxl-license-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(90,90,89,.12) !important;
}

/* Featured accent top bar */
.yoopxl-license-card.yoopxl-featured::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #EEB44E, #e09a2a);
    width: 100%;
}

/* ── Most Popular card ───────────────────────────────────────── */
.yoopxl-card-popular {
    border-color: #EEB44E !important;
    box-shadow: 0 4px 24px rgba(238,180,78,.22), 0 0 0 2px rgba(238,180,78,.18) !important;
}
.yoopxl-card-popular:hover {
    box-shadow: 0 10px 36px rgba(238,180,78,.32), 0 0 0 2px rgba(238,180,78,.30) !important;
}

/* Badge slot — fixed height on ALL cards so content stays aligned */
.yoopxl-card-badge-slot {
    min-height: 34px;
    display: flex;
    align-items: stretch;
}
/*
 * “Most Popular”: one clip layer only, bleed slightly under the 1px border so no white wedges
 * at the corners (outer curve = card radius; avoid double radius on badge + slot).
 */
.yoopxl-card-popular .yoopxl-card-badge-slot {
    margin: -1px -1px 0;
    width: calc(100% + 2px);
    max-width: none;
    box-sizing: border-box;
    align-self: stretch;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Popular badge fills the slot */
.yoopxl-popular-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(180deg, #f0c45a 0%, #EEB44E 28%, #d99e30 100%);
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* ── Trial badge — above CTA button ─────────────────────────── */
/* trial badge wrapper — centers the inline pill */
.yoopxl-card-footer .yoopxl-trial-above-cta-wrap {
    align-self: center;
    margin: 0 0 10px;
}
.yoopxl-trial-above-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: #b07c1e;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.3;
    padding: 0;
    font-style: italic;
}
.yoopxl-trial-above-cta svg {
    flex-shrink: 0;
    color: #EEB44E;
}

/* ── Card top section ────────────────────────────────────────── */
.yoopxl-card-top {
    padding: 16px 24px 20px;
    border-bottom: 1px solid #f3ece0;
}
.yoopxl-card-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.yoopxl-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #3d3d3c;
}
.yoopxl-card-free-badge {
    font-size: 11px;
    font-weight: 700;
    background: rgba(238,180,78,.15);
    color: #b07c1e;
    padding: 3px 10px;
    border-radius: 99px;
    white-space: nowrap;
}
.yoopxl-card-desc {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.55;
    margin: 0 !important;
}

/* ── Pricing block ───────────────────────────────────────────── */
.yoopxl-card-pricing {
    padding: 20px 24px 0;
    min-height: 50px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.yoopxl-price-by-interval { display: none; align-items: baseline; gap: 4px; }
.yoopxl-price-by-interval.yoopxl-active { display: flex; }

.yoopxl-price-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: #EEB44E;
    align-self: flex-start;
    margin-top: 6px;
}
.yoopxl-price-amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: #3d3d3c;
    line-height: 1;
    transition: opacity .15s;
}
.yoopxl-price-cents {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: super;
    line-height: 1;
}
.yoopxl-price-period {
    font-size: 13px;
    color: #9ca3af;
    align-self: flex-end;
    padding-bottom: 4px;
}
.yoopxl-price-free {
    font-size: 2rem;
    font-weight: 800;
    color: #EEB44E;
}

/* Yearly: effective monthly (yearly total ÷ 12, after sale) */
.yoopxl-card-yearly-equiv {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 4px 24px 0;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.35;
}
.yoopxl-card-yearly-equiv-icon {
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}
.yoopxl-card-yearly-equiv-text {
    letter-spacing: 0.02em;
}

/* Original crossed-out price */
.yoopxl-price-original {
    font-size: 1rem;
    font-weight: 500;
    color: #bbb;
    text-decoration: line-through;
    align-self: flex-end;
    padding-bottom: 5px;
    margin-right: 2px;
}

/* Sale discount badge */
.yoopxl-price-save {
    display: inline-flex;
    align-items: center;
    background: rgba(239,68,68,.1);
    color: #ef4444;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 99px;
    align-self: flex-end;
    padding-bottom: 6px;
    white-space: nowrap;
    margin-left: 4px;
}

/* ── Body ────────────────────────────────────────────────────── */
.yoopxl-card-body {
    padding: 16px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* meta pills */
.yoopxl-card-meta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
}
.yoopxl-meta-pill {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    background: #f3f4f6;
    color: #5A5A59;
    padding: 4px 10px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}
.yoopxl-meta-pill .dashicons {
    font-size: 13px;
    width: 13px;
    height: 13px;
    color: #EEB44E;
}

/* Fair use tooltip (unlimited domains) */
.yoopxl-meta-pill-domain {
    position: relative;
}
.yoopxl-fair-use-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
    vertical-align: middle;
}
.yoopxl-fair-use-btn {
    border: none !important;
    background: transparent !important;
    padding: 0 0 0 4px !important;
    margin: 0 !important;
    cursor: help !important;
    line-height: 1 !important;
    box-shadow: none !important;
    color: #9ca3af !important;
    border-radius: 4px;
}
.yoopxl-fair-use-btn:hover,
.yoopxl-fair-use-btn:focus {
    color: #EEB44E !important;
    outline: none !important;
}
.yoopxl-fair-use-btn:focus-visible {
    box-shadow: 0 0 0 2px rgba(238, 180, 78, 0.45) !important;
}
.yoopxl-fair-use-btn .dashicons {
    font-size: 14px !important;
    width: 14px !important;
    height: 14px !important;
    color: inherit !important;
}
/* Layered tip: position + arrow X set by available-licenses.js (escapes overflow:hidden ancestors) */
.yoopxl-fair-use-popover {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2147483000;
    min-width: 200px;
    max-width: min(280px, calc(100vw - 24px));
    padding: 9px 11px;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: #374151 !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    text-align: left;
    white-space: normal !important;
    box-sizing: border-box;
}
.yoopxl-fair-use-popover.is-open {
    opacity: 1;
    visibility: visible;
}
.yoopxl-fair-use-popover.yoopxl-fair-use-popover--fixed {
    position: fixed !important;
    transform: none !important;
    right: auto !important;
}
.yoopxl-fair-use-popover::after {
    content: '';
    position: absolute;
    left: var(--yoopxl-fair-arrow-x, 50%);
    top: -6px;
    bottom: auto;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
}
/* Popover flipped above the icon (not enough space below) */
.yoopxl-fair-use-popover.yoopxl-fair-use-popover--above::after {
    top: auto;
    bottom: -6px;
    border-left: none;
    border-top: none;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* Billing period pill: only the active label is shown */
.yoopxl-billing-period-pill .yoopxl-bill-lbl { display: none; }
.yoopxl-billing-period-pill .yoopxl-bill-lbl.yoopxl-active { display: inline; }

/* features */
.yoopxl-license-features {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.yoopxl-license-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    font-size: 13px;
    color: #5A5A59;
    border-bottom: 1px solid #f3f4f6;
}
.yoopxl-license-features li:last-child { border-bottom: none; }
.yoopxl-license-features .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
    color: #EEB44E;
    flex-shrink: 0;
}
.yoopxl-license-features .yoopxl-feature-link {
    color: #EEB44E;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.yoopxl-license-features .yoopxl-feature-link:hover {
    color: #b07c1e;
}

/* Highlight animation when scrolled to max plan */
@keyframes yoopxl-highlight-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(238,180,78,.6); }
    60%  { box-shadow: 0 0 0 10px rgba(238,180,78,.0); }
    100% { box-shadow: 0 0 0 0 rgba(238,180,78,.0); }
}
.yoopxl-card-highlight {
    animation: yoopxl-highlight-pulse 1.5s ease-out !important;
}

/* "And X more features" button */
.yoopxl-more-features-item {
    border-bottom: none !important;
    padding: 10px 0 4px !important;
}
.yoopxl-more-features-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: #EEB44E !important;
    text-decoration: none !important;
    background: rgba(238,180,78,.1);
    border: 1px solid rgba(238,180,78,.3);
    border-radius: 99px;
    padding: 5px 14px;
    transition: background .15s, border-color .15s;
    white-space: nowrap;
}
.yoopxl-more-features-btn:hover {
    background: rgba(238,180,78,.2) !important;
    border-color: rgba(238,180,78,.55) !important;
    color: #d99e30 !important;
    text-decoration: none !important;
}

/* ── Footer / CTA ────────────────────────────────────────────── */
.yoopxl-card-footer {
    padding: 0 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.yoopxl-license-cta {
    display: block !important;
    text-align: center !important;
    padding: 12px 24px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    color: #fff !important;
    background: #EEB44E !important;
    border: none !important;
    cursor: pointer;
    transition: background .18s, transform .15s, box-shadow .18s;
    letter-spacing: .2px;
    box-shadow: 0 2px 10px rgba(238,180,78,.35);
}
.yoopxl-license-cta:hover {
    background: #d99e30 !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(238,180,78,.50);
}
.yoopxl-license-cta.yoopxl-cta-free {
    background: #f3f4f6 !important;
    color: #5A5A59 !important;
    box-shadow: none;
}
.yoopxl-license-cta.yoopxl-cta-free:hover {
    background: #e5e7eb !important;
    color: #3d3d3c !important;
}

/* Logged-in viewer: free plan — same footprint as free CTA, faded, not a link (tooltip via title) */
.yoopxl-license-cta.yoopxl-cta-free.yoopxl-cta-free-logged-in {
    display: block !important;
    text-align: center !important;
    padding: 12px 24px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    line-height: normal !important;
    color: #b0aea9 !important;
    background: #ececea !important;
    border: 1px solid #e2e2df !important;
    box-shadow: none !important;
    cursor: default !important;
    user-select: none !important;
    pointer-events: auto !important;
    transform: none !important;
    opacity: 0.88 !important;
}
.yoopxl-license-cta.yoopxl-cta-free.yoopxl-cta-free-logged-in:hover {
    background: #ececea !important;
    color: #b0aea9 !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.88 !important;
}

/* "Coming soon" — same footprint as CTA, not a link */
.yoopxl-license-cta.yoopxl-cta-coming-soon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    width: 100% !important;
    cursor: default !important;
    pointer-events: none !important;
    background: #e8e6e3 !important;
    color: #6b6b6a !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transform: none !important;
}
.yoopxl-license-cta.yoopxl-cta-coming-soon:hover {
    background: #e8e6e3 !important;
    color: #6b6b6a !important;
    box-shadow: none !important;
    transform: none !important;
}

.yoopxl-no-licenses {
    text-align: center;
    padding: 48px 20px;
    color: #9ca3af;
    font-size: 14px;
}

/* ── Trust bar ───────────────────────────────────────────────── */
.yoopxl-trust-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px 14px !important;
    margin-top: 32px !important;
    padding: 14px 20px !important;
    background: rgba(238,180,78,.07) !important;
    border: 1px solid rgba(238,180,78,.18) !important;
    border-radius: 12px !important;
}
.yoopxl-trust-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #6b6b6a !important;
    white-space: nowrap !important;
}
.yoopxl-trust-item svg {
    flex-shrink: 0 !important;
    color: #EEB44E !important;
}
.yoopxl-trust-sep {
    color: #d4c9b8 !important;
    font-size: 16px !important;
    line-height: 1 !important;
}
/* Stripe wordmark */
.yoopxl-stripe-wordmark {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #747474 !important;
    letter-spacing: -.3px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    padding: 0 0 3px 0;
}
@media (max-width: 480px) {
    .yoopxl-trust-sep { display: none !important; }
    .yoopxl-trust-bar { gap: 10px 20px !important; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 600px) {
    .yoopxl-licenses-grid { flex-wrap: wrap !important; }
    .yoopxl-licenses-title { font-size: 1.5rem; }
    .yoopxl-billing-toggle {
        display: grid !important;
        grid-template-columns: auto auto auto;
        column-gap: 12px !important;
        row-gap: 8px !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .yoopxl-toggle-label {
        font-size: 13px;
    }
    .yoopxl-toggle-label[data-interval="monthly"] {
        grid-column: 1;
        grid-row: 2;
    }
    .yoopxl-toggle-switch {
        grid-column: 2;
        grid-row: 2;
    }
    .yoopxl-toggle-label[data-interval="yearly"] {
        grid-column: 3;
        grid-row: 2;
    }
    .yoopxl-toggle-promo {
        grid-column: 1 / -1;
        grid-row: 1;
        justify-self: center;
        width: max-content;
        max-width: calc(100% - 24px);
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 2px;
        white-space: nowrap;
    }
}
