:root {
    --ez-bg: #f4f5f7;
    --ez-surface: #ffffff;
    --ez-surface-alt: #f8f8f8;
    --ez-dark: #111111;
    --ez-text: #1f2937;
    --ez-muted: #667085;
    --ez-border: rgba(17, 17, 17, 0.08);
    --ez-orange: #ff4d1f;
    --ez-orange-2: #ff8a18;
    --ez-gradient: linear-gradient(180deg, #ff4319 0%, #ff8a18 100%);
    --ez-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    --ez-radius: 18px;
    --ez-container: 1760px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.ez-shop-body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
    color: var(--ez-text);
    --ez-shop-header-height: 120px;
    overflow-x: hidden;
}

.ez-shop-shell {
    overflow-x: clip;
}

body.ez-shop-nav-open,
body.ez-shop-lightbox-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.ez-shop-topbar__inner,
.ez-shop-headerbar__inner,
.ez-shop-main,
.ez-shop-footer {
    width: min(var(--ez-container), calc(100% - 24px));
    margin: 0 auto;
}

.ez-shop-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
}

.ez-shop-topbar {
    background: #000;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
}

.ez-shop-topbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 12px;
    padding: 10px 0;
}

.ez-shop-topbar__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.ez-shop-topbar__hotline,
.ez-shop-topbar a {
    font-weight: 800;
}

.ez-shop-headerbar {
    border-bottom: 1px solid var(--ez-border);
    background: #fff;
}

.ez-shop-headerbar__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}

.ez-shop-brandset {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ez-shop-headeractions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ez-shop-logo {
    display: inline-flex;
    align-items: center;
}

.ez-shop-logo img {
    width: 124px;
    height: auto;
    object-fit: contain;
}

.ez-shop-masterseal {
    display: inline-flex;
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid rgba(255, 77, 31, 0.28);
    border-radius: 50%;
    background: #fff;
    color: var(--ez-orange);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.ez-shop-headercart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--ez-border);
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--ez-shadow);
    color: var(--ez-dark);
    font-weight: 800;
    white-space: nowrap;
}

.ez-shop-headercart:hover,
.ez-shop-headercart.is-active {
    color: var(--ez-orange);
    background: rgba(255, 77, 31, 0.06);
}

.ez-shop-headercart__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--ez-orange);
}

.ez-shop-headercart__icon svg {
    width: 18px;
    height: 18px;
}

.ez-shop-headercart__sum {
    font-size: 15px;
    line-height: 1;
}

.ez-shop-headercart__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    min-height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--ez-gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.ez-shop-burger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--ez-border);
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--ez-shadow);
    color: var(--ez-dark);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.ez-shop-burger__icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.ez-shop-burger__icon span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ez-orange);
}

.ez-shop-navpanel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--ez-border);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.ez-shop-navpanel.is-open {
    display: grid;
}

.ez-shop-nav {
    display: grid;
    gap: 8px;
}

.ez-shop-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--ez-text);
}

.ez-shop-nav__link:hover,
.ez-shop-nav__link.is-active {
    color: var(--ez-orange);
    background: rgba(255, 77, 31, 0.06);
}

.ez-shop-navpanel__meta {
    display: grid;
    gap: 10px;
}

.ez-shop-navpanel__filters {
    display: none;
}

.ez-shop-cartlink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid var(--ez-border);
    background: #fff;
    color: var(--ez-dark);
    font-weight: 800;
    white-space: nowrap;
}

.ez-shop-cartlink span,
.ez-shop-nav__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--ez-gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.ez-shop-cta,
.ez-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: var(--ez-gradient);
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

.ez-button--secondary {
    background: #111111;
}

.ez-button--ghost {
    background: #fff;
    color: var(--ez-text);
    border-color: var(--ez-border);
}

.ez-shop-cta {
    width: 100%;
}

.ez-shop-main {
    padding: 18px 0 48px;
}

.ez-shop-flash {
    margin-bottom: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--ez-border);
    font-weight: 700;
    box-shadow: var(--ez-shadow);
}

.ez-shop-flash--success {
    background: rgba(36, 138, 61, 0.08);
    color: #1f6b31;
}

.ez-shop-flash--error {
    background: rgba(199, 47, 47, 0.08);
    color: #9c1f1f;
}

.ez-trust-strip {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--ez-border);
    border-radius: 16px;
    box-shadow: var(--ez-shadow);
}

.ez-trust-strip__rating {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.ez-trust-strip__icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.ez-trust-strip__copy {
    display: grid;
    gap: 4px;
}

.ez-trust-strip__stars {
    color: #ffb300;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
}

.ez-trust-strip__copy strong {
    color: var(--ez-dark);
    font-size: 18px;
    line-height: 1.1;
}

.ez-trust-strip__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ez-trust-strip__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 77, 31, 0.08);
    color: var(--ez-orange);
    font-size: 14px;
    font-weight: 800;
}

.ez-eyebrow,
.ez-products__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ez-orange);
}

.ez-shop-headline,
.ez-shop-intro,
.ez-searchbar,
.ez-featured-cats__item,
.ez-sidebar__card,
.ez-product-card,
.ez-product-detail,
.ez-richcopy,
.ez-empty,
.ez-bestseller-hero,
.ez-bestseller-card {
    background: var(--ez-surface);
    border: 1px solid var(--ez-border);
    border-radius: var(--ez-radius);
    box-shadow: var(--ez-shadow);
}

.ez-shop-headline,
.ez-shop-intro {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.ez-shop-headline h1,
.ez-shop-intro h1,
.ez-section-heading h2,
.ez-products__header h2,
.ez-product-detail h1,
.ez-richcopy__header h2,
.ez-bestseller-hero h2 {
    margin: 0;
    color: var(--ez-dark);
    line-height: 1.04;
    letter-spacing: 0;
}

.ez-shop-headline h1,
.ez-shop-intro h1 {
    font-size: clamp(32px, 7vw, 58px);
}

.ez-shop-intro__lead {
    max-width: 780px;
    margin: 8px 0 0;
    color: var(--ez-muted);
    font-size: 17px;
    line-height: 1.65;
}

.ez-shop-intro__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--ez-orange);
    font-weight: 800;
}

.ez-shop-intro__back::before {
    content: "←";
    line-height: 1;
}

.ez-shop-headline__meta,
.ez-shop-intro__meta {
    display: grid;
    gap: 10px;
}

.ez-shop-headline__meta span,
.ez-shop-intro__meta span,
.ez-bestseller-hero__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--ez-surface-alt);
    border: 1px solid var(--ez-border);
    font-weight: 800;
}

.ez-searchbar {
    margin-top: 16px;
    padding: 14px;
}

.ez-searchbar__form {
    display: grid;
    gap: 10px;
}

.ez-searchbar input,
.ez-searchbar select {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #fff;
    color: var(--ez-text);
    font: inherit;
    font-size: 16px;
}

.ez-shop-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.ez-shop-shortcuts__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 12px;
    border-radius: 14px;
    background: #111111;
    color: #fff;
    font-weight: 800;
    text-align: center;
}

