:root {
    --bg: #f5f1ea;
    --bg-soft: #fbf8f3;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-dark: #1c1a18;
    --surface-dark-2: #27231f;
    --surface-muted: #ece4d8;
    --text: #181512;
    --text-soft: #655c54;
    --text-xsoft: #8c837a;
    --line: rgba(24, 21, 18, 0.1);
    --line-strong: rgba(24, 21, 18, 0.18);
    --accent: #f47b20;
    --accent-deep: #da6610;
    --accent-soft: rgba(244, 123, 32, 0.12);
    --success: #1f7a52;
    --shadow-sm: 0 8px 24px rgba(24, 21, 18, 0.06);
    --shadow-md: 0 20px 60px rgba(24, 21, 18, 0.08);
    --shadow-lg: 0 36px 90px rgba(24, 21, 18, 0.12);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --container: min(1220px, calc(100vw - 40px));
    --header-offset: 180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.55), transparent 28%), var(--bg);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

[id] {
    scroll-margin-top: calc(var(--header-offset) + 18px);
}

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

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

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

button {
    border: 0;
    background: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

input,
select,
textarea {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xs);
    background: #fff;
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid rgba(244, 123, 32, 0.45);
    outline-offset: 2px;
}

.site-shell {
    overflow-x: clip;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section-block {
    padding: 72px 0;
}

.section-tight {
    padding-top: 54px;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.78));
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid var(--line);
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(244, 123, 32, 0.14), transparent 26%),
        linear-gradient(180deg, #1f1b18 0%, #171412 100%);
    color: #f6f1eb;
}

.section-cta {
    padding-top: 40px;
}

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

.section-link {
    color: var(--text);
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
}

.section-link-light {
    color: #f6f1eb;
}

.section-heading {
    max-width: 670px;
}

.section-heading.compact {
    max-width: 760px;
}

.section-heading h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.section-heading p {
    max-width: 64ch;
    color: var(--text-soft);
    line-height: 1.7;
}

.section-dark .section-heading p {
    color: rgba(246, 241, 235, 0.74);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.74);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}

.utility-bar {
    background: #151210;
    color: rgba(246, 241, 235, 0.78);
}

.utility-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.78rem;
}

.utility-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.utility-copy strong {
    font-size: 0.8rem;
    color: #fff;
}

.utility-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.header-main {
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(16px);
    background: rgba(245, 241, 234, 0.86);
    border-bottom: 1px solid transparent;
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.header-main.is-scrolled {
    background: rgba(251, 248, 243, 0.96);
    border-color: var(--line);
    box-shadow: 0 16px 34px rgba(24, 21, 18, 0.06);
}

.header-main-inner {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    min-height: 84px;
}

.brand-mark {
    width: 170px;
    display: block;
    line-height: 0;
}

.brand-mark img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 26px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(24, 21, 18, 0.78);
}

.desktop-nav a {
    position: relative;
    padding: 6px 0;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
    transform: scaleX(1);
}

.desktop-nav a.is-current,
.desktop-nav a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-user {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(24, 21, 18, 0.05);
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 800;
}

.search-shell {
    position: relative;
    display: flex;
    align-items: center;
}

.search-shell input {
    width: 260px;
    min-height: 48px;
    padding: 0 46px 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.search-icon {
    position: absolute;
    right: 16px;
    color: var(--text-soft);
}

.header-login,
.header-cta,
.button,
.btn-request,
.spotlight-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-login,
.button-secondary {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.7);
}

.header-cart-link {
    gap: 10px;
}

.header-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(24, 21, 18, 0.08);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 900;
}

.header-cta,
.button-accent {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.button-ghost,
.button-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-outline-light:hover,
.header-login:hover,
.header-cta:hover,
.button:hover,
.btn-request:hover,
.spotlight-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.button-lg {
    min-height: 56px;
    padding: 0 28px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.mega-bar {
    border-top: 1px solid rgba(24, 21, 18, 0.06);
}

.mega-bar-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.mega-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    white-space: nowrap;
}

.mega-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mega-links a {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-soft);
}

