:root {
    --color-ink: #151719;
    --color-muted: #68707a;
    --color-line: #dde1e6;
    --color-surface: #ffffff;
    --color-panel: #f5f6f8;
    --color-accent: #f05a1a;
    --color-accent-dark: #c94308;
    --color-dark: #181b1d;
    --color-darker: #101214;
    --color-star: #ff5a1f;
    --wrap: 1210px;
    --shadow-soft: 0 10px 30px rgba(15, 18, 22, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

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

img {
    max-width: 100%;
    height: auto;
}

.wrap {
    width: min(calc(100% - 32px), var(--wrap));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 100000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.site-header {
    position: relative;
    z-index: 20;
    color: #fff;
    background: var(--color-darker);
}

.top-strip {
    background: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 800;
}

.top-strip__inner,
.header-main,
.category-navigation__inner,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.top-strip__inner {
    min-height: 38px;
}

.delivery-note {
    position: relative;
    padding-left: 38px;
}

.delivery-note::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 15px;
    border-radius: 2px 3px 3px 2px;
    background: #fff;
    content: "";
    transform: translateY(-50%);
}

.delivery-note::after {
    position: absolute;
    left: 5px;
    top: calc(50% + 7px);
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--color-accent);
    box-shadow: 15px 0 0 var(--color-accent);
    content: "";
}

.quick-links {
    display: flex;
    gap: 22px;
    font-size: 0.86rem;
}

.quick-links a + a {
    position: relative;
}

.quick-links a + a::before {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    content: "";
    transform: translateY(-50%);
}

.header-shell {
    background:
        radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.05), transparent 28%),
        linear-gradient(180deg, #191b1d 0%, #111315 100%);
}

.header-main {
    min-height: 122px;
}

.site-branding {
    flex: 0 0 auto;
}

.site-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo-image,
.custom-logo {
    display: block;
    width: auto;
    max-width: 175px;
    max-height: 105px;
    object-fit: contain;
}

.site-search {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 205px 70px;
    flex: 1 1 680px;
    max-width: 720px;
    min-height: 52px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: #fff;
}

.site-search input,
.site-search select,
.site-search button {
    min-width: 0;
    border: 0;
    font: inherit;
}

.site-search input {
    padding: 0 22px;
    font-size: 1.02rem;
}

.site-search select {
    padding: 0 18px;
    color: #6b727a;
    border-left: 1px solid var(--color-line);
    background: #fff;
    font-size: 1rem;
}

.site-search button {
    position: relative;
    color: #fff;
    background: var(--color-accent);
    font-size: 0;
    cursor: pointer;
}

.site-search button::before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px;
    height: 25px;
    border: 3px solid #fff;
    border-radius: 999px;
    content: "";
    transform: translate(-58%, -58%);
}

.site-search button::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
    content: "";
    transform: translate(4px, 10px) rotate(45deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

.account-link {
    position: relative;
    display: grid;
    align-content: center;
    min-height: 46px;
    padding-left: 44px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.08;
}

.account-link::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 3px solid #fff;
    border-radius: 999px;
    content: "";
}

.account-link::after {
    position: absolute;
    left: -6px;
    top: 28px;
    width: 38px;
    height: 23px;
    border: 3px solid #fff;
    border-bottom-width: 4px;
    border-radius: 999px 999px 12px 12px;
    clip-path: inset(0 0 43% 0);
    content: "";
}

.account-link small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

.cart-link {
    position: relative;
    display: grid;
    align-content: center;
    gap: 2px;
    min-width: 78px;
    min-height: 46px;
    padding-left: 44px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.08;
}

.cart-link::before {
    position: absolute;
    left: 0;
    top: 13px;
    width: 28px;
    height: 27px;
    border: 3px solid #fff;
    border-radius: 4px;
    content: "";
}

.cart-link::after {
    position: absolute;
    left: 7px;
    top: 2px;
    width: 14px;
    height: 15px;
    border: 3px solid #fff;
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
    content: "";
}

.cart-link__count {
    position: absolute;
    top: -7px;
    left: 25px;
    display: inline-grid;
    min-width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--color-accent);
    font-size: 0.72rem;
    line-height: 1;
}

.cart-link__total {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 2px;
    background: transparent;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: #fff;
    content: "";
}

.menu-toggle__bar::before {
    transform: translateY(-7px);
}

.menu-toggle__bar::after {
    transform: translateY(5px);
}

.category-navigation {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #111315;
}

.category-navigation__inner {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0;
    min-height: 58px;
}

.home-link,
.primary-navigation a,
.category-navigation a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 10px;
    text-align: center;
    line-height: 1.18;
}

.home-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--color-accent);
    content: "";
}

.category-navigation ul {
    display: contents;
    list-style: none;
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-navigation li {
    min-width: 0;
    text-align: center;
}

.category-navigation a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 0 10px;
    text-align: center;
    line-height: 1.18;
    white-space: normal;
}

.category-navigation li:last-child a::after {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--color-accent);
    font-size: 0.56rem;
    content: "SALE";
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--color-accent);
    font-size: 1.06rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    color: #fff;
    background: var(--color-dark);
}

.hero-slider__track {
    position: relative;
    min-height: 610px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    min-height: 610px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 650ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide::before,
.hero-slide::after {
    position: absolute;
    inset: 0;
    content: "";
}

.hero-slide::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 36%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.28) 100%),
        var(--hero-image);
    background-position: center right;
    background-size: cover;
}

.hero-slide::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent 48%);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 140px), var(--wrap));
    max-width: var(--wrap);
    padding: 78px 0 82px;
    margin-inline: auto;
    text-align: left;
}

.hero-slide h1,
.hero-slide h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(2.8rem, 4.05vw, 4.45rem);
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
    white-space: nowrap;
}

.hero-slide p:not(.eyebrow) {
    max-width: 570px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    visibility: visible;
    opacity: 1;
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 205px;
    min-height: 64px;
    padding: 18px 34px;
    border: 2px solid transparent;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}

