@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-light.woff2") format("woff2"),
        url("../fonts/poufont/poufont-light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-light-italic.woff2") format("woff2"),
        url("../fonts/poufont/poufont-light-italic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-regular.woff2") format("woff2"),
        url("../fonts/poufont/poufont-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-regular-italic.woff2") format("woff2"),
        url("../fonts/poufont/poufont-regular-italic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-semibold.woff2") format("woff2"),
        url("../fonts/poufont/poufont-semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-semibold-italic.woff2") format("woff2"),
        url("../fonts/poufont/poufont-semibold-italic.woff") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-bold.woff2") format("woff2"),
        url("../fonts/poufont/poufont-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-bold-italic.woff2") format("woff2"),
        url("../fonts/poufont/poufont-bold-italic.woff") format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-extrabold.woff2") format("woff2"),
        url("../fonts/poufont/poufont-extrabold.woff") format("woff");
    font-weight: 800 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poufont";
    src: url("../fonts/poufont/poufont-extrabold-italic.woff2") format("woff2"),
        url("../fonts/poufont/poufont-extrabold-italic.woff") format("woff");
    font-weight: 800 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --font-main: "Poufont", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --primary: #d42427;
    --primary-dark: #a91619;
    --secondary: #e5e5e5;
    --text: #2e2e32;
    --bg: #ffffff;
    --muted: #747174;
    --line: #dedcde;
    --soft: #f4f3f2;
    --panel: #efeeeb;
    --charcoal: #3f3e41;
    --charcoal-dark: #2c2b2d;
    --accent: #d42427;
    --accent-dark: #a91619;
    --promotive-ink: var(--text);
    --promotive-muted: var(--muted);
    --promotive-line: var(--line);
    --promotive-soft: var(--soft);
    --promotive-accent: var(--accent);
    --promotive-accent-dark: var(--accent-dark);
    --promotive-blue: var(--primary);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-main);
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.promotive-page {
    background: #ffffff;
    color: var(--promotive-ink);
}

.promotive-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.promotive-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.promotive-utility-bar {
    border-top: 6px solid #c7ecef;
    background: #f8f7f5;
    color: #39383b;
    font-size: 13px;
}

.promotive-utility-bar .promotive-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 36px;
}

.promotive-utility-items,
.promotive-utility-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.promotive-utility-actions {
    gap: 14px;
    margin-left: auto;
}

.promotive-utility-items > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.promotive-utility-items > span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.promotive-utility-bar a {
    color: var(--charcoal);
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.promotive-header-bar {
    display: grid;
    grid-template-columns: 260px minmax(280px, 1fr) auto;
    gap: 30px;
    align-items: center;
    min-height: 76px;
    background: var(--charcoal-dark);
    color: #ffffff;
}

.promotive-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px;
    border: 1px solid rgba(38, 37, 39, 0.14);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(38, 37, 39, 0.08);
}

.promotive-language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 28px;
    border-radius: 4px;
    color: var(--charcoal);
    font-size: 0;
    font-weight: 900;
    text-decoration: none;
}

.promotive-language-switcher a.is-active {
    background: #f0f0f0;
}

.promotive-language-switcher img {
    display: block;
    width: 24px;
    height: 17px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(38, 37, 39, 0.16);
}

.promotive-language-switcher span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.promotive-language-switcher .promotive-language-switcher__flag {
    position: static;
    display: block;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    font-size: 18px;
    line-height: 1;
}

.promotive-site-header > .promotive-shell.promotive-header-bar {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100vw - 1550px) / 2));
    padding-right: max(24px, calc((100vw - 1550px) / 2));
}

.promotive-logo {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    text-decoration: none;
}

.promotive-logo img {
    display: block;
    width: auto;
    max-width: 245px;
    max-height: 48px;
}

.promotive-header-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    align-items: center;
    max-width: 620px;
    justify-self: center;
    width: 100%;
}

.promotive-header-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.promotive-header-search input {
    min-width: 0;
    height: 44px;
    border: 0;
    border-radius: 7px 0 0 7px;
    background: #ffffff;
    color: var(--text);
    padding: 0 16px;
    font-size: 15px;
}

.promotive-header-search button {
    height: 44px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0 7px 7px 0;
    background: #ffffff;
    color: var(--muted);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.promotive-header-bar .promotive-main-nav {
    display: none;
}

.promotive-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 220px;
}

.promotive-main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.promotive-main-nav a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.promotive-quote-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    padding: 0;
    font-weight: 900;
    text-decoration: none;
}

.promotive-quote-link__icon {
    font-size: 24px;
    line-height: 1;
}

.promotive-quote-link strong {
    display: inline-grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
}

.promotive-quote-link__label {
    font-size: 13px;
    max-width: 74px;
    line-height: 1.05;
}

.promotive-nav-strip {
    background: #f2f1ef;
    border-bottom: 1px solid var(--line);
}

.promotive-nav-strip .promotive-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 52px;
    overflow: visible;
}

.promotive-nav-strip a {
    color: #111111;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.promotive-category-menu__level {
    margin: 0;
    padding: 0;
    list-style: none;
}

.promotive-category-menu__level--root {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.promotive-category-menu__item {
    position: relative;
}

.promotive-category-menu__item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 52px;
}

.promotive-category-menu__level--root > .promotive-category-menu__item:first-child > a {
    color: var(--primary);
}

.promotive-menu-arrow {
    display: inline-grid;
    place-items: center;
    width: 16px;
    min-width: 16px;
    color: currentColor;
    font-family: var(--font-main), "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.promotive-menu-arrow::before {
    display: block;
}

.promotive-menu-arrow--down::before {
    content: "\2BC6";
}

.promotive-menu-arrow--right::before {
    content: "\2BC8";
}

.promotive-category-menu__level--dropdown,
.promotive-category-menu__level--flyout {
    position: absolute;
    z-index: 70;
    min-width: 260px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(25, 25, 28, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 140ms ease, transform 140ms ease;
}

.promotive-category-menu__level--dropdown {
    top: 100%;
    left: 0;
    padding: 8px 0;
}

.promotive-category-menu__level--flyout {
    top: -9px;
    left: calc(100% - 1px);
    padding: 8px 0;
    transform: translateX(8px);
}

.promotive-category-menu__item:hover > .promotive-category-menu__level,
.promotive-category-menu__item:focus-within > .promotive-category-menu__level {
    opacity: 1;
    pointer-events: auto;
    transform: translate(0, 0);
}

.promotive-category-menu__level--dropdown .promotive-category-menu__item > a,
.promotive-category-menu__level--flyout .promotive-category-menu__item > a {
    min-height: 40px;
    padding: 0 14px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.promotive-category-menu__level--dropdown .promotive-category-menu__item > a:hover,
.promotive-category-menu__level--dropdown .promotive-category-menu__item > a:focus,
.promotive-category-menu__level--flyout .promotive-category-menu__item > a:hover,
.promotive-category-menu__level--flyout .promotive-category-menu__item > a:focus {
    background: var(--soft);
    color: var(--primary);
}

.promotive-category-menu__item--product > a {
    max-width: 340px;
    white-space: normal;
    line-height: 1.25;
}

.promotive-category-menu__item--all > a {
    color: var(--primary) !important;
    font-weight: 600;
}

.promotive-services-link {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
}

.promotive-site-footer {
    border-top: 1px solid var(--line);
    background: #2b2a2c;
    color: rgba(255, 255, 255, 0.78);
}

.promotive-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
    gap: 42px;
    padding: 46px 0 34px;
}

.promotive-footer-brand img {
    display: block;
    width: 230px;
    max-width: 100%;
}

.promotive-footer-brand p,
.promotive-footer-quote p {
    margin: 16px 0 0;
    line-height: 1.6;
}

.promotive-site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
}

