/* ===== DARK THEME: WOOCOMMERCE CART / CHECKOUT / ACCOUNT ===== */

/* General */
.woocommerce,
.woocommerce-page {
    color: var(--text-primary);
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
    background: var(--bg-card);
    border-top-color: var(--accent-active);
    color: var(--text-primary);
}
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before {
    color: var(--accent-active);
}
.woocommerce .woocommerce-error::before {
    color: var(--accent-warn);
}

/* Tables */
.woocommerce table.shop_table {
    background: var(--bg-card);
    border-color: var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: var(--border-subtle);
    color: var(--text-primary);
    padding: 14px 16px;
}
.woocommerce table.shop_table thead th {
    background: rgba(42,42,42,0.5);
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Images in Cart */
.woocommerce table.shop_table img {
    border-radius: 8px;
}

/* Links */
.woocommerce a {
    color: var(--accent-active);
}
.woocommerce a:hover {
    color: var(--accent-passive);
}

/* Remove / Action Links */
.woocommerce a.remove {
    color: var(--accent-warn) !important;
}
.woocommerce a.remove:hover {
    background: var(--accent-warn);
    color: #1e1e1e !important;
}

/* Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
    background: var(--accent-active);
    color: #1e1e1e;
    border: none;
    border-radius: 24px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
    background: var(--accent-active);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(167,139,250,0.3);
}

.woocommerce .button.alt,
.woocommerce button.button.alt {
    background: var(--accent-active);
    color: #1e1e1e;
}

/* Forms */
.woocommerce form .form-row label {
    color: var(--text-secondary);
    font-size: 13px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--accent-active);
    outline: none;
    box-shadow: 0 0 0 2px rgba(167,139,250,0.15);
}

/* Coupon */
.woocommerce .coupon .input-text {
    background: var(--bg-main) !important;
    border: 1px solid var(--border-subtle) !important;
    color: var(--text-primary) !important;
}

/* Cart Totals */
.woocommerce .cart-collaterals .cart_totals {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
}

/* Checkout */
.woocommerce-checkout #payment {
    background: var(--bg-card);
    border-radius: 12px;
    border-color: var(--border-subtle);
}
.woocommerce-checkout #payment ul.payment_methods {
    border-color: var(--border-subtle);
}
.woocommerce-checkout #payment div.payment_box {
    background: var(--bg-main);
    color: var(--text-secondary);
}

/* My Account */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    font-size: 14px;
}
.woocommerce-MyAccount-navigation ul li a:hover {
    background: rgba(142,168,195,0.06);
    color: var(--accent-passive);
}
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: rgba(167,139,250,0.08);
    color: var(--accent-active);
}

/* Page wrapper for WooCommerce templates */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 48px 80px;
}

/* Headings */
.woocommerce h2,
.woocommerce h3 {
    color: #e8e8e8;
}

/* ===== AUTH CARD (login + register on /my-account/) ===== */

/* Logged-out my-account: drop default WC container padding/center; the card handles its own layout */
body.woocommerce-account:not(.logged-in) .woocommerce {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
body.woocommerce-account:not(.logged-in) .woocommerce > .woocommerce-notices-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 16px;
}

.bb-auth-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 24px 16px 80px;
}

.bb-auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 32px 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    position: relative;
}

/* Hidden radio toggles (CSS-only tabs) */
.bb-auth-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Tab bar */
.bb-auth-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    margin-bottom: 26px;
}
.bb-auth-tab-label {
    flex: 1;
    text-align: center;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.bb-auth-tab-label:hover { color: var(--text-primary); }
#bb-tab-signin:checked ~ .bb-auth-tabs .bb-auth-tab-label[for="bb-tab-signin"],
#bb-tab-signup:checked ~ .bb-auth-tabs .bb-auth-tab-label[for="bb-tab-signup"] {
    background: var(--accent-active);
    color: #1e1e1e;
}

/* Panels: hide signup by default, show on signup radio checked */
.bb-auth-panel--signup { display: none; }
#bb-tab-signup:checked ~ .bb-auth-panel--signup { display: block; }
#bb-tab-signup:checked ~ .bb-auth-panel--signin { display: none; }

