/* Public storefront — monochrome editorial commerce shell. */
body.vetra-store {
    --store-header-control-height: 40px;
    --store-nav-accent: var(--vt-success);
    --store-nav-accent-soft: rgba(var(--vt-success-rgb), .1);
    --vt-muted: #565656;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.vetra-store .navbar-acg {
    position: relative;
    z-index: 60;
    flex: 0 0 var(--vt-nav-h);
    min-height: var(--vt-nav-h);
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--vt-border-soft);
    border-radius: 0;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.vetra-store .navbar-acg > .container,
.vetra-store main.container {
    width: min(100% - 40px, 1220px);
    max-width: 1220px !important;
    margin-inline: auto;
    padding-inline: 0;
}

.vetra-store .navbar-acg > .container {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    align-items: center;
}

.vetra-store .navbar-brand {
    gap: 9px;
    min-width: 176px;
    margin: 0 28px 0 0;
    padding: 0;
    color: var(--vt-text-strong) !important;
    font-size: 16px;
    font-weight: 700 !important;
    letter-spacing: -.025em;
}

.vetra-store .navbar-brand .brand-logo {
    box-sizing: border-box;
    width: 28px;
    height: 28px;
    margin-right: 0 !important;
    padding: 2px;
    border: 0;
    outline: 0;
    border-radius: 7px;
    background: #000000;
    box-shadow: none;
    object-fit: contain;
}

.vetra-store .navbar-brand .brand-name {
    display: block;
    max-width: 170px;
    overflow: hidden;
    color: var(--vt-text-strong);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vetra-store .navbar-collapse {
    align-items: center;
    height: 100%;
    min-width: 0;
}

.vetra-store .navbar-nav {
    align-items: center;
    gap: 10px;
}

.vetra-store .navbar-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    min-height: 36px;
    padding: 8px 11px !important;
    color: var(--vt-muted) !important;
    border-radius: var(--vt-radius-sm);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: color .2s ease, background-color .2s ease;
}

.vetra-store .navbar-nav .nav-link .nav-icon {
    color: currentColor !important;
    margin-right: 0 !important;
    font-size: 14px;
}

.vetra-store .navbar-nav .nav-link:not(:hover):not(.active) .nav-icon {
    color: var(--vt-icon-default) !important;
}

.vetra-store .navbar-nav .nav-link:hover,
.vetra-store .navbar-nav .nav-link.active {
    color: var(--vt-text-strong) !important;
    background: var(--vt-surface-2) !important;
}

.vetra-store .search-input {
    display: flex;
    width: clamp(210px, 19vw, 270px);
    height: var(--store-header-control-height);
    align-items: center;
    justify-content: center;
    margin-left: 18px;
}

