:root {
    --btg-ui-accent: #ce965f;
    --btg-ui-accent-strong: #b97f46;
    --btg-ui-accent-soft: #fff4e9;
    --btg-ui-ink: #111111;
    --btg-ui-text: #171717;
    --btg-ui-muted: #68707a;
    --btg-ui-bg: #faf8f5;
    --btg-ui-surface: #ffffff;
    --btg-ui-line: #ece7e1;
    --btg-ui-line-strong: #ddd6cf;
    --btg-ui-focus-ring: rgba(206, 150, 95, .2);
    --btg-ui-danger: #b42318;
    --btg-ui-danger-bg: #fff1f0;
    --btg-ui-control-height: 46px;
    --btg-ui-radius-control: 12px;
    --btg-ui-radius-card: 22px;
    --btg-ui-motion-fast: 160ms;
    --btg-ui-motion-standard: 220ms;
    --btg-ui-motion-modal: 300ms;
    --btg-ui-ease-out: cubic-bezier(.22, .8, .2, 1);
    --btg-ui-ease-standard: cubic-bezier(.2, .7, .2, 1);
    --btg-ui-shadow-control: 0 8px 22px rgba(17, 17, 17, .045);
    --btg-ui-shadow-modal: 0 28px 80px rgba(17, 17, 17, .2);
}

/* Opt-in primitives for theme and custom front-end modules. */
.btg-ui-btn,
.btg-ui-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: var(--btg-ui-radius-control);
    background: var(--btg-ui-ink);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--btg-ui-motion-fast) var(--btg-ui-ease-out),
        background-color var(--btg-ui-motion-fast) ease,
        border-color var(--btg-ui-motion-fast) ease,
        color var(--btg-ui-motion-fast) ease,
        box-shadow var(--btg-ui-motion-fast) ease;
}

.btg-ui-btn:hover:not(:disabled),
.btg-ui-button:hover:not(:disabled) {
    background: var(--btg-ui-accent);
    border-color: var(--btg-ui-accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--btg-ui-shadow-control);
}

.btg-ui-btn--secondary,
.btg-ui-button--secondary {
    border-color: var(--btg-ui-line-strong);
    background: var(--btg-ui-surface);
    color: var(--btg-ui-text);
}

.btg-ui-btn--secondary:hover:not(:disabled),
.btg-ui-button--secondary:hover:not(:disabled) {
    border-color: var(--btg-ui-accent);
    background: var(--btg-ui-bg);
    color: var(--btg-ui-text);
}

.btg-ui-btn--ghost,
.btg-ui-button--ghost {
    border-color: transparent;
    background: transparent;
    color: var(--btg-ui-text);
    box-shadow: none;
}

.btg-ui-btn--ghost:hover:not(:disabled),
.btg-ui-button--ghost:hover:not(:disabled) {
    border-color: transparent;
    background: var(--btg-ui-accent-soft);
    color: var(--btg-ui-accent-strong);
    box-shadow: none;
}

.btg-ui-btn--danger,
.btg-ui-button--danger {
    border-color: #f2c5c0;
    background: var(--btg-ui-danger-bg);
    color: var(--btg-ui-danger);
}

.btg-ui-btn--danger:hover:not(:disabled),
.btg-ui-button--danger:hover:not(:disabled) {
    border-color: var(--btg-ui-danger);
    background: var(--btg-ui-danger);
    color: #fff;
}

.btg-ui-btn:disabled,
.btg-ui-button:disabled,
.btg-ui-btn[aria-disabled="true"],
.btg-ui-button[aria-disabled="true"] {
    opacity: .52;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btg-ui-btn:focus-visible,
.btg-ui-button:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px var(--btg-ui-focus-ring);
}

.btg-ui-input,
.btg-ui-control {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: var(--btg-ui-control-height);
    padding: 10px 14px;
    border: 1px solid var(--btg-ui-line-strong);
    border-radius: var(--btg-ui-radius-control);
    background: var(--btg-ui-surface);
    color: var(--btg-ui-text);
    box-shadow: none;
    font: inherit;
    font-size: 14px;
    line-height: 1.35;
    transition: border-color var(--btg-ui-motion-standard) ease,
        box-shadow var(--btg-ui-motion-standard) ease,
        background-color var(--btg-ui-motion-standard) ease;
}