.promotive-site-footer nav {
    display: grid;
    align-content: start;
    gap: 9px;
}

.promotive-site-footer a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    text-decoration: none;
}

.promotive-footer-quote .promotive-button {
    width: fit-content;
    margin-top: 18px;
    color: #ffffff;
}

.promotive-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
    font-size: 14px;
}

.promotive-footer-bottom p {
    margin: 0;
}

.promotive-hero {
    background:
        linear-gradient(120deg, rgba(0, 75, 145, 0.94), rgba(24, 33, 47, 0.9)),
        radial-gradient(circle at 82% 20%, rgba(227, 38, 47, 0.2), transparent 36%);
    color: #ffffff;
    padding: 56px 0 44px;
}

.promotive-catalog-heading {
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    padding: 36px 0 28px;
}

.promotive-catalog-heading .promotive-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 32px;
    align-items: end;
}

.promotive-catalog-heading h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
}

.promotive-catalog-heading .promotive-hero__text {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
}

.promotive-hero .promotive-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 36px;
    align-items: end;
}

.promotive-commerce-home {
    background: #ffffff;
    padding: 24px 0 0;
}

.promotive-commerce-home .promotive-shell {
    width: min(1550px, calc(100% - 40px));
}

.promotive-promo-mosaic {
    display: grid;
    grid-template-columns: minmax(360px, 1.35fr) minmax(260px, 0.65fr) minmax(300px, 0.65fr);
    grid-template-rows: 260px 260px;
    gap: 24px;
}

.promotive-promo-card {
    position: relative;
    display: grid;
    align-content: start;
    overflow: hidden;
    border-radius: 7px;
    color: var(--text);
    padding: 28px 30px;
    text-decoration: none;
    isolation: isolate;
}

.promotive-promo-card::after {
    content: "";
    position: absolute;
    inset: auto 24px 24px auto;
    width: 260px;
    height: 160px;
    border-radius: 999px;
    background: rgba(212, 36, 39, 0.13);
    filter: blur(16px);
    z-index: -1;
}

.promotive-promo-card span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.promotive-promo-card h1,
.promotive-promo-card h2 {
    margin: 12px 0 0;
    max-width: 680px;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: 0;
}

.promotive-promo-card h1 {
    font-size: clamp(38px, 4vw, 58px);
}

.promotive-promo-card p {
    max-width: 550px;
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 1.55;
}

.promotive-promo-card strong {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    border: 1px solid currentColor;
    border-radius: 6px;
    padding: 0 22px;
}

.promotive-promo-card--hero {
    grid-row: span 2;
    background:
        linear-gradient(105deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.76) 56%, rgba(255,255,255,0.18) 100%),
        radial-gradient(circle at 72% 70%, rgba(212,36,39,0.24), transparent 30%),
        linear-gradient(145deg, #fff4f1, #f1efec);
}

.promotive-promo-card--hero::before {
    content: "";
    position: absolute;
    right: 34px;
    bottom: 26px;
    width: min(42%, 360px);
    aspect-ratio: 1.35;
    border-radius: 12px;
    background:
        linear-gradient(130deg, #ffffff, #dedbd6),
        var(--panel);
    box-shadow:
        -32px -18px 0 rgba(126,124,126,0.2),
        -86px 26px 0 rgba(212,36,39,0.13);
    transform: rotate(-7deg);
    z-index: -1;
}

.promotive-hero-products {
    position: absolute;
    right: 52px;
    bottom: 48px;
    width: 44%;
    min-width: 280px;
    height: 220px;
    pointer-events: none;
}

.promotive-hero-product {
    position: absolute;
    display: grid;
    width: 168px;
    height: 148px;
    place-items: center;
    border: 10px solid #ffffff;
    border-bottom-width: 28px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(46, 46, 50, 0.16);
}

.promotive-hero-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promotive-hero-product--1 {
    left: 0;
    bottom: 20px;
    transform: rotate(-10deg);
}

.promotive-hero-product--2 {
    left: 110px;
    bottom: 0;
    z-index: 2;
    transform: rotate(4deg);
}

.promotive-hero-product--3 {
    left: 220px;
    bottom: 30px;
    transform: rotate(9deg);
}

.promotive-promo-card--quote {
    background: #e8e7e4;
}

.promotive-promo-card--trust {
    grid-row: span 2;
    background: linear-gradient(145deg, var(--charcoal-dark), #171719 72%);
    color: #ffffff;
}

.promotive-promo-card--trust h2 {
    font-size: 32px;
}

.promotive-promo-card--trust ul {
    display: grid;
    gap: 24px;
    margin: 54px 0 0;
    padding: 0;
    list-style: none;
}

.promotive-promo-card--trust li {
    position: relative;
    padding-left: 40px;
    font-size: 19px;
    line-height: 1.35;
}

.promotive-promo-card--trust li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-weight: 900;
}

.promotive-promo-card--small {
    background: linear-gradient(145deg, #f9f8f6, #ddd9d5);
}

.promotive-promo-card--small ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.25;
}

.promotive-promo-card--small li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promotive-promo-card--dark {
    background: linear-gradient(145deg, #4b494c, #201f21);
    color: #ffffff;
}

.promotive-category-section {
    padding: 58px 0 18px;
}

.promotive-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.promotive-section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.08;
    font-weight: 500;
}

.promotive-section-heading a {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.promotive-top-category-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.promotive-category-card {
    display: grid;
    min-height: 170px;
    align-content: space-between;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.02) 42%),
        linear-gradient(145deg, #96918a, #d8d4ce);
    color: #ffffff;
    padding: 20px;
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.promotive-category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.09);
    transform: translateY(-2px);
}

.promotive-category-card span {
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    font-weight: 800;
}

.promotive-category-card strong {
    font-size: 24px;
    line-height: 1.15;
}

.promotive-product-variety,
.promotive-services,
.promotive-favourite {
    padding: 34px 0 18px;
}

.promotive-variety-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.promotive-variety-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text);
    text-decoration: none;
}

.promotive-variety-card span {
    display: grid;
    aspect-ratio: 1 / 0.76;
    place-items: center;
    background: #fafafa;
}

.promotive-variety-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.promotive-variety-card strong {
    align-self: end;
    padding: 18px;
    font-size: 18px;
    line-height: 1.25;
}