.ez-shop-shortcuts__item:nth-child(2) {
    background: var(--ez-gradient);
}

.ez-bestseller-band,
.ez-sortiment-section {
    margin-top: 20px;
}

.ez-bestseller-band {
    display: grid;
    gap: 14px;
}

.ez-bestseller-hero {
    overflow: hidden;
}

.ez-bestseller-hero__media {
    display: block;
    aspect-ratio: 1.15 / 1;
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
}

.ez-bestseller-hero__content {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.ez-bestseller-hero h2 {
    font-size: clamp(24px, 5vw, 38px);
}

.ez-bestseller-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ez-bestseller-hero__actions {
    display: grid;
    gap: 12px;
    align-items: center;
}

.ez-bestseller-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 76%);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
}

.ez-bestseller-card {
    overflow: hidden;
    scroll-snap-align: start;
}

.ez-bestseller-card__image-link {
    display: block;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
}

.ez-bestseller-card__body {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.ez-bestseller-card__body strong,
.ez-bestseller-card__body strong a {
    color: var(--ez-dark);
    line-height: 1.35;
}

.ez-bestseller-card__body span {
    color: var(--ez-muted);
    font-size: 14px;
}

.ez-bestseller-card__body em {
    font-style: normal;
    font-weight: 800;
    color: var(--ez-dark);
}

.ez-section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.ez-featured-cats {
    display: grid;
    gap: 12px;
}

.ez-featured-cats__item {
    display: grid;
    align-content: space-between;
    gap: 8px;
    min-height: 126px;
    padding: 18px;
}

.ez-featured-cats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 77, 31, 0.08);
    color: var(--ez-orange);
}

.ez-featured-cats__icon svg {
    width: 30px;
    height: 30px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ez-featured-cats__item strong {
    display: block;
    font-size: 22px;
    color: var(--ez-dark);
    line-height: 1.2;
}

.ez-featured-cats__item span,
.ez-product-card__meta,
.ez-meta span,
.ez-empty p,
.ez-shop-footer p {
    color: var(--ez-muted);
}

.ez-catalog {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.ez-sidebar {
    display: grid;
    gap: 14px;
}

.ez-mobile-resultsbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: var(--ez-surface);
    border: 1px solid var(--ez-border);
    border-radius: 16px;
    box-shadow: var(--ez-shadow);
}

.ez-mobile-stickyfilters {
    display: grid;
    gap: 12px;
    background: #fff;
    isolation: isolate;
}

.ez-mobile-stickyfilters > * {
    position: relative;
    z-index: 1;
}

.ez-mobile-resultsbar__copy {
    display: grid;
    gap: 4px;
}

.ez-mobile-resultsbar__copy strong {
    color: var(--ez-dark);
    font-size: 18px;
}

.ez-mobile-resultsbar__copy span {
    color: var(--ez-muted);
    font-size: 14px;
}

.ez-mobile-filterpanel {
    margin-bottom: 16px;
    background: var(--ez-surface);
    border: 1px solid var(--ez-border);
    border-radius: 16px;
    box-shadow: var(--ez-shadow);
    overflow: hidden;
}

.ez-mobile-filterpanel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 18px;
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: var(--ez-dark);
}

.ez-mobile-filterpanel summary::-webkit-details-marker {
    display: none;
}

.ez-mobile-filterpanel summary::after {
    content: "+";
    font-size: 24px;
    line-height: 1;
    color: var(--ez-orange);
}

.ez-mobile-filterpanel[open] summary::after {
    content: "–";
}

.ez-mobile-filterpanel .ez-sidebar__card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.ez-sidebar__card {
    padding: 18px;
}

.ez-sidebar__card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--ez-dark);
}

.ez-category-node {
    margin-top: 8px;
    padding-left: calc(var(--depth) * 14px);
}

.ez-category-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.ez-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    font-weight: 700;
}

.ez-category-link:hover,
.ez-category-link.is-active {
    color: var(--ez-orange);
    background: rgba(255, 77, 31, 0.06);
}

.ez-category-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 4px;
    border: 1px solid var(--ez-border);
    border-radius: 12px;
    background: #fff;
    color: var(--ez-dark);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.ez-category-toggle:hover,
.ez-category-toggle.is-open {
    color: var(--ez-orange);
    border-color: rgba(255, 77, 31, 0.22);
}

.ez-category-toggle__chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.ez-category-toggle.is-open .ez-category-toggle__chevron {
    transform: rotate(225deg);
}

.ez-category-children {
    margin-top: 6px;
}

.ez-category-children[hidden] {
    display: none !important;
}

.ez-products__header {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.ez-products__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.ez-products__header h2 {
    font-size: clamp(24px, 6vw, 36px);
}

.ez-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 77, 31, 0.08);
    color: var(--ez-orange);
    font-weight: 800;
}

.ez-product-grid {
    display: grid;
    gap: 14px;
}

.ez-product-card {
    overflow: hidden;
}

.ez-product-card__image-link {
    display: block;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
}

.ez-product-card__image,
.ez-product-detail__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ez-product-card__image--placeholder,
.ez-product-detail__hero-image--placeholder {
    display: grid;
    place-items: center;
    color: var(--ez-muted);
    font-weight: 800;
}

.ez-product-card__body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.ez-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ez-product-card h3,
.ez-product-card h3 a {
    margin: 0;
    color: var(--ez-dark);
    font-size: 18px;
    line-height: 1.32;
}

.ez-product-card__footer {
    display: grid;
    gap: 12px;
    align-items: end;
}

.ez-product-card__actions {
    display: grid;
    gap: 10px;
}

.ez-product-card__actions form {
    display: block;
}

.ez-product-card__actions .ez-button,
.ez-product-card__actions form .ez-button {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.ez-product-card__price strong,
.ez-pricebox strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: var(--ez-dark);
}

.ez-product-card__price span,
.ez-pricebox span {
    display: block;
    margin-top: 6px;
    color: var(--ez-muted);
}

.ez-product-card__price small,
.ez-pricebox small,
.ez-pricebox em {
    display: block;
    margin-top: 6px;
    color: var(--ez-muted);
    font-style: normal;
}

.ez-pricebox__saving {
    color: #ff5b1f !important;
    font-weight: 800;
}

.ez-pricebox {
    display: grid;
    gap: 6px;
}

.ez-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.ez-pagination a,
.ez-pagination span {
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--ez-surface);
    border: 1px solid var(--ez-border);
    font-weight: 800;
}

.ez-pagination .is-current {
    background: var(--ez-gradient);
    color: #fff;
    border-color: transparent;
}

.ez-pagination .is-disabled {
    opacity: 0.45;
}

.ez-product-detail {
    display: grid;
    gap: 20px;
    padding: 18px;
}

.ez-product-detail__media {
    display: grid;
    gap: 12px;
}

.ez-product-detail__hero-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.ez-product-detail__hero-image {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
    padding: 16px;
}

.ez-product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
    gap: 10px;
}