.mobile-panel {
    display: none;
    background: #fcfaf6;
    border-bottom: 1px solid var(--line);
}

.mobile-panel.is-open {
    display: block;
}

.mobile-panel-inner {
    width: var(--container);
    margin: 0 auto;
    padding: 20px 0 28px;
}

.mobile-panel-inner > a {
    display: block;
    padding: 12px 0;
    font-weight: 700;
    border-bottom: 1px solid rgba(24, 21, 18, 0.06);
}

.mobile-group-list {
    display: grid;
    gap: 18px;
    padding-top: 18px;
}

.mobile-group {
    display: grid;
    gap: 8px;
}

.mobile-group strong {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-soft);
}

.mobile-group a {
    font-size: 0.92rem;
    color: var(--text);
}

.mobile-panel-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.hero-section,
.page-banner {
    position: relative;
    overflow: hidden;
}

.hero-section {
    height: calc(100dvh - var(--header-offset));
    min-height: 560px;
    background:
        linear-gradient(180deg, rgba(20, 17, 15, 0.12) 0%, rgba(20, 17, 15, 0.26) 40%, rgba(20, 17, 15, 0.62) 100%),
        linear-gradient(135deg, rgba(244, 123, 32, 0.18) 0%, rgba(244, 123, 32, 0.04) 34%, rgba(33, 28, 24, 0.5) 100%),
        radial-gradient(circle at 84% 18%, rgba(244, 123, 32, 0.14), rgba(244, 123, 32, 0) 28%),
        linear-gradient(135deg, #25201c 0%, #171412 100%);
    color: #f6f1eb;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 11, 10, 0.34) 0%, rgba(12, 11, 10, 0.12) 38%, rgba(12, 11, 10, 0.18) 100%),
        var(--teamstock-hero-bg, url("./assets/images/hero-bg.jpg")) 58% center / cover no-repeat;
    opacity: 0.56;
    filter: saturate(0.94) contrast(1.02) sepia(0.08);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 14, 12, 0.78) 0%, rgba(16, 14, 12, 0.48) 28%, rgba(16, 14, 12, 0.1) 60%, rgba(16, 14, 12, 0.26) 100%),
        radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.09), transparent 18%),
        radial-gradient(circle at 80% 22%, rgba(244, 123, 32, 0.1), transparent 24%),
        radial-gradient(circle at 68% 76%, rgba(255, 255, 255, 0.05), transparent 18%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.68fr);
    align-items: center;
    gap: 34px;
    padding: 28px 0 24px;
}

.hero-copy {
    max-width: 720px;
    align-self: center;
}

.hero-visual {
    position: relative;
    min-height: 100%;
    display: grid;
    align-items: center;
    justify-items: end;
}

.hero-headline {
    max-width: 11.5ch;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.6rem, 5.6vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

.hero-text {
    max-width: 58ch;
    color: rgba(246, 241, 235, 0.76);
    line-height: 1.68;
    font-size: 0.98rem;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-panel,
.page-banner-note,
.category-highlight,
.product-meta-card,
.product-notice,
.filters-sticky,
.lead-form-card,
.contact-card {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-md);
}

.hero-panel {
    position: relative;
    padding: 22px;
    backdrop-filter: blur(10px);
    max-width: 350px;
    justify-self: end;
    z-index: 2;
    background: linear-gradient(180deg, rgba(36, 30, 26, 0.54), rgba(24, 20, 18, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 56px rgba(12, 11, 10, 0.22);
}

.hero-panel-top {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}

.panel-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
    font-weight: 800;
}

.hero-panel-top strong {
    font-size: 1.15rem;
    line-height: 1.3;
}

.hero-panel-list {
    display: grid;
    gap: 14px;
}

.hero-panel-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(246, 241, 235, 0.75);
    line-height: 1.65;
}

.hero-panel-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.proof-band {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.4);
}

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

.proof-card {
    padding: 18px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.proof-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.3rem;
    font-family: "Space Grotesk", sans-serif;
}