.promotive-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.promotive-service-grid article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f1f0ed;
    padding: 28px;
    min-height: 280px;
}

.promotive-service-grid article::before {
    content: "";
    display: block;
    height: 140px;
    margin: -28px -28px 24px;
    background:
        radial-gradient(circle at 70% 45%, rgba(212,36,39,0.38), transparent 28%),
        linear-gradient(145deg, #c8c4be, #edeae5);
}

.promotive-service-grid span {
    color: var(--primary);
    font-weight: 900;
}

.promotive-service-grid h3 {
    margin: 8px 0 0;
    font-size: 26px;
    line-height: 1.25;
}

.promotive-service-grid p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.promotive-icon-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 70px;
}

.promotive-icon-category-grid a {
    display: grid;
    min-height: 118px;
    place-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    text-align: center;
    text-decoration: none;
}

.promotive-icon-category-grid span {
    font-size: 34px;
    line-height: 1;
}

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

.promotive-hero h1,
.promotive-product-summary h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}

.promotive-hero__text {
    max-width: 680px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.65;
}

.promotive-search {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 18px;
}

.promotive-search label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
}

.promotive-search div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.promotive-search input[type="search"] {
    min-width: 0;
    border: 0;
    border-radius: 6px;
    padding: 13px 14px;
    font-size: 15px;
}

.promotive-search button,
.promotive-button,
.promotive-price-filter button,
.promotive-quote-item button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 46px;
    border: 0;
    border-radius: 6px;
    background: var(--primary) !important;
    color: #ffffff !important;
    padding: 0 18px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background 160ms ease, transform 160ms ease;
}

.promotive-button {
    min-width: 150px;
}

.promotive-search button:hover,
.promotive-button:hover,
.promotive-price-filter button:hover,
.promotive-quote-item button:hover {
    background: var(--primary-dark) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.promotive-button--outline {
    border: 1px solid currentColor;
    background: transparent !important;
    color: var(--primary) !important;
}

.promotive-home-hero .promotive-button--outline {
    color: #ffffff;
}

.promotive-button--outline:hover {
    background: var(--primary);
    color: #ffffff;
}

.promotive-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    padding: 42px 0 70px;
}

.promotive-filters {
    position: sticky;
    top: 24px;
    align-self: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    padding: 18px;
}

.promotive-filter-heading {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.promotive-filter-heading h2 {
    margin: 0;
    font-size: 20px;
}

.promotive-filter-heading a {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.promotive-filter-group {
    border-bottom: 1px solid var(--promotive-line);
    padding: 0 0 24px;
    margin-bottom: 24px;
}

.promotive-filter-help {
    border-radius: 8px;
    background: var(--charcoal-dark);
    color: #ffffff;
    padding: 18px;
}

.promotive-filter-help strong {
    display: block;
    font-size: 18px;
}

.promotive-filter-help p {
    margin: 8px 0 14px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.5;
}

.promotive-filter-help a {
    color: #ffffff;
    font-weight: 900;
}

.promotive-filter-group h2 {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.25;
}

.promotive-filter-group nav {
    display: grid;
    gap: 4px;
}

.promotive-price-filter label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.promotive-price-filter select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--text);
    padding: 0 10px;
}

.promotive-price-filter button {
    width: 100%;
    margin-top: 10px;
}

.promotive-filter-group a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 6px;
    color: var(--promotive-ink);
    padding: 9px 10px;
    text-decoration: none;
}

.promotive-filter-group a:hover {
    background: var(--promotive-soft);
}

.promotive-filter-group small {
    color: var(--promotive-muted);
}

.promotive-results__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--promotive-muted);
}

.promotive-results__bar p {
    margin: 0;
}

.promotive-results__bar a {
    color: var(--promotive-blue);
    font-weight: 800;
    text-decoration: none;
}

.promotive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 20px 0;
}

.promotive-search-results {
    padding: 34px 0 70px;
}

.promotive-search-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.promotive-search-grid .promotive-product-card {
    grid-template-rows: 150px 1fr;
    min-height: 390px;
}

.promotive-search-grid .promotive-product-card__body {
    min-width: 0;
    padding: 13px 14px 15px;
}

.promotive-search-grid .promotive-product-card__image {
    aspect-ratio: auto;
    height: 150px;
    overflow: hidden;
}

.promotive-search-grid .promotive-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 12px;
}

.promotive-search-grid .promotive-tags {
    min-height: 25px;
}

.promotive-search-grid .promotive-product-card h2 {
    font-size: 15px;
    min-height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.promotive-search-grid .promotive-product-card dl {
    min-height: 76px;
}

.promotive-search-grid .promotive-product-card dl div {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px;
}

.promotive-search-grid .promotive-product-card dd {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.promotive-search-grid .promotive-card-colors {
    min-height: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.promotive-search-grid .promotive-quick-look {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: auto;
}

.promotive-product-card {
    display: grid;
    grid-template-rows: 150px 1fr;
    overflow: hidden;
    border: 1px solid var(--promotive-line);
    border-radius: 6px;
    background: #ffffff;
    min-width: 0;
    height: 100%;
    min-height: 390px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.promotive-product-card:hover,
.promotive-product-card:focus-within {
    border-color: var(--primary);
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.09);
    transform: translateY(-2px);
}

.promotive-product-card__image {
    display: grid;
    height: 150px;
    min-height: 150px;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--promotive-line);
    background: #f7f6f5;
    color: var(--promotive-muted);
    text-decoration: none;
}

.promotive-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 12px;
    transition: transform 180ms ease;
}

.promotive-product-card:hover .promotive-product-card__image img {
    transform: scale(1.035);
}

.promotive-product-card__body {
    display: flex;
    flex-direction: column;
    padding: 14px 16px 16px;
}

.promotive-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-height: 27px;
    margin-bottom: 12px;
    overflow: hidden;
}