.vetra-store .search-input .input-group {
    flex-wrap: nowrap;
    align-items: center;
    height: var(--store-header-control-height);
    min-height: var(--store-header-control-height);
    border: 1px solid var(--vt-border-soft);
    border-radius: 11px;
    background: var(--vt-bg-raised);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.vetra-store .search-input .input-group:focus-within {
    border-color: var(--vt-primary);
    background: var(--vt-surface);
    box-shadow: 0 0 0 2px rgba(66, 139, 255, .10);
}

.vetra-store .search-input .input-group-text,
.vetra-store .search-input .form-control {
    height: 38px;
    min-height: 38px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vetra-store .search-input .input-group-text {
    display: grid;
    order: 2;
    width: 38px;
    height: 38px;
    margin: 0 !important;
    padding: 0;
    place-items: center;
    color: #5656567a;
    border: 0 !important;
    border-radius: 0 10px 10px 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 12px;
    cursor: pointer;
    pointer-events: auto;
    transition: color .18s ease, transform .14s ease;
}

.vetra-store .search-input .input-group-text:is(:hover, :focus, :focus-visible) {
    color: rgba(86, 86, 86, .8) !important;
    outline: 0 !important;
    background: transparent !important;
}

.vetra-store .search-input .input-group-text:active {
    color: rgba(86, 86, 86, .8) !important;
    background: transparent !important;
    transform: scale(.95);
}

.vetra-store .search-input .form-control {
    order: 1;
    min-width: 0;
    padding: 8px 9px 8px 14px;
    font-size: 12px;
}

.vetra-store .search-input .form-control:is(:focus, :focus-visible) {
    outline: 0 !important;
}

.vetra-store .lang-switch,
.vetra-store .user-login-box,
.vetra-store .user-info-box {
    display: flex;
    height: var(--store-header-control-height);
    flex: none;
    align-items: center;
    justify-content: center;
}

.vetra-store .store-header-actions {
    display: flex;
    flex: none;
    align-items: center;
    gap: 24px;
}

.vetra-store .store-header-actions > .user-info-box,
.vetra-store .store-header-actions > .user-login-box {
    margin-left: 0 !important;
}

@media (min-width: 1200px) {
    .vetra-store .store-header-actions > .user-login-box {
        margin-left: 8px !important;
    }
}

.vetra-store .user-info-box > .dropdown {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.vetra-store .lang-switch__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: var(--store-header-control-height);
    min-height: var(--store-header-control-height);
    justify-content: center;
    padding: 0 8px;
    color: var(--vt-text) !important;
    border: 1px solid var(--vt-border-soft) !important;
    border-radius: 11px;
    background: var(--vt-bg-raised) !important;
    box-shadow: none !important;
}

.vetra-store .lang-switch__btn:hover,
.vetra-store .lang-switch__btn[aria-expanded="true"] {
    color: var(--vt-text-strong) !important;
    border-color: #ffffff !important;
    background: var(--vt-surface-2) !important;
}

.vetra-store .lang-switch__icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    color: #2563eb;
    border: 1px solid #fafafa;
    border-radius: 8px;
    background: #eaf2ff;
    font-size: 14px;
}

.vetra-store .lang-switch__meta {
    display: flex;
    min-width: 28px;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.vetra-store .lang-switch__code {
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: .04em;
}

.vetra-store .lang-switch__caret {
    color: #60a5fa;
    font-size: 12px;
    transition: transform .2s ease;
}

.vetra-store .lang-switch.show .lang-switch__caret {
    transform: rotate(180deg);
}

.vetra-store .lang-switch__menu,
.vetra-store .user-info-box .dropdown-menu {
    min-width: 218px;
    padding: 8px;
}

.vetra-store .lang-switch__menu .dropdown-item {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 7px 34px 7px 8px;
    border-radius: 9px;
}

.vetra-store .lang-switch__option-code {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #2563eb;
    border: 1px solid #fafafa;
    border-radius: 8px;
    background: #eff6ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.vetra-store .lang-switch__menu .dropdown-item > span:last-of-type {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.vetra-store .lang-switch__menu .dropdown-item strong {
    color: var(--vt-text-strong);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.vetra-store .lang-switch__menu .dropdown-item small {
    color: var(--vt-subtle) !important;
    font-size: 12px;
    line-height: 1.35;
}

.vetra-store .lang-switch__menu .dropdown-item.active,
.vetra-store .lang-switch__menu .dropdown-item:active {
    background: var(--vt-surface-3) !important;
}

.vetra-store .lang-switch__menu .dropdown-item.active::after {
    position: absolute;
    top: 50%;
    right: 12px;
    float: none;
    color: var(--vt-primary);
    font-size: 12px;
    transform: translateY(-50%);
}

.vetra-store .user-login-box {
    display: flex;
    align-items: center;
    gap: 7px;
}

.vetra-store .user-login-box .btn {
    display: inline-flex;
    width: 85.5px;
    align-items: center;
    height: var(--store-header-control-height);
    min-height: var(--store-header-control-height);
    justify-content: center;
    padding: 0;
    border-radius: 10px !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.vetra-store .user-login-box__login {
    color: #ffffff !important;
    border-color: #0285f7 !important;
    background: #0285f7 !important;
    box-shadow: none !important;
}

.vetra-store .user-login-box__register {
    color: var(--vt-muted) !important;
    border-color: rgba(86, 86, 86, .3) !important;
    background: var(--vt-surface) !important;
    box-shadow: none !important;
}

.vetra-store .user-login-box__register:hover {
    color: #0285f7 !important;
}

.vetra-store .user-info-box .dropdown-toggle {
    height: var(--store-header-control-height);
    min-height: var(--store-header-control-height);
    justify-content: center;
    padding: 4px 8px !important;
    border-radius: 9px;
}

.vetra-store #user-avatar {
    width: 27px !important;
    height: 27px !important;
    object-fit: cover;
    border: 1px solid var(--vt-border) !important;
    border-radius: 7px !important;
    background-color: var(--vt-bg-raised) !important;
    filter: saturate(.8);
    box-shadow: var(--vt-shadow-avatar) !important;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.vetra-store .user-info-box .dropdown-toggle:hover #user-avatar,
.vetra-store .user-info-box .dropdown-toggle[aria-expanded="true"] #user-avatar {
    border-color: rgb(59 130 246 / 20%) !important;
    box-shadow: var(--vt-shadow-avatar-hover) !important;
}

.vetra-store .user-info-box .dropdown-toggle:hover {
    background: var(--vt-surface) !important;
}

.vetra-store .user-info-box #username,
.vetra-store .user-info-box #user-balance {
    color: var(--vt-text) !important;
}

.vetra-store #pjax-container {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    background-color: #ffefb31a;
    background-image: url("/assets/user/images/hero-01-golden-spiral.svg?rev=20260827v1");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 85%;
}

.vetra-store main.container {
    padding-top: 0 !important;
    padding-bottom: 56px !important;
}

.vetra-store .vetra-store-footer {
    flex: 0 0 auto;
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--vt-border-soft);
    border-radius: 0;
    background: var(--vt-surface);
    box-shadow: none;
}

.vetra-store .vetra-store-footer__surface {
    display: flex;
    width: 100%;
    min-height: 44px;
    margin: 0;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    color: var(--vt-subtle);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    font-size: 12px;
}

/* Store sections and product cards */
.vetra-store .panel {
    overflow: hidden;
    margin-top: 28px;
    color: var(--vt-text);
    border: 1px solid var(--vt-border-soft);
    border-radius: var(--vt-radius-lg);
    background: var(--vt-surface) !important;
    box-shadow: none;
}

.vetra-store .panel:first-of-type { margin-top: 34px; }
.vetra-store .panel-header {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid var(--vt-border-soft);
    background: transparent !important;
    box-shadow: none !important;
}

.vetra-store .panel-header .icon {
    display: grid;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    place-items: center;
    color: var(--vt-icon-default);
    border: 1px solid var(--vt-border);
    border-radius: 8px;
    background: var(--vt-surface-2);
    font-size: 14px;
}

.vetra-store .panel-title {
    margin: 0;
    color: var(--vt-text-strong);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.015em;
}

.vetra-store .panel-body {
    padding: 22px;
    color: var(--vt-muted);
    background-color: rgb(244 244 244 / 63%) !important;
}

.vetra-store .vetra-notice .panel-body {
    background-color: rgb(244 244 244 / 63%) !important;
}

.vetra-store .vetra-notice .panel-body * {
    color: var(--vt-muted) !important;
    background-color: transparent !important;
    text-shadow: none !important;
}

.vetra-store #store-products {
    scroll-margin-top: 18px;
    border-radius: var(--vt-radius-xl);
}