.proof-card span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.macro-grid,
.products-grid,
.brand-grid,
.trust-grid,
.process-grid,
.brand-hub-grid {
    display: grid;
    gap: 20px;
}

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

.macro-card,
.brand-hub-card,
.process-card,
.trust-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-sm);
}

.macro-eyebrow,
.process-index {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent-deep);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.macro-card h3,
.brand-hub-card h2,
.process-card h3,
.trust-card h3,
.brand-tile-name,
.contact-card h2,
.lead-form-card h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.28rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.macro-card p,
.brand-hub-card p,
.process-card p,
.trust-card p,
.contact-card p,
.lead-form-card p,
.product-copy {
    color: var(--text-soft);
    line-height: 1.7;
}

.macro-links,
.brand-hub-products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 12px;
}

.macro-links a,
.brand-hub-products a,
.product-chip,
.toolbar-chip,
.filter-pill-static {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(244, 123, 32, 0.08);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
}

.text-link {
    color: var(--accent-deep);
    font-weight: 800;
    font-size: 0.92rem;
}

.filter-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-pill {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-soft);
    font-weight: 800;
}

.filter-pill.is-active {
    border-color: rgba(244, 123, 32, 0.22);
    background: var(--accent-soft);
    color: var(--text);
}

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

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

.products-grid,
.products-grid-home {
    gap: 18px;
}

.product-rail {
    display: grid;
    gap: 16px;
}

.product-rail-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.product-rail-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(24, 21, 18, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    box-shadow: 0 14px 32px rgba(24, 21, 18, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.product-rail-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 123, 32, 0.3);
    background: rgba(255, 247, 238, 0.98);
}

.product-rail-arrow:focus-visible {
    outline: 3px solid rgba(244, 123, 32, 0.24);
    outline-offset: 2px;
}

.product-rail-arrow span {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.product-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 5);
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 123, 32, 0.5) rgba(24, 21, 18, 0.08);
}

.product-carousel::-webkit-scrollbar {
    height: 10px;
}

.product-carousel::-webkit-scrollbar-track {
    background: rgba(24, 21, 18, 0.08);
    border-radius: 999px;
}

.product-carousel::-webkit-scrollbar-thumb {
    background: rgba(244, 123, 32, 0.5);
    border-radius: 999px;
}

.product-carousel-item {
    min-width: 0;
    scroll-snap-align: start;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(244, 123, 32, 0.08), rgba(24, 21, 18, 0.14));
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-visual img {
    transform: scale(1.04);
}

.product-badge,
.product-label {
    position: absolute;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 800;
}

.product-badge {
    top: 14px;
    background: #fff;
    color: var(--accent-deep);
}

.product-label {
    bottom: 14px;
    background: rgba(24, 21, 18, 0.72);
    color: #fff;
    max-width: calc(100% - 28px);
}

.product-badge-floating {
    left: 20px;
    top: 20px;
}

.product-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 16px 18px;
    flex: 1;
}

.product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--text-xsoft);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.product-body h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    line-height: 1.18;
}

.product-body h3 a:hover {
    color: var(--accent-deep);
}

.product-info-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-info-row-large {
    margin: 18px 0 10px;
}

.product-avail {
    color: var(--success);
    font-size: 0.82rem;
    font-weight: 800;
}

.product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.price-block {
    display: grid;
    gap: 2px;
}

.old-price {
    color: var(--text-xsoft);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-block strong,
.product-lead-box strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.btn-request {
    min-height: 42px;
    padding: 0 16px;
    background: #1d1a18;
    color: #fff;
    font-size: 0.84rem;
}

.product-copy {
    font-size: 0.88rem;
    line-height: 1.5;
}

.product-chip {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 22px;
    align-items: start;
}

.split-copy {
    max-width: 520px;
}

.split-visual-stack {
    display: grid;
    gap: 16px;
}

.split-visual-frame {
    overflow: hidden;
    border-radius: var(--radius-xl);
    min-height: 250px;
    box-shadow: var(--shadow-md);
}

.split-visual-frame img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

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

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

.process-icon,
.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--accent-soft);
    color: var(--accent-deep);
}

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