.promotive-tags a {
    border: 1px solid var(--promotive-line);
    border-radius: 999px;
    color: var(--promotive-blue);
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.promotive-product-card h2 {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.25;
    min-height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.promotive-product-card h2 a {
    color: var(--promotive-ink);
    text-decoration: none;
}

.promotive-product-card dl,
.promotive-spec-list {
    display: grid;
    gap: 7px;
    margin: 0;
}

.promotive-product-card dl {
    min-height: 72px;
}

.promotive-product-card dl div,
.promotive-spec-list div {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
}

.promotive-product-card dt,
.promotive-spec-list dt {
    color: var(--promotive-muted);
    font-size: 11px;
    font-weight: 800;
}

.promotive-product-card dd,
.promotive-spec-list dd {
    margin: 0;
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.promotive-product-card dd {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.promotive-card-colors {
    margin: 14px 0 0;
    color: var(--promotive-muted);
    font-size: 12px;
    min-height: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.promotive-quick-look {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin-top: auto;
    border: 1px solid var(--primary);
    border-radius: 5px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    opacity: 1;
    transform: none;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.promotive-product-card:hover .promotive-quick-look,
.promotive-product-card:focus-within .promotive-quick-look {
    transform: translateY(-1px);
}

.promotive-quick-look:hover {
    background: var(--primary);
    color: #ffffff;
}

.promotive-pagination {
    margin-top: 32px;
}

.promotive-empty {
    border: 1px solid var(--promotive-line);
    border-radius: 8px;
    padding: 34px;
    background: var(--promotive-soft);
}

.promotive-breadcrumb {
    padding: 24px 0;
    color: var(--promotive-muted);
    font-size: 14px;
}

.promotive-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.promotive-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.promotive-breadcrumb li + li::before {
    content: "›";
    color: var(--muted);
    font-weight: 600;
}

.promotive-breadcrumb a {
    color: var(--promotive-blue);
    font-weight: 600;
    text-decoration: none;
}

.promotive-breadcrumb span {
    color: var(--promotive-muted);
}

.promotive-offer-strip {
    background: #f0d9d9;
    color: var(--text);
}

.promotive-offer-strip .promotive-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 46px;
}

.promotive-offer-strip a {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.promotive-product-config {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(520px, 1.4fr);
    gap: 54px;
    align-items: start;
    padding: 18px 0 64px;
}

.promotive-product-media {
    position: sticky;
    top: 170px;
}

.promotive-gallery__main {
    display: grid;
    aspect-ratio: 1 / 1.04;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: var(--promotive-muted);
}

.promotive-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 34px;
    cursor: zoom-in;
}

.promotive-lightbox-open {
    overflow: hidden;
}

.promotive-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(17, 24, 39, 0.82);
    cursor: zoom-out;
}

.promotive-image-lightbox img {
    display: block;
    max-width: min(1120px, 94vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    cursor: default;
}

.promotive-image-lightbox__close {
    position: fixed;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--promotive-ink);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.promotive-gallery-carousel {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
    align-items: center;
    margin-top: 18px;
}

.promotive-gallery-carousel__nav {
    display: grid;
    place-items: center;
    width: 34px;
    height: 52px;
    border: 1px solid var(--promotive-line);
    border-radius: 7px;
    background: #ffffff;
    color: var(--promotive-ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.promotive-gallery-carousel__nav:hover,
.promotive-gallery-carousel__nav:focus {
    background: #ffffff;
    color: var(--promotive-blue);
    border-color: var(--promotive-blue);
}

.promotive-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding: 2px;
}

.promotive-variant-thumb {
    flex: 0 0 68px;
    display: grid;
    place-items: center;
    width: 68px;
    aspect-ratio: 1;
    border: 1px solid var(--promotive-line);
    border-radius: 7px;
    background: #ffffff;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.promotive-variant-thumb:hover,
.promotive-variant-thumb:focus,
.promotive-variant-thumb:active {
    background: #ffffff;
    color: inherit;
    border-color: var(--promotive-blue);
}

.promotive-variant-thumb:focus-visible {
    outline: 2px solid rgba(20, 92, 168, 0.28);
    outline-offset: 2px;
}

.promotive-variant-thumb.is-active {
    border-color: var(--promotive-blue);
    box-shadow: 0 0 0 2px rgba(20, 92, 168, 0.12);
}

.promotive-variant-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    padding: 8px;
}

.promotive-variant-thumb__image {
    display: block;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.promotive-product-panel {
    min-width: 0;
}

.promotive-product-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.promotive-product-icons {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 22px;
}

.promotive-product-panel h1 {
    margin: 8px 0 0;
    font-size: clamp(34px, 3.8vw, 54px);
    line-height: 1.08;
    letter-spacing: 0;
}

.promotive-product-code {
    margin: 12px 0 0;
    color: var(--muted);
    font-weight: 800;
}

.promotive-stock-tag {
    display: inline-flex;
    margin: 0 0 14px;
    border-radius: 999px;
    background: #e9f7ef;
    color: #146c3f;
    padding: 6px 11px;
    font-size: 13px;
    font-weight: 900;
}

.promotive-product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 72px 0 34px;
}

.promotive-product-tabs a {
    border-radius: 999px;
    background: var(--soft);
    color: var(--text);
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.promotive-product-panel .promotive-product-tabs {
    display: none;
}

.promotive-lead {
    margin: 18px 0 0;
    color: var(--promotive-muted);
    font-size: 18px;
    line-height: 1.6;
}

.promotive-config-form {
    display: grid;
    gap: 0;
}

.promotive-config-form h2 {
    margin: 34px 0 8px;
    font-size: 28px;
    font-weight: 500;
}

.promotive-option-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 72px;
    border-top: 1px solid var(--line);
}

.promotive-option-row label {
    font-weight: 900;
}

.promotive-option-row select,
.promotive-option-row input {
    width: 100%;
    min-height: 48px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 16px;
}

.promotive-option-row select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.promotive-static-option {
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 16px;
}

.promotive-config-subtotal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-height: 54px;
    background: var(--soft);
    padding: 0 18px;
    font-weight: 900;
}

.promotive-config-subtotal span {
    color: var(--text);
}

.promotive-config-subtotal strong {
    color: var(--muted);
}

.promotive-live-stock {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0;
}

.promotive-live-stock div {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px;
    background: #ffffff;
}

.promotive-live-stock span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25;
}

.promotive-live-stock strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.25;
}

.promotive-delivery-card {
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--line);
    padding: 24px 0;
}

.promotive-delivery-card span {
    color: var(--muted);
}

.promotive-delivery-card strong {
    font-size: 18px;
}

.promotive-product-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--line);
    margin-top: 22px;
    padding-top: 22px;
}

.promotive-product-actions .promotive-button {
    min-width: 190px;
}

.promotive-sticky-quote .promotive-button {
    min-width: 170px;
}

.promotive-sticky-quote form {
    margin: 0;
}

#artwork-info,
#product-details,
#order-sample,
#safety-details {
    display: none;
}

.promotive-detail-tabs {
    border-top: 1px solid var(--line);
    padding: 42px 0 50px;
}

.promotive-detail-tabs__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.promotive-detail-tabs__nav button {
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f6f6f6;
    color: var(--text);
    padding: 0 18px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.promotive-detail-tabs__nav button:hover,
.promotive-detail-tabs__nav button:focus,
.promotive-detail-tabs__nav button.is-active {
    border-color: var(--primary);
    background: #ffffff;
    color: var(--primary);
}

.promotive-detail-tabs__panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: #ffffff;
}

.promotive-detail-tabs__panel[hidden] {
    display: none;
}

.promotive-detail-tabs__panel ul {
    display: grid;
    gap: 12px;
    margin: 0;
}

.promotive-detail-tabs__panel p,
.promotive-detail-tabs__panel li {
    font-size: 16px;
    line-height: 1.72;
}

.promotive-similar-products {
    border-top: 1px solid var(--line);
    padding: 48px 0 74px;
}

.promotive-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.promotive-section-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.promotive-info-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: 70px;
    border-top: 1px solid var(--line);
    padding: 76px 0;
}

.promotive-info-section h2 {
    margin: 0 0 22px;
    font-size: 28px;
    font-weight: 500;
}