/* Card headings */
.bb-auth-heading {
    font-size: 22px;
    font-weight: 700;
    color: #e8e8e8;
    margin: 0 0 6px;
    text-align: center;
}
.bb-auth-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 22px;
    text-align: center;
}
.bb-auth-note {
    font-size: 12px;
    color: var(--text-secondary);
    background: rgba(142,168,195,0.06);
    border: 1px solid var(--border-subtle);
    padding: 10px 12px;
    border-radius: 8px;
    margin: 0 0 16px;
    line-height: 1.5;
}

/* Inputs */
.bb-auth-card form .form-row {
    margin: 0 0 14px;
    padding: 0;
}
.bb-auth-card form .form-row label:not(.woocommerce-form__label-for-checkbox) {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.bb-auth-card form .form-row .required {
    color: var(--accent-active);
    text-decoration: none;
}
.bb-auth-card form .input-text {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 10px;
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bb-auth-card form .input-text:focus {
    outline: none;
    border-color: var(--accent-active);
    box-shadow: 0 0 0 3px rgba(167,139,250,0.18);
}

/* WC injects .password-input wrapper around password field with show/hide eye */
.bb-auth-card .password-input {
    position: relative;
    display: block;
    width: 100%;
}
.bb-auth-card .password-input .input-text { padding-right: 42px; }
.bb-auth-card .show-password-input {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    cursor: pointer;
    width: 22px;
    height: 22px;
    text-align: center;
}
.bb-auth-card .show-password-input.display-password { color: var(--accent-active); }
.bb-auth-card .show-password-input::after { font-family: 'Font Awesome 6 Free'; font-weight: 900; }

/* Chrome autofill — keep dark theme */
.bb-auth-card .input-text:-webkit-autofill,
.bb-auth-card .input-text:-webkit-autofill:hover,
.bb-auth-card .input-text:-webkit-autofill:focus,
.bb-auth-card .input-text:-webkit-autofill:active {
    -webkit-text-fill-color: var(--text-primary);
    -webkit-box-shadow: 0 0 0 1000px var(--bg-main) inset;
    caret-color: var(--text-primary);
    transition: background-color 5000s ease-in-out 0s;
}

/* Remember me + submit row */
.bb-auth-card .bb-auth-actions {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0 8px;
}
.bb-auth-card .bb-auth-actions--single {
    justify-content: stretch;
}
.bb-auth-card .bb-auth-actions--single .button {
    width: 100%;
}

/* Checkbox label */
.bb-auth-card .woocommerce-form-login__rememberme {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    cursor: pointer;
}
.bb-auth-card .woocommerce-form__input-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-active);
    margin: 0;
    cursor: pointer;
}

/* Submit buttons keep .woocommerce .button style but tighter padding */
.bb-auth-card .woocommerce-form-login__submit,
.bb-auth-card .woocommerce-form-register__submit {
    flex-shrink: 0;
    padding: 11px 26px;
    font-size: 14px;
}

/* Lost password link */
.bb-auth-card .lost_password {
    text-align: center;
    margin: 12px 0 0;
}
.bb-auth-card .lost_password a {
    font-size: 13px;
    color: var(--text-secondary) !important;
    text-decoration: none;
}
.bb-auth-card .lost_password a:hover {
    color: var(--accent-active) !important;
}

/* Mobile */
@media (max-width: 480px) {
    .bb-auth-card {
        padding: 24px 20px 22px;
        border-radius: 14px;
    }
    .bb-auth-heading { font-size: 19px; }
    .bb-auth-sub { font-size: 12px; margin-bottom: 18px; }
    .bb-auth-card .bb-auth-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .bb-auth-card .bb-auth-actions .button {
        width: 100%;
    }
}

/* ===== OTP STEP (inside the register panel of .bb-auth-card) ===== */
.bb-auth-card .bb-auth-otp-row {
    margin-top: 4px;
}
.bb-auth-card .bb-auth-otp-input {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    letter-spacing: 8px;
    text-align: center;
    padding: 14px 12px;
}
.bb-auth-card .bb-auth-otp-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.bb-auth-card .bb-auth-otp-hint strong {
    color: var(--text-primary);
    font-weight: 500;
}
.bb-auth-card .bb-auth-otp-resend {
    text-align: center;
    margin: 8px 0 0;
}
.bb-auth-card .bb-auth-link-button {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 10px;
    text-decoration: underline;
    text-decoration-color: rgba(208,208,208,0.25);
    text-underline-offset: 2px;
    transition: color 0.15s ease;
}
.bb-auth-card .bb-auth-link-button:hover {
    color: var(--accent-active);
    text-decoration-color: var(--accent-active);
}