.btg-ui-input:focus,
.btg-ui-control:focus {
    border-color: var(--btg-ui-accent);
    box-shadow: 0 0 0 4px var(--btg-ui-focus-ring);
    outline: 0;
}

.btg-ui-input:disabled,
.btg-ui-control:disabled {
    background: #f5f3f0;
    color: #8c9298;
    cursor: not-allowed;
}

/* Public Botiga, WooCommerce and Dokan action controls. Dashboard routes have a late module layer below. */
body:not(.dokan-dashboard) .woocommerce a.button,
body:not(.dokan-dashboard) .woocommerce button.button,
body:not(.dokan-dashboard) .woocommerce input.button,
body:not(.dokan-dashboard) .dokan-btn,
body:not(.dokan-dashboard) .dokan-btn-theme,
body:not(.dokan-dashboard) button[type="submit"],
body:not(.dokan-dashboard) input[type="submit"],
body:not(.dokan-dashboard) .wp-block-button__link,
body:not(.dokan-dashboard) .zpr-btn,
body:not(.dokan-dashboard) .btg-vof-media-button,
body:not(.dokan-dashboard) .btg-vcl-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid transparent !important;
    border-radius: var(--btg-ui-radius-control) !important;
    background: var(--btg-ui-ink) !important;
    color: #fff !important;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform var(--btg-ui-motion-fast) var(--btg-ui-ease-out),
        background-color var(--btg-ui-motion-fast) ease,
        border-color var(--btg-ui-motion-fast) ease,
        color var(--btg-ui-motion-fast) ease,
        box-shadow var(--btg-ui-motion-fast) ease;
}

body:not(.dokan-dashboard) .woocommerce a.button:hover,
body:not(.dokan-dashboard) .woocommerce button.button:hover,
body:not(.dokan-dashboard) .woocommerce input.button:hover,
body:not(.dokan-dashboard) .dokan-btn:hover,
body:not(.dokan-dashboard) .dokan-btn-theme:hover,
body:not(.dokan-dashboard) button[type="submit"]:hover,
body:not(.dokan-dashboard) input[type="submit"]:hover,
body:not(.dokan-dashboard) .wp-block-button__link:hover,
body:not(.dokan-dashboard) .zpr-btn:hover,
body:not(.dokan-dashboard) .btg-vof-media-button:hover,
body:not(.dokan-dashboard) .btg-vcl-button:hover {
    background: var(--btg-ui-accent) !important;
    border-color: var(--btg-ui-accent) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--btg-ui-shadow-control);
}

body:not(.dokan-dashboard) .woocommerce a.button.alt,
body:not(.dokan-dashboard) .woocommerce button.button.alt,
body:not(.dokan-dashboard) .woocommerce input.button.alt,
body:not(.dokan-dashboard) .dokan-btn-theme,
body:not(.dokan-dashboard) .zpr-btn--dark {
    background: var(--btg-ui-ink) !important;
    border-color: var(--btg-ui-ink) !important;
}

body:not(.dokan-dashboard) .woocommerce a.button.alt:hover,
body:not(.dokan-dashboard) .woocommerce button.button.alt:hover,
body:not(.dokan-dashboard) .woocommerce input.button.alt:hover,
body:not(.dokan-dashboard) .dokan-btn-theme:hover,
body:not(.dokan-dashboard) .zpr-btn--dark:hover {
    background: var(--btg-ui-accent) !important;
    border-color: var(--btg-ui-accent) !important;
}

body:not(.dokan-dashboard) .zpr-btn--ghost,
body:not(.dokan-dashboard) .btg-vcl-button.is-ghost {
    border-color: var(--btg-ui-line-strong) !important;
    background: var(--btg-ui-surface) !important;
    color: var(--btg-ui-text) !important;
}