.promotive-info-section p,
.promotive-info-section li {
    font-size: 17px;
    line-height: 1.75;
}

.promotive-info-section ul {
    display: grid;
    gap: 12px;
    margin: 0;
}

.promotive-info-visual {
    display: grid;
    place-items: center;
}

.promotive-info-visual img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.promotive-sticky-quote {
    position: sticky;
    bottom: 0;
    z-index: 40;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -6px 24px rgba(16, 24, 40, 0.12);
    pointer-events: none;
}

.promotive-sticky-quote .promotive-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    min-height: 78px;
}

.promotive-sticky-quote a,
.promotive-sticky-quote button {
    pointer-events: auto;
}

.promotive-sticky-quote span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.promotive-summary-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
}

.promotive-summary-actions span {
    color: var(--promotive-muted);
    font-weight: 800;
}

.promotive-spec-list {
    border-top: 1px solid var(--promotive-line);
    padding-top: 18px;
}

.promotive-spec-list div {
    grid-template-columns: 150px minmax(0, 1fr);
    border-bottom: 1px solid var(--promotive-line);
    padding-bottom: 10px;
}

.promotive-spec-list div.promotive-spec-list__section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
}

.promotive-spec-list__section dt {
    color: var(--promotive-ink);
    font-size: 15px;
    line-height: 1.3;
}

.promotive-spec-list__section dd {
    font-size: 14px;
    line-height: 1.55;
}

.promotive-content-block {
    border-top: 1px solid var(--promotive-line);
    padding: 34px 0;
}

.promotive-content-block h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.promotive-table-wrap {
    overflow-x: auto;
}

.promotive-variations {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 14px;
}

.promotive-variations th,
.promotive-variations td {
    border-bottom: 1px solid var(--promotive-line);
    padding: 11px 12px;
    text-align: left;
    vertical-align: top;
}

.promotive-variations th {
    background: var(--promotive-soft);
    color: var(--promotive-ink);
    font-size: 12px;
    text-transform: uppercase;
}

.promotive-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 24px 0 72px;
    border-radius: 8px;
    background: var(--promotive-blue);
    color: #ffffff;
    padding: 28px;
}

.promotive-page-hero {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    padding: 48px 0;
}

.promotive-page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
}

.promotive-page-hero p:last-child {
    max-width: 660px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.promotive-quote-page {
    display: grid;
    gap: 24px;
    padding: 38px 0 74px;
}

.promotive-notice {
    border-radius: 8px;
    padding: 16px 18px;
}

.promotive-notice h2,
.promotive-notice p {
    margin: 0;
}

.promotive-notice p {
    margin-top: 6px;
}

.promotive-notice--success {
    border: 1px solid #b7e4c7;
    background: #effaf3;
    color: #14532d;
}

.promotive-notice--error {
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #991b1b;
}

.promotive-quote-items,
.promotive-request-form {
    display: grid;
    gap: 14px;
}

.promotive-quote-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 130px auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
}

.promotive-quote-item__image {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 6px;
    background: var(--soft);
}

.promotive-quote-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.promotive-quote-item h2 {
    margin: 0 0 4px;
    font-size: 18px;
}

.promotive-quote-item h2 a {
    color: var(--text);
    text-decoration: none;
}

.promotive-quote-item p {
    margin: 0;
    color: var(--muted);
}

.promotive-quote-item label,
.promotive-request-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.promotive-quote-item input,
.promotive-request-form input,
.promotive-request-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--text);
    padding: 10px 12px;
}