.brand-tile {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.brand-tile-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(246, 241, 235, 0.68);
    font-weight: 800;
}

.brand-tile p {
    color: rgba(246, 241, 235, 0.72);
    line-height: 1.65;
}

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

.trust-card {
    background: rgba(255, 255, 255, 0.72);
}

.register-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(30, 27, 24, 0.94), rgba(21, 18, 16, 0.94)),
        var(--surface-dark);
    color: #f6f1eb;
    box-shadow: var(--shadow-lg);
}

.register-copy {
    max-width: 700px;
}

.register-copy h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.register-copy p {
    color: rgba(246, 241, 235, 0.72);
}

.register-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

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

.faq-item {
    padding: 0 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding-bottom: 22px;
    color: var(--text-soft);
    line-height: 1.72;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.page-main {
    min-height: auto;
}

.auth-flash {
    border-bottom: 1px solid var(--line);
}

.auth-flash-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
}

.auth-flash strong {
    font-size: 0.92rem;
    line-height: 1.5;
}

.auth-flash-success {
    background: rgba(31, 122, 82, 0.1);
    color: #18583c;
}

.auth-flash-error {
    background: rgba(169, 56, 40, 0.1);
    color: #7f2c22;
}

.auth-flash-info {
    background: rgba(24, 21, 18, 0.05);
    color: var(--text);
}

.page-banner {
    padding: 28px 0 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.12));
    border-bottom: 1px solid var(--line);
}

.page-banner-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: 18px;
    align-items: end;
}

.page-banner h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
}

.page-banner p {
    max-width: 60ch;
    color: var(--text-soft);
    line-height: 1.74;
}

.page-banner-note,
.category-highlight {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.page-banner-note strong,
.category-highlight strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
}

.page-banner-note span,
.category-highlight li {
    color: var(--text-soft);
    line-height: 1.7;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    color: var(--text-xsoft);
    font-size: 0.84rem;
    font-weight: 700;
}

.breadcrumbs a:hover {
    color: var(--text);
}

.breadcrumb-sep {
    opacity: 0.45;
}

.listing-layout,
.contact-layout,
.product-layout {
    display: grid;
    gap: 22px;
}

.listing-layout {
    grid-template-columns: minmax(290px, 332px) minmax(0, 1fr);
    align-items: start;
}

.filters-sticky {
    position: sticky;
    top: calc(var(--header-offset) + 18px);
    padding: 18px 18px 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.72);
    max-height: none;
    overflow: visible;
}

.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.filters-header h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
}

.filters-toggle {
    display: none;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-deep);
}

.filters-body {
    display: grid;
    gap: 18px;
}

.filter-block h3 {
    margin-bottom: 12px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-list.compact {
    flex-direction: row;
    flex-wrap: wrap;
}

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

.filter-list.muted .filter-pill-static {
    background: rgba(24, 21, 18, 0.04);
}

.filter-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--text-soft);
    background: rgba(24, 21, 18, 0.04);
    font-size: 0.9rem;
    font-weight: 700;
}

.filter-link.is-current,
.filter-link:hover {
    color: var(--text);
    background: var(--accent-soft);
}

.filter-checklist {
    display: grid;
    gap: 8px;
}

