/* Tokens and base */
.unihair-shop-page {
    --uh-main: #e13772;
    --uh-main-dark: #c72561;
    --uh-soft: #fde6ef;
    --uh-soft-2: #fff5f9;
    --uh-border: #eee2e7;
    --uh-text: #202020;
    --uh-muted: #747474;
    --uh-card: #ffffff;
    --uh-shadow: 0 10px 30px rgba(225, 55, 114, 0.08);
    --uh-max-width: 1280px;

    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    color: var(--uh-text);
    font-family: inherit;
}

.unihair-shop-page,
.unihair-shop-page *,
.unihair-shop-page *::before,
.unihair-shop-page *::after {
    box-sizing: border-box;
}

.unihair-shop-page button,
.unihair-shop-page input,
.unihair-shop-page select,
.unihair-shop-page textarea {
    font: inherit;
    letter-spacing: normal;
}

.uh-quick-view-lightbox {
    font-family: inherit;
}

.uh-quick-view-lightbox button,
.uh-quick-view-lightbox input,
.uh-quick-view-lightbox select,
.uh-quick-view-lightbox textarea {
    font: inherit;
    letter-spacing: normal;
}

.unihair-shop-page .uh-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Page shell */
.unihair-shop-page .unihair-shop-shell {
    width: 100%;
    max-width: var(--uh-max-width);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.unihair-shop-page .uh-shop-top-shortcode {
    width: 100%;
    max-width: var(--uh-max-width);
    min-width: 0;
    margin: 0 auto 18px;
    padding-left: 16px;
    padding-right: 16px;
}

.unihair-shop-page .uh-category-archive-content {
    width: 100%;
    max-width: var(--uh-max-width);
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.unihair-shop-page .uh-category-archive-content--top {
    margin-bottom: 18px;
}

.unihair-shop-page .uh-category-archive-content--bottom {
    margin-top: 18px;
}

.unihair-shop-page .uh-shop-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    overflow: hidden;
}

.unihair-shop-page .uh-products-area {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* Topbar */
.unihair-shop-page .uh-shop-topbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
    margin-bottom: 12px;
}

.unihair-shop-page .uh-result-count {
    margin: 0;
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

.unihair-shop-page .uh-shop-tools {
    min-width: min(100%, 340px);
    display: flex;
    align-items: center;
    align-self: start;
    justify-content: flex-end;
    gap: 12px;
}

.unihair-shop-page .uh-mobile-filter-btn,
.unihair-shop-page .uh-sort-select {
    height: 42px;
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid var(--uh-border);
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.unihair-shop-page .uh-mobile-filter-btn {
    display: none;
    min-width: 132px;
    padding: 0 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.unihair-shop-page .uh-mobile-filter-fab {
    position: fixed;
    left: calc(14px + env(safe-area-inset-left, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    z-index: 99970;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 146px;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--uh-main);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    box-shadow: 0 16px 34px rgba(225, 55, 114, 0.24);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, opacity 220ms ease;
}

.unihair-shop-page .uh-mobile-filter-fab::before {
    content: "";
    width: 12px;
    height: 10px;
    margin-right: 8px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-shadow: 0 3px 0 currentColor;
}

.unihair-shop-page .uh-mobile-filter-fab:hover,
.unihair-shop-page .uh-mobile-filter-fab:focus-visible {
    background: var(--uh-main-dark);
    box-shadow: 0 18px 36px rgba(225, 55, 114, 0.28);
    transform: translateY(-1px);
}

.unihair-shop-page.uh-filter-open .uh-mobile-filter-fab {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.unihair-shop-page .uh-mobile-filter-btn:hover,
.unihair-shop-page .uh-mobile-filter-btn[aria-expanded="true"] {
    border-color: rgba(225, 55, 114, 0.45);
    color: var(--uh-main);
    box-shadow: 0 8px 22px rgba(225, 55, 114, 0.12);
}

.unihair-shop-page .uh-sort-form {
    width: 230px;
    min-width: 0;
}

.unihair-shop-page .uh-sort-select {
    width: 100%;
    min-width: 0;
    padding: 0 38px 0 14px;
    outline: none;
}

.unihair-shop-page .uh-sort-select:focus {
    border-color: rgba(225, 55, 114, 0.48);
    box-shadow: 0 0 0 4px rgba(225, 55, 114, 0.12);
}

/* Filters */
.unihair-shop-page .uh-filter-sidebar {
    min-width: 0;
    max-width: 100%;
    position: sticky;
    top: 0;
    align-self: start;
}

.unihair-shop-page .uh-filter-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: var(--uh-card);
    border: 1px solid var(--uh-border);
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.unihair-shop-page .uh-filter-header {
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--uh-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.unihair-shop-page .uh-filter-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.unihair-shop-page .uh-filter-title {
    margin: 0;
    color: var(--uh-text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.unihair-shop-page .uh-reset-link,
.unihair-shop-page .uh-filter-close {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.unihair-shop-page .uh-reset-link {
    color: var(--uh-main);
    text-decoration: none;
}

.unihair-shop-page .uh-reset-link:hover {
    color: var(--uh-main-dark);
}

.unihair-shop-page .uh-filter-close {
    display: none;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--uh-border);
    border-radius: 999px;
    background: #fff;
    color: #444;
    cursor: pointer;
}

.unihair-shop-page .uh-filter-form {
    padding: 0 18px 18px;
}

.unihair-shop-page .uh-filter-section {
    padding: 17px 0;
    border-bottom: 1px solid var(--uh-border);
}

.unihair-shop-page .uh-filter-section:last-child {
    border-bottom: 0;
}

.unihair-shop-page .uh-filter-heading {
    margin-bottom: 12px;
    color: #252525;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.unihair-shop-page .uh-filter-body {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.unihair-shop-page .uh-filter-check {
    position: relative;
    min-width: 0;
    padding-left: calc(var(--uh-filter-level, 0) * 18px);
    color: #555;
    font-size: 14px;
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.unihair-shop-page .uh-filter-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.unihair-shop-page .uh-filter-link {
    cursor: default;
    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 8px;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.unihair-shop-page .uh-filter-link:hover {
    background: rgba(225, 55, 114, 0.04);
    border-color: rgba(225, 55, 114, 0.12);
}

.unihair-shop-page .uh-filter-link.is-active-branch {
    background: rgba(225, 55, 114, 0.06);
    border-color: rgba(225, 55, 114, 0.16);
}

.unihair-shop-page .uh-filter-link.is-current {
    background: rgba(225, 55, 114, 0.12);
    border-color: rgba(225, 55, 114, 0.28);
    box-shadow: inset 3px 0 0 var(--uh-main), 0 10px 22px rgba(225, 55, 114, 0.1);
}

.unihair-shop-page .uh-check-box {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 3px;
    border: 1px solid #cfcfcf;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.unihair-shop-page .uh-filter-check input:checked + .uh-check-box {
    border-color: var(--uh-main);
    background: var(--uh-main);
}

.unihair-shop-page .uh-filter-check input:checked + .uh-check-box::after {
    content: "";
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}

.unihair-shop-page .uh-check-text {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}

.unihair-shop-page .uh-check-link {
    color: inherit;
    text-decoration: none;
}

.unihair-shop-page .uh-filter-link:hover .uh-check-link {
    color: var(--uh-main);
}

.unihair-shop-page .uh-filter-link.is-current .uh-check-link,
.unihair-shop-page .uh-filter-link.is-active-branch .uh-check-link {
    color: #2f2530;
    font-weight: 700;
}

.unihair-shop-page .uh-filter-link.is-current .uh-check-link {
    color: #26161e;
    font-weight: 800;
}

.unihair-shop-page .uh-filter-link.is-current .uh-check-box,
.unihair-shop-page .uh-filter-link.is-active-branch .uh-check-box {
    border-color: var(--uh-main);
    background: rgba(225, 55, 114, 0.08);
}

.unihair-shop-page .uh-filter-link.is-current .uh-check-box::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--uh-main);
}

.unihair-shop-page .uh-check-text em {
    color: #8d8d8d;
    font-style: normal;
    margin-left: 4px;
}

.unihair-shop-page .uh-filter-link.is-current .uh-check-text em,
.unihair-shop-page .uh-filter-link.is-active-branch .uh-check-text em {
    color: #745963;
}

.unihair-shop-page .uh-price-range {
    padding-top: 4px;
}

.unihair-shop-page .uh-price-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #656565;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.unihair-shop-page .uh-range-wrap {
    position: relative;
    width: 100%;
    height: 26px;
    overflow: hidden;
}

.unihair-shop-page .uh-range-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 12px;
    height: 4px;
    border-radius: 999px;
    background: #f3d4df;
}

.unihair-shop-page .uh-range-progress {
    position: absolute;
    top: 12px;
    height: 4px;
    border-radius: 999px;
    background: var(--uh-main);
}

.unihair-shop-page .uh-range-wrap input[type="range"] {
    position: absolute;
    left: 0;
    top: 3px;
    width: 100%;
    height: 20px;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    margin: 0;
}

.unihair-shop-page .uh-range-wrap input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--uh-main);
    box-shadow: 0 2px 8px rgba(225, 55, 114, 0.28);
    cursor: pointer;
}

.unihair-shop-page .uh-range-wrap input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--uh-main);
    box-shadow: 0 2px 8px rgba(225, 55, 114, 0.28);
    cursor: pointer;
}

.unihair-shop-page .uh-price-caption {
    margin-top: 4px;
    color: #777;
    font-size: 12px;
}

.unihair-shop-page .uh-filter-loading {
    opacity: 0.55;
    pointer-events: none;
}

.unihair-shop-page .uh-apply-btn {
    width: 100%;
    height: 42px;
    margin-top: 14px;
    border: 0;
    border-radius: 7px;
    background: var(--uh-main);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.unihair-shop-page .uh-apply-btn:hover {
    background: var(--uh-main-dark);
    box-shadow: 0 10px 22px rgba(225, 55, 114, 0.22);
    transform: translateY(-1px);
}

/* Product grid */
.unihair-shop-page .uh-product-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.unihair-shop-page .uh-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid var(--uh-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 230ms ease, box-shadow 230ms ease, border-color 230ms ease;
}

.unihair-shop-page .uh-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 55, 114, 0.32);
    box-shadow: var(--uh-shadow);
}

.unihair-shop-page .uh-product-thumb {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    background: linear-gradient(180deg, #fff9fc 0%, var(--uh-soft-2) 100%);
}

.unihair-shop-page .uh-product-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.unihair-shop-page .uh-product-thumb-link img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 420ms ease;
}

.unihair-shop-page .uh-product-card:hover .uh-product-thumb-link img {
    transform: scale(1.055);
}

.unihair-shop-page .uh-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--uh-main);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.unihair-shop-page .uh-quick-view-btn {
    width: 100%;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0;
    border: 1px solid rgba(225, 55, 114, 0.35);
    border-radius: 5px;
    background: #fff;
    color: var(--uh-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.unihair-shop-page .uh-quick-view-btn:hover {
    transform: translateY(-1px);
    border-color: var(--uh-main);
    background: var(--uh-main);
    color: #fff;
    box-shadow: 0 8px 20px rgba(225, 55, 114, 0.22);
}

.unihair-shop-page .uh-quick-view-btn svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.unihair-shop-page .uh-product-info {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 13px 14px;
}

.unihair-shop-page .uh-product-main {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.unihair-shop-page .uh-product-cat {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;
    display: inline-flex;
    max-width: calc(100% - 24px);
    margin-bottom: 0;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #1f1f1f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
    backdrop-filter: blur(6px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unihair-shop-page .uh-product-title {
    min-height: 40px;
    margin: 0;
    color: #1f1f1f;
    display: -webkit-box;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.42;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.unihair-shop-page .uh-product-title a {
    color: inherit;
    text-decoration: none;
}

.unihair-shop-page .uh-product-title a:hover {
    color: var(--uh-main);
}

.unihair-shop-page .uh-product-price {
    min-height: 44px;
    margin-bottom: 0;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    font-size: 15px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.unihair-shop-page .uh-product-price-contact {
    font-weight: 600;
    color: #2b2b2b;
}

.unihair-shop-page .uh-product-price del {
    margin-right: 6px;
    color: #9a9a9a;
    font-size: 12px;
    font-weight: 600;
}

.unihair-shop-page .uh-product-price ins {
    color: var(--uh-main);
    text-decoration: none;
}

.unihair-shop-page .uh-product-cta {
    margin-top: auto;
    padding-top: 2px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    gap: 8px;
    align-items: stretch;
}

.unihair-shop-page .uh-product-cta > * {
    width: 100%;
}

.unihair-shop-page .uh-product-card .added_to_cart.wc-forward {
    display: none !important;
}

.unihair-shop-page .uh-request-btn {
    width: 100%;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 14px;
    border: 1px solid rgba(225, 55, 114, 0.35);
    border-radius: 5px;
    background: #fff;
    color: var(--uh-main);
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0 !important;
    text-align: center;
    text-transform: none !important;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.unihair-shop-page .uh-request-btn:hover {
    background: var(--uh-main);
    border-color: var(--uh-main);
    color: #fff;
    box-shadow: 0 8px 20px rgba(225, 55, 114, 0.22);
}

.unihair-shop-page .uh-request-btn--cart {
    background: var(--uh-main);
    border-color: var(--uh-main);
    color: #fff;
}

.unihair-shop-page .uh-request-btn--cart:hover {
    background: var(--uh-main-dark);
    border-color: var(--uh-main-dark);
}

.unihair-shop-page .uh-request-btn--quote {
    background: #fff;
    color: var(--uh-main);
}

html.uh-quick-view-open,
body.uh-quick-view-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body.uh-quick-view-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

.uh-quick-view-overlay {
    position: fixed;
    inset: 0;
    z-index: 99997;
    background: rgba(15, 15, 15, 0.52);
    opacity: 0;
    transition: opacity 180ms ease;
}

.uh-quick-view-overlay.is-active {
    opacity: 1;
}

.uh-quick-view-lightbox {
    --uh-quick-view-shell-height: min(760px, calc(var(--uh-quick-view-viewport-height, 100vh) - 32px));
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(1040px, calc(100vw - 32px));
    max-width: 1040px;
    height: var(--uh-quick-view-shell-height);
    max-height: var(--uh-quick-view-shell-height);
    margin: 0 auto;
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

.uh-quick-view-lightbox.is-fallback-open {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99998;
    width: min(1040px, calc(100vw - 32px));
    height: var(--uh-quick-view-shell-height);
    max-height: var(--uh-quick-view-shell-height);
    overflow: hidden;
    transform: translate(-50%, -50%);
    box-shadow: 0 28px 70px rgba(15, 15, 15, 0.24);
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

.mfp-wrap .uh-quick-view-lightbox {
    height: var(--uh-quick-view-shell-height);
    max-height: var(--uh-quick-view-shell-height);
    overflow: hidden;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

.uh-quick-view-lightbox .uh-quick-view-close {
    display: none;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(31, 31, 31, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f1f1f;
    font-size: 24px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    text-transform: inherit;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.uh-quick-view-lightbox .uh-quick-view-close:hover {
    transform: translateY(-1px);
    border-color: rgba(225, 55, 114, 0.25);
    background: var(--uh-main);
    color: #fff;
}

.uh-quick-view-lightbox.is-fallback-open .uh-quick-view-close {
    display: inline-flex;
}

.uh-quick-view-lightbox .uh-quick-view-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

.uh-quick-view-lightbox .uh-quick-view-loading,
.uh-quick-view-lightbox .uh-quick-view-error {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    color: var(--uh-muted);
    font-size: 15px;
    text-align: center;
}

.uh-quick-view-lightbox .uh-quick-view-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.uh-quick-view-lightbox .uh-quick-view-gallery {
    min-width: 0;
    position: sticky;
    top: 0;
    align-self: start;
}

.uh-quick-view-lightbox .uh-quick-view-main-image {
    margin-bottom: 14px;
    border-radius: 16px;
    overflow: hidden;
    height: var(--uh-quick-view-image-height, 430px);
    background: linear-gradient(180deg, #fff9fc 0%, var(--uh-soft-2) 100%);
}

.uh-quick-view-lightbox .uh-quick-view-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.uh-quick-view-lightbox .uh-quick-view-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    gap: 10px;
}

.uh-quick-view-lightbox .uh-quick-view-thumb {
    padding: 0;
    border: 1px solid var(--uh-border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.uh-quick-view-lightbox .uh-quick-view-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uh-quick-view-lightbox .uh-quick-view-thumb:hover,
.uh-quick-view-lightbox .uh-quick-view-thumb.is-active {
    border-color: rgba(225, 55, 114, 0.38);
    box-shadow: 0 8px 18px rgba(225, 55, 114, 0.12);
    transform: translateY(-1px);
}

.uh-quick-view-lightbox .uh-quick-view-summary {
    min-width: 0;
    display: grid;
    gap: 16px;
}

.uh-quick-view-lightbox .uh-quick-view-cat {
    display: inline-flex;
    justify-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--uh-soft);
    color: var(--uh-main);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.uh-quick-view-lightbox .uh-quick-view-title {
    margin: 0;
    color: #171717;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.uh-quick-view-lightbox .uh-quick-view-price {
    margin-bottom: 0;
    color: #1f1f1f;
    font-size: 24px;
    font-weight: 900;
}

.uh-quick-view-lightbox .uh-quick-view-price del {
    margin-right: 8px;
    color: #9a9a9a;
    font-size: 16px;
    font-weight: 600;
}

.uh-quick-view-lightbox .uh-quick-view-price ins {
    color: var(--uh-main);
    text-decoration: none;
}

.uh-quick-view-lightbox .uh-quick-view-purchase {
    padding: 20px;
    border: 1px solid rgba(225, 55, 114, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
}

.uh-quick-view-lightbox .uh-quick-view-feedback {
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(225, 55, 114, 0.2);
    border-radius: 10px;
    background: rgba(225, 55, 114, 0.08);
    color: #8a2049;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.uh-quick-view-lightbox .uh-quick-view-purchase form.cart {
    margin: 0;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .cart,
.uh-quick-view-lightbox .uh-quick-view-purchase .variations_form {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .variations_form {
    display: block;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .quantity {
    display: inline-flex;
    align-items: stretch;
    margin-right: 0;
    border: 1px solid var(--uh-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .quantity .qty {
    width: 48px;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: center;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .quantity.buttons_added .qty {
    border-left: 1px solid var(--uh-border);
    border-right: 1px solid var(--uh-border);
}

.uh-quick-view-lightbox .uh-quick-view-purchase .quantity .minus,
.uh-quick-view-lightbox .uh-quick-view-purchase .quantity .plus,
.uh-quick-view-lightbox .uh-quick-view-purchase .quantity .ux-quantity__button {
    width: 34px;
    min-width: 34px;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: var(--uh-main);
    box-shadow: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    cursor: pointer;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .button,
.uh-quick-view-lightbox .uh-quick-view-purchase button.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--uh-main);
    border: 1px solid var(--uh-main);
    color: #fff;
    box-shadow: none;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .button:hover,
.uh-quick-view-lightbox .uh-quick-view-purchase button.single_add_to_cart_button:hover {
    background: var(--uh-main-dark);
    border-color: var(--uh-main-dark);
}

.uh-quick-view-lightbox .uh-quick-view-purchase table.variations {
    width: 100%;
    margin-bottom: 14px;
}

.uh-quick-view-lightbox .uh-quick-view-purchase table.variations th,
.uh-quick-view-lightbox .uh-quick-view-purchase table.variations td {
    padding-bottom: 12px;
    vertical-align: middle;
}

.uh-quick-view-lightbox .uh-quick-view-purchase table.variations select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--uh-border);
    border-radius: 12px;
    background: #fff;
    padding: 0 14px;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .reset_variations {
    color: var(--uh-main);
    font-size: 12px;
    font-weight: 700;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .single_variation {
    margin-bottom: 14px;
}

.uh-quick-view-lightbox .uh-quick-view-purchase .woocommerce-variation-price {
    color: var(--uh-main);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.uh-quick-view-lightbox .uh-quick-view-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.uh-quick-view-lightbox .uh-quick-view-detail-link,
.uh-quick-view-lightbox .uh-quick-view-support-link,
.uh-quick-view-lightbox .uh-quick-view-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(225, 55, 114, 0.2);
    border-radius: 12px;
    color: var(--uh-main);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: border-color 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.uh-quick-view-lightbox .uh-quick-view-support-link {
    background: rgba(225, 55, 114, 0.06);
    gap: 8px;
}

.uh-quick-view-lightbox .uh-quick-view-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.uh-quick-view-lightbox .uh-quick-view-support-icon svg {
    display: block;
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.uh-quick-view-lightbox .uh-quick-view-support-text {
    display: inline-flex;
    align-items: center;
}

.uh-quick-view-lightbox .uh-quick-view-detail-link:hover,
.uh-quick-view-lightbox .uh-quick-view-support-link:hover,
.uh-quick-view-lightbox .uh-quick-view-product-link:hover {
    border-color: var(--uh-main);
    color: var(--uh-main-dark);
    box-shadow: 0 10px 22px rgba(225, 55, 114, 0.1);
}

.uh-quick-view-lightbox .uh-quick-view-tabs {
    display: grid;
    gap: 0;
    border: 1px solid var(--uh-border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.uh-quick-view-lightbox .uh-quick-view-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 14px 0;
    border-bottom: 1px solid rgba(225, 55, 114, 0.1);
    scrollbar-width: none;
}

.uh-quick-view-lightbox .uh-quick-view-tab-list::-webkit-scrollbar {
    display: none;
}

.uh-quick-view-lightbox .uh-quick-view-tab-button {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 12px 12px 0 0;
    background: transparent;
    color: #805f6f;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    text-transform: inherit;
}

.uh-quick-view-lightbox .uh-quick-view-tab-button.is-active,
.uh-quick-view-lightbox .uh-quick-view-tab-button[aria-selected="true"] {
    background: rgba(225, 55, 114, 0.08);
    border-color: rgba(225, 55, 114, 0.16);
    color: var(--uh-main);
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel {
    padding: 18px 18px 20px;
    color: #4c4c4c;
    font-size: 14px;
    line-height: 1.72;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel[hidden] {
    display: none !important;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel > :first-child {
    margin-top: 0;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel > :last-child {
    margin-bottom: 0;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel ul,
.uh-quick-view-lightbox .uh-quick-view-tab-panel ol {
    padding-left: 18px;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel table {
    width: 100%;
    border-collapse: collapse;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel table th,
.uh-quick-view-lightbox .uh-quick-view-tab-panel table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(225, 55, 114, 0.1);
    text-align: left;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel table th {
    color: #262626;
    font-weight: 800;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel .woocommerce-Reviews-title,
.uh-quick-view-lightbox .uh-quick-view-tab-panel .comment-reply-title {
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 800;
}

.uh-quick-view-lightbox .uh-quick-view-tab-panel .commentlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Pagination and empty states */
.unihair-shop-page .uh-pagination {
    width: 100%;
    max-width: 100%;
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    overflow: hidden;
}

.unihair-shop-page .uh-pagination > a,
.unihair-shop-page .uh-pagination > span {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--uh-border);
    border-radius: 7px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.unihair-shop-page .uh-pagination > a:hover,
.unihair-shop-page .uh-pagination .current {
    background: var(--uh-main);
    border-color: var(--uh-main);
    color: #fff;
}

.unihair-shop-page .uh-pagination .dots {
    background: transparent;
    border-color: transparent;
    color: #999;
}

.unihair-shop-page .uh-empty {
    padding: 34px 20px;
    border: 1px dashed rgba(225, 55, 114, 0.34);
    border-radius: 12px;
    background: var(--uh-soft-2);
    color: var(--uh-muted);
    text-align: center;
    font-weight: 600;
}

.unihair-shop-page .uh-filter-overlay {
    display: none;
}

.unihair-shop-page .uh-filter-sidebar--drawer-only {
    display: none;
}

/* Responsive */
@media (max-width: 1280px) {
    .unihair-shop-page .uh-shop-layout {
        grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
        gap: 22px;
    }

    .unihair-shop-page .uh-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .unihair-shop-page .unihair-shop-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .unihair-shop-page .uh-shop-top-shortcode {
        margin-bottom: 14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .unihair-shop-page .uh-category-archive-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .unihair-shop-page .uh-category-archive-content--top {
        margin-bottom: 14px;
    }

    .unihair-shop-page .uh-category-archive-content--bottom {
        margin-top: 14px;
    }

    .unihair-shop-page .uh-shop-topbar {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        overflow: visible;
    }

    .unihair-shop-page .uh-shop-tools {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
    }

    .unihair-shop-page .uh-mobile-filter-btn {
        display: none;
    }

    .unihair-shop-page .uh-mobile-filter-fab {
        display: inline-flex;
    }

    .unihair-shop-page .uh-sort-form {
        flex: 1 1 auto;
        min-width: 0;
    }

    .unihair-shop-page .uh-shop-layout {
        display: block;
        overflow: visible;
    }

    .unihair-shop-page .uh-filter-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        z-index: 99999;
        width: 300px;
        max-width: calc(100vw - 48px);
        height: 100vh;
        background: #fff;
        box-shadow: 14px 0 40px rgba(0, 0, 0, 0.18);
        transition: left 260ms ease;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .unihair-shop-page.uh-filter-open .uh-filter-sidebar {
        left: 0;
    }

    .unihair-shop-page .uh-filter-card {
        min-height: 100%;
        border-radius: 0;
        border: 0;
        box-shadow: none;
    }

    .unihair-shop-page .uh-filter-sidebar--drawer-only {
        display: block;
    }

    .unihair-shop-page .uh-filter-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .unihair-shop-page .uh-filter-overlay {
        position: fixed;
        inset: 0;
        z-index: 99998;
        background: rgba(0, 0, 0, 0.38);
        display: none;
    }

    .unihair-shop-page.uh-filter-open .uh-filter-overlay {
        display: block;
    }
}

@media (max-width: 767px) {
    .unihair-shop-page .uh-shop-tools {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .unihair-shop-page .uh-mobile-filter-btn,
    .unihair-shop-page .uh-sort-form,
    .unihair-shop-page .uh-sort-select {
        width: 100%;
        min-width: 0;
    }

    .unihair-shop-page .uh-mobile-filter-fab {
        min-width: 138px;
        min-height: 44px;
        padding: 0 16px;
        font-size: 12px;
    }

    .unihair-shop-page .uh-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px;
    }

    .unihair-shop-page .uh-product-info {
        padding: 10px;
    }

    .unihair-shop-page .uh-product-main {
        gap: 8px;
    }

    .unihair-shop-page .uh-product-title {
        min-height: 38px;
        font-size: 12px;
    }

    .unihair-shop-page .uh-product-price {
        min-height: 40px;
        font-size: 13px;
    }

    .unihair-shop-page .uh-quick-view-btn {
        width: 100%;
        height: 36px;
        min-height: 36px;
        max-height: 36px;
    }

    .unihair-shop-page .uh-request-btn {
        height: 36px;
        min-height: 36px;
        max-height: 36px;
        font-size: 11px;
    }

    .uh-quick-view-lightbox {
        --uh-quick-view-shell-height: calc(var(--uh-quick-view-viewport-height, 100vh) - 16px);
        width: calc(100vw - 16px);
        height: var(--uh-quick-view-shell-height);
        max-height: var(--uh-quick-view-shell-height);
        padding: 14px 12px 14px;
        border-radius: 16px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
    }

    .uh-quick-view-lightbox.is-fallback-open,
    .mfp-wrap .uh-quick-view-lightbox {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .uh-quick-view-lightbox .uh-quick-view-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .uh-quick-view-lightbox .uh-quick-view-gallery {
        position: static;
        top: auto;
    }

    .uh-quick-view-lightbox .uh-quick-view-main-image {
        height: var(--uh-quick-view-image-height-mobile, 320px);
    }

    .uh-quick-view-lightbox .uh-quick-view-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .uh-quick-view-lightbox .uh-quick-view-title {
        font-size: 22px;
    }

    .uh-quick-view-lightbox .uh-quick-view-price {
        font-size: 18px;
    }

    .uh-quick-view-lightbox .uh-quick-view-purchase .woocommerce-variation-price {
        font-size: 18px;
    }

    .uh-quick-view-lightbox .uh-quick-view-close {
        top: 12px;
        right: 12px;
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        max-height: 44px;
        font-size: 26px;
    }

    .uh-quick-view-lightbox .uh-quick-view-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .uh-quick-view-lightbox .uh-quick-view-detail-link,
    .uh-quick-view-lightbox .uh-quick-view-support-link,
    .uh-quick-view-lightbox .uh-quick-view-product-link {
        width: 100%;
        min-height: 40px;
        padding: 10px 12px;
        font-size: 12px;
        line-height: 1.25;
        text-align: center;
    }

    .uh-quick-view-lightbox .uh-quick-view-tab-list {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        justify-content: start;
        gap: 0;
        padding: 10px 10px 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .uh-quick-view-lightbox .uh-quick-view-tab-button {
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .uh-quick-view-lightbox .uh-quick-view-body {
        overflow: visible;
    }
}

@media (max-width: 380px) {
    .unihair-shop-page .uh-product-grid {
        grid-template-columns: 1fr;
    }
}