.button--primary,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    color: #fff;
    background: var(--color-accent);
}

.button--primary:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    color: #fff;
    background: var(--color-accent-dark);
}

.button--secondary {
    color: var(--color-ink);
    border-color: var(--color-line);
    background: #fff;
}

.button--light {
    color: #fff;
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.36);
}

.hero-slide .button {
    position: relative;
    z-index: 3;
}

.hero-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
    font-size: 0.86rem;
    font-weight: 800;
}

.rating-stars,
.product-rating span {
    color: var(--color-star);
    letter-spacing: 1px;
}

.hero-slider__controls {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    pointer-events: none;
}

.hero-slider__arrow,
.hero-slider__dots button {
    pointer-events: auto;
}

.hero-slider__arrow {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    color: #fff;
    background: rgba(0, 0, 0, 0.26);
    cursor: pointer;
}

.hero-slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-slider__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.hero-slider__dots button.is-active {
    background: #fff;
}

.catalog-strip,
.home-section,
.trade-promo {
    background: #fff;
}

.catalog-strip {
    padding: 22px 0 18px;
}

.category-tile-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.category-tile {
    display: grid;
    min-height: 160px;
    padding: 14px 10px 12px;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background: linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
    text-align: center;
}

.category-tile__icon {
    display: grid;
    min-height: 92px;
    place-items: center;
}

.category-tile__icon img {
    display: block;
    width: 100%;
    max-width: 112px;
    max-height: 86px;
    object-fit: contain;
}

.category-tile strong {
    align-self: end;
    margin-top: 8px;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.category-tile span:last-child {
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
}

.home-section {
    padding: 18px 0;
}

.trade-category-section {
    padding: 0;
    background: #fff;
}

.trade-category-group + .trade-category-group {
    margin-top: 0;
}

.trade-category-group {
    margin-inline: calc(50% - 50vw);
    padding: 42px max(16px, calc((100vw - var(--wrap)) / 2)) 46px;
}

.trade-category-group--dark {
    color: #fff;
    background: #111315;
}

.trade-category-group--light {
    background: #fff;
}

.trade-category-group--dark .trade-category-group__heading p {
    color: rgba(255, 255, 255, 0.72);
}

.trade-category-group__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.trade-category-group__heading h2 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.trade-category-group__heading p {
    max-width: 520px;
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    text-align: right;
}

.trade-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.trade-category-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: minmax(72px, auto) auto;
    min-height: 142px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background: #fff;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.trade-category-card:hover {
    border-color: rgba(240, 90, 26, 0.5);
    box-shadow: 0 12px 26px rgba(17, 21, 26, 0.08);
    transform: translateY(-2px);
}

