: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;
}

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

body.ez-shop-nav-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 {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
}

.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-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 {
    width: 92px;
    height: auto;
}

.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.03em;
}

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

.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__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-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-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-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 {
    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-image {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
}

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

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

.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-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-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-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-buybox__actions {
        grid-template-columns: 1fr;
    }
}