body:not(.dokan-dashboard) .zpr-btn--ghost:hover,
body:not(.dokan-dashboard) .btg-vcl-button.is-ghost:hover {
    border-color: var(--btg-ui-accent) !important;
    background: var(--btg-ui-bg) !important;
    color: var(--btg-ui-text) !important;
}

body:not(.dokan-dashboard) .zpr-btn:disabled,
body:not(.dokan-dashboard) .btg-vof-media-button:disabled {
    opacity: .52;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

body:not(.dokan-dashboard) :is(
    .btg-chat-send,
    .btg-chat-new,
    .btg-chat-load-more,
    .btg-chat-load-earlier,
    .btg-chat-start-link
) {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--btg-ui-ink) !important;
    border-radius: var(--btg-ui-radius-control) !important;
    background: var(--btg-ui-ink) !important;
    color: #fff !important;
    font-weight: 800;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform var(--btg-ui-motion-fast) var(--btg-ui-ease-out),
        background-color var(--btg-ui-motion-fast) ease,
        border-color var(--btg-ui-motion-fast) ease,
        color var(--btg-ui-motion-fast) ease;
}

body:not(.dokan-dashboard) :is(
    .btg-chat-send,
    .btg-chat-new,
    .btg-chat-load-more,
    .btg-chat-load-earlier,
    .btg-chat-start-link
):hover:not(:disabled) {
    border-color: var(--btg-ui-accent) !important;
    background: var(--btg-ui-accent) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

body:not(.dokan-dashboard) :is(
    .btg-chat-send,
    .btg-chat-new,
    .btg-chat-load-more,
    .btg-chat-load-earlier,
    .btg-chat-start-link
):disabled {
    opacity: .52;
    cursor: not-allowed;
    transform: none;
}

/* Public form controls. Checkboxes, radios, range, files and hidden inputs remain native. */
body:not(.dokan-dashboard) .site-main input[type="text"],
body:not(.dokan-dashboard) .site-main input[type="email"],
body:not(.dokan-dashboard) .site-main input[type="url"],
body:not(.dokan-dashboard) .site-main input[type="password"],
body:not(.dokan-dashboard) .site-main input[type="search"],
body:not(.dokan-dashboard) .site-main input[type="number"],
body:not(.dokan-dashboard) .site-main input[type="tel"],
body:not(.dokan-dashboard) .site-main input[type="date"],
body:not(.dokan-dashboard) .site-main input[type="time"],
body:not(.dokan-dashboard) .site-main textarea,
body:not(.dokan-dashboard) .site-main select,
body:not(.dokan-dashboard) .dokan-form-control,
body:not(.dokan-dashboard) .zpr-form input,
body:not(.dokan-dashboard) .zpr-form textarea,
body:not(.dokan-dashboard) .btg-reg-form input[type="text"],
body:not(.dokan-dashboard) .btg-reg-form input[type="email"],
body:not(.dokan-dashboard) .btg-reg-form input[type="password"],
body:not(.dokan-dashboard) .btg-reg-form input[type="tel"],
body:not(.dokan-dashboard) .btg-reg-form select {
    min-height: var(--btg-ui-control-height);
    border: 1px solid var(--btg-ui-line-strong) !important;
    border-radius: var(--btg-ui-radius-control) !important;
    background: var(--btg-ui-surface) !important;
    color: var(--btg-ui-text) !important;
    box-shadow: none !important;
    transition: border-color var(--btg-ui-motion-standard) ease,
        box-shadow var(--btg-ui-motion-standard) ease,
        background-color var(--btg-ui-motion-standard) ease;
}

body:not(.dokan-dashboard) .site-main input[type="text"]:focus,
body:not(.dokan-dashboard) .site-main input[type="email"]:focus,
body:not(.dokan-dashboard) .site-main input[type="url"]:focus,
body:not(.dokan-dashboard) .site-main input[type="password"]:focus,
body:not(.dokan-dashboard) .site-main input[type="search"]:focus,
body:not(.dokan-dashboard) .site-main input[type="number"]:focus,
body:not(.dokan-dashboard) .site-main input[type="tel"]:focus,
body:not(.dokan-dashboard) .site-main input[type="date"]:focus,
body:not(.dokan-dashboard) .site-main input[type="time"]:focus,
body:not(.dokan-dashboard) .site-main textarea:focus,
body:not(.dokan-dashboard) .site-main select:focus,
body:not(.dokan-dashboard) .dokan-form-control:focus,
body:not(.dokan-dashboard) .zpr-form input:focus,
body:not(.dokan-dashboard) .zpr-form textarea:focus,
body:not(.dokan-dashboard) .btg-reg-form input:focus,
body:not(.dokan-dashboard) .btg-reg-form select:focus {
    border-color: var(--btg-ui-accent) !important;
    box-shadow: 0 0 0 4px var(--btg-ui-focus-ring) !important;
    outline: 0 !important;
}

body:not(.dokan-dashboard) .zpr-sort {
    min-height: var(--btg-ui-control-height);
    border-color: var(--btg-ui-line-strong) !important;
    border-radius: var(--btg-ui-radius-control) !important;
    background-color: var(--btg-ui-surface) !important;
    color: var(--btg-ui-text) !important;
    transition: border-color var(--btg-ui-motion-standard) ease,
        box-shadow var(--btg-ui-motion-standard) ease;
}

body:not(.dokan-dashboard) .btg-reg-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: none !important;
}