.trade-category-card > .dummy-visual {
    grid-row: 1 / span 2;
    width: 104px;
    height: 100%;
    min-height: 142px;
    background: linear-gradient(180deg, #fdfdfd 0%, #eef1f4 100%);
    transform: scale(0.75);
}

.trade-category-card__icon {
    grid-row: 1 / span 2;
    display: grid;
    width: 104px;
    min-height: 142px;
    place-items: center;
    padding: 14px;
    background: linear-gradient(180deg, #fdfdfd 0%, #eef1f4 100%);
}

.trade-category-card__icon img {
    display: block;
    width: 100%;
    max-width: 86px;
    max-height: 104px;
    object-fit: contain;
}

.trade-category-card__body {
    display: grid;
    align-content: end;
    padding: 18px 18px 4px;
}

.trade-category-card__body strong {
    color: var(--color-ink);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.trade-category-card__body span {
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 0.84rem;
}

.trade-category-card__cta {
    align-self: end;
    padding: 0 18px 16px;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 10px;
}

.section-heading--split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.section-heading h2,
.lane-heading h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.text-link {
    color: var(--color-ink);
    font-size: 0.8rem;
    font-weight: 800;
}

.dummy-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.dummy-product-card {
    display: grid;
    grid-template-rows: 165px minmax(46px, auto) 20px 24px 31px;
    gap: 7px;
    min-width: 0;
    padding: 12px 12px 14px;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background: #fff;
}

.dummy-product-card--placeholder {
    grid-template-rows: 165px minmax(38px, auto) 24px 31px;
}

.dummy-product-card--placeholder .dummy-product-card__media {
    position: relative;
    margin-bottom: 0;
    background:
        linear-gradient(135deg, transparent 48%, rgba(180, 188, 197, 0.26) 49% 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgba(180, 188, 197, 0.26) 49% 51%, transparent 52%),
        linear-gradient(180deg, #fdfdfd 0%, #f0f2f4 100%);
}

.dummy-product-card__link {
    display: contents;
}

.dummy-product-card--placeholder .dummy-product-card__media::before {
    position: absolute;
    inset: 22px;
    border: 1px dashed #c7ced6;
    border-radius: 3px;
    content: "";
}

.dummy-product-card--placeholder .dummy-product-card__media--image::before {
    display: none;
}

.dummy-product-card__media {
    display: grid;
    height: 165px;
    place-items: center;
    margin-bottom: 10px;
    border-radius: 3px;
    background: linear-gradient(180deg, #fdfdfd 0%, #f2f4f6 100%);
}

.dummy-product-card__media--image {
    overflow: hidden;
    background: linear-gradient(180deg, #fdfdfd 0%, #f2f4f6 100%);
}

.dummy-product-card__media--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dummy-product-card h3 {
    align-self: start;
    min-height: 0;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.18;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    font-size: 0.76rem;
}

.product-rating small {
    color: var(--color-muted);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 0;
}

.product-price strong {
    font-size: 1rem;
}

.product-price span {
    color: var(--color-muted);
    font-size: 0.66rem;
}

.add-to-basket {
    display: flex;
    min-height: 31px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    background: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.trust-band {
    padding: 14px 0;
    background: #fff;
}

.trust-band__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--color-line);
    background: linear-gradient(180deg, #fff 0%, #f2f3f5 100%);
}

.trust-band__grid div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
    min-height: 88px;
    padding: 14px 24px;
    border-right: 1px solid var(--color-line);
}

.trust-band__grid div:last-child {
    border-right: 0;
}

.trust-icon {
    grid-row: span 2;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 999px;
    color: var(--color-accent);
    border: 3px solid currentColor;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.trust-band .trust-icon {
    display: grid;
    align-items: center;
    justify-items: center;
}

.trust-band strong,
.trust-band span {
    display: block;
}

.trust-band strong {
    align-self: end;
    font-size: 0.92rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.trust-band span:last-child {
    align-self: start;
    color: #2c3034;
    font-size: 0.88rem;
    line-height: 1.25;
}

.trade-promo {
    padding: 0 0 18px;
}

.trade-promo__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    min-height: 205px;
    overflow: hidden;
    align-items: center;
    padding: 34px 32px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 54%, rgba(0, 0, 0, 0.2) 100%),
        var(--promo-image);
    background-position: center;
    background-size: cover;
    border-radius: 3px;
}

.trade-promo h2 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.trade-promo p:not(.eyebrow) {
    max-width: 460px;
    margin: 10px 0 20px;
    color: rgba(255, 255, 255, 0.86);
}

.promo-badge {
    display: flex;
    flex-direction: column;
    width: 132px;
    height: 132px;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 18px;
    border-radius: 999px;
    background: var(--color-accent);
    text-align: center;
    text-transform: uppercase;
}

.promo-badge strong {
    max-width: 92px;
    font-size: 1.45rem;
    line-height: 0.96;
}

.promo-badge span {
    margin-top: 4px;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1.1;
}

.product-lanes {
    padding-top: 12px;
    padding-bottom: 32px;
}

.product-lanes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.product-lane + .product-lane {
    padding-left: 30px;
    border-left: 1px solid var(--color-line);
}

.lane-heading {
    margin-bottom: 10px;
}

.mini-product-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.mini-product {
    display: grid;
    grid-template-rows: 86px 22px;
    align-items: center;
    justify-items: center;
    min-height: 132px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background: #fff;
    text-align: center;
}

.mini-product--placeholder {
    grid-template-rows: 60px 22px 20px;
    min-height: 132px;
}

.mini-product__media {
    position: relative;
    display: block;
    width: 62px;
    height: 48px;
    border-radius: 3px;
    background:
        linear-gradient(135deg, transparent 47%, rgba(180, 188, 197, 0.28) 48% 52%, transparent 53%),
        linear-gradient(45deg, transparent 47%, rgba(180, 188, 197, 0.28) 48% 52%, transparent 53%),
        linear-gradient(180deg, #fdfdfd 0%, #eef1f4 100%);
}

.mini-product__media::before {
    position: absolute;
    inset: 8px;
    border: 1px dashed #c7ced6;
    border-radius: 2px;
    content: "";
}

.mini-product__media--image {
    overflow: hidden;
    background: linear-gradient(180deg, #fdfdfd 0%, #eef1f4 100%);
}

.mini-product__media--image::before {
    display: none;
}

.mini-product__media--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mini-product--placeholder span:not(.mini-product__media) {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.mini-product .dummy-visual {
    width: 100px;
    height: 76px;
    margin: 0;
    overflow: hidden;
    transform: scale(0.68);
    transform-origin: center;
}

.mini-product .dummy-visual--holesaw-one::before {
    left: 26px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-width: 13px;
    box-shadow: 26px 8px 0 -8px #20252a;
}

.mini-product .dummy-visual--multi-blades::before,
.mini-product .dummy-visual--blade-one::before {
    left: 20px;
    width: 13px;
    height: 58px;
    box-shadow: 18px 0 0 #2d3338, 36px 0 0 #20252a, 54px 0 0 #2d3338;
}

.mini-product .dummy-visual--screws::before {
    left: 22px;
    width: 66px;
}

.mini-product strong {
    align-self: end;
    font-size: 0.82rem;
}

.dummy-visual {
    position: relative;
    display: block;
    align-self: center;
    justify-self: center;
    width: 128px;
    height: 96px;
    margin: auto;
}

.dummy-visual::before,
.dummy-visual::after {
    position: absolute;
    content: "";
}

.dummy-visual--drills::before,
.dummy-visual--sds::before {
    left: 22px;
    top: 16px;
    width: 84px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a26a22 0%, #f2cf72 30%, #1c2226 31%, #d3d8dd 70%, #1c2226 71%);
    box-shadow: 0 16px 0 #d1a448, 0 32px 0 #2e3438;
    transform: rotate(-17deg);
}

.dummy-visual--driver-bits::before,
.dummy-visual--bit-set::before {
    left: 16px;
    top: 48px;
    width: 96px;
    height: 30px;
    border-radius: 5px;
    background: #202428;
}

.dummy-visual--driver-bits::after,
.dummy-visual--bit-set::after {
    left: 24px;
    top: 20px;
    width: 8px;
    height: 52px;
    background: #4d5358;
    box-shadow: 16px 0 0 #f4a32d, 32px 0 0 #4d5358, 48px 0 0 #f4a32d, 64px 0 0 #4d5358;
}

.dummy-visual--blades::before {
    left: 26px;
    top: 18px;
    width: 70px;
    height: 70px;
    border: 12px solid #c7ccd1;
    border-right-color: #262a2e;
    border-bottom-color: var(--color-accent);
    border-radius: 999px;
}

.dummy-visual--blades::after {
    left: 58px;
    top: 50px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #fff;
}

.dummy-visual--fixings::before {
    left: 28px;
    top: 28px;
    width: 76px;
    height: 8px;
    border-radius: 999px;
    background: #a7b0b8;
    box-shadow: 8px 18px 0 #c3c8ce, -8px 36px 0 #8e979f;
    transform: rotate(-20deg);
}

.dummy-visual--building-tools::before {
    left: 28px;
    top: 28px;
    width: 72px;
    height: 14px;
    border-radius: 3px;
    background: #20252a;
    box-shadow: 0 20px 0 #a7afb7, 0 40px 0 var(--color-accent);
    transform: rotate(-18deg);
}

.dummy-visual--building-tools::after {
    left: 62px;
    top: 14px;
    width: 12px;
    height: 72px;
    border-radius: 4px;
    background: #d1a44b;
    transform: rotate(28deg);
}

.dummy-visual--adhesives::before,
.dummy-visual--caulking::before {
    left: 28px;
    top: 24px;
    width: 76px;
    height: 36px;
    border-radius: 6px;
    background: linear-gradient(90deg, #20252a 0 28%, #fff 29% 70%, var(--color-accent) 71%);
    box-shadow: 0 28px 0 -8px #c7cdd3;
    transform: rotate(-10deg);
}

.dummy-visual--ppe::before {
    left: 32px;
    top: 18px;
    width: 64px;
    height: 48px;
    border-radius: 32px 32px 10px 10px;
    background: var(--color-accent);
}

.dummy-visual--ppe::after {
    left: 24px;
    top: 58px;
    width: 80px;
    height: 16px;
    border-radius: 999px;
    background: #20252a;
}

.dummy-visual--painting::before {
    left: 24px;
    top: 26px;
    width: 64px;
    height: 28px;
    border-radius: 5px;
    background: #20252a;
    box-shadow: 0 18px 0 var(--color-accent);
}

.dummy-visual--painting::after {
    left: 84px;
    top: 34px;
    width: 12px;
    height: 52px;
    border-radius: 999px;
    background: #d1a44b;
    transform: rotate(-18deg);
}

.dummy-visual--scrapers::before {
    left: 30px;
    top: 22px;
    width: 70px;
    height: 34px;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
    background: #c7cdd3;
}

.dummy-visual--scrapers::after {
    left: 58px;
    top: 52px;
    width: 14px;
    height: 44px;
    border-radius: 999px;
    background: #20252a;
}

.dummy-visual--sanding::before {
    left: 28px;
    top: 24px;
    width: 74px;
    height: 52px;
    border-radius: 7px;
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 0 5px, transparent 5px 10px),
        #b7a26a;
    transform: rotate(-9deg);
}

.dummy-visual--cleaning::before {
    left: 34px;
    top: 28px;
    width: 60px;
    height: 46px;
    border-radius: 5px 5px 16px 16px;
    background: #2a3035;
}

.dummy-visual--cleaning::after {
    left: 44px;
    top: 16px;
    width: 40px;
    height: 18px;
    border-radius: 999px 999px 0 0;
    background: var(--color-accent);
}

.dummy-visual--sundries::before {
    left: 24px;
    top: 26px;
    width: 80px;
    height: 52px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 0 38%, rgba(255, 255, 255, 0.35) 39% 44%, transparent 45%),
        #20252a;
}

.dummy-visual--sundries::after {
    left: 34px;
    top: 38px;
    width: 58px;
    height: 16px;
    border-radius: 3px;
    background: var(--color-accent);
}

.dummy-visual--batteries::before {
    left: 28px;
    top: 24px;
    width: 22px;
    height: 54px;
    border-radius: 4px;
    background: linear-gradient(180deg, #c7cdd3 0 14%, var(--color-accent) 15% 62%, #20252a 63%);
    box-shadow: 30px 0 0 #20252a, 60px 0 0 var(--color-accent);
}

.dummy-visual--bulbs::before {
    left: 42px;
    top: 16px;
    width: 46px;
    height: 46px;
    border: 7px solid #d1a44b;
    border-radius: 999px;
    background: rgba(240, 90, 26, 0.14);
}

.dummy-visual--bulbs::after {
    left: 52px;
    top: 62px;
    width: 26px;
    height: 20px;
    border-radius: 3px;
    background: #20252a;
}

.dummy-visual--testers::before {
    left: 38px;
    top: 18px;
    width: 50px;
    height: 68px;
    border-radius: 8px;
    background: linear-gradient(180deg, #20252a 0 30%, #c7cdd3 31% 52%, var(--color-accent) 53%);
}

.dummy-visual--testers::after {
    left: 58px;
    top: 8px;
    width: 10px;
    height: 26px;
    border-radius: 999px;
    background: #d1a44b;
}

.dummy-visual--wiring::before {
    left: 26px;
    top: 28px;
    width: 76px;
    height: 46px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 24px 23px, #f4f6f8 0 7px, transparent 8px),
        radial-gradient(circle at 52px 23px, #f4f6f8 0 7px, transparent 8px),
        #20252a;
}

.dummy-visual--wiring::after {
    left: 62px;
    top: 22px;
    width: 28px;
    height: 58px;
    border: 5px solid var(--color-accent);
    border-left: 0;
    border-radius: 0 999px 999px 0;
}

.dummy-visual--extensions::before {
    left: 22px;
    top: 24px;
    width: 58px;
    height: 44px;
    border-radius: 8px;
    background: #20252a;
}

.dummy-visual--extensions::after {
    left: 70px;
    top: 44px;
    width: 42px;
    height: 28px;
    border: 6px solid var(--color-accent);
    border-left: 0;
    border-radius: 0 999px 999px 0;
}

.dummy-visual--lights::before {
    left: 26px;
    top: 38px;
    width: 72px;
    height: 28px;
    border-radius: 999px;
    background: #20252a;
    transform: rotate(-12deg);
}

.dummy-visual--lights::after {
    left: 82px;
    top: 30px;
    width: 34px;
    height: 44px;
    clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 68%);
    background: rgba(240, 90, 26, 0.75);
}

.dummy-visual--holesaws::before,
.dummy-visual--holesaw-one::before {
    left: 22px;
    top: 24px;
    width: 50px;
    height: 50px;
    border: 15px solid #161a1e;
    border-radius: 999px;
    box-shadow: 42px 10px 0 -4px #20252a;
}

.dummy-visual--case::before,
.dummy-visual--case-drills::before {
    left: 18px;
    top: 24px;
    width: 92px;
    height: 58px;
    border: 7px solid #1a1d21;
    border-radius: 7px;
    background: linear-gradient(180deg, #293037 0 42%, #f15a1b 43% 54%, #20252a 55%);
}

.dummy-visual--case::after,
.dummy-visual--case-drills::after {
    left: 36px;
    top: 13px;
    width: 56px;
    height: 18px;
    border: 6px solid #1a1d21;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
}

.dummy-visual--hole-set::before {
    left: 20px;
    top: 24px;
    width: 86px;
    height: 56px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 24px 28px, #f4f6f8 0 11px, #14171a 12px 24px, transparent 25px),
        radial-gradient(circle at 58px 28px, #f4f6f8 0 9px, #14171a 10px 20px, transparent 21px),
        #2a3035;
}

.dummy-visual--multi-blades::before,
.dummy-visual--blade-one::before {
    left: 18px;
    top: 18px;
    width: 16px;
    height: 64px;
    border-radius: 6px 6px 2px 2px;
    background: #20252a;
    box-shadow: 22px 0 0 #2d3338, 44px 0 0 #20252a, 66px 0 0 #2d3338;
}

.dummy-visual--screws::before {
    left: 24px;
    top: 24px;
    width: 76px;
    height: 58px;
    border: 3px solid #d6dbe0;
    border-radius: 6px;
    background:
        repeating-linear-gradient(18deg, #ccd2d8 0 4px, transparent 4px 10px),
        rgba(240, 90, 26, 0.1);
}

.dummy-visual--step::before {
    left: 50px;
    top: 12px;
    width: 24px;
    height: 72px;
    clip-path: polygon(50% 0, 76% 14%, 68% 14%, 84% 28%, 72% 28%, 90% 42%, 72% 42%, 86% 56%, 70% 56%, 78% 70%, 22% 70%, 30% 56%, 14% 56%, 28% 42%, 10% 42%, 28% 28%, 16% 28%, 32% 14%, 24% 14%);
    background: linear-gradient(90deg, #9b5e17, #f4cc66, #6b3d10);
}

.dummy-visual--driver-one::before {
    left: 56px;
    top: 16px;
    width: 14px;
    height: 64px;
    border-radius: 2px;
    background: linear-gradient(180deg, #c7ccd1 0 22%, #262b30 23% 78%, #d69733 79%);
}

.dummy-visual--accent::before,
.dummy-visual.accent::before {
    border-color: var(--color-accent);
}

.site-footer {
    color: #c8ced6;
    background:
        radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.035), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.035), transparent 28%),
        linear-gradient(180deg, #101820 0%, #080d12 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.55fr 1.25fr 1.35fr 1.05fr 1.28fr;
    gap: clamp(28px, 3.5vw, 56px);
    align-items: start;
    padding: 42px 0 34px;
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 22px;
}

.footer-logo-image {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 115px;
    object-fit: contain;
}

.footer-brand__name {
    display: inline-block;
    margin-bottom: 24px;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.footer-brand p {
    max-width: 245px;
    margin: 0;
    color: #aeb6bf;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-main h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column a {
    position: relative;
    display: block;
    padding-left: 18px;
    color: #e7ebef;
    font-size: 0.92rem;
    line-height: 1.15;
}

.footer-column a::before {
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--color-accent);
    font-weight: 900;
    content: ">";
}

.newsletter-block p {
    max-width: 285px;
    margin: 0 0 18px;
    color: #aeb6bf;
    font-size: 0.95rem;
    line-height: 1.45;
}

.newsletter-form {
    display: grid;
    gap: 12px;
    max-width: 280px;
}

.newsletter-form input,
.newsletter-form button {
    min-height: 44px;
    border-radius: 4px;
    font: inherit;
}

.newsletter-form input {
    width: 100%;
    padding: 0 14px;
    border: 1px solid #36414a;
    color: #fff;
    background: transparent;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #8c96a0;
}

.newsletter-form button {
    border: 0;
    color: #fff;
    background: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 26px;
}

.social-links a {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
}

.social-links svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-bottom-shell {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom {
    min-height: 78px;
    color: #9fa8b2;
    font-size: 0.86rem;
}

.footer-legal {
    display: grid;
    gap: 7px;
}

.footer-bottom p {
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #c8ced6;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-grid {
    display: flex;
    align-items: center;
    gap: 9px;
}

.payment-grid img {
    display: block;
    width: 58px;
    height: 34px;
    border-radius: 5px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    object-fit: contain;
}

.entry {
    max-width: 780px;
}

.content-area {
    padding: 56px 0;
}

.elementor-full-width-page .entry {
    max-width: none;
}

.elementor-home-page .elementor-section,
.elementor-home-page .elementor-container,
.elementor-home-page .elementor-column,
.elementor-home-page .elementor-widget-wrap,
.elementor-home-page .elementor-widget,
.elementor-home-page .elementor-widget-container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.elementor-home-page .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: none;
}

.elementor-home-page .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.elementor-home-page .elementor-column-gap-no > .elementor-column > .elementor-element-populated {
    padding: 0;
}

.elementor-home-page .elementor-element-lanes01 > .elementor-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: min(100% - 32px, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 0;
}

.elementor-home-page .elementor-element-lanes01 .elementor-column {
    width: 100%;
}

.shop-page {
    background: #f4f6f8;
}

.shop-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 10, 12, 0.96) 0%, rgba(8, 10, 12, 0.76) 48%, rgba(8, 10, 12, 0.26) 100%),
        url("../images/bg3.jpg");
    background-position: center right;
    background-size: cover;
}

.shop-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: end;
    min-height: 300px;
    padding: 54px 0 44px;
}

.woocommerce-breadcrumb {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
}

.woocommerce-breadcrumb a {
    color: #fff;
}

.shop-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.6rem, 4.4vw, 4.75rem);
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.shop-hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
}

.shop-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
}

.shop-hero__stats span {
    display: grid;
    min-height: 84px;
    place-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.28);
    text-align: center;
    text-transform: uppercase;
}

.shop-hero__stats strong {
    color: var(--color-accent);
    font-size: 1rem;
}

.shop-perks {
    background: #fff;
    border-bottom: 1px solid var(--color-line);
}

.shop-perks__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--color-line);
}

.shop-perks__grid span {
    display: grid;
    min-height: 82px;
    align-content: center;
    padding: 18px 24px;
    background: #fff;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.shop-perks__grid strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-ink);
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    padding: 32px 0 54px;
}

.shop-sidebar {
    min-width: 0;
}

.shop-widget {
    margin-bottom: 16px;
    padding: 20px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 18, 20, 0.04);
}

.shop-widget h2,
.shop-widget__title {
    margin: 0 0 16px;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-widget ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.shop-widget li {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.shop-widget a {
    color: var(--color-ink);
    font-weight: 800;
}

.shop-widget .children {
    margin-top: 9px;
    padding-left: 14px;
    border-left: 2px solid var(--color-line);
}

.shop-widget--promo {
    color: #fff;
    border-color: transparent;
    background:
        linear-gradient(135deg, rgba(240, 90, 26, 0.94), rgba(17, 19, 21, 0.94)),
        url("../images/bg2.jpg");
    background-position: center;
    background-size: cover;
}

.shop-widget--promo p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.82);
}

.shop-widget--promo a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-content {
    min-width: 0;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 60px;
    margin-bottom: 18px;
    padding: 12px 16px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 18, 20, 0.04);
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
    float: none;
    margin: 0;
    color: var(--color-muted);
    font-weight: 800;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    float: none;
    margin: 0;
}