.ez-product-detail__thumb-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid var(--ez-border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ez-product-detail__thumb-button:hover,
.ez-product-detail__thumb-button.is-active {
    border-color: rgba(255, 77, 31, 0.35);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.10);
    transform: translateY(-1px);
}

.ez-product-detail__thumb {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}

.ez-product-lightbox[hidden] {
    display: none;
}

.ez-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
}

.ez-product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.72);
}

.ez-product-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(1100px, calc(100% - 28px));
    min-height: calc(100dvh - 28px);
    margin: 14px auto;
    padding: 54px 18px 24px;
}

.ez-product-lightbox__figure {
    margin: 0;
    width: 100%;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ez-product-lightbox__image {
    width: 100%;
    max-height: min(78dvh, 880px);
    object-fit: contain;
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
    border-radius: 18px;
}

.ez-product-lightbox__caption {
    margin-top: 14px;
    font-weight: 700;
    color: var(--ez-text);
    text-align: center;
}

.ez-product-lightbox__close,
.ez-product-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--ez-dark);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
    cursor: pointer;
}

.ez-product-lightbox__close {
    top: 18px;
    right: 18px;
    font-size: 30px;
    line-height: 1;
}

.ez-product-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
}

.ez-product-lightbox__nav--prev {
    left: 14px;
}

.ez-product-lightbox__nav--next {
    right: 14px;
}

.ez-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--ez-muted);
}

.ez-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.ez-meta span {
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--ez-surface-alt);
    border: 1px solid var(--ez-border);
    font-size: 14px;
}

.ez-product-detail__actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.ez-buybox {
    display: grid;
    gap: 14px;
}

.ez-buybox__quantity,
.ez-order-summary__shipping label,
.ez-form-grid label {
    display: grid;
    gap: 8px;
}

.ez-buybox__quantity span,
.ez-order-summary__shipping span,
.ez-form-grid span {
    font-size: 14px;
    font-weight: 800;
    color: var(--ez-dark);
}

.ez-buybox__actions {
    display: grid;
    gap: 10px;
}

.ez-buybox input,
.ez-order-summary__shipping select,
.ez-form-grid input,
.ez-form-grid textarea {
    min-height: 52px;
    width: 100%;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid var(--ez-border);
    background: #fff;
    color: var(--ez-dark);
    font: inherit;
}

.ez-form-grid textarea {
    min-height: 120px;
    padding: 14px 16px;
    resize: vertical;
}

.ez-richcopy,
.ez-related {
    margin-top: 22px;
}

.ez-richcopy {
    padding: 18px;
}

.ez-richcopy__content {
    color: var(--ez-text);
    line-height: 1.75;
}

.ez-richcopy__content p:first-child {
    margin-top: 0;
}

.ez-richcopy__content ul {
    padding-left: 20px;
}

.ez-richcopy__content li {
    margin-bottom: 8px;
}

.ez-seo-facts {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

.ez-seo-facts__item {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 16px;
    background: var(--ez-surface-alt);
    border: 1px solid var(--ez-border);
}

.ez-seo-facts__item strong {
    color: var(--ez-dark);
}

.ez-seo-facts__item span {
    color: var(--ez-text);
}

.ez-faq-list {
    display: grid;
    gap: 14px;
}

.ez-faq-item {
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--ez-surface-alt);
    border: 1px solid var(--ez-border);
}

.ez-faq-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.ez-faq-item p {
    margin: 0;
}

.ez-checkout-head {
    margin-bottom: 20px;
}

.ez-checkout-head__lead {
    max-width: 780px;
    color: var(--ez-muted);
}

.ez-checkout-layout {
    display: grid;
    gap: 18px;
}

.ez-cart,
.ez-order-summary,
.ez-checkout-card {
    padding: 18px;
}

.ez-cart__table,
.ez-order-summary__items,
.ez-order-summary__rows,
.ez-form-stack {
    display: grid;
    gap: 14px;
}

.ez-cart-item {
    display: grid;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--ez-border);
}

.ez-cart-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.ez-cart-item__image {
    display: block;
    aspect-ratio: 1 / 1;
    max-width: 140px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
    overflow: hidden;
}

.ez-cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ez-cart-item__content,
.ez-cart-item__meta,
.ez-cart-item__pricing,
.ez-cart-item__controls {
    display: grid;
    gap: 12px;
}

.ez-cart-item__meta h2,
.ez-cart-item__meta h2 a {
    margin: 0;
    color: var(--ez-dark);
}

.ez-cart-item__pricing {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.ez-cart-item__pricing strong {
    display: block;
    font-size: 20px;
}

.ez-cart-item__pricing span,
.ez-order-summary__items span:first-child,
.ez-order-summary__hint p {
    color: var(--ez-muted);
}

.ez-cart-item__controls {
    grid-template-columns: minmax(120px, 180px) auto;
    align-items: end;
}

.ez-cart-item__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.ez-button--text {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ez-button--danger {
    color: #d9481f;
    font-weight: 800;
    justify-self: end;
}

.ez-button--danger:hover,
.ez-button--danger:focus-visible {
    color: #b93410;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.ez-order-summary__rows > div,
.ez-order-summary__items > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.ez-order-summary__rows .is-total {
    padding-top: 12px;
    border-top: 1px solid var(--ez-border);
    font-weight: 800;
    color: var(--ez-dark);
}

.ez-order-summary__hint {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 77, 31, 0.06);
    border: 1px solid rgba(255, 77, 31, 0.14);
}

.ez-checkout-form {
    display: grid;
    gap: 18px;
}

.ez-form-grid {
    display: grid;
    gap: 14px;
}

.ez-form-grid__full {
    grid-column: 1 / -1;
}

.ez-radio-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.ez-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--ez-border);
    background: #fff;
}

.ez-choice--stack {
    align-items: flex-start;
}

.ez-choice--stack span {
    display: grid;
    gap: 4px;
}

.ez-choice--stack small,
.ez-choice--terms span {
    color: var(--ez-muted);
}

.ez-choice input[type="radio"],
.ez-choice input[type="checkbox"] {
    margin-top: 4px;
}

.ez-order-status,
.ez-checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ez-empty {
    padding: 22px 18px;
}

.ez-shop-footer {
    margin-top: 36px;
    padding: 42px 22px;
    border-radius: 26px;
    background: var(--ez-gradient);
    color: #fff;
    box-shadow: var(--ez-shadow);
}

.ez-shop-footer__grid {
    display: grid;
    gap: 28px;
    align-items: start;
}