/* =====================================================
 * CHECKOUT POLISH — Tier 1 + Tier 2 (added 2026-05-17)
 * ===================================================== */

/* Desktop: 2-column grid (billing left / order summary right) */
@media (min-width: 900px) {
    .woocommerce-checkout form.checkout {
        display: grid;
        grid-template-columns: minmax(0, 1.5fr) minmax(340px, 1fr);
        gap: 24px 40px;
        align-items: start;
    }
    .woocommerce-checkout form.checkout #customer_details,
    .woocommerce-checkout form.checkout .license-name-field {
        grid-column: 1;
        min-width: 0;
    }
    .woocommerce-checkout form.checkout #order_review_heading,
    .woocommerce-checkout form.checkout #order_review {
        grid-column: 2;
        min-width: 0;
    }
    .woocommerce-checkout form.checkout #order_review_heading {
        margin: 0 0 16px;
        font-size: 18px;
    }
}

/* Hide vestigial 'Additional information' header (we stripped all those fields) */
.woocommerce-additional-fields h3 {
    display: none;
}

/* Hide top coupon accordion (no coupons issued yet) */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout > form.checkout_coupon {
    display: none;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}
.woocommerce-checkout-review-order-table thead th {
    background: rgba(0,0,0,0.2);
}
.woocommerce-checkout-review-order-table .cart_item td {
    padding: 14px 16px;
}

/* Beat thumbnail line item */
.bb-order-line {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bb-order-line img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-main);
}
.bb-order-line-meta { line-height: 1.4; }
.bb-order-line-title {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

/* Hide " × 1" quantity (beats are sold_individually) */
.woocommerce-checkout-review-order-table .cart_item .product-quantity {
    display: none;
}

/* Total — prominent purple */
.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
    padding-bottom: 18px;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total td .woocommerce-Price-amount,
.woocommerce-checkout-review-order-table tfoot tr.order-total td strong {
    color: var(--accent-active);
    font-size: 22px;
    font-weight: 700;
}

/* Place order button — full-width hero */
.woocommerce-checkout #payment #place_order {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 18px;
    border-radius: 12px;
}

/* License name field — give it presence */
.license-name-field {
    margin: 12px 0 0;
    padding: 18px 20px;
    background: rgba(167,139,250,0.05);
    border: 1px solid rgba(167,139,250,0.3);
    border-radius: 12px;
}
.license-name-field h3 {
    margin: 0 0 10px !important;
    font-size: 15px !important;
    color: var(--accent-active) !important;
    font-weight: 600;
}

/* Mini-stepper above checkout */
.bb-checkout-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 28px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}
.bb-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}
.bb-step.bb-step-active {
    color: var(--text-primary);
}
.bb-step.bb-step-active .bb-step-num {
    background: var(--accent-active);
    color: #1e1e1e;
}
.bb-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(167,139,250,0.12);
    color: var(--accent-active);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
}
.bb-step-divider {
    color: var(--text-secondary);
    opacity: 0.4;
    font-size: 14px;
}
@media (max-width: 600px) {
    .bb-checkout-stepper { gap: 8px; padding: 12px; }
    .bb-step { font-size: 12px; gap: 6px; }
    .bb-step-num { width: 20px; height: 20px; font-size: 10px; }
}

/* Trust strip below place-order */
.bb-trust-strip {
    margin: 14px 0 0;
    padding: 12px 14px;
    background: rgba(142,168,195,0.06);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}
.bb-trust-strip i {
    color: var(--accent-active);
    margin-right: 6px;
}


/* =====================================================
 * ORDER RECEIVED (thank-you) PAGE
 * ===================================================== */

/* Hide WC defaults (we replace with hero block) */
.woocommerce-order > .woocommerce-thankyou-order-received,
.woocommerce-order > .woocommerce-thankyou-order-details,
.woocommerce-order .woocommerce-customer-details,
.woocommerce-order .woocommerce-columns--addresses {
    display: none !important;
}

/* Tighter container for receipt */
.woocommerce-order {
    max-width: 720px;
    margin: 0 auto;
}