body:not(.dokan-dashboard) .site-main input[aria-invalid="true"],
body:not(.dokan-dashboard) .site-main select[aria-invalid="true"],
body:not(.dokan-dashboard) .site-main textarea[aria-invalid="true"],
body:not(.dokan-dashboard) .dokan-form-control[aria-invalid="true"],
body:not(.dokan-dashboard) .zpr-form input[aria-invalid="true"],
body:not(.dokan-dashboard) .zpr-form textarea[aria-invalid="true"] {
    border-color: var(--btg-ui-danger) !important;
    box-shadow: 0 0 0 4px rgba(180, 35, 24, .12) !important;
}

/* Search controls and result-list reveal. */
body:not(.dokan-dashboard) .btg-chat-search,
body:not(.dokan-dashboard) .btg-vcl-search,
body:not(.dokan-dashboard) .zpr-search {
    min-height: var(--btg-ui-control-height);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--btg-ui-line-strong);
    border-radius: var(--btg-ui-radius-control);
    background: var(--btg-ui-surface);
    transition: border-color var(--btg-ui-motion-standard) ease,
        box-shadow var(--btg-ui-motion-standard) ease;
}

body:not(.dokan-dashboard) .btg-chat-search:focus-within,
body:not(.dokan-dashboard) .btg-vcl-search:focus-within,
body:not(.dokan-dashboard) .zpr-search:focus-within {
    border-color: var(--btg-ui-accent);
    box-shadow: 0 0 0 4px var(--btg-ui-focus-ring);
}

body:not(.dokan-dashboard) .btg-chat-search input,
body:not(.dokan-dashboard) .btg-vcl-search input,
body:not(.dokan-dashboard) .zpr-search input {
    min-height: 42px !important;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
}

body:not(.dokan-dashboard) .botiga-ajax-search__wrapper,
body:not(.dokan-dashboard) .btg-chat-modal-card [data-order-results] {
    animation: btg-ui-list-in var(--btg-ui-motion-standard) var(--btg-ui-ease-out) both;
}

body:not(.dokan-dashboard) .botiga-ajax-search__wrapper {
    border-color: var(--btg-ui-line) !important;
    border-radius: var(--btg-ui-radius-card) !important;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: var(--btg-ui-shadow-modal) !important;
}

/* Dokan's existing modal close control is the approved close-button motion. */
.dokan-izimodal-close-btn {
    z-index: 2;
}