.filter-option {
    display: grid;
    grid-template-columns: 18px 18px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(24, 21, 18, 0.04);
    color: var(--text-soft);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.filter-option-compact {
    min-height: 38px;
    padding: 8px 12px;
}

.filter-option:hover {
    background: rgba(244, 123, 32, 0.12);
    color: var(--text);
}

.filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-option-box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid rgba(24, 21, 18, 0.2);
    background: rgba(255, 255, 255, 0.92);
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.filter-option-copy {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}

.filter-option-compact .filter-option-copy {
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.filter-option input:checked + .filter-option-box {
    border-color: rgba(244, 123, 32, 0.72);
    background: var(--accent);
    box-shadow: inset 0 0 0 4px rgba(255, 248, 241, 0.96);
}

.filter-option input:checked ~ .filter-option-copy {
    color: var(--text);
}

.filter-option:has(input:checked) {
    background: rgba(244, 123, 32, 0.14);
}

.filter-option:has(input:focus-visible) {
    outline: 3px solid rgba(244, 123, 32, 0.22);
    outline-offset: 2px;
}

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

.listing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.listing-toolbar strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.18rem;
}

.listing-toolbar span {
    color: var(--text-soft);
}

.toolbar-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.toolbar-sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 6px 8px 6px 14px;
    border-radius: 999px;
    background: rgba(24, 21, 18, 0.04);
    color: var(--text-soft);
    font-size: 0.86rem;
    font-weight: 800;
}

.toolbar-sort select {
    min-height: 36px;
    padding: 0 38px 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(24, 21, 18, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 700;
}

.empty-state {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px dashed rgba(24, 21, 18, 0.22);
}

.empty-state h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.empty-state p {
    max-width: 64ch;
    color: var(--text-soft);
    line-height: 1.72;
    margin-bottom: 20px;
}

.category-highlight ul,
.product-meta-card ul,
.contact-benefits {
    display: grid;
    gap: 10px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.52fr);
    gap: 22px;
    align-items: start;
}

.cart-content,
.cart-summary-card,
.cart-item {
    padding: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.cart-list {
    display: grid;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
}

.cart-item-visual {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(244, 123, 32, 0.08), rgba(24, 21, 18, 0.12));
}

.cart-item-visual img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
}

.cart-item-body {
    display: grid;
    gap: 12px;
}

.cart-item-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.cart-item-top h2,
.cart-summary-card h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
    line-height: 1.05;
}

.cart-item-body p {
    color: var(--text-soft);
    line-height: 1.68;
}

.cart-remove-link {
    font-weight: 800;
    color: var(--accent-deep);
    white-space: nowrap;
}

.cart-summary {
    position: sticky;
    top: calc(var(--header-offset) + 18px);
}

.cart-summary-card {
    display: grid;
    gap: 18px;
}

.cart-summary-actions {
    display: grid;
    gap: 12px;
}

.category-highlight li,
.product-meta-card li,
.contact-benefits li,
.product-notice p + p {
    position: relative;
    padding-left: 18px;
}

.category-highlight li::before,
.product-meta-card li::before,
.contact-benefits li::before,
.product-notice p + p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.product-layout {
    grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.1fr);
    align-items: start;
}

.product-media {
    position: static;
}

.product-media-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(244, 123, 32, 0.08), rgba(24, 21, 18, 0.12));
    box-shadow: var(--shadow-md);
}

.product-media-frame img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.product-detail {
    display: grid;
    gap: 16px;
}

.product-detail-top h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 14px;
}

.product-detail-top p {
    color: var(--text-soft);
    line-height: 1.76;
}