/* Receipt hero */
.bb-receipt-hero {
    text-align: center;
    padding: 40px 24px 30px;
}
.bb-receipt-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(167,139,250,0.15);
    color: var(--accent-active);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid rgba(167,139,250,0.4);
}
.bb-receipt-title {
    font-size: 32px;
    font-weight: 700;
    color: #e8e8e8;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}
.bb-receipt-sub {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.bb-receipt-sub strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* What happens next */
.bb-receipt-next {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 20px 0 30px;
}
.bb-receipt-next-title {
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    font-weight: 600;
}
.bb-receipt-next-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bb-receipt-next-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-primary);
    font-size: 14px;
    border-bottom: 1px solid rgba(58,58,58,0.5);
}
.bb-receipt-next-list li:last-child { border-bottom: none; }
.bb-receipt-next-list li i {
    color: var(--accent-active);
    width: 22px;
    text-align: center;
}

/* Order details table heading */
.woocommerce-order .woocommerce-order-details h2,
.woocommerce-order .woocommerce-order-details h3 {
    font-size: 16px;
    color: #e8e8e8;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Receipt CTAs */
.bb-receipt-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 32px 0 60px;
    flex-wrap: wrap;
}
.bb-receipt-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}
.bb-receipt-cta-primary {
    background: var(--accent-active);
    color: #1e1e1e !important;
}
.bb-receipt-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(167,139,250,0.3);
    color: #1e1e1e !important;
}
.bb-receipt-cta-secondary {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary) !important;
}
.bb-receipt-cta-secondary:hover {
    border-color: var(--accent-passive);
    color: var(--accent-passive) !important;
}

@media (max-width: 600px) {
    .bb-receipt-hero { padding: 28px 16px 24px; }
    .bb-receipt-title { font-size: 24px; }
    .bb-receipt-check { width: 60px; height: 60px; font-size: 32px; }
    .bb-receipt-next { padding: 20px; }
    .bb-receipt-ctas .bb-receipt-cta { width: 100%; justify-content: center; }
}


/* =====================================================
 * ORDER RECEIVED — Downloads + Order Details polish (Phase 2)
 * ===================================================== */

/* Match the "Downloads" heading to the ORDER DETAILS style */
.woocommerce-order .woocommerce-order-downloads h2,
.woocommerce-order .woocommerce-order-downloads h3,
.woocommerce-order > h2:not(.bb-receipt-title),
.woocommerce-MyAccount-content h2 {
    font-size: 16px !important;
    color: #e8e8e8;
    margin: 0 0 14px !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Hide " × 1" quantity in the order details table on order-received */
.woocommerce-order .woocommerce-table.order_details .product-quantity {
    display: none;
}

/* Order details + Downloads tables: card style */
.woocommerce-order .woocommerce-table.order_details,
.woocommerce-order .woocommerce-table--order-downloads,
.woocommerce-MyAccount-content .woocommerce-table--order-downloads {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
}
.woocommerce-order .woocommerce-table thead th,
.woocommerce-MyAccount-content .woocommerce-table thead th {
    background: rgba(0,0,0,0.2);
}

/* Big purple Total in order details */
.woocommerce-order .woocommerce-table.order_details tfoot tr:last-child td .woocommerce-Price-amount {
    color: var(--accent-active);
    font-weight: 700;
    font-size: 20px;
}

/* Kill the giant pill on the download button — make it a subtle inline action */
.woocommerce-order .woocommerce-table--order-downloads .download-product .button,
.woocommerce-order .woocommerce-table--order-downloads .download-file .button,
.woocommerce-MyAccount-content .download-file .button,
.woocommerce-MyAccount-content .woocommerce-table--order-downloads .download-product .button {
    padding: 8px 14px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    background: rgba(167,139,250,0.12) !important;
    color: var(--accent-active) !important;
    border: 1px solid rgba(167,139,250,0.3) !important;
    font-weight: 500;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    box-shadow: none !important;
    transform: none !important;
}
.woocommerce-order .woocommerce-table--order-downloads .download-product .button:hover,
.woocommerce-MyAccount-content .download-file .button:hover {
    background: var(--accent-active) !important;
    color: #1e1e1e !important;
    border-color: var(--accent-active) !important;
}