.dokan-izimodal-close-btn .icon-close {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border: 1px solid transparent !important;
    border-radius: var(--btg-ui-radius-control) !important;
    background: transparent !important;
    color: var(--btg-ui-ink) !important;
    cursor: pointer;
    transition: background-color var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        border-radius var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        color var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        transform var(--btg-ui-motion-modal) var(--btg-ui-ease-out);
}

.dokan-izimodal-close-btn .icon-close i {
    color: currentColor !important;
    font-size: 20px;
    transition: color var(--btg-ui-motion-modal) var(--btg-ui-ease-out);
}

.dokan-izimodal-close-btn .icon-close:hover,
.dokan-izimodal-close-btn .icon-close:focus-visible {
    border-color: var(--btg-ui-ink) !important;
    border-radius: 50% !important;
    background: var(--btg-ui-ink) !important;
    color: #fff !important;
    transform: rotate(90deg);
}

.dokan-izimodal-close-btn .icon-close:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px var(--btg-ui-focus-ring);
}

.dokan-izimodal-wraper,
.dokan-support-login-wrapper,
.dokan-popup-create-an-account {
    border-radius: var(--btg-ui-radius-card) !important;
    box-shadow: var(--btg-ui-shadow-modal) !important;
}

.btg-checkout-error-popup__dialog {
    animation: btg-ui-modal-in var(--btg-ui-motion-modal) var(--btg-ui-ease-out) both;
    border-radius: var(--btg-ui-radius-card) !important;
    border-top-width: 3px !important;
    box-shadow: var(--btg-ui-shadow-modal) !important;
}

.btg-checkout-error-popup__close {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent !important;
    border-radius: var(--btg-ui-radius-control) !important;
    background: transparent !important;
    color: var(--btg-ui-ink) !important;
    font-size: 28px !important;
    line-height: 1 !important;
    transition: background-color var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        border-radius var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        color var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        transform var(--btg-ui-motion-modal) var(--btg-ui-ease-out);
}

.btg-checkout-error-popup__close:hover,
.btg-checkout-error-popup__close:focus-visible {
    border-color: var(--btg-ui-ink) !important;
    border-radius: 50% !important;
    background: var(--btg-ui-ink) !important;
    color: #fff !important;
    transform: rotate(90deg);
}

.btg-checkout-error-popup__close:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px var(--btg-ui-focus-ring);
}

/* Other public modal families use the same close geometry and entrance motion. */
body:not(.dokan-dashboard) .zpr-modal__close,
body:not(.dokan-dashboard) .btg-chat-modal-card > button,
body:not(.dokan-dashboard) .botiga-quick-view-popup-close-button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: var(--btg-ui-radius-control);
    background: transparent !important;
    color: var(--btg-ui-ink) !important;
    cursor: pointer;
    transition: background-color var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        border-radius var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        color var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        transform var(--btg-ui-motion-modal) var(--btg-ui-ease-out);
}

body:not(.dokan-dashboard) :is(.zpr-preview-item button, .btg-vof-remove-file) {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, .9) !important;
    color: var(--btg-ui-ink) !important;
    cursor: pointer;
    transition: background-color var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        border-radius var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        color var(--btg-ui-motion-modal) var(--btg-ui-ease-out),
        transform var(--btg-ui-motion-modal) var(--btg-ui-ease-out);
}

body:not(.dokan-dashboard) :is(.zpr-preview-item button, .btg-vof-remove-file):hover,
body:not(.dokan-dashboard) :is(.zpr-preview-item button, .btg-vof-remove-file):focus-visible {
    border-color: var(--btg-ui-ink) !important;
    border-radius: 50%;
    background: var(--btg-ui-ink) !important;
    color: #fff !important;
    transform: rotate(90deg);
}

body:not(.dokan-dashboard) :is(.zpr-preview-item button, .btg-vof-remove-file):focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px var(--btg-ui-focus-ring);
}