.ez-shop-footer__column {
    display: grid;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.ez-shop-footer strong {
    display: block;
    margin-bottom: 0;
    color: #fff;
    font-size: 18px;
}

.ez-shop-footer p {
    margin: 0;
    line-height: 1.7;
}

.ez-shop-footer a {
    color: inherit;
}

.ez-shop-footer__list,
.ez-shop-footer__contact {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ez-shop-footer__list li {
    position: relative;
    padding-left: 20px;
}

.ez-shop-footer__list li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
}

.ez-shop-footer__list a,
.ez-shop-footer__contact a,
.ez-shop-footer__contact li {
    color: rgba(255, 255, 255, 0.96);
    font-weight: 700;
}

.ez-shop-footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: fit-content;
    padding: 0 24px;
    border-radius: 14px;
    background: rgba(255, 66, 24, 0.92);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.ez-shop-footer__column--brand {
    justify-items: center;
    text-align: center;
}

.ez-shop-footer__logo img {
    width: 210px;
    height: auto;
    object-fit: contain;
}

.ez-shop-footer__brandcopy,
.ez-shop-footer p.ez-shop-footer__brandcopy {
    max-width: 520px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.ez-shop-footer__column--contact {
    justify-items: start;
}

@media (min-width: 768px) {
    .ez-shop-headline,
    .ez-shop-intro,
    .ez-products__header,
    .ez-product-detail__actions,
    .ez-bestseller-hero__actions,
    .ez-section-heading {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }

    .ez-shop-headline__meta,
    .ez-shop-intro__meta,
    .ez-searchbar__form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-searchbar__form {
        grid-template-columns: minmax(0, 1fr) 220px auto;
    }

    .ez-shop-shortcuts {
        grid-template-columns: repeat(3, max-content);
        justify-content: start;
    }

    .ez-bestseller-strip {
        grid-auto-columns: minmax(220px, 280px);
    }

    .ez-featured-cats,
    .ez-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-seo-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-trust-strip {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

    .ez-mobile-resultsbar {
        grid-template-columns: max-content auto;
        justify-content: space-between;
    }

    .ez-button,
    .ez-shop-cta {
        width: auto;
    }

    .ez-product-card__footer {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .ez-buybox__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-checkout-layout {
        grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
        align-items: start;
    }

    .ez-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-radio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-cart-item {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .ez-shop-footer__grid {
        grid-template-columns: 1fr 1.1fr 1fr;
    }

    .ez-shop-footer__column--brand {
        padding-top: 14px;
    }
}

@media (min-width: 1040px) {
    .ez-shop-topbar__inner,
    .ez-shop-headerbar__inner,
    .ez-shop-main,
    .ez-shop-footer {
        width: min(var(--ez-container), calc(100% - 40px));
    }

    .ez-shop-headerbar__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 28px;
        padding: 18px 0;
    }

    .ez-shop-logo img {
        width: 190px;
    }

    .ez-shop-masterseal {
        width: 88px;
        height: 88px;
    }

    .ez-shop-burger {
        display: none;
    }

    .ez-shop-headeractions {
        order: 3;
    }

    .ez-shop-headercart {
        min-height: 48px;
        padding: 0 16px;
    }

    .ez-shop-navpanel {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 18px;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .ez-shop-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .ez-shop-nav__link {
        min-height: 44px;
        padding: 0 12px;
        border-radius: 999px;
    }

    .ez-shop-navpanel__meta {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .ez-shop-cta {
        min-width: 170px;
    }

    .ez-bestseller-band {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
        align-items: stretch;
    }

    .ez-seo-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ez-bestseller-hero {
        display: grid;
        grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    }

    .ez-bestseller-hero__media {
        aspect-ratio: auto;
        min-height: 100%;
    }

    .ez-bestseller-hero__content {
        padding: 24px;
    }

    .ez-bestseller-strip {
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-columns: initial;
        overflow: visible;
        padding-bottom: 0;
    }

    .ez-featured-cats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ez-catalog {
        grid-template-columns: 310px minmax(0, 1fr);
        align-items: start;
    }

    .ez-sidebar {
        position: static;
    }

    .ez-mobile-stickyfilters,
    .ez-mobile-resultsbar,
    .ez-mobile-filterpanel {
        display: none;
    }

    .ez-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ez-product-detail {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        padding: 24px;
    }

    .ez-shop-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1440px) {
    .ez-product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1039px) {
    .ez-shop-header {
        z-index: 120;
    }

    .ez-shop-headerbar__inner {
        z-index: 121;
    }

    .ez-shop-navpanel {
        z-index: 140;
    }

    .ez-shop-navpanel.is-open {
        position: fixed;
        top: calc(var(--ez-shop-header-height, 120px) - 10px);
        left: 12px;
        right: 12px;
        max-height: calc(100dvh - var(--ez-shop-header-height, 120px) - 20px);
        overflow: auto;
        overscroll-behavior: contain;
    }

    .ez-shop-navpanel__filters {
        display: grid;
        gap: 12px;
        padding-top: 4px;
        border-top: 1px solid var(--ez-border);
    }

    .ez-shop-mobile-navfilters {
        display: grid;
        gap: 10px;
    }

    .ez-shop-mobile-navfilters__title {
        font-size: 16px;
        color: var(--ez-dark);
    }

    .ez-shop-mobile-navfilters__tree {
        display: grid;
        gap: 4px;
    }

    .ez-mobile-stickyfilters {
        position: sticky;
        top: var(--ez-shop-header-height, 120px);
        z-index: 16;
        margin-bottom: 16px;
        padding: 0 0 8px;
        background: transparent;
    }

    .ez-mobile-stickyfilters::before {
        content: "";
        position: absolute;
        inset: -18px -18px -8px;
        background: #fff;
        z-index: 0;
        pointer-events: none;
    }

    .ez-catalog {
        grid-template-columns: minmax(0, 1fr);
    }

    .ez-sidebar {
        display: none;
    }

    .ez-products {
        order: -1;
    }

    .ez-shop-footer {
        padding: 34px 18px;
        border-radius: 22px;
    }

    .ez-shop-footer__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ez-shop-footer__column--brand,
    .ez-shop-footer__column--contact {
        justify-items: start;
        text-align: left;
    }

    .ez-shop-footer__logo img {
        width: 170px;
    }

    .ez-shop-footer__button {
        width: 100%;
    }

    .ez-cart-item__controls {
        grid-template-columns: 1fr;
    }

    .ez-cart-item__actions {
        grid-template-columns: 1fr;
    }

    .ez-button--danger {
        justify-self: start;
    }

    .ez-buybox__actions {
        grid-template-columns: 1fr;
    }
}


/* Codex Shop Redesign April 2026 */
body.ez-shop-body {
    background:
        radial-gradient(circle at top right, rgba(255, 138, 24, 0.12), transparent 28%),
        linear-gradient(180deg, #fffdfa 0%, #f4f5f7 54%, #eef1f4 100%);
}

.ez-shop-topbar {
    background: #050505;
}

.ez-shop-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84));
    backdrop-filter: blur(18px);
}

.ez-shop-headerbar {
    border-bottom: 0;
    background: transparent;
}

.ez-shop-headerbar__inner {
    padding: 14px 16px;
    margin-top: 12px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.ez-shop-nav__link {
    font-weight: 800;
}

.ez-shop-nav__link.is-active,
.ez-shop-nav__link:hover {
    color: var(--ez-orange);
    background: rgba(255, 77, 31, 0.08);
}

.ez-shop-cartlink,
.ez-shop-cta,
.ez-shop-headercart,
.ez-shop-burger {
    box-shadow: none;
}

.ez-shop-cartlink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: #fff;
    font-weight: 800;
}

.ez-shop-cta {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 16px;
    background: var(--ez-gradient);
    color: #fff;
    box-shadow: 0 18px 34px rgba(255, 94, 31, 0.26);
}

.ez-shop-headercart {
    min-height: 48px;
    border-radius: 16px;
    background: #fff;
}

.ez-shop-main {
    padding-top: 18px;
}

.ez-button,
.ez-button--ghost,
.ez-button--secondary {
    border-radius: 16px;
}

.ez-shop-home {
    display: grid;
    gap: 22px;
}

.ez-shop-hero {
    position: relative;
    display: grid;
    gap: 22px;
    padding: clamp(20px, 3vw, 34px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 75% 25%, rgba(255, 138, 24, 0.15), transparent 28%),
        linear-gradient(180deg, #fffefe 0%, #f6f7f9 100%);
    border: 1px solid rgba(17, 24, 39, 0.07);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
    overflow: hidden;
}

.ez-shop-hero__copy,
.ez-shop-hero__visual,
.ez-shop-hero__offer,
.ez-shop-hero__offer-footer,
.ez-shop-hero__productline {
    display: grid;
    gap: 14px;
}

.ez-shop-hero__eyebrow {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ez-orange);
}

.ez-shop-hero h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 0.98;
    color: #16181d;
}

.ez-shop-hero h1 span {
    display: inline;
    color: #587a2f;
    background: none;
}

.ez-shop-hero__intro {
    margin: 0;
    max-width: 50ch;
    font-size: clamp(18px, 2.4vw, 26px);
    line-height: 1.45;
    color: #2c3442;
}

.ez-shop-hero__productline {
    align-items: center;
    color: var(--ez-muted);
    font-size: 14px;
}

.ez-shop-hero__productline strong {
    color: #111827;
    font-size: 16px;
}

.ez-shop-hero__pill,
.ez-shop-hero__benefit,
.ez-spotlight-card__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.ez-shop-hero__pill {
    background: rgba(255, 77, 31, 0.09);
    color: var(--ez-orange);
}

.ez-shop-hero__actions,
.ez-shop-hero__offer-actions {
    display: grid;
    gap: 12px;
}

.ez-shop-hero__primary {
    background: var(--ez-gradient);
    color: #fff;
    box-shadow: 0 22px 38px rgba(255, 94, 31, 0.24);
}

.ez-shop-hero__secondary {
    background: #fff;
    color: #111827;
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.ez-shop-hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ez-shop-hero__benefit {
    gap: 8px;
    background: #fff;
    color: #1f2937;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.05);
}

.ez-shop-hero__benefit::before {
    content: "✓";
    color: #1ea54c;
    font-weight: 900;
}

.ez-shop-hero__visual {
    align-content: start;
}

.ez-shop-hero__image-shell,
.ez-shop-hero__offer,
.ez-trust-strip,
.ez-shop-shortcuts__item,
.ez-featured-cats__item,
.ez-product-card,
.ez-spotlight-card,
.ez-searchbar,
.ez-shop-intro,
.ez-products__header,
.ez-mobile-resultsbar,
.ez-mobile-filterpanel,
.ez-sidebar__card {
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.ez-shop-hero__image-shell {
    position: relative;
    min-height: 360px;
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.ez-shop-hero__bubble,
.ez-spotlight-card__flag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--ez-gradient);
    color: #fff;
    box-shadow: 0 18px 32px rgba(255, 94, 31, 0.26);
}

.ez-shop-hero__image-link {
    display: block;
    height: 100%;
}

.ez-shop-hero__image-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ez-shop-hero__offer {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
}

.ez-shop-hero__offer-label,
.ez-spotlight-card__category {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ez-orange);
}

.ez-shop-hero__offer h2,
.ez-spotlight-card__body h3 {
    margin: 0;
    color: #111827;
}

.ez-shop-hero__offer h2 {
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.06;
}

.ez-shop-hero__offer p {
    margin: 0;
    color: var(--ez-muted);
    line-height: 1.6;
}

.ez-shop-hero__cartform,
.ez-product-card__actions form {
    display: block;
}

.ez-shop-hero__cartform .ez-button,
.ez-shop-hero__offer-actions .ez-button,
.ez-spotlight-card .ez-button {
    width: 100%;
}

.ez-spotlight-section {
    display: grid;
    gap: 16px;
}

.ez-section-heading--inline {
    align-items: end;
}

.ez-spotlight-grid {
    display: grid;
    gap: 16px;
}

.ez-spotlight-card {
    position: relative;
    display: grid;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}

.ez-spotlight-card__image-link {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.9;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.ez-spotlight-card__body {
    display: grid;
    gap: 10px;
    padding: 18px 18px 20px;
}

.ez-spotlight-card__body h3 {
    font-size: 20px;
    line-height: 1.2;
}

.ez-spotlight-card__price {
    display: grid;
    gap: 4px;
}

.ez-spotlight-card__price strong {
    font-size: 28px;
    line-height: 1;
    color: #16181d;
}

.ez-spotlight-card__price span {
    color: var(--ez-muted);
    font-size: 14px;
}

.ez-trust-strip {
    border-radius: 26px;
    background: #fff;
}

.ez-shop-shortcuts {
    gap: 12px;
}

.ez-shop-shortcuts__item {
    min-height: 60px;
    padding: 0 18px;
    border-radius: 18px;
    background: #fff;
    color: #111827;
}

.ez-shop-shortcuts__item:nth-child(2) {
    color: #fff;
}

.ez-searchbar--home {
    margin-top: 4px;
}

.ez-searchbar,
.ez-shop-intro,
.ez-products__header,
.ez-sidebar__card,
.ez-product-card,
.ez-featured-cats__item {
    border-radius: 24px;
}

.ez-searchbar__form {
    gap: 12px;
}

.ez-searchbar input,
.ez-searchbar select {
    min-height: 56px;
    border-radius: 16px;
    background: #fff;
}

.ez-featured-cats__item {
    min-height: 158px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.ez-product-card {
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ez-product-card:hover,
.ez-spotlight-card:hover,
.ez-featured-cats__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 77, 31, 0.18);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

.ez-product-card__image-link {
    aspect-ratio: 1 / 0.92;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.ez-product-card__body {
    gap: 14px;
}

.ez-product-card__meta {
    gap: 10px;
    font-size: 11px;
}

.ez-product-card__actions {
    gap: 10px;
}

.ez-product-card__actions .ez-button,
.ez-product-card__actions form .ez-button {
    min-height: 48px;
}

@media (min-width: 768px) {
    .ez-shop-hero__actions,
    .ez-shop-hero__offer-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-spotlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-featured-cats,
    .ez-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1040px) {
    .ez-shop-headerbar__inner {
        padding: 16px 22px;
        border-radius: 30px;
    }

    .ez-shop-home {
        gap: 24px;
    }

    .ez-shop-hero {
        grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
        align-items: stretch;
    }

    .ez-shop-hero__copy {
        align-content: center;
        max-width: 690px;
        padding-right: 8px;
    }

    .ez-shop-hero__visual {
        display: block;
    }

    .ez-shop-hero h1 {
        max-width: 10.8ch;
        font-size: clamp(58px, 5.2vw, 84px);
        line-height: 0.96;
    }

    .ez-shop-hero__intro {
        max-width: 28ch;
        font-size: clamp(18px, 1.75vw, 23px);
    }

    .ez-shop-hero__scene {
        min-height: 720px;
        background-position: center center;
    }

    .ez-shop-hero__scene::before {
        background:
            radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 18%, rgba(255, 255, 255, 0.62) 34%, rgba(255, 255, 255, 0) 56%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.4) 28%, rgba(255, 255, 255, 0) 52%);
    }

    .ez-shop-hero__label {
        display: none;
    }

    .ez-shop-hero__reviews {
        left: 58px;
        right: auto;
        bottom: 26px;
        width: min(640px, calc(100% - 110px));
        padding: 22px;
        border-radius: 28px;
    }

    .ez-shop-hero__reviews-head {
        gap: 10px;
    }

    .ez-shop-hero__reviews-score {
        gap: 12px;
    }

    .ez-shop-hero__reviews strong {
        font-size: clamp(22px, 2.5vw, 30px);
    }

    .ez-shop-hero__reviews-verified strong {
        font-size: clamp(24px, 2.7vw, 34px);
    }

    .ez-shop-hero__review-card {
        padding: 16px;
        gap: 12px;
    }

    .ez-shop-hero__review-quote {
        font-size: 16px;
    }

    .ez-spotlight-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .ez-featured-cats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ez-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1039px) {
    .ez-shop-headerbar__inner {
        margin-top: 0;
    }

    .ez-shop-hero h1 {
        max-width: 11.5ch;
    }
}

@media (max-width: 767px) {
    .ez-shop-header {
        position: sticky;
        top: 0;
    }

    .ez-shop-main {
        padding-top: 8px;
    }

    .ez-product-detail {
        gap: 16px;
        padding: 14px;
    }

    .ez-product-detail__media {
        gap: 10px;
    }

    .ez-product-detail__hero-image {
        aspect-ratio: auto;
        min-height: 280px;
        max-height: 420px;
        padding: 12px;
        object-fit: contain;
    }

    .ez-product-detail__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .ez-product-detail__thumb {
        width: 100%;
        max-width: 100%;
        padding: 6px;
    }

    .ez-shop-home {
        gap: 16px;
    }

    .ez-shop-hero,
    .ez-spotlight-card,
    .ez-searchbar,
    .ez-shop-intro,
    .ez-products__header,
    .ez-sidebar__card,
    .ez-product-card,
    .ez-featured-cats__item,
    .ez-trust-strip,
    .ez-shop-shortcuts__item {
        border-radius: 22px;
    }

    .ez-shop-hero__image-shell {
        min-height: 280px;
    }

    .ez-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .ez-spotlight-card__flag {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
        min-height: 42px;
        padding: 8px 12px;
        font-size: 12px;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .ez-spotlight-card__image-link,
    .ez-product-card__image-link {
        padding: 16px;
    }

    .ez-spotlight-card__body,
    .ez-product-card__body {
        padding: 16px;
    }

    .ez-spotlight-card .ez-button,
    .ez-product-card .ez-button,
    .ez-product-card__actions form .ez-button {
        min-height: 56px;
        height: auto;
        padding: 12px 16px;
        line-height: 1.2;
        white-space: normal;
    }

    .ez-spotlight-card__body h3 {
        font-size: 17px;
    }

    .ez-spotlight-card__price strong,
    .ez-product-card__price strong,
    .ez-pricebox strong {
        font-size: 24px;
    }
}

/* Hero scene restore */
.ez-shop-hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    align-items: stretch;
}

.ez-shop-hero__copy {
    align-content: center;
}

.ez-shop-hero__visual {
    display: block;
}

.ez-shop-hero__scene {
    position: relative;
    min-height: 680px;
    border-radius: 32px;
    overflow: hidden;
    background-color: #f4f6f8;
    background-image: url("/assets/klima-zentrum-showroom-klimaanlagen-wien.png");
    background-position: 68% center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.ez-shop-hero__scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 50%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 22%, rgba(255, 255, 255, 0.55) 36%, rgba(255, 255, 255, 0) 56%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.38) 30%, rgba(255, 255, 255, 0) 56%);
    pointer-events: none;
    z-index: 1;
}

.ez-shop-hero__label {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 26px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.78);
    background: linear-gradient(90deg, #5d8040 0%, #6e8b47 45%, #ff980f 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.ez-shop-hero__label--pv {
    top: 72px;
    right: 34px;
}

.ez-shop-hero__label--balcony {
    top: 292px;
    left: 94px;
}

.ez-shop-hero__label--wallbox {
    right: 196px;
    bottom: 142px;
}

.ez-shop-hero__label--heat {
    right: 28px;
    bottom: 142px;
}

.ez-shop-hero__reviews {
    position: absolute;
    left: 64px;
    right: 56px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 30px;
    background: rgba(255, 248, 240, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(10px);
}

.ez-shop-hero__reviews-head,
.ez-shop-hero__reviews-score,
.ez-shop-hero__reviews-verified,
.ez-shop-hero__review-card {
    display: flex;
    align-items: center;
}

.ez-shop-hero__reviews-head {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.ez-shop-hero__reviews-score {
    gap: 14px;
    flex-wrap: wrap;
}

.ez-shop-hero__reviews-badge,
.ez-shop-hero__reviews-check,
.ez-shop-hero__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    font-weight: 800;
}

.ez-shop-hero__reviews-badge {
    width: 50px;
    height: 50px;
    background: #fff2dd;
    font-size: 24px;
}

.ez-shop-hero__stars,
.ez-shop-hero__review-stars {
    color: #ffab18;
    letter-spacing: 0.08em;
}

.ez-shop-hero__reviews strong {
    color: #16181d;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1;
}

.ez-shop-hero__reviews-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 24, 39, 0.08);
    color: #303744;
    font-size: 18px;
    font-weight: 800;
}

.ez-shop-hero__reviews-verified {
    gap: 14px;
}

.ez-shop-hero__reviews-check {
    width: 50px;
    height: 50px;
    background: #e5f5d9;
    color: #33a34a;
    font-size: 26px;
}

.ez-shop-hero__reviews-verified strong {
    font-size: clamp(28px, 3vw, 38px);
}

.ez-shop-hero__reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ez-shop-hero__review-card {
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.ez-shop-hero__avatar {
    width: 64px;
    height: 64px;
    background: #4b607a;
    color: #fff;
    font-size: 22px;
}

.ez-shop-hero__avatar--alt {
    background: #b6793d;
}

.ez-shop-hero__review-card p {
    margin: 0;
}

.ez-shop-hero__review-quote {
    margin-top: 6px;
    color: #202633;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.ez-shop-hero__review-author {
    margin-top: 8px;
    color: #5f6b7e;
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 1039px) {
    .ez-shop-hero {
        grid-template-columns: 1fr;
    }

    .ez-shop-hero__scene {
        min-height: 760px;
    }

    .ez-shop-hero__scene::before {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.68) 24%, rgba(255, 255, 255, 0.1) 48%, rgba(255, 255, 255, 0) 62%),
            radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 34%);
    }

    .ez-shop-hero__label {
        min-height: 50px;
        padding: 0 20px;
        font-size: 16px;
    }

    .ez-shop-hero__label--pv {
        top: 138px;
        right: 20px;
    }

    .ez-shop-hero__label--balcony {
        top: 330px;
        left: 18px;
    }

    .ez-shop-hero__label--wallbox {
        right: 132px;
        bottom: 120px;
    }

    .ez-shop-hero__label--heat {
        right: 14px;
        bottom: 120px;
    }

    .ez-shop-hero__reviews {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
        border-radius: 24px;
    }

    .ez-shop-hero__reviews-grid {
        grid-template-columns: 1fr;
    }

    .ez-shop-hero__review-quote {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .ez-shop-hero {
        position: relative;
        min-height: 860px;
        padding: 18px 16px 18px;
        gap: 12px;
        background: linear-gradient(180deg, #fdfcfb 0%, #f5f7f8 100%);
    }

    .ez-shop-hero h1 {
        max-width: 10.8ch;
        font-size: clamp(36px, 10vw, 52px);
        line-height: 1.02;
    }

    .ez-shop-hero__intro {
        max-width: 24ch;
        font-size: 16px;
        line-height: 1.45;
        color: rgba(30, 38, 52, 0.86);
    }

    .ez-shop-hero__copy {
        position: relative;
        z-index: 3;
        display: grid;
        align-content: start;
        max-width: 330px;
        gap: 12px;
        margin-top: 0;
    }

    .ez-shop-hero__actions {
        display: block;
        max-width: 320px;
    }

    .ez-shop-hero__primary {
        width: auto;
        min-height: 54px;
        padding: 0 22px;
    }

    .ez-shop-hero__visual {
        display: contents;
    }

    .ez-shop-hero__benefits {
        position: relative;
        z-index: 3;
        gap: 8px;
        max-width: 320px;
    }

    .ez-shop-hero__benefit {
        padding: 8px 12px;
        font-size: 12px;
        background: rgba(255, 255, 255, 0.96);
    }

    .ez-shop-hero__benefit:last-child {
        display: none;
    }

    .ez-shop-hero__scene {
        position: absolute;
        inset: 0;
        min-height: 100%;
        border-radius: 26px;
        background-image: url("/assets/klima-zentrum-showroom-klimaanlagen-wien-mobil.webp");
        background-position: 56% center;
        background-size: cover;
        box-shadow: none;
    }

    .ez-shop-hero__scene::before {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.46) 58%, rgba(255, 255, 255, 0.08) 86%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.38) 28%, rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0.16) 100%);
    }

    .ez-shop-hero__label--pv {
        top: 250px;
        right: 14px;
    }

    .ez-shop-hero__label--balcony {
        top: 476px;
        left: 20px;
    }

    .ez-shop-hero__label--wallbox {
        right: 118px;
        bottom: 148px;
    }

    .ez-shop-hero__label--heat {
        right: 10px;
        bottom: 148px;
    }

    .ez-shop-hero__label {
        display: none !important;
    }

    .ez-shop-hero__reviews strong {
        font-size: 18px;
    }

    .ez-shop-hero__reviews-count {
        min-width: 46px;
        min-height: 38px;
        font-size: 14px;
    }

    .ez-shop-hero__reviews-badge,
    .ez-shop-hero__reviews-check {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .ez-shop-hero__reviews-verified strong {
        font-size: 18px;
    }

    .ez-shop-hero__reviews {
        position: relative;
        z-index: 3;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 10px;
        gap: 12px;
        padding: 14px;
        border-radius: 20px;
        background: rgba(255, 248, 240, 0.94);
        backdrop-filter: blur(6px);
    }

    .ez-shop-hero__reviews-head {
        gap: 10px;
    }

    .ez-shop-hero__reviews-score {
        gap: 8px;
    }

    .ez-shop-hero__reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ez-shop-hero__review-card {
        gap: 10px;
        padding: 10px;
        border-radius: 18px;
    }

    .ez-shop-hero__avatar {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .ez-shop-hero__review-stars {
        font-size: 12px;
    }

    .ez-shop-hero__review-quote {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.3;
    }

    .ez-shop-hero__review-author {
        margin-top: 6px;
        font-size: 11px;
        line-height: 1.3;
    }
}

@media (max-width: 430px) {
    .ez-shop-hero {
        min-height: 820px;
        padding: 12px 14px 16px;
    }

    .ez-shop-hero h1 {
        max-width: 10.2ch;
        font-size: clamp(34px, 10.2vw, 46px);
    }

    .ez-shop-hero__intro {
        max-width: 22ch;
        font-size: 14px;
    }

    .ez-shop-hero__benefits {
        max-width: 300px;
    }

    .ez-shop-hero__reviews-grid {
        grid-template-columns: 1fr;
    }

    .ez-product-detail__hero-image {
        min-height: 250px;
        max-height: 360px;
        padding: 10px;
    }

    .ez-product-detail__thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ez-spotlight-card__flag {
        min-height: 40px;
        font-size: 11px;
        padding: 8px 10px;
    }

    .ez-spotlight-card .ez-button,
    .ez-product-card .ez-button,
    .ez-product-card__actions form .ez-button {
        min-height: 54px;
        padding: 11px 14px;
        font-size: 15px;
    }
}

@media (min-width: 1040px) {
    .ez-shop-hero {
        position: relative;
        display: block;
        min-height: 724px;
        padding: 34px 38px 28px;
        overflow: hidden;
    }

    .ez-shop-hero__copy {
        position: relative;
        z-index: 3;
        display: grid;
        align-content: start;
        gap: 18px;
        max-width: 600px;
        padding-top: 12px;
    }

    .ez-shop-hero h1 {
        max-width: 8.9ch;
        font-size: clamp(66px, 4.95vw, 82px);
        line-height: 0.99;
        letter-spacing: 0;
    }

    .ez-shop-hero__intro {
        max-width: 26ch;
        font-size: 18px;
        line-height: 1.5;
    }

    .ez-shop-hero__actions {
        max-width: 390px;
        grid-template-columns: 1fr;
    }

    .ez-shop-hero__benefits {
        max-width: 760px;
        gap: 12px;
    }

    .ez-shop-hero__benefit {
        font-size: 14px;
        padding: 10px 16px;
    }

    .ez-shop-hero__visual {
        position: absolute;
        inset: 34px 34px 34px 34px;
        z-index: 1;
        display: block;
        pointer-events: none;
    }

    .ez-shop-hero__scene {
        min-height: 100%;
        height: 100%;
        border-radius: 34px;
        background-image: url("/assets/klima-zentrum-showroom-klimaanlagen-wien.png");
        background-position: 62% center;
        background-size: cover;
        box-shadow: none;
    }

    .ez-shop-hero__scene::before {
        background:
            radial-gradient(circle at 18% 48%, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.95) 14%, rgba(255, 255, 255, 0.48) 26%, rgba(255, 255, 255, 0) 40%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 13%, rgba(255, 255, 255, 0.38) 24%, rgba(255, 255, 255, 0) 39%);
    }

    .ez-shop-hero__label {
        display: none !important;
    }

    .ez-shop-hero__reviews {
        position: relative;
        z-index: 3;
        left: auto;
        right: auto;
        bottom: auto;
        width: min(520px, 42%);
        min-width: 0;
        margin-top: 18px;
        gap: 14px;
        padding: 18px 18px 16px;
        border-radius: 24px;
        backdrop-filter: blur(8px);
    }

    .ez-shop-hero__reviews strong {
        font-size: clamp(18px, 2vw, 26px);
    }

    .ez-shop-hero__reviews-verified strong {
        font-size: clamp(20px, 2.2vw, 28px);
    }

    .ez-shop-hero__reviews-badge,
    .ez-shop-hero__reviews-check {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .ez-shop-hero__reviews-count {
        min-width: 54px;
        min-height: 42px;
        font-size: 15px;
    }

    .ez-shop-hero__reviews-grid {
        gap: 12px;
    }

    .ez-shop-hero__review-card {
        gap: 12px;
        padding: 14px 14px 12px;
        border-radius: 20px;
    }

    .ez-shop-hero__avatar {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .ez-shop-hero__review-stars {
        font-size: 14px;
    }

    .ez-shop-hero__review-quote {
        font-size: 14px;
        line-height: 1.35;
    }

    .ez-shop-hero__review-author {
        font-size: 12px;
    }
}

/* Usability polish: search, catalog scanning and filter discovery. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ez-searchbar {
    position: relative;
    isolation: isolate;
}

.ez-searchbar__field {
    position: relative;
    display: grid;
    gap: 7px;
    min-width: 0;
}

.ez-searchbar__field > span {
    color: var(--ez-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ez-searchbar__field--wide {
    min-width: 0;
}

.ez-search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 45;
    display: grid;
    gap: 6px;
    max-height: min(440px, 60vh);
    padding: 10px;
    overflow-y: auto;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.ez-search-suggestions[hidden] {
    display: none;
}

.ez-search-suggestions__item,
.ez-search-suggestions__hint {
    display: grid;
    gap: 3px;
    min-height: 54px;
    padding: 9px 11px;
    border-radius: 12px;
    color: var(--ez-text);
}

.ez-search-suggestions__item:hover,
.ez-search-suggestions__hint:hover,
.ez-search-suggestions__item:focus-visible,
.ez-search-suggestions__hint:focus-visible {
    color: var(--ez-orange);
    background: rgba(255, 77, 31, 0.07);
    outline: 0;
}

.ez-search-suggestions__item strong,
.ez-search-suggestions__hint strong {
    color: var(--ez-dark);
    font-size: 14px;
    line-height: 1.25;
}

.ez-search-suggestions__item span,
.ez-search-suggestions__hint span {
    color: var(--ez-muted);
    font-size: 12px;
    line-height: 1.25;
}

.ez-sidebar__card[data-category-sidebar] {
    display: grid;
    gap: 12px;
    align-content: start;
}

.ez-sidebar__card[data-category-sidebar] > strong {
    margin-bottom: 0;
}

.ez-sidebar__context {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 77, 31, 0.14);
    border-radius: 14px;
    background: rgba(255, 77, 31, 0.055);
}

.ez-sidebar__context > span {
    color: var(--ez-orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ez-sidebar__contexttrail {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ez-sidebar__contexttrail a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 77, 31, 0.18);
    color: var(--ez-text);
    font-size: 12px;
    font-weight: 800;
}

.ez-category-search {
    display: block;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0 0 4px;
    background: var(--ez-surface);
}

.ez-category-search input {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 13px;
    background: #fff;
    color: var(--ez-text);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
}

.ez-category-search input:focus,
.ez-searchbar input:focus,
.ez-searchbar select:focus {
    border-color: rgba(255, 77, 31, 0.42);
    box-shadow: 0 0 0 4px rgba(255, 77, 31, 0.1);
    outline: 0;
}

.ez-sidebar__tree {
    display: grid;
    gap: 3px;
}

.ez-category-empty {
    margin: 0;
    padding: 12px;
    border-radius: 12px;
    background: var(--ez-surface-alt);
    color: var(--ez-muted);
    font-size: 13px;
    font-weight: 700;
}

.ez-category-node.is-filter-match > .ez-category-row .ez-category-link {
    color: var(--ez-orange);
    background: rgba(255, 77, 31, 0.07);
}

.ez-category-link small,
.ez-filter-chip small {
    color: var(--ez-muted);
    font-size: 12px;
    font-weight: 800;
}

.ez-catalog-chips {
    display: flex;
    gap: 10px;
    margin: 0 0 18px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.ez-catalog-chips .ez-filter-chip {
    flex: 0 0 auto;
    min-height: 42px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: var(--ez-text);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.ez-catalog-chips .ez-filter-chip:hover,
.ez-catalog-chips .ez-filter-chip.is-active {
    color: var(--ez-orange);
    border-color: rgba(255, 77, 31, 0.2);
    background: rgba(255, 77, 31, 0.07);
}

.ez-product-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ez-product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 77, 31, 0.18);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

@media (min-width: 1040px) {
    .ez-searchbar__form {
        grid-template-columns: minmax(300px, 1fr) minmax(190px, 240px) auto;
        align-items: end;
    }

    .ez-catalog {
        grid-template-columns: 330px minmax(0, 1fr);
        align-items: start;
    }

    .ez-sidebar {
        position: sticky;
        top: calc(var(--ez-shop-header-height) + 16px);
        max-height: calc(100vh - var(--ez-shop-header-height) - 32px);
        overflow: auto;
        padding-right: 4px;
    }
}

@media (max-width: 1039px) {
    .ez-search-suggestions {
        position: fixed;
        top: auto;
        right: 16px;
        bottom: 18px;
        left: 16px;
        max-height: min(420px, 56vh);
    }

    .ez-shop-navpanel__filters .ez-sidebar__card[data-category-sidebar],
    .ez-mobile-filterpanel .ez-sidebar__card[data-category-sidebar] {
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .ez-shop-navpanel__filters .ez-category-search {
        position: static;
    }
}

@media (max-width: 640px) {
    .ez-searchbar__form {
        gap: 12px;
    }

    .ez-catalog-chips {
        margin-right: -12px;
        margin-left: -2px;
        padding-left: 2px;
    }

    .ez-catalog-chips .ez-filter-chip {
        min-height: 40px;
        padding-inline: 12px;
        font-size: 13px;
    }
}