.woocommerce .woocommerce-ordering select {
    min-height: 38px;
    min-width: 210px;
    padding: 0 12px;
    border: 1px solid var(--color-line);
    border-radius: 3px;
    background: #fff;
    font: inherit;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(48px, auto) auto auto;
    float: none;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 12px 12px 14px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 18, 20, 0.04);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    border-color: rgba(240, 90, 26, 0.42);
    box-shadow: 0 18px 34px rgba(16, 18, 20, 0.1);
    transform: translateY(-2px);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 0 12px;
    border-radius: 3px;
    background: linear-gradient(180deg, #fdfdfd 0%, #eef1f4 100%);
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
    top: 10px;
    right: 10px;
    left: auto;
    min-width: 0;
    min-height: 0;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: var(--color-accent);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 42px;
    padding: 0;
    margin: 0 0 8px;
    color: var(--color-ink);
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.2;
}

.woocommerce ul.products li.product .star-rating {
    margin: 0 0 8px;
    color: var(--color-star);
    font-size: 0.78rem;
}

.woocommerce ul.products li.product .price {
    display: block;
    margin: 0 0 10px;
    color: var(--color-ink);
    font-size: 1rem;
    font-weight: 900;
}

.woocommerce ul.products li.product .price del {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce ul.products li.product .button {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 9px 10px;
    border-radius: 3px;
    background: var(--color-accent);
    font-size: 0.72rem;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--color-accent-dark);
}