body:not(.dokan-dashboard) .zpr-modal__close:hover,
body:not(.dokan-dashboard) .zpr-modal__close:focus-visible,
body:not(.dokan-dashboard) .btg-chat-modal-card > button:hover,
body:not(.dokan-dashboard) .btg-chat-modal-card > button:focus-visible,
body:not(.dokan-dashboard) .botiga-quick-view-popup-close-button:hover,
body:not(.dokan-dashboard) .botiga-quick-view-popup-close-button:focus-visible {
    border-color: var(--btg-ui-ink);
    border-radius: 50%;
    background: var(--btg-ui-ink) !important;
    color: #fff !important;
    transform: rotate(90deg);
}

body:not(.dokan-dashboard) .zpr-modal__close:focus-visible,
body:not(.dokan-dashboard) .btg-chat-modal-card > button:focus-visible,
body:not(.dokan-dashboard) .botiga-quick-view-popup-close-button:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px var(--btg-ui-focus-ring);
}

body:not(.dokan-dashboard) .botiga-popup-wrapper,
body:not(.dokan-dashboard) .botiga-quick-view-popup .botiga-quick-view-popup-content,
body:not(.dokan-dashboard) .zpr-modal__panel,
body:not(.dokan-dashboard) .btg-chat-modal-card {
    border-radius: var(--btg-ui-radius-card) !important;
    box-shadow: var(--btg-ui-shadow-modal) !important;
}

body:not(.dokan-dashboard) .zpr-modal:not([hidden]) .zpr-modal__panel,
body:not(.dokan-dashboard) .btg-chat-modal:not([hidden]) .btg-chat-modal-card,
body:not(.dokan-dashboard) .botiga-quick-view-popup.opened .botiga-quick-view-popup-content {
    animation: btg-ui-modal-in var(--btg-ui-motion-modal) var(--btg-ui-ease-out) both;
}

/* Select arrows already present in registration and store controls share the same motion. */
.btg-reg-select-arrow,
.btg-reg-select-shell .btg-reg-select-arrow,
.btg-store-select-wrap::after,
.btg-products-select-wrap::after,
.btg-sx-select-wrap::after {
    transition: transform var(--btg-ui-motion-standard) var(--btg-ui-ease-out),
        color var(--btg-ui-motion-standard) ease,
        border-color var(--btg-ui-motion-standard) ease;
}

.btg-reg-select-shell.is-open .btg-reg-select-arrow,
.btg-reg-select-wrap.is-open .btg-reg-select-arrow,
.btg-store-select-wrap.is-open::after,
.btg-products-select-wrap.is-open::after,
.btg-sx-select-wrap.is-open::after {
    color: var(--btg-ui-accent-strong);
}

@keyframes btg-ui-list-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes btg-ui-modal-in {
    from { opacity: 0; transform: translateY(8px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .btg-ui-btn,
    .btg-ui-button,
    .btg-ui-input,
    .btg-ui-control,
    .btg-chat-send,
    .btg-chat-new,
    .btg-chat-load-more,
    .btg-chat-load-earlier,
    .btg-chat-start-link,
    .btg-vof-remove-file,
    .btg-chat-search,
    .btg-vcl-search,
    .zpr-search,
    .dokan-izimodal-close-btn .icon-close,
    .zpr-modal__close,
    .btg-chat-modal-card > button,
    .botiga-quick-view-popup-close-button,
    .btg-reg-select-arrow,
    .btg-reg-select-shell .btg-reg-select-arrow,
    .btg-store-select-wrap::after,
    .btg-products-select-wrap::after,
    .btg-sx-select-wrap::after {
        transition: none !important;
    }

    body:not(.dokan-dashboard) .botiga-ajax-search__wrapper,
    body:not(.dokan-dashboard) .btg-chat-modal-card [data-order-results],
    body:not(.dokan-dashboard) .zpr-modal:not([hidden]) .zpr-modal__panel,
    body:not(.dokan-dashboard) .btg-chat-modal:not([hidden]) .btg-chat-modal-card,
    body:not(.dokan-dashboard) .botiga-quick-view-popup.opened .botiga-quick-view-popup-content {
        animation: none !important;
    }

    .btg-checkout-error-popup__dialog,
    .btg-checkout-error-popup__close {
        animation: none !important;
        transition: none !important;
    }
}