.vetra-store .chip-list,
.vetra-store .sku-list,
.vetra-store .pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vetra-store .chip,
.vetra-store .sku,
.vetra-store .optional-card {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 7px 12px;
    color: var(--vt-muted) !important;
    border: 1px solid var(--vt-border) !important;
    border-radius: 9px !important;
    background: var(--vt-surface-2) !important;
    font-size: 12px;
    font-weight: 600;
    box-shadow: none !important;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s var(--vt-ease);
}

.vetra-store .chip:hover,
.vetra-store .sku:hover,
.vetra-store .chip.is-primary,
.vetra-store .sku.is-primary {
    color: var(--vt-primary-ink) !important;
    border-color: var(--vt-primary) !important;
    background: var(--vt-primary) !important;
    transform: translateY(-1px);
}

.vetra-store .chip-icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.vetra-store .item-list {
    margin: 0 -7px;
}

.vetra-store .item-list > [class*="col-"] {
    padding-inline: 7px;
    margin-bottom: 14px !important;
}

.vetra-store .item-message {
    min-height: 180px;
    display: grid;
    place-items: center;
    color: var(--vt-subtle);
}

.vetra-store .acg-card {
    position: relative;
    overflow: hidden;
    color: var(--vt-text);
    border: 1px solid var(--vt-border-soft) !important;
    border-radius: 15px !important;
    background: var(--vt-bg-raised) !important;
    box-shadow: none !important;
    transition: box-shadow .2s ease;
}

.vetra-store .item-list > a > .acg-card,
.vetra-store .item-list > a:hover > .acg-card {
    transform: none !important;
}

.vetra-store .item-list > a:hover > .acg-card {
    box-shadow: 0 0 8px rgba(15, 23, 42, .10) !important;
}

.vetra-store .item-list > a .acg-thumb,
.vetra-store .item-list > a:hover .acg-thumb {
    transform: none !important;
}

.vetra-store .acg-thumb {
    position: relative;
    display: grid;
    height: 168px;
    overflow: hidden;
    place-items: center;
    border-bottom: 1px solid var(--vt-border-soft);
    background: var(--vt-bg-raised);
}

.vetra-store .acg-thumb::after {
    display: none;
}

.vetra-store .acg-thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(.82);
}

.vetra-store .acg-card .p-3 { padding: 15px !important; }
.vetra-store .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-height: 22px;
}

.vetra-store :is(.badge-soft, .acg-tag, .goods-sku) {
    display: inline-flex;
    align-items: center;
    min-height: 21px;
    padding: 3px 7px;
    color: var(--vt-muted) !important;
    border: 1px solid var(--vt-border) !important;
    border-radius: 999px !important;
    background: var(--vt-surface-2) !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.vetra-store :is(.badge-soft-success, .status-completed, .status-paid, .shipment-shipped) {
    color: var(--vt-success) !important;
    border-color: rgba(var(--vt-success-rgb), .28) !important;
    background: rgba(var(--vt-success-rgb), .10) !important;
}

.vetra-store :is(.badge-soft-warning, .status-pending, .shipment-pending) {
    color: var(--vt-warning) !important;
    border-color: rgba(217, 119, 6, .25) !important;
    background: rgba(217, 119, 6, .09) !important;
}

.vetra-store :is(.badge-soft-danger, .status-cancelled) {
    color: var(--vt-danger) !important;
    border-color: rgba(220, 38, 38, .24) !important;
    background: rgba(220, 38, 38, .09) !important;
}

.vetra-store .goods-title {
    min-height: 43px;
    margin: 13px 0 10px;
    overflow: hidden;
    color: var(--vt-text-strong) !important;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vetra-store .price {
    color: var(--vt-text-strong) !important;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.035em;
}

.vetra-store .price .unit { margin-right: 2px; color: var(--vt-muted); font-size: 12px; }
.vetra-store .stat-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--vt-subtle) !important;
    font-size: 12px;
}

.vetra-store .soldout { opacity: .5; }
.vetra-store .soldout-ribbon {
    color: var(--vt-primary-ink) !important;
    background: var(--vt-primary) !important;
}

/* Product detail */
.vetra-store .acg-cover {
    display: grid;
    min-height: 440px;
    place-items: center;
    padding: 20px;
    background: var(--vt-bg-raised) !important;
}

.vetra-store .item-cover {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    flex: none;
    justify-self: center;
    border-radius: inherit;
    object-fit: contain;
    filter: saturate(.82);
}

.vetra-store .acg-cover,
.vetra-store .acg-cover:hover {
    cursor: default;
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
}

.vetra-store main h4 {
    margin: 3px 0 14px;
    color: var(--vt-text-strong);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.vetra-store .form-label {
    color: var(--vt-muted) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .035em;
}

.vetra-store :is(.form-control, .form-select) {
    min-height: 44px;
    border-radius: 9px !important;
}

.vetra-store .badge-money {
    color: inherit;
    opacity: .72;
}

.vetra-store .qty-group {
    width: min(210px, 100%);
    flex-wrap: nowrap;
    overflow: hidden;
    border: 1px solid var(--vt-border) !important;
    border-radius: 9px !important;
    background: var(--vt-surface) !important;
    background-image: none !important;
    box-shadow: none !important;
}

.vetra-store :is(.change-num-sub, .change-num-add) {
    width: 42px;
    color: var(--vt-text) !important;
    border: 0 !important;
    background: var(--vt-surface-2) !important;
    background-image: none !important;
    box-shadow: none !important;
    font-size: 18px;
}

.vetra-store .change-num-sub { border-radius: 9px 0 0 9px; }
.vetra-store .change-num-add { border-radius: 0 9px 9px 0; }
.vetra-store .qty-group .form-control { border-radius: 0 !important; }
.vetra-store .cash-pay {
    border: 1px solid var(--vt-border-soft);
    border-radius: 12px;
    background: var(--vt-bg-raised) !important;
    background-image: none !important;
    box-shadow: none !important;
}

.vetra-store .cash-pay .fa-cart-shopping {
    color: var(--vt-icon-default) !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.vetra-store .shared-button:not(:hover) > i,
.vetra-store .user-info-box .dropdown-item:not(:hover):not(:focus):not(.active):not(.text-danger) > i {
    color: var(--vt-icon-default) !important;
}

.vetra-store .pay-list .pay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 7px 11px !important;
    color: var(--vt-muted) !important;
    border: 1px solid var(--vt-border) !important;
    border-radius: 9px !important;
    background: var(--vt-surface-2) !important;
    background-image: none !important;
    box-shadow: none !important;
}

.vetra-store .pay-list .pay:hover,
.vetra-store .pay-list .pay.selected {
    color: var(--vt-primary-ink) !important;
    border-color: var(--vt-primary) !important;
    background: var(--vt-primary) !important;
}

.vetra-store .pay-list .pay img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: transparent !important;
    box-shadow: none !important;
    object-fit: contain;
}