.promotive-request-form {
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

.promotive-request-form h2 {
    margin: 0;
    font-size: 28px;
}

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

.promotive-form-grid__wide {
    grid-column: 1 / -1;
}

.promotive-cta h2,
.promotive-cta p {
    margin: 0;
}

.promotive-cta h2 {
    font-size: 28px;
}

.promotive-cta p:last-child {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.promotive-button--light {
    background: #ffffff;
    color: var(--promotive-blue);
}

.promotive-button--light:hover {
    background: #eef2f6;
    color: var(--promotive-blue);
}

@media (max-width: 980px) {
    .promotive-hero .promotive-shell,
    .promotive-layout,
    .promotive-product-config,
    .promotive-info-section,
    .promotive-catalog-heading .promotive-shell {
        grid-template-columns: 1fr;
    }

    .promotive-product-media {
        position: static;
    }

    .promotive-header-bar {
        grid-template-columns: 220px minmax(0, 1fr) auto;
    }

    .promotive-main-nav {
        display: none;
    }

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

    .promotive-search-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .promotive-promo-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .promotive-promo-card--hero,
    .promotive-promo-card--trust {
        grid-row: auto;
    }

    .promotive-filters {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        padding: 16px;
    }

    .promotive-filter-group {
        margin: 0;
    }

    .promotive-top-category-row,
    .promotive-variety-grid,
    .promotive-service-grid,
    .promotive-icon-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promotive-quote-item {
        grid-template-columns: 82px minmax(0, 1fr);
    }

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

@media (max-width: 640px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .promotive-shell {
        width: min(100% - 24px, 1180px);
    }

    .promotive-hero {
        padding: 42px 0 32px;
    }

    .promotive-hero h1,
    .promotive-product-summary h1 {
        font-size: 36px;
    }

    .promotive-header-bar {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: 64px;
    }

    .promotive-header-search,
    .promotive-quote-link__label {
        display: none;
    }

    .promotive-header-actions {
        gap: 8px;
        min-width: 0;
    }

    .promotive-language-switcher {
        gap: 4px;
        padding: 2px;
    }

    .promotive-language-switcher a {
        min-width: 30px;
        height: 28px;
    }

    .promotive-utility-bar {
        border-top-width: 4px;
    }

    .promotive-utility-bar .promotive-shell {
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
        justify-content: flex-end;
        min-height: 38px;
    }

    .promotive-utility-items,
    .promotive-utility-actions > a {
        display: none;
    }

    .promotive-logo img {
        max-width: 190px;
    }

    .promotive-nav-strip .promotive-shell {
        width: 100%;
        max-width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        gap: 18px;
        padding: 0 12px;
        overflow-x: auto;
        overflow-y: visible;
    }

    .promotive-category-menu__level--root {
        justify-content: flex-start;
        gap: 18px;
    }

    .promotive-category-menu__level--dropdown {
        min-width: min(300px, calc(100vw - 24px));
    }

    .promotive-category-menu__level--flyout {
        top: 100%;
        left: 16px;
        min-width: min(280px, calc(100vw - 48px));
        transform: translateY(8px);
    }

    .promotive-offer-strip {
        display: none;
    }

    .promotive-product-panel {
        order: 1;
    }

    .promotive-product-media {
        order: 2;
    }

    .promotive-product-panel h1 {
        font-size: 34px;
    }

    .promotive-gallery__main {
        aspect-ratio: 1 / 0.82;
    }

    .promotive-commerce-home .promotive-shell {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0 12px;
    }

    .promotive-promo-mosaic,
    .promotive-top-category-row,
    .promotive-variety-grid,
    .promotive-service-grid,
    .promotive-icon-category-grid {
        grid-template-columns: 1fr;
    }

    .promotive-promo-card {
        min-width: 0;
        min-height: 230px;
        padding: 22px;
    }

    .promotive-promo-card h1 {
        max-width: 280px;
        font-size: 24px;
        overflow-wrap: anywhere;
    }

    .promotive-promo-card h2 {
        max-width: 280px;
        font-size: 24px;
        overflow-wrap: anywhere;
    }

    .promotive-promo-card p {
        max-width: 280px;
        overflow-wrap: anywhere;
    }

    .promotive-hero-products {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-width: 0;
        height: 170px;
        margin-top: 24px;
    }

    .promotive-hero-product {
        width: 126px;
        height: 118px;
    }

    .promotive-hero-product--2 {
        left: 82px;
    }

    .promotive-hero-product--3 {
        left: 164px;
    }

    .promotive-search div,
    .promotive-filters,
    .promotive-grid,
    .catalog-grid,
    .promotive-search-grid,
    .promotive-results__bar,
    .promotive-form-grid,
    .promotive-add-quote,
    .promotive-option-row,
    .promotive-live-stock,
    .promotive-product-actions,
    .promotive-sticky-quote .promotive-shell,
    .promotive-footer-grid,
    .promotive-footer-bottom {
        grid-template-columns: 1fr;
    }

    .promotive-option-row {
        gap: 4px;
        padding: 14px 0;
    }

    .promotive-product-tabs {
        margin: 28px 0 22px;
    }

    .promotive-detail-tabs__nav {
        grid-template-columns: 1fr;
    }

    .promotive-detail-tabs__panel {
        padding: 20px;
    }

    .promotive-info-section {
        gap: 24px;
        padding: 44px 0;
    }

    .promotive-results__bar {
        display: grid;
    }

    .promotive-product-card dl div,
    .promotive-spec-list div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .promotive-gallery-carousel {
        grid-template-columns: 30px minmax(0, 1fr) 30px;
    }

    .promotive-gallery-carousel__nav {
        width: 30px;
        height: 48px;
    }

    .promotive-variant-thumb {
        flex-basis: 62px;
        width: 62px;
    }

    .promotive-cta {
        display: grid;
        padding: 22px;
    }

    .promotive-add-quote label,
    .promotive-add-quote input,
    .promotive-add-quote button,
    .promotive-add-quote em {
        grid-column: auto;
        grid-row: auto;
    }

    .promotive-quote-item {
        grid-template-columns: 1fr;
    }

    .promotive-sticky-quote {
        position: static;
    }

    .promotive-footer-grid {
        gap: 26px;
    }
}

html body,
html body button,
html body input,
html body select,
html body textarea,
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6,
html body .main-navigation,
html body .promotive-page,
html body .promotive-site-header,
html body .promotive-site-footer {
    font-family: var(--font-main) !important;
}

/* Promotive 2026 home */
.promotive-v2-home {
    background: #fbfaf8;
}

.promotive-v2-home svg {
    width: 1.25em;
    height: 1.25em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promotive-v2-hero {
    background:
        radial-gradient(circle at 70% 18%, rgba(212, 36, 39, 0.08), transparent 30%),
        linear-gradient(180deg, #fbfaf8 0%, #f7f4ef 100%);
    border-bottom: 1px solid rgba(44, 43, 45, 0.08);
}

.promotive-v2-hero__grid {
    display: grid;
    grid-template-columns: minmax(350px, 0.95fr) minmax(420px, 1.25fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    min-height: 540px;
    padding: clamp(48px, 6vw, 78px) 0;
}

.promotive-v2-eyebrow {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.promotive-v2-hero h1 {
    margin: 0;
    max-width: 620px;
    color: #171719;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.04;
    font-weight: 900;
}

.promotive-v2-hero h1 span {
    color: var(--primary);
}

.promotive-v2-hero__lead {
    max-width: 520px;
    margin: 24px 0 0;
    color: #3f3e41;
    font-size: 17px;
    line-height: 1.55;
}

.promotive-v2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.promotive-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.promotive-v2-btn:hover,
.promotive-v2-btn:focus {
    transform: translateY(-1px);
}

.promotive-v2-btn--red {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(212, 36, 39, 0.18);
}

.promotive-v2-btn--light {
    background: #ffffff;
    color: #171719;
    border-color: rgba(44, 43, 45, 0.16);
}

.promotive-v2-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
}

.promotive-v2-hero__features span {
    display: inline-grid;
    grid-template-columns: 38px auto;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    color: #59565a;
    font-size: 13px;
}

.promotive-v2-hero__features svg {
    grid-row: span 2;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 10px;
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(44, 43, 45, 0.08);
}

.promotive-v2-hero__features strong {
    color: #171719;
    font-size: 15px;
}

.promotive-v2-hero__visual {
    position: relative;
    min-height: 440px;
    isolation: isolate;
}

.promotive-v2-hero__orb {
    position: absolute;
    inset: 20px 74px 40px 40px;
    z-index: -1;
    border-radius: 999px;
    background: var(--primary);
}

.promotive-v2-hero-product {
    position: absolute;
    display: grid;
    place-items: center;
    background: transparent;
    text-decoration: none;
}

.promotive-v2-hero-product img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(44, 43, 45, 0.22));
}

.promotive-v2-hero-product > span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #d9d5ce);
    color: rgba(23, 23, 25, 0.66);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    box-shadow: 0 22px 28px rgba(44, 43, 45, 0.22);
}

.promotive-v2-hero-product--1 {
    left: 16%;
    bottom: 16%;
    width: 150px;
    height: 190px;
}

.promotive-v2-hero-product--1 > span {
    border-radius: 999px 999px 14px 14px;
    background: linear-gradient(145deg, #161719, #45464a);
    color: #ffffff;
}

.promotive-v2-hero-product--2 {
    left: 34%;
    bottom: 10%;
    width: 230px;
    height: 260px;
}

.promotive-v2-hero-product--2 > span {
    background: linear-gradient(145deg, #26272b, #111214);
    color: rgba(255, 255, 255, 0.72);
}

.promotive-v2-hero-product--3 {
    right: 8%;
    bottom: 6%;
    width: 250px;
    height: 330px;
}

.promotive-v2-hero-product--3 > span {
    background: linear-gradient(145deg, #f4eadf, #d7c4b1);
    color: rgba(64, 54, 48, 0.72);
}

.promotive-v2-hero-product--4 {
    left: 6%;
    bottom: 4%;
    width: 230px;
    height: 100px;
}

.promotive-v2-hero-product--4 > span {
    border-radius: 999px;
    background: linear-gradient(145deg, #f9f6ef, #c7bfb2);
    color: rgba(23, 23, 25, 0.62);
}

.promotive-v2-rating-card {
    position: absolute;
    right: 0;
    top: 34%;
    width: 220px;
    padding: 22px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(44, 43, 45, 0.16);
}

.promotive-v2-rating-card strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #171719;
    font-size: 20px;
}

.promotive-v2-rating-card strong svg {
    color: #0fac65;
    fill: #0fac65;
    stroke: #0fac65;
}

.promotive-v2-rating-card span,
.promotive-v2-rating-card p {
    display: block;
    margin: 8px 0 0;
    color: #403f42;
    font-size: 13px;
    line-height: 1.35;
}

.promotive-v2-rating-card hr {
    border: 0;
    border-top: 1px solid rgba(44, 43, 45, 0.1);
    margin: 16px 0;
}

.promotive-v2-clients {
    padding: 26px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(44, 43, 45, 0.08);
}

.promotive-v2-clients p {
    margin: 0 0 18px;
    color: #89858a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.promotive-v2-client-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.promotive-v2-client-row img {
    display: block;
    max-width: 112px;
    max-height: 38px;
    width: 100%;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
}

.promotive-v2-section {
    padding: 42px 0 0;
}

.promotive-v2-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.promotive-v2-section-head h2,
.promotive-v2-how h2 {
    margin: 0;
    color: #171719;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.15;
    font-weight: 900;
}

.promotive-v2-section-head a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

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

.promotive-v2-category {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 176px;
    overflow: hidden;
    border-radius: 8px;
    color: #ffffff;
    padding: 18px;
    text-decoration: none;
    background: #2c2b2d;
}

.promotive-v2-category::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.78));
}

.promotive-v2-category__image {
    position: absolute;
    inset: 0;
}

.promotive-v2-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transition: transform 180ms ease;
}

.promotive-v2-category:hover .promotive-v2-category__image img {
    transform: scale(1.05);
}

.promotive-v2-category__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #171719;
}

.promotive-v2-category strong,
.promotive-v2-category em {
    position: relative;
    z-index: 1;
}

.promotive-v2-category strong {
    font-size: 17px;
    font-weight: 900;
}

.promotive-v2-category em {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-style: normal;
}

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

.promotive-v2-product {
    position: relative;
    display: grid;
    grid-template-rows: 170px auto auto auto;
    min-height: 312px;
    padding: 14px;
    border: 1px solid rgba(44, 43, 45, 0.12);
    border-radius: 8px;
    background: #ffffff;
}

.promotive-v2-product__heart {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: var(--primary);
    text-decoration: none;
}

.promotive-v2-product__image {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 155px;
    border-radius: 6px;
    overflow: hidden;
}

.promotive-v2-product__image img {
    width: 100%;
    height: 155px;
    object-fit: contain;
}

.promotive-v2-product__image img.promotive-v2-product__img--small {
    width: 80%;
    height: 124px;
}

.promotive-v2-product__image img.promotive-v2-product__img--shirt {
    width: 110%;
    height: 171px;
}

.promotive-v2-product__image img.promotive-v2-product__img--usb {
    width: 120%;
    height: 186px;
}

.promotive-v2-product__image--icon {
    min-height: 155px;
    border-radius: 6px;
    background: #f7f5f2;
    color: var(--primary);
}

.promotive-v2-product__image--icon svg {
    width: 72px;
    height: 72px;
    stroke-width: 1.4;
}

.promotive-v2-product h3 {
    margin: 8px 0 0;
    min-height: 40px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}

.promotive-v2-product h3 a {
    color: #171719;
    text-decoration: none;
}

.promotive-v2-product p {
    margin: 8px 0 12px;
    color: #77747a;
    font-size: 12px;
}

.promotive-v2-product__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: auto;
    border: 1px solid rgba(44, 43, 45, 0.18);
    border-radius: 4px;
    color: #171719;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.promotive-v2-how {
    padding: 44px 0 0;
}