.product-lead-box {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.product-status {
    display: grid;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: right;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.product-meta-card,
.product-notice {
    padding: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.product-meta-card h2,
.product-notice h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.product-meta-card li,
.product-notice p {
    color: var(--text-soft);
    line-height: 1.72;
}

.brand-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.brand-hub-card {
    min-height: 100%;
}

.brand-hub-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-layout {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.18fr);
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 18px;
}

.contact-card,
.lead-form-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.contact-lines a,
.contact-lines span {
    font-weight: 800;
}

.mobile-user-card {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(24, 21, 18, 0.04);
}

.mobile-user-card strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.mobile-user-card span {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.lead-prefill {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.lead-form {
    display: grid;
    gap: 16px;
}

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

.lead-form label {
    display: grid;
    gap: 8px;
}

.lead-form span {
    font-size: 0.9rem;
    font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
}

.lead-form textarea {
    min-height: 136px;
    padding-top: 14px;
    resize: vertical;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.form-actions p {
    max-width: 420px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.auth-alert {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
}

.auth-alert strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.auth-alert ul {
    display: grid;
    gap: 8px;
    color: inherit;
}

.auth-alert li {
    position: relative;
    padding-left: 16px;
}

.auth-alert li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.auth-alert-error {
    background: rgba(169, 56, 40, 0.08);
    border-color: rgba(169, 56, 40, 0.14);
    color: #7f2c22;
}

.auth-alert-success {
    background: rgba(31, 122, 82, 0.1);
    border-color: rgba(31, 122, 82, 0.14);
    color: #18583c;
}

.auth-inline-links {
    margin-top: 18px;
}

.auth-form-grid-single {
    grid-template-columns: 1fr;
}

.site-footer {
    margin-top: 24px;
    background: linear-gradient(180deg, #1b1815 0%, #13110f 100%);
    color: #f6f1eb;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(280px, 0.72fr);
    gap: 24px;
    padding: 38px 0;
}

.footer-logo {
    width: 88px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 54ch;
    color: rgba(246, 241, 235, 0.72);
    line-height: 1.72;
}

.footer-contact {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(246, 241, 235, 0.92);
    font-weight: 700;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.footer-nav-col {
    display: grid;
    gap: 10px;
}

.footer-nav-col strong,
.footer-cta strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.06rem;
}

.footer-nav-col a,
.footer-cta p {
    color: rgba(246, 241, 235, 0.72);
    line-height: 1.65;
}

.footer-cta p {
    margin: 14px 0 18px;
}

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

.footer-bottom-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom-links a {
    color: rgba(246, 241, 235, 0.62);
    font-size: 0.84rem;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-microproof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-microproof span,
.hero-spotlight-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(246, 241, 235, 0.8);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-shopstack {
    width: min(520px, 100%);
    display: grid;
    gap: 16px;
}

.hero-finder-card {
    max-width: none;
    padding: 24px;
}

.hero-finder-list {
    display: grid;
    gap: 10px;
}

.hero-finder-item {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.hero-finder-item:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 123, 32, 0.3);
    background: rgba(255, 255, 255, 0.11);
}

.hero-finder-item span {
    color: #fff;
    font-weight: 800;
}

.hero-finder-item small {
    color: rgba(246, 241, 235, 0.68);
    line-height: 1.45;
}

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

.hero-spotlight-card,
.deal-zone-note {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-md);
}

.hero-spotlight-card strong,
.deal-zone-note h3 {
    display: block;
    margin: 6px 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    line-height: 1.16;
    color: var(--text);
}

.hero-spotlight-card p,
.deal-zone-note p {
    color: var(--text-soft);
    line-height: 1.6;
}

.hero-spotlight-card.is-muted {
    background: rgba(255, 247, 238, 0.94);
}

.hero-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.hero-spotlight-meta span {
    background: var(--accent-soft);
    border: 1px solid rgba(244, 123, 32, 0.16);
    color: var(--text);
}

.macro-card-shop {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 238, 0.86));
}

.trust-card-contrast {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.trust-card-contrast h3,
.trust-card-contrast p {
    color: #f6f1eb;
}

.trust-card-contrast p {
    opacity: 0.8;
}

.deal-zone-grid {
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.deal-zone-note {
    position: sticky;
    top: calc(var(--header-offset) + 18px);
}

.deal-zone-note .button {
    margin-top: 18px;
}

.product-card {
    border: 1px solid rgba(24, 21, 18, 0.08);
    box-shadow: 0 18px 44px rgba(24, 21, 18, 0.07);
}

.product-badge {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(24, 21, 18, 0.08);
}

.product-label {
    background: rgba(24, 21, 18, 0.82);
}

.product-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(24, 21, 18, 0.05);
    color: var(--text-soft);
}

.product-body h3 {
    font-size: 1.05rem;
}

.product-copy {
    min-height: 4.5em;
}

.price-block strong {
    font-size: 1.35rem;
}

.btn-request {
    background: linear-gradient(135deg, #211d1a, #100f0e);
}

.site-footer {
    background: radial-gradient(circle at top left, rgba(244, 123, 32, 0.12), transparent 24%), linear-gradient(180deg, #201b18 0%, #171412 100%);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .hero-spotlight-grid,
    .deal-zone-grid {
        grid-template-columns: 1fr;
    }

    .deal-zone-note {
        position: static;
    }

    .hero-shopstack {
        width: 100%;
    }

    .header-main-inner {
        grid-template-columns: 160px minmax(0, 1fr) auto;
    }

    .search-shell input {
        width: 220px;
    }

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

    .products-grid,
    .products-grid-home,
    .brand-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-carousel {
        grid-auto-columns: calc((100% - 36px) / 3);
    }
}

@media (max-width: 980px) {
    :root {
        --header-offset: 120px;
        --container: min(1220px, calc(100vw - 28px));
    }

    .desktop-nav,
    .mega-bar,
    .search-shell,
    .header-user,
    .header-login,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-main-inner {
        grid-template-columns: 1fr auto;
        min-height: 76px;
    }

    .hero-section {
        height: calc(100dvh - var(--header-offset));
        min-height: 0;
    }

    .hero-grid,
    .page-banner-grid,
    .listing-layout,
    .cart-layout,
    .product-layout,
    .contact-layout,
    .faq-layout,
    .split-feature,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 26px 0 22px;
    }

    .hero-shopstack,
    .hero-spotlight-grid {
        width: 100%;
    }

    .hero-visual {
        min-height: auto;
        justify-items: stretch;
    }

    .hero-panel {
        position: static;
        width: 100%;
        max-width: none;
    }

    .hero-headline {
        max-width: 12ch;
    }

    .proof-grid,
    .process-grid,
    .process-grid.compact,
    .product-grid-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .register-card,
    .section-top,
    .listing-toolbar,
    .product-lead-box {
        flex-direction: column;
        align-items: start;
    }

    .split-copy,
    .product-media,
    .filters-sticky {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .filters-toggle {
        display: inline-flex;
    }

    .filters-body {
        display: none;
    }

    .filters-body.is-open {
        display: grid;
    }
}

@media (max-width: 720px) {
    .section-block {
        padding: 56px 0;
    }

    .proof-grid,
    .macro-grid,
    .brand-grid,
    .trust-grid,
    .process-grid,
    .process-grid.compact,
    .products-grid,
    .products-grid-home,
    .brand-hub-grid,
    .product-grid-meta,
    .form-grid,
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .product-carousel {
        grid-auto-columns: calc((100% - 14px) / 2);
        gap: 14px;
        padding-bottom: 12px;
    }

    .product-rail-controls {
        justify-content: space-between;
    }

    .hero-microproof,
    .hero-spotlight-meta {
        gap: 8px;
    }

    .hero-microproof span,
    .hero-spotlight-meta span {
        width: 100%;
        justify-content: center;
    }

    .product-rail-arrow {
        width: 44px;
        height: 44px;
    }

    .compact-grid {
        grid-template-columns: 1fr;
    }

    .utility-inner,
    .utility-copy,
    .utility-links,
    .footer-bottom-inner {
        flex-direction: column;
        align-items: start;
    }

    .hero-section {
        height: calc(100dvh - var(--header-offset));
    }

    .hero-headline {
        max-width: 9.5ch;
        font-size: clamp(2.45rem, 10vw, 3.9rem);
    }

    .split-visual-frame img {
        min-height: 220px;
    }

    .hero-panel,
    .page-banner-note,
    .category-highlight,
    .filters-sticky,
    .lead-form-card,
    .contact-card,
    .register-card {
        padding: 18px;
    }

    .button,
    .button-lg,
    .btn-request,
    .header-login,
    .header-cta {
        width: 100%;
    }

    .hero-actions,
    .product-actions,
    .register-actions {
        width: 100%;
    }

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

    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .breadcrumbs {
        margin-bottom: 18px;
    }

    .section-link {
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .product-carousel {
        grid-auto-columns: minmax(244px, 82vw);
    }
}