/* Product purchase form — structured after the referenced FormLayout01. */
.vetra-store .item-purchase-column {
    min-width: 0;
}

.vetra-store .item-purchase-layout {
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
    padding: 4px 2px 2px;
}

.vetra-store .item-purchase-title {
    margin: 0 !important;
    color: var(--vt-text-strong);
    font-size: 30px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.vetra-store .item-purchase-meta {
    flex-wrap: wrap;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    gap: 6px !important;
}

.vetra-store .item-purchase-price {
    margin: 14px 0 0 !important;
}

.vetra-store .item-purchase-price .price {
    font-size: 24px;
    font-weight: 700;
}

.vetra-store .item-purchase-form {
    display: grid !important;
    margin-top: 26px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px 16px !important;
}

.vetra-store .item-purchase-form > * {
    min-width: 0;
    margin: 0 !important;
    grid-column: 1 / -1;
}

.vetra-store .item-purchase-form .purchase-field--half {
    grid-column: span 3;
}

.vetra-store .item-purchase-form .purchase-widget:not(:has(*)) {
    display: none;
}

.vetra-store .item-purchase-form .form-label {
    display: block;
    margin: 0 0 8px !important;
    color: var(--vt-text) !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
}

.vetra-store .item-purchase-form :is(.form-control, .form-select) {
    width: 100%;
    height: 44px;
    min-height: 44px !important;
    padding: 9px 12px;
    color: var(--vt-text-strong);
    border: 1px solid var(--vt-border) !important;
    border-radius: 9px !important;
    outline: 0 !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: none !important;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.vetra-store .item-purchase-form :is(.form-control, .form-select)::placeholder {
    color: var(--vt-subtle);
    opacity: 1;
}

.vetra-store .item-purchase-form :is(.form-control, .form-select):is(:focus, :focus-visible) {
    border-color: var(--vt-primary) !important;
    background: var(--vt-surface) !important;
    box-shadow: 0 0 0 2px rgba(66, 139, 255, .10) !important;
    transform: none !important;
}

.vetra-store .item-purchase-form .sku-list {
    gap: 8px;
    margin-top: 0;
}

.vetra-store .item-purchase-form :is(.sku, .optional-card) {
    min-height: 40px;
    border-radius: 9px !important;
}

.vetra-store .item-purchase-form .optional-card {
    width: 100%;
    justify-content: flex-start;
    padding: 9px 12px;
    color: var(--vt-muted) !important;
    border: 1px solid var(--vt-border) !important;
    background: var(--vt-surface) !important;
    box-shadow: none !important;
}

.vetra-store .item-purchase-form .qty-group {
    width: 100%;
    height: 44px;
    min-height: 44px;
    gap: 0 !important;
    padding: 0 !important;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.vetra-store .item-purchase-form .qty-group:focus-within {
    border-color: var(--vt-primary) !important;
    background: var(--vt-surface) !important;
    box-shadow: 0 0 0 2px rgba(66, 139, 255, .10) !important;
}

.vetra-store .item-purchase-form :is(.change-num-sub, .change-num-add) {
    width: 44px;
    height: 42px;
    min-height: 42px;
    flex: 0 0 44px;
}

.vetra-store .item-purchase-form .qty-group .form-control {
    height: 42px;
    min-height: 42px !important;
    padding-inline: 6px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vetra-store .item-purchase-form .captcha-group {
    width: 100%;
    height: 44px;
    flex-wrap: nowrap;
    gap: 6px;
}

.vetra-store .item-purchase-form .captcha-group .captcha-input {
    min-width: 0;
    border-right: 1px solid var(--vt-border) !important;
    border-radius: 9px !important;
}

.vetra-store .item-purchase-form .captcha-group .captcha-input:is(:focus, :focus-visible) {
    border: 1px solid var(--vt-primary) !important;
    border-radius: 9px !important;
    background: var(--vt-surface) !important;
    box-shadow: 0 0 0 2px rgba(66, 139, 255, .10) !important;
}

.vetra-store .item-purchase-form .captcha-group .input-group-append {
    display: flex;
    flex: 0 0 88px;
    margin-left: 0 !important;
}

.vetra-store .item-purchase-form .captcha-group .captcha-img {
    width: 88px;
    height: 44px;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0;
    border: 1px solid var(--vt-border) !important;
    border-radius: 9px !important;
    background: var(--vt-surface) !important;
    display: block;
    object-fit: contain;
}

.vetra-store .item-purchase-form .purchase-checkout {
    margin-top: 4px !important;
    padding: 20px 0 0 !important;
    border: 0 !important;
    border-top: 1px solid var(--vt-border-soft) !important;
    border-radius: 0;
    background: transparent !important;
}

.vetra-store .item-purchase-form .purchase-checkout > .form-label {
    margin-bottom: 12px !important;
    color: var(--vt-text-strong) !important;
    font-size: 14px;
}

.vetra-store .item-purchase-form .purchase-checkout .pay-list {
    gap: 10px;
    padding-top: 0;
    border-top: 0;
}

@media (max-width: 575.98px) {
    .vetra-store main h4 {
        font-size: 26px;
    }

    .vetra-store .item-purchase-layout {
        max-width: none;
        padding-inline: 0;
    }

    .vetra-store .item-purchase-title {
        font-size: 24px;
    }

    .vetra-store .item-purchase-form {
        margin-top: 22px;
        gap: 16px !important;
    }

    .vetra-store .item-purchase-form .purchase-field--half {
        grid-column: 1 / -1;
    }
}

.vetra-store .item-detail :is(img, video, iframe) { max-width: 100%; border-radius: 10px; }
.vetra-store .item-detail { overflow-wrap: anywhere; }

/* Order query and result cards */
.vetra-store .order-query-form .d-flex {
    flex-wrap: wrap;
}

.vetra-store .order-query-form .order-query-field {
    display: flex;
    width: 300px;
    height: 48px;
    align-items: center;
    border: 1px solid var(--vt-border-soft);
    border-radius: 11px;
    background: var(--vt-bg-raised);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.vetra-store .order-query-form .order-query-field:focus-within {
    border-color: var(--vt-primary);
    background: var(--vt-surface);
    box-shadow: 0 0 0 2px rgba(66, 139, 255, .10);
}

.vetra-store .order-query-form .order-query-field .form-control,
.vetra-store .order-query-form .order-query-field .form-control:is(:focus, :focus-visible) {
    width: 100%;
    min-width: 0;
    height: 46px;
    min-height: 46px !important;
    padding: 12px 16px;
    border: 0 !important;
    border-radius: 10px !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    transition: none;
}

.vetra-store .btn-search-query {
    min-height: 44px;
    padding-inline: 18px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
}

.vetra-store .order-list {
    display: grid;
    gap: 13px;
}

.vetra-store .order-item {
    overflow: hidden;
    color: var(--vt-muted);
    border: 1px solid var(--vt-border-soft) !important;
    border-radius: 15px !important;
    background: var(--vt-bg-raised) !important;
    box-shadow: none !important;
}

.vetra-store .order-header,
.vetra-store .goods-section,
.vetra-store .shipment-content,
.vetra-store .card-content {
    border-color: var(--vt-border-soft) !important;
    background: transparent !important;
}

.vetra-store :is(.order-no, .goods-name, .amount-value, .shipment-title, .card-name) {
    color: var(--vt-text-strong) !important;
}

.vetra-store :is(.order-time, .payment-time, .payment-dst, .amount-label, .goods-meta) {
    color: var(--vt-muted) !important;
}

.vetra-store .goods-image,
.vetra-store .payment-icon {
    border: 1px solid var(--vt-border-soft);
    border-radius: 9px;
    filter: saturate(.8);
}

.vetra-store .card-display,
.vetra-store .password-input-group {
    color: var(--vt-text);
    border-color: var(--vt-border) !important;
    background: var(--vt-surface) !important;
}

/* Component library overlays */
.vetra-store .layui-layer-title {
    color: var(--vt-text-strong) !important;
    border-bottom: 1px solid var(--vt-border-soft) !important;
    background: var(--vt-surface) !important;
}

.vetra-store .layui-layer-content { color: var(--vt-muted) !important; }
.vetra-store .layui-layer-setwin a { filter: invert(1) grayscale(1); opacity: .7; }

.vetra-store .navbar-toggler {
    position: relative;
    width: 38px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--vt-border) !important;
    border-radius: 8px;
    background: var(--vt-surface) !important;
    box-shadow: none !important;
}

.vetra-store .navbar-toggler-icon,
.vetra-store .navbar-toggler-icon::before,
.vetra-store .navbar-toggler-icon::after {
    position: absolute;
    left: 10px;
    width: 16px;
    height: 1px;
    content: "";
    background: var(--vt-text);
}

.vetra-store .navbar-toggler-icon { top: 17px; background-image: none !important; }
.vetra-store .navbar-toggler-icon::before { top: -5px; left: 0; }
.vetra-store .navbar-toggler-icon::after { top: 5px; left: 0; }

@media (max-width: 1199.98px) {
    .vetra-store .navbar-brand { min-width: auto; margin-right: 14px; }
    .vetra-store .navbar-nav .nav-link { padding-inline: 8px !important; }
    .vetra-store .navbar-nav .nav-icon { display: none; }
    .vetra-store .search-input { display: none !important; }
}

@media (max-width: 991.98px) {
    .vetra-store .navbar-acg > .container,
    .vetra-store main.container { width: min(100% - 30px, 1220px); }

    .vetra-store .navbar-collapse {
        position: absolute;
        top: calc(100% + 8px);
        left: auto;
        right: 15px;
        width: 184px;
        max-width: calc(100vw - 30px);
        height: auto;
        max-height: none;
        overflow: visible;
        padding: 4px;
        border: 1px solid var(--vt-border);
        border-radius: 9px;
        background: var(--vt-surface) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    }

    /* Keep the menu as a fixed popover: Bootstrap must never tween its calculated height. */
    .vetra-store .navbar-collapse.collapsing {
        display: block;
        height: auto !important;
        overflow: visible;
        transform: none !important;
        transition: none !important;
    }

    /* The menu appears as one stable surface—no translate, scale, or height animation. */
    .vetra-store .navbar-collapse.show {
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .vetra-store .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        margin: 0 !important;
    }
    .vetra-store .navbar-nav .nav-item,
    .vetra-store .navbar-nav .nav-link { width: 100%; }
    .vetra-store .navbar-nav .nav-link {
        min-height: 36px;
        padding: 8px 10px !important;
        border-radius: 6px;
    }
    .vetra-store .navbar-nav .nav-icon { display: inline-block; }
    .vetra-store .lang-switch { margin-left: auto !important; }
    .vetra-store .user-login-box .btn:first-child { display: none; }
}

@media (max-width: 575.98px) {
    .vetra-store .navbar-acg > .container,
    .vetra-store main.container { width: min(100% - 24px, 1220px); }
    .vetra-store .navbar-brand .brand-name { max-width: 112px; }
    .vetra-store .lang-switch__meta,
    .vetra-store .lang-switch__caret { display: none; }
    .vetra-store .lang-switch__btn { width: 40px; padding: 4px; justify-content: center; }
    .vetra-store .lang-switch__icon { width: 30px; height: 30px; flex-basis: 30px; }
    .vetra-store .user-login-box .btn { width: 57.6px; padding: 0 8px; font-size: 12px; }
    .vetra-store .panel { margin-top: 18px; border-radius: 15px; }
    .vetra-store .panel:first-of-type { margin-top: 24px; }
    .vetra-store .panel-header { min-height: 56px; padding-inline: 16px; }
    .vetra-store .panel-body { padding: 16px; }
    .vetra-store .acg-thumb { height: 190px; }
    .vetra-store .order-query-form .order-query-field { width: 100% !important; }
    .vetra-store .order-query-form .form-control { min-width: 0; width: 100%; }
    .vetra-store .order-query-form .btn-search-query { width: 100%; }
    .vetra-store .order-query-form .d-flex > div:last-child { width: 100%; }
    .vetra-store .order-header { align-items: flex-start; flex-direction: column; gap: 14px; }
    .vetra-store .goods-section { align-items: flex-start; }
}

/* --------------------------------------------------------------------------
 * Vetra light application composition
 * The public shell is a viewport application: the document never scrolls;
 * dense collections scroll only inside their own panel.
 * ----------------------------------------------------------------------- */
.vetra-store .navbar-acg {
    flex-basis: var(--vt-nav-h);
    min-height: var(--vt-nav-h);
    border-bottom-color: var(--vt-border-soft);
    background: rgba(255, 255, 255, .96) !important;
    backdrop-filter: blur(8px);
}

.vetra-store .navbar-acg > .container,
.vetra-store main.container {
    width: min(calc(100% - 32px), 1440px);
    max-width: 1440px !important;
}

.vetra-store .navbar-brand {
    min-width: 164px;
    color: var(--vt-text-strong) !important;
}

.vetra-store .navbar-brand .brand-logo {
    border: 0;
    background: #000000;
    box-shadow: none;
}

.vetra-store .navbar-nav .nav-link:hover {
    color: var(--store-nav-accent) !important;
    background: var(--store-nav-accent-soft) !important;
}

.vetra-store .navbar-nav .nav-link.active,
.vetra-store .navbar-nav .nav-link.active:hover {
    color: #ffffff !important;
    background: var(--store-nav-accent) !important;
}

.vetra-store .navbar-nav .nav-link.active .nav-icon {
    color: #ffffff !important;
}

.vetra-store .search-input .input-group {
    border-color: var(--vt-border-soft);
    background: var(--vt-bg-raised);
}

.vetra-store .search-input .input-group:focus-within {
    border-color: var(--vt-primary);
    background: var(--vt-surface);
    box-shadow: 0 0 0 2px rgba(66, 139, 255, .10);
}

.vetra-store #pjax-container {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden !important;
    background-color: #ffefb31a;
    background-image: url("/assets/user/images/hero-01-golden-spiral.svg?rev=20260827v1");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 85%;
}

.vetra-store main.container {
    height: 100%;
    min-height: 0;
    padding: 16px 0 !important;
    overflow-x: hidden;
    overflow-y: auto;
}

.vetra-store main.vetra-home {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 12px !important;
    overflow: hidden;
}

.vetra-home .panel {
    isolation: isolate;
    min-width: 0;
    min-height: 0;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid var(--vt-border-soft);
    background: transparent !important;
    background-clip: padding-box !important;
    box-shadow: none !important;
}

/* The legacy glass panel creates a composited white layer with a fixed 16px
   clip. It can paint over the rounded edge, so solid storefront panels do not
   keep that obsolete pseudo-element. */
.vetra-home .panel::before {
    display: none !important;
    content: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.vetra-home .panel-header {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border-bottom: 1px solid var(--vt-border-soft);
    border-radius: calc(var(--vt-radius-lg) - 1px) calc(var(--vt-radius-lg) - 1px) 0 0;
    background: rgba(255, 255, 255, .8) !important;
}

.vetra-home .panel-header .icon {
    display: grid;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    flex: 0 0 28px;
    place-items: center;
    color: var(--vt-primary);
    border: 1px solid #fafafa;
    border-radius: 8px;
    background: var(--vt-surface-3);
    font-size: 12px;
}

/* Give each storefront section its own solid, easily scanned identity. */
.vetra-home .vetra-notice .panel-header .icon {
    color: #ffffff;
    border-color: #ff9f0a;
    background: #ff9f0a;
}

.vetra-home .vetra-categories .panel-header .icon {
    color: #ffffff;
    border-color: var(--vt-success);
    background: var(--vt-success);
}

.vetra-home .vetra-products .panel-header .icon {
    color: #ffffff;
    border-color: #2f80ed;
    background: #2f80ed;
}

.vetra-home .panel-title {
    margin: 0;
    color: var(--vt-text-strong);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.015em;
}

.vetra-home .panel-body {
    min-height: 0;
    padding: 12px;
    border-radius: 0 0 calc(var(--vt-radius-lg) - 1px) calc(var(--vt-radius-lg) - 1px);
}

.vetra-home .vetra-notice .panel-body,
.vetra-home .vetra-categories .panel-body,
.vetra-home .vetra-products .panel-body {
    background-color: rgb(244 244 244 / 63%) !important;
}

.vetra-home .vetra-notice {
    display: grid;
    grid-template-rows: 46px auto;
    align-self: start;
    border-radius: var(--vt-radius-lg);
}

.vetra-home .vetra-notice .panel-header {
    min-height: 46px;
}

.vetra-home .vetra-notice .panel-body {
    width: 100%;
    min-height: 150px;
    max-height: 300px;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 9px 16px 11px;
    color: var(--vt-muted);
    font-size: 12px;
    line-height: 1.65;
}

.vetra-home .vetra-notice .panel-body > :first-child {
    margin-top: 0 !important;
}

.vetra-home .vetra-notice .panel-body > :last-child {
    margin-bottom: 0 !important;
}

.vetra-home .vetra-catalog {
    display: grid;
    grid-template-columns: clamp(190px, 18vw, 248px) minmax(0, 1fr);
    gap: 14px;
    padding: 1px;
    min-width: 0;
    min-height: 0;
    overflow: visible;
}

.vetra-home .vetra-categories,
.vetra-home .vetra-products {
    display: grid;
    grid-template-rows: 50px minmax(0, 1fr);
    border-radius: var(--vt-radius-lg);
}

.vetra-home .vetra-categories .panel-body {
    overflow: hidden;
    padding: 12px;
}

.vetra-home .vetra-categories .chip-list {
    display: flex;
    height: 100%;
    min-height: 0;
    padding: 1px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: hidden;
    overflow-y: auto;
}

.vetra-home .vetra-categories .chip {
    display: flex;
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    flex: 0 0 auto;
    justify-content: flex-start;
    color: var(--vt-muted) !important;
    border-color: transparent !important;
    background: var(--vt-surface) !important;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
}

.vetra-home .vetra-categories .chip:hover {
    color: var(--vt-primary) !important;
    border-color: #ffffff !important;
    background: var(--vt-surface-3) !important;
    transform: none;
}

.vetra-home .vetra-categories .chip.is-primary {
    color: var(--vt-primary-ink) !important;
    border-color: var(--vt-primary) !important;
    background: var(--vt-primary) !important;
    transform: none;
}

.vetra-home .vetra-categories .chip-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-color: var(--vt-border-soft);
    border-radius: 7px;
}

.vetra-home .vetra-categories .chip-icon--platform {
    box-sizing: border-box;
    border: 0;
    outline: 0;
    background-color: #000000;
    background-size: 80%;
    box-shadow: none;
}

.vetra-home .vetra-products .panel-body {
    display: flex;
    min-height: 0;
    padding: 12px;
    overflow: hidden;
}

.vetra-home .item-list {
    display: grid;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 8px;
    align-content: start;
    grid-template-columns: repeat(auto-fill, minmax(260px, 283px));
    justify-content: start;
    gap: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

.vetra-home .item-list > [class*="col-"] {
    width: auto;
    max-width: none;
    margin: 0 !important;
    padding: 0;
    color: inherit;
    cursor: pointer;
}

.vetra-home .item-message {
    grid-column: 1 / -1;
    min-height: 120px;
}

.vetra-home .acg-card,
.vetra-home .acg-card.h-100 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: calc(61.27% - 40px) minmax(0, 1fr);
    height: auto !important;
    min-height: 0;
    aspect-ratio: 1.0246 / 1;
    border: 1px solid rgb(86 86 86 / 15%) !important;
    border-radius: 12px !important;
    background: var(--vt-surface) !important;
}

.vetra-home .acg-thumb {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--vt-border-soft);
}

.vetra-home .acg-card .p-3 {
    min-width: 0;
    min-height: 0;
    padding: 5px 10px !important;
}

.vetra-home .goods-title {
    display: block;
    min-height: 0;
    margin: 2px 0 1px;
    overflow: visible;
    color: var(--vt-text-strong) !important;
    font-size: 16px;
    line-height: 1.35;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
}

.vetra-home .price {
    font-size: 16px;
    line-height: 1.1;
}

.vetra-home .stat-bottom {
    gap: 8px;
    font-size: 12px;
    line-height: 1.15;
}

.vetra-home .item-list .tags {
    gap: 5.5px;
    min-height: 16.5px;
    margin-bottom: 1px;
}

.vetra-home .item-list .tags > :is(.badge-soft, .acg-tag, .goods-sku) {
    min-height: 16.5px;
    padding: 2.2px 5.5px;
    font-size: 13.2px;
}

.vetra-home .stat-row {
    margin-bottom: 7px !important;
}

/* Other store routes still fit the application viewport; their main content is
   the explicit inner scrolling region when the route contains long forms. */
.vetra-store main.container:not(.vetra-home) > .panel:first-child {
    margin-top: 0;
}

.vetra-store main.container:not(.vetra-home) .panel {
    border-color: var(--vt-border-soft);
    background: var(--vt-surface) !important;
}

/* The empty query view is a full-height workspace. The query panel owns the
   remaining route height, while result/status sections keep their natural
   height and make the route's main container scroll only when needed. */
.vetra-store main.vetra-query-page {
    display: flex;
    min-height: 0;
    flex-direction: column;
}

.vetra-store .vetra-query-page.is-idle > .vetra-query-shell {
    display: flex;
    min-height: 154px;
    margin: 0 !important;
    flex: 1 1 auto;
    flex-direction: column;
}

.vetra-store .vetra-query-page.is-idle > .vetra-query-shell > .panel-header {
    flex: 0 0 auto;
}

.vetra-store .vetra-query-page.is-idle > .vetra-query-shell > .panel-body {
    min-height: 92px;
    flex: 1 1 auto;
}

.vetra-store .vetra-query-page > :is(.order-results, .no-results, .loading-state) {
    flex: 0 0 auto;
}

/* Once a lookup completes without a match, the empty state becomes the route
   workspace and consumes everything below the query panel. */
.vetra-store .vetra-query-page > .no-results {
    min-height: 0;
    flex: 1 1 auto;
}

.vetra-store .vetra-query-page > .no-results > .panel {
    display: flex;
    box-sizing: border-box;
    height: 100%;
    min-height: 154px;
    margin-top: 0;
    flex-direction: column;
}

.vetra-store .vetra-query-page > .no-results > .panel > .panel-body {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vetra-store .layui-layer-setwin a {
    filter: none;
}

/* Unified button lift: the same 500ms motion runs both upward and home. */
.vetra-store :is(button, .btn, .navbar-nav .nav-link, .chip, .sku, .pay) {
    transform: translateY(0);
    transition: color .2s ease,
                background-color .2s ease,
                border-color .2s ease,
                box-shadow .2s ease,
                opacity .2s ease,
                transform .5s var(--vt-ease) !important;
    will-change: transform;
}

.vetra-store :is(button, .btn, .navbar-nav .nav-link, .chip, .sku, .pay):hover {
    transform: translateY(-2px) !important;
}

.vetra-store :is(button, .btn, .navbar-nav .nav-link, .chip, .sku, .pay):active {
    transform: translateY(0) !important;
}

/* Payment methods: flat square buttons with always-visible labels. */
.vetra-store .item-purchase-form .purchase-checkout > .payment-method-list {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0 !important;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 16px !important;
    overflow: visible;
    list-style: none;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.vetra-store .checkout-payment-method {
    display: grid;
    width: max-content;
    min-width: 50px;
    min-height: 0;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    justify-content: center;
    align-content: start;
    gap: 5px;
    overflow: visible;
    list-style: none;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.vetra-store .checkout-payment-method .pay {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    min-height: 48px;
    box-sizing: border-box;
    padding: 4px !important;
    place-items: center;
    color: var(--vt-text-strong) !important;
    border: 1px solid var(--vt-border-soft) !important;
    border-radius: 10px !important;
    background: var(--vt-surface) !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    transition: box-shadow .18s ease !important;
    cursor: pointer;
}

.vetra-store .checkout-payment-method .pay::after {
    display: none;
}

.vetra-store .checkout-payment-method .pay:is(:hover, :focus-visible, :active) {
    color: var(--vt-text-strong) !important;
    border-color: var(--vt-border-soft) !important;
    background: var(--vt-surface) !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
}

.vetra-store .checkout-payment-method:hover .pay,
.vetra-store .checkout-payment-method:focus-within .pay {
    box-shadow: 0 0 8px rgba(15, 23, 42, .14) !important;
}

.vetra-store .checkout-payment-method .pay:focus-visible {
    outline: 2px solid var(--vt-primary);
    outline-offset: 2px;
}

.vetra-store .checkout-payment-method .pay img {
    display: block;
    width: 38px;
    height: 38px;
    max-width: none;
    flex: 0 0 38px;
    border-radius: 8px;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    object-fit: cover;
    image-rendering: auto;
}

.vetra-store .checkout-payment-method .checkout-payment-method__label {
    display: block;
    width: max-content;
    min-width: 0;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    color: var(--vt-muted) !important;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.12px;
    text-align: center;
    justify-self: center;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

@media (prefers-reduced-motion: reduce) {
    .vetra-store :is(button, .btn, .navbar-nav .nav-link, .chip, .sku, .pay) {
        transform: none !important;
        transition-duration: .01ms !important;
    }

}

@media (max-width: 1100px) {
    .vetra-home .vetra-catalog {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .vetra-home .item-list {
        grid-template-columns: repeat(auto-fill, minmax(247px, 273px));
    }
}

@media (max-width: 767.98px) {
    .vetra-store #pjax-container {
        background-image: url("/assets/user/images/hero-01-golden-spiral-mobile.svg?rev=20260827v1");
        background-size: 85% auto;
    }

    .vetra-store .navbar-acg > .container,
    .vetra-store main.container {
        width: min(calc(100% - 20px), 1440px);
    }

    .vetra-store main.vetra-home {
        grid-template-rows: auto minmax(0, 1fr);
        gap: 10px;
        padding: 10px 0 12px !important;
    }

    .vetra-home .vetra-catalog {
        grid-template-columns: minmax(130px, .38fr) minmax(0, 1.62fr);
        gap: 10px;
    }

    .vetra-home .vetra-categories,
    .vetra-home .vetra-products {
        grid-template-rows: 48px minmax(0, 1fr);
    }

    .vetra-home .panel-header {
        min-height: 48px;
        padding-inline: 12px;
    }

    .vetra-home .item-list {
        grid-template-columns: repeat(auto-fill, minmax(239px, 273px));
    }
}

@media (max-width: 560px) {
    .vetra-store .navbar-acg > .container,
    .vetra-store main.container {
        width: min(calc(100% - 16px), 1440px);
    }

    .vetra-home .vetra-catalog {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 8px;
    }

    .vetra-home .panel-header {
        padding-inline: 9px;
    }

    .vetra-home .panel-header .icon {
        width: 25px;
        height: 25px;
        margin-right: 7px;
        flex-basis: 25px;
        font-size: 12px;
    }

    .vetra-home .panel-title {
        font-size: 12px;
    }

    .vetra-home .vetra-notice .panel-body {
        padding-inline: 11px;
        font-size: 12px;
    }

    .vetra-home .vetra-categories .panel-body,
    .vetra-home .vetra-products .panel-body {
        padding: 8px;
    }

    .vetra-home .vetra-categories .chip-list {
        gap: 6px;
    }

    .vetra-home .vetra-categories .chip {
        min-height: 38px;
        padding: 6px;
        gap: 5px;
        font-size: 12px;
    }

    .vetra-home .vetra-categories .chip-icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .vetra-home .item-list {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .vetra-home .item-list > [class*="col-"] {
        max-width: 299px;
    }
}