.promotive-v2-how h2 {
    margin-bottom: 18px;
    text-align: center;
}

.promotive-v2-how__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.promotive-v2-how article {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 18px;
    padding: 26px 28px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(44, 43, 45, 0.04);
}

.promotive-v2-how article > svg {
    grid-row: span 3;
    width: 62px;
    height: 62px;
    padding: 16px;
    border-radius: 999px;
    background: #f8e8e8;
    color: #171719;
}

.promotive-v2-how span {
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
}

.promotive-v2-how h3 {
    margin: 4px 0 0;
    font-size: 17px;
    font-weight: 900;
}

.promotive-v2-how p {
    margin: 8px 0 0;
    color: #5f5d61;
    font-size: 14px;
    line-height: 1.45;
}

.promotive-v2-project-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.promotive-v2-project {
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(44, 43, 45, 0.12);
}

.promotive-v2-project img {
    display: block;
    width: 100%;
    height: 112px;
    object-fit: cover;
    filter: grayscale(0.25);
}

.promotive-v2-project__placeholder {
    display: grid;
    place-items: center;
    height: 112px;
    background: linear-gradient(135deg, #1b1c20, #5a5451);
    color: #ffffff;
}

.promotive-v2-project__placeholder svg {
    width: 42px;
    height: 42px;
}

.promotive-v2-project div {
    padding: 12px 14px;
}

.promotive-v2-project strong {
    display: block;
    color: #171719;
    font-size: 13px;
    font-weight: 900;
}

.promotive-v2-project span {
    display: block;
    margin-top: 3px;
    color: #66636a;
    font-size: 12px;
}

.promotive-v2-quote-cta {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 28px;
    padding: 28px 34px;
    border-radius: 8px;
    background: #18191d;
    color: #ffffff;
}

.promotive-v2-quote-cta > span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
}

.promotive-v2-quote-cta h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
}

.promotive-v2-quote-cta p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1180px) {
    .promotive-v2-category-grid,
    .promotive-v2-product-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .promotive-v2-project-grid,
    .promotive-v2-client-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .promotive-v2-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .promotive-v2-hero__visual {
        min-height: 360px;
    }

    .promotive-v2-hero-product--3 {
        right: 14%;
    }

    .promotive-v2-rating-card {
        right: 20px;
        top: 20px;
    }

    .promotive-v2-how__grid {
        grid-template-columns: 1fr;
    }

    .promotive-v2-quote-cta {
        grid-template-columns: 52px 1fr;
    }

    .promotive-v2-quote-cta .promotive-v2-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .promotive-v2-hero__grid {
        padding: 34px 0 38px;
    }

    .promotive-v2-hero h1 {
        font-size: 34px;
    }

    .promotive-v2-hero__actions,
    .promotive-v2-hero__features {
        display: grid;
        grid-template-columns: 1fr;
    }

    .promotive-v2-hero__visual {
        min-height: 300px;
        overflow: hidden;
    }

    .promotive-v2-hero__orb {
        inset: 28px 26px 38px;
    }

    .promotive-v2-hero-product--1 {
        left: 6%;
        width: 118px;
        height: 148px;
    }

    .promotive-v2-hero-product--2 {
        left: 28%;
        width: 160px;
        height: 190px;
    }

    .promotive-v2-hero-product--3 {
        right: -2%;
        width: 170px;
        height: 230px;
    }

    .promotive-v2-hero-product--4 {
        left: 8%;
        width: 170px;
    }

    .promotive-v2-rating-card {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        margin: 220px 16px 0;
    }

    .promotive-v2-client-row {
        display: flex;
        gap: 28px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .promotive-v2-client-row img {
        flex: 0 0 100px;
        scroll-snap-align: start;
    }

    .promotive-v2-section-head {
        align-items: flex-end;
    }

    .promotive-v2-category-grid,
    .promotive-v2-product-row,
    .promotive-v2-project-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .promotive-v2-category,
    .promotive-v2-product,
    .promotive-v2-project {
        flex: 0 0 78%;
        scroll-snap-align: start;
    }

    .promotive-v2-how article {
        grid-template-columns: 58px 1fr;
        padding: 22px;
    }

    .promotive-v2-how article > svg {
        width: 52px;
        height: 52px;
        padding: 13px;
    }

    .promotive-v2-quote-cta {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }

.promotive-v2-quote-cta > span {
        margin: 0 auto;
    }
}

.promotive-site-footer .promotive-footer-grid {
    grid-template-columns: minmax(230px, 1.25fr) repeat(4, minmax(120px, 0.7fr));
}

.promotive-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.promotive-footer-socials a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.promotive-footer-contact p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.promotive-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #20c567;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(32, 197, 103, 0.28);
    font-size: 0;
    font-weight: 900;
    text-decoration: none;
}