.woocommerce a.added_to_cart {
    display: block;
    margin-top: 8px;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.shop-pagination {
    margin-top: 26px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: grid;
    min-width: 38px;
    min-height: 38px;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: 3px;
    background: #fff;
    color: var(--color-ink);
    font-weight: 900;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    color: #fff;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.shop-empty {
    padding: 30px;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background: #fff;
}

.commerce-page {
    background: #f4f6f8;
}

.commerce-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 10, 12, 0.96) 0%, rgba(8, 10, 12, 0.78) 50%, rgba(8, 10, 12, 0.34) 100%),
        url("../images/bg1.jpg");
    background-position: center right;
    background-size: cover;
}

.commerce-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: end;
    min-height: 285px;
    padding: 52px 0 42px;
}

.commerce-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.45rem, 4vw, 4.25rem);
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.commerce-hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.03rem;
}

.checkout-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
}

.checkout-progress span {
    position: relative;
    display: grid;
    min-height: 76px;
    place-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.checkout-progress span::before {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    margin-bottom: 6px;
    border: 2px solid currentColor;
    border-radius: 999px;
    color: currentColor;
    font-size: 0.72rem;
    content: counter(progress);
    counter-increment: progress;
}

.checkout-progress {
    counter-reset: progress;
}

.checkout-progress .is-active,
.checkout-progress .is-complete {
    color: #fff;
}

.checkout-progress .is-active::before,
.checkout-progress .is-complete::before {
    color: #fff;
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.commerce-content-area {
    padding: 34px 0 58px;
}

.entry--commerce,
.entry--commerce .entry-content {
    max-width: none;
}

.entry--commerce .entry-content > * {
    max-width: none;
}

.commerce-page .woocommerce,
.entry--commerce .wp-block-woocommerce-cart,
.entry--commerce .wp-block-woocommerce-checkout {
    margin: 0;
}

.entry--commerce .wc-block-cart,
.entry--commerce .wc-block-checkout {
    color: var(--color-ink);
}

.entry--commerce .wc-block-components-sidebar-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.entry--commerce .wc-block-components-main {
    width: auto;
    padding-right: 0;
}

.entry--commerce .wc-block-components-sidebar {
    position: sticky;
    top: 18px;
    width: auto;
    padding-left: 0;
}

.entry--commerce .wc-block-cart-items,
.entry--commerce .wc-block-components-sidebar,
.entry--commerce .wc-block-checkout__main,
.entry--commerce .wc-block-checkout__sidebar,
.entry--commerce .wc-block-components-totals-wrapper,
.entry--commerce .wc-block-components-checkout-step,
.entry--commerce .wp-block-woocommerce-cart-order-summary-block,
.entry--commerce .wp-block-woocommerce-checkout-order-summary-block {
    border-color: var(--color-line);
}

.entry--commerce .wc-block-components-sidebar,
.entry--commerce .wc-block-components-checkout-step,
.entry--commerce .wc-block-cart-items,
.entry--commerce .wc-block-components-totals-wrapper,
.entry--commerce .wc-block-components-order-summary,
.entry--commerce .wp-block-woocommerce-cart-order-summary-block,
.entry--commerce .wp-block-woocommerce-checkout-order-summary-block {
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(16, 18, 20, 0.06);
}

.entry--commerce .wc-block-cart-items {
    overflow: hidden;
    border: 1px solid var(--color-line);
}

.entry--commerce .wc-block-cart-items thead {
    background: #111315;
    color: #fff;
}

.entry--commerce .wc-block-cart-items th {
    padding: 16px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.entry--commerce .wc-block-cart-items td {
    padding: 18px 16px;
    border-top: 1px solid var(--color-line);
}

.entry--commerce .wc-block-cart-item__image img,
.entry--commerce .wc-block-components-order-summary-item__image img {
    border-radius: 4px;
    background: linear-gradient(180deg, #fff 0%, #eef1f4 100%);
    object-fit: contain;
}

.entry--commerce .wc-block-components-product-name,
.entry--commerce .wc-block-cart-item__product a {
    color: var(--color-ink);
    font-weight: 900;
}

.entry--commerce .wc-block-components-product-metadata,
.entry--commerce .wc-block-cart-item__prices,
.entry--commerce .wc-block-components-totals-item__description {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.entry--commerce .wc-block-components-quantity-selector {
    border-color: var(--color-line);
    border-radius: 4px;
    overflow: hidden;
}

.entry--commerce .wc-block-components-quantity-selector__button {
    background: #f5f6f8;
}

.entry--commerce .wc-block-components-sidebar h2,
.entry--commerce .wc-block-components-title,
.entry--commerce .wc-block-components-checkout-step__title,
.entry--commerce .wc-block-cart__totals-title {
    color: var(--color-ink);
    font-weight: 900;
    text-transform: uppercase;
}

.entry--commerce .wc-block-components-sidebar {
    padding: 22px;
}

.entry--commerce .wc-block-components-totals-wrapper {
    margin: 0 0 12px;
    padding: 16px 0;
    box-shadow: none;
}

.entry--commerce .wc-block-components-totals-footer-item {
    padding-top: 14px;
    border-top: 2px solid var(--color-ink);
}

.entry--commerce .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.entry--commerce .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 1.15rem;
    font-weight: 900;
}

.entry--commerce .wc-block-components-button,
.entry--commerce .wc-block-cart__submit-button,
.entry--commerce .wc-block-components-checkout-place-order-button {
    min-height: 54px;
    border-radius: 3px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: none;
}

.entry--commerce .wc-block-components-button:hover,
.entry--commerce .wc-block-cart__submit-button:hover,
.entry--commerce .wc-block-components-checkout-place-order-button:hover {
    background: var(--color-accent-dark);
    color: #fff;
}

.entry--commerce .wc-block-components-text-input input,
.entry--commerce .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.entry--commerce .wc-block-components-form .wc-block-components-text-input input,
.entry--commerce .wc-block-components-textarea,
.entry--commerce .wc-block-components-select .wc-block-components-select__container {
    min-height: 48px;
    border-color: var(--color-line);
    border-radius: 4px;
    background: #fff;
    color: var(--color-ink);
}

.entry--commerce .wc-block-components-text-input label,
.entry--commerce .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label,
.entry--commerce .wc-block-components-select label {
    color: var(--color-muted);
    font-weight: 800;
}

.entry--commerce .wc-block-components-checkout-step {
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid var(--color-line);
}

.entry--commerce .wc-block-components-checkout-step__heading {
    margin-bottom: 18px;
}

.entry--commerce .wc-block-components-notice-banner {
    border-radius: 6px;
}

.entry--commerce .wc-block-components-order-summary {
    padding: 18px;
}

.entry--commerce .wp-block-woocommerce-cart-cross-sells-block,
.entry--commerce .wp-block-woocommerce-product-collection {
    margin-top: 24px;
}

.entry--commerce .wp-block-woocommerce-product-collection {
    padding: 22px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(16, 18, 20, 0.06);
}

.entry--commerce .wc-block-cart__empty-cart__title {
    margin-top: 0;
    color: var(--color-ink);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .header-main {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .site-search {
        order: 3;
        flex-basis: 100%;
        max-width: none;
    }

    .category-tile-grid,
    .dummy-product-grid,
    .trade-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .shop-hero__stats {
        max-width: 520px;
    }

    .commerce-hero__inner {
        grid-template-columns: 1fr;
    }

    .checkout-progress {
        max-width: 520px;
    }

    .entry--commerce .wc-block-components-sidebar-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 20px;
    }

    .shop-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 20px;
    }

    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-band__grid div:nth-child(2) {
        border-right: 0;
    }

    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 44px 0 36px;
    }
}

@media (max-width: 820px) {
    .quick-links,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .category-navigation {
        display: none;
    }

    .category-navigation.is-open {
        display: block;
    }

    .category-navigation__inner,
    .category-navigation ul {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .category-navigation a {
        display: block;
        padding: 10px 0;
    }

    .hero-slide h1,
    .hero-slide h2 {
        font-size: 2.6rem;
    }

    .hero-slide__content {
        width: min(calc(100% - 32px), var(--wrap));
    }

    .hero-title span {
        white-space: normal;
    }

    .hero-slider,
    .hero-slider__track,
    .hero-slide {
        min-height: 500px;
    }

    .hero-slide__content {
        padding: 72px 0 80px;
    }

    .product-lanes__grid,
    .elementor-home-page .elementor-element-lanes01 > .elementor-container {
        grid-template-columns: 1fr;
    }

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

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

    .shop-widget {
        margin-bottom: 0;
    }

    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-perks__grid,
    .entry--commerce .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr;
    }

    .entry--commerce .wc-block-components-sidebar {
        position: static;
    }

    .entry--commerce .wc-block-components-sidebar,
    .entry--commerce .wc-block-components-checkout-step {
        padding: 18px;
    }

    .product-lane + .product-lane {
        padding-left: 0;
        border-left: 0;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
        padding: 38px 0 34px;
    }

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

    .trade-category-group__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .trade-category-group__heading p {
        text-align: left;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        padding: 24px 0;
    }

    .footer-payments {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(calc(100% - 24px), var(--wrap));
    }

    .top-strip__inner {
        justify-content: center;
        text-align: center;
    }

    .site-logo-image,
    .custom-logo {
        max-width: 210px;
        max-height: 58px;
    }

    .site-search {
        grid-template-columns: minmax(0, 1fr) 46px;
    }

    .site-search select {
        display: none;
    }

    .hero-slider,
    .hero-slider__track,
    .hero-slide {
        min-height: 610px;
    }

    .hero-slide__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 610px;
        padding: 58px 0 96px;
    }

    .hero-slide h1,
    .hero-slide h2 {
        max-width: 100%;
        font-size: clamp(2.15rem, 10vw, 3.05rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .hero-title span {
        white-space: normal;
    }

    .hero-slide p:not(.eyebrow) {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.45;
    }

    .hero-actions {
        gap: 12px;
        margin-top: 22px;
    }

    .hero-actions .button {
        min-width: 0;
        width: 100%;
        min-height: 54px;
        padding: 15px 18px;
    }

    .shop-hero__inner {
        min-height: 360px;
        padding: 42px 0 36px;
    }

    .shop-hero h1 {
        font-size: 2.3rem;
    }

    .commerce-hero__inner {
        min-height: 330px;
        padding: 42px 0 36px;
    }

    .commerce-hero h1 {
        font-size: 2.3rem;
    }

    .shop-hero__stats,
    .shop-sidebar,
    .shop-toolbar,
    .checkout-progress {
        grid-template-columns: 1fr;
    }

    .shop-perks__grid span,
    .checkout-progress span {
        min-height: 62px;
    }

    .entry--commerce .wc-block-cart-items thead {
        display: none;
    }

    .entry--commerce .wc-block-cart-items,
    .entry--commerce .wc-block-cart-items tbody,
    .entry--commerce .wc-block-cart-items tr,
    .entry--commerce .wc-block-cart-items td {
        display: block;
        width: 100%;
    }

    .entry--commerce .wc-block-cart-items td {
        padding: 14px;
    }

    .entry--commerce .wc-block-cart-item__image {
        width: 96px;
        float: left;
        margin-right: 14px;
    }

    .entry--commerce .wc-block-cart-item__total {
        clear: both;
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .woocommerce .woocommerce-ordering select {
        width: 100%;
    }

    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: 1fr;
    }

    .hero-slider__controls {
        justify-content: flex-start;
    }

    .category-tile-grid,
    .dummy-product-grid,
    .trade-category-grid,
    .trust-band__grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .trade-category-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .trade-category-card > .dummy-visual {
        width: 96px;
    }

    .trade-category-card__icon {
        width: 96px;
    }

    .footer-main {
        padding: 32px 0;
    }

    .footer-logo-image {
        max-width: 190px;
    }

    .footer-column {
        gap: 12px;
    }

    .payment-grid {
        flex-wrap: wrap;
    }

    .dummy-product-grid {
        gap: 10px;
    }

    .product-section .dummy-product-grid .dummy-product-card:nth-child(n+3),
    .product-lane .mini-product-row .mini-product:nth-child(n+4) {
        display: none;
    }

    .product-section .section-heading--split,
    .lane-heading {
        align-items: flex-start;
        gap: 10px;
    }

    .dummy-product-card--placeholder {
        min-height: 0;
        grid-template-rows: 130px minmax(30px, auto) 22px 30px;
        padding: 10px;
    }

    .dummy-product-card__media {
        height: 130px;
    }

    .dummy-product-card--placeholder .dummy-product-card__media::before {
        inset: 18px;
    }

    .dummy-product-card h3 {
        font-size: 0.95rem;
    }

    .product-price strong {
        font-size: 0.95rem;
    }

    .add-to-basket {
        min-height: 30px;
        font-size: 0.68rem;
    }

    .trust-band__grid div {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .trust-band__grid div:last-child {
        border-bottom: 0;
    }

    .trade-promo__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-badge {
        justify-self: start;
        width: 110px;
        height: 110px;
    }

    .mini-product-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .mini-product--placeholder {
        min-height: 104px;
        grid-template-rows: 42px 18px 18px;
        padding: 7px;
    }

    .mini-product__media {
        width: 48px;
        height: 36px;
    }

    .mini-product--placeholder span:not(.mini-product__media) {
        font-size: 0.68rem;
    }

    .mini-product strong {
        font-size: 0.74rem;
    }

    .product-lanes__grid {
        gap: 24px;
    }

    .site-footer {
        background: linear-gradient(180deg, #111921 0%, #090e13 100%);
    }

    .footer-main {
        gap: 22px;
    }

    .footer-brand p {
        max-width: none;
        font-size: 0.95rem;
    }

    .footer-logo-image {
        max-width: 150px;
        max-height: 86px;
    }

    .social-links {
        margin-top: 20px;
    }

    .footer-column,
    .newsletter-block {
        display: none;
    }

    .footer-bottom {
        min-height: 0;
        font-size: 0.78rem;
    }

    .footer-payments {
        width: 100%;
    }

    .payment-grid img {
        width: 52px;
        height: 30px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding: 22px 0;
    }
}