.promotive-whatsapp-float::before {
    content: "WA";
    font-size: 15px;
}

.promotive-footer-phone {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.promotive-mobile-call-cta {
    display: none;
}

@media (max-width: 900px) {
    .promotive-site-footer .promotive-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .promotive-site-footer .promotive-footer-grid {
        grid-template-columns: 1fr;
    }

    .promotive-whatsapp-float {
        right: 16px;
        bottom: 78px;
        width: 48px;
        height: 48px;
    }

    .promotive-mobile-call-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 45;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 13px 18px;
        border-radius: 8px;
        background: var(--primary);
        color: #ffffff;
        box-shadow: 0 16px 32px rgba(212, 36, 39, 0.24);
        font-size: 16px;
        font-weight: 800;
        line-height: 1.15;
        text-align: center;
        text-decoration: none;
    }

    body {
        padding-bottom: 74px;
    }
}

/* Home refinements: logo carousel, hover color, footer weight */
.promotive-v2-client-row.promotive-v2-client-row--marquee {
    display: block;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 6px 0 8px;
}

.promotive-v2-client-track {
    display: flex;
    align-items: center;
    gap: clamp(46px, 5.6vw, 86px);
    width: max-content;
    padding-inline: clamp(24px, 4vw, 72px);
    animation: promotiveLogoMarquee 58s linear infinite;
    will-change: transform;
}

.promotive-v2-client-row--marquee:hover .promotive-v2-client-track {
    animation-play-state: paused;
}

.promotive-v2-client-track img,
.promotive-v2-client-row.promotive-v2-client-row--marquee img {
    flex: 0 0 auto;
    width: auto;
    max-width: 240px;
    max-height: 84px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
}

@keyframes promotiveLogoMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.promotive-v2-category:hover strong,
.promotive-v2-category:hover em,
.promotive-v2-product:hover h3 a,
.promotive-v2-product:hover p,
.promotive-v2-project:hover strong,
.promotive-v2-project:hover span,
.promotive-site-footer a:hover {
    color: var(--primary);
}

.promotive-site-footer,
.promotive-site-footer p,
.promotive-site-footer a,
.promotive-footer-contact p {
    font-weight: 600;
}

.promotive-site-footer h2,
.promotive-footer-brand p {
    font-weight: 700;
}

@media (max-width: 1180px) {
    .promotive-v2-client-row.promotive-v2-client-row--marquee {
        display: block;
    }
}

@media (max-width: 640px) {
    .promotive-v2-client-row.promotive-v2-client-row--marquee {
        display: block;
        overflow: hidden;
        padding-bottom: 5px;
        scroll-snap-type: none;
    }

    .promotive-v2-client-track {
        gap: 34px;
        padding-inline: 18px;
        animation-duration: 48s;
    }

    .promotive-v2-client-row.promotive-v2-client-row--marquee img {
        flex: 0 0 auto;
        max-width: 156px;
        max-height: 58px;
        scroll-snap-align: unset;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promotive-v2-client-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
    }
}

/* Full-width homepage bands with centered content */
.promotive-v2-home > .promotive-shell.promotive-v2-section,
.promotive-v2-home > .promotive-shell.promotive-v2-how {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.promotive-v2-home > .promotive-shell.promotive-v2-section {
    padding-top: 50px;
    padding-bottom: 52px;
    background: #ffffff;
}

.promotive-v2-home > .promotive-shell.promotive-v2-section:nth-of-type(4),
.promotive-v2-home > .promotive-shell.promotive-v2-section:nth-of-type(7) {
    background: #fbfaf8;
}

.promotive-v2-home > .promotive-shell.promotive-v2-how {
    padding-top: 52px;
    padding-bottom: 52px;
    background: #f7f4ef;
}

.promotive-v2-home > .promotive-shell.promotive-v2-section > .promotive-v2-section-head,
.promotive-v2-home > .promotive-shell.promotive-v2-section > .promotive-v2-category-grid,
.promotive-v2-home > .promotive-shell.promotive-v2-section > .promotive-v2-product-row,
.promotive-v2-home > .promotive-shell.promotive-v2-section > .promotive-v2-project-grid,
.promotive-v2-home > .promotive-shell.promotive-v2-how > h2,
.promotive-v2-home > .promotive-shell.promotive-v2-how > .promotive-v2-how__grid {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.promotive-v2-home > .promotive-shell.promotive-v2-section + .promotive-shell.promotive-v2-section,
.promotive-v2-home > .promotive-shell.promotive-v2-how + .promotive-shell.promotive-v2-section {
    margin-top: 0;
}

.promotive-v2-home > .promotive-shell.promotive-v2-quote-cta {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    padding: 32px max(34px, calc((100vw - 1180px) / 2 + 34px));
}

@media (max-width: 640px) {
    .promotive-v2-home > .promotive-shell.promotive-v2-section {
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .promotive-v2-home > .promotive-shell.promotive-v2-how {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .promotive-v2-home > .promotive-shell.promotive-v2-section > .promotive-v2-section-head,
    .promotive-v2-home > .promotive-shell.promotive-v2-section > .promotive-v2-category-grid,
    .promotive-v2-home > .promotive-shell.promotive-v2-section > .promotive-v2-product-row,
    .promotive-v2-home > .promotive-shell.promotive-v2-section > .promotive-v2-project-grid,
    .promotive-v2-home > .promotive-shell.promotive-v2-how > h2,
    .promotive-v2-home > .promotive-shell.promotive-v2-how > .promotive-v2-how__grid {
        width: min(100% - 24px, 1180px);
    }

    .promotive-v2-home > .promotive-shell.promotive-v2-quote-cta {
        padding: 28px 18px;
    }
}
