:root {
    --bg: #f4f4f1;
    --surface: #ffffff;
    --surface-soft: #f8f7f2;
    --ivory: #fff8e9;
    --ink: #171816;
    --charcoal: #20231f;
    --muted: #68716a;
    --line: #deded4;
    --gold: #b88a2a;
    --gold-dark: #876019;
    --bronze: #5a3b18;
    --teal: #006f62;
    --teal-dark: #04574e;
    --wine: #6d2631;
    --danger: #b42318;
    --radius: 8px;
    --shadow: 0 18px 40px rgba(23, 24, 22, .1);
    --shadow-lg: 0 28px 80px rgba(23, 24, 22, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f7f6f0 0%, #f3f4ee 42%, #eceee7 100%);
    color: var(--ink);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    animation: pageIn .45s ease both;
}

a {
    color: var(--teal-dark);
    text-decoration: none;
    transition: color .2s ease, box-shadow .2s ease, transform .2s ease;
}

a:hover {
    text-decoration: none;
}

.container a:not(.button):not(.google-link):not(.brand-photo-card),
.top-strip a {
    border-radius: 5px;
    background-image: none;
}

.container a:not(.button):not(.google-link):not(.brand-photo-card):hover,
.top-strip a:hover {
    color: var(--teal);
}

.top-strip a:hover {
    color: #f6c457;
}

.product-card a,
.pagination a,
.floating-social-link {
    background-image: none;
}

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

[id] {
    scroll-margin-top: 112px;
}

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

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input::placeholder,
textarea::placeholder {
    color: #9a9f98;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 148, 43, .18);
}

label {
    display: block;
    margin: 12px 0 6px;
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 700;
}

.top-strip {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 7px clamp(16px, 4vw, 46px);
    background: linear-gradient(90deg, #181b17 0%, #252417 52%, #123c38 100%);
    color: #f4ead7;
    font-size: 12px;
    font-weight: 500;
}

.top-strip div,
.top-strip a {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #f4ead7;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 10px clamp(16px, 4vw, 46px);
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(25, 26, 23, .06);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}

.brand:hover {
    text-decoration: none;
}

.brand img {
    width: 64px;
    height: 42px;
    object-fit: cover;
    border: 1px solid rgba(201, 148, 43, .34);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(23, 24, 22, .1);
}

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

.nav a {
    padding: 6px 8px;
    border-radius: 6px;
    background-image: none;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 700;
    transition: color .18s ease, transform .18s ease;
}

.nav a:hover {
    color: var(--teal);
    text-decoration: none;
    transform: translateY(-1px);
}

.nav a.is-active {
    color: var(--teal);
}

.nav a.button {
    color: #fff;
    background-image: none;
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 140;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--charcoal);
    box-shadow: 0 10px 20px rgba(23, 24, 22, .08);
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: #fff;
    color: var(--teal);
    box-shadow: 0 12px 24px rgba(23, 24, 22, .12);
    transform: none;
}

.menu-toggle span {
    position: absolute;
    right: 11px;
    left: 11px;
    display: block;
    width: auto;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
    top: 13px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    top: 29px;
}

.menu-toggle span + span {
    margin-top: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 109;
    background: rgba(18, 20, 17, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-user {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.container {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 42px;
}

.hero {
    position: relative;
    display: grid;
    min-height: 520px;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    margin-bottom: 22px;
    padding: clamp(30px, 5vw, 58px);
    background-color: #18130d;
    background-image:
        linear-gradient(90deg, rgba(12, 11, 8, .93) 0%, rgba(16, 14, 10, .83) 36%, rgba(14, 12, 9, .44) 64%, rgba(14, 12, 9, .18) 100%),
        url("../img/premium-showroom-hero.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: heroEnter .8s ease both;
}

.hero-slider {
    display: block;
    min-height: 540px;
    padding: 0;
    background-image: none;
}

.hero-slider::before {
    display: none;
}

.hero-slider-track {
    position: relative;
    min-height: 540px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    align-items: center;
    padding: clamp(30px, 5vw, 58px);
    background-color: #18130d;
    background-image: var(--hero-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity .55s ease, transform 1.2s ease;
}

.hero-slide::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(12, 11, 8, .94) 0%, rgba(16, 14, 10, .78) 42%, rgba(14, 12, 9, .22) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 46%);
    content: "";
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-slider-dots {
    position: absolute;
    left: clamp(30px, 5vw, 58px);
    bottom: 24px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-slider::after {
    z-index: 3;
}

.hero-slider-dots button {
    width: 34px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(255, 248, 233, .42);
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    box-shadow: none;
}

.hero-slider-dots button.is-active {
    width: 48px;
    background: var(--gold);
    border-color: var(--gold);
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(255, 248, 233, .12), rgba(255, 248, 233, 0) 34%),
        linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 42%);
}

.hero::after {
    position: absolute;
    inset: 16px;
    z-index: 0;
    border: 1px solid rgba(255, 248, 233, .12);
    border-radius: calc(var(--radius) - 2px);
    content: "";
    pointer-events: none;
}

.hero-copy,
.hero-badges {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 650px;
    width: 100%;
    min-width: 0;
}

.hero h1 {
    margin: 8px 0 14px;
    color: #fff6df;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: .98;
    overflow-wrap: break-word;
}

.hero p {
    max-width: 610px;
    margin: 0;
    color: #eadbc0;
    font-size: 16px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
    margin-top: 28px;
}

.hero-proof span {
    min-height: 64px;
    padding: 12px;
    border: 1px solid rgba(255, 248, 233, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 248, 233, .78);
    backdrop-filter: blur(12px);
}

.hero-proof strong {
    display: block;
    color: #fff8e9;
    font-size: 18px;
    font-weight: 800;
}

.hero-badges span,
.size-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #fff0cf;
    background: rgba(255, 255, 255, .11);
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.eyebrow,
.tag {
    display: inline-flex;
    width: fit-content;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f6c457;
}

.button,
button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: var(--radius);
    padding: 10px 14px;
    background: var(--teal);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 111, 98, .18);
    transition: background .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.button:hover,
button:hover {
    background: var(--teal-dark);
    box-shadow: 0 14px 28px rgba(0, 111, 98, .24);
    transform: translateY(-1px);
    text-decoration: none;
}

.button.gold {
    background: linear-gradient(135deg, #e0b750 0%, var(--gold) 100%);
    color: #1d160d;
    box-shadow: 0 14px 30px rgba(184, 138, 42, .28);
}

.button.gold:hover {
    background: #dda63a;
}

.button.ghost {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .38);
    color: #fff4db;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.button.secondary {
    background: #3b3328;
}

.button.small {
    padding: 7px 10px;
    font-size: 13px;
}

.searchable-select-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    pointer-events: none;
}

.searchable-select {
    position: relative;
    width: 100%;
    min-width: 0;
}

.searchable-select.is-open {
    z-index: 2400;
}

.select-layer-open {
    position: relative;
    z-index: 2300 !important;
    overflow: visible !important;
}

.searchable-select-trigger {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.searchable-select-trigger:hover {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(23, 24, 22, .08);
    transform: none;
}

.searchable-select.is-open .searchable-select-trigger {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 148, 43, .18);
}

.searchable-select-value {
    overflow: hidden;
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.searchable-select-value.is-placeholder {
    color: var(--muted);
    font-weight: 600;
}

.searchable-select-arrow {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    flex: 0 0 auto;
    opacity: .68;
    transform: rotate(45deg);
}

.searchable-select-panel {
    position: absolute;
    z-index: 2401;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    min-width: 230px;
    padding: 8px;
    background: #fff;
    border: 1px solid rgba(184, 138, 42, .36);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.searchable-select-search {
    margin-bottom: 7px;
    padding: 8px 9px;
    font-size: 13px;
}

.searchable-select-options {
    display: grid;
    gap: 3px;
    max-height: 196px;
    overflow: auto;
}

.searchable-select-option {
    width: 100%;
    justify-content: flex-start;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 8px 9px;
    box-shadow: none;
    font-size: 13px;
    font-weight: 650;
    text-align: left;
}

.searchable-select-option:hover {
    background: var(--surface-soft);
    color: var(--ink);
    box-shadow: none;
    transform: none;
}

.searchable-select-option.is-selected {
    background: var(--teal);
    color: #fff;
}

.searchable-select-option:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.searchable-select-empty {
    padding: 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.metric-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: 34px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.metric-band div {
    padding: 18px;
    background: #fff;
}

.metric-band strong {
    display: block;
    color: var(--charcoal);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.metric-band span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.brand-showcase,
.partner-section,
.catalogue-head,
.contact-panel,
.home-products {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 22px;
    align-items: center;
    margin: 34px 0;
    padding: 24px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(23, 24, 22, .08);
    backdrop-filter: blur(14px);
}

.brand-showcase h2,
.partner-section h2,
.catalogue-head h2,
.contact-panel h2,
.home-products h2 {
    margin: 6px 0 0;
    padding-left: 13px;
    border-left: 4px solid var(--gold);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
}

.partner-section p,
.contact-panel p {
    color: var(--muted);
}

.size-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.brand-logo-scroller {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 6px 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brand-logo-track {
    display: flex;
    width: max-content;
    animation: brandMarquee 28s linear infinite;
}

.brand-logo-scroller:hover .brand-logo-track {
    animation-play-state: paused;
}

.brand-logo-group {
    display: flex;
    gap: 14px;
    padding-right: 14px;
}

.brand-logo-card {
    flex: 0 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 164px;
    min-height: 76px;
    padding: 14px 18px;
    overflow: hidden;
    border: 1px solid rgba(184, 138, 42, .24);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fffdf6 0%, #f6edda 100%);
    box-shadow: 0 14px 30px rgba(23, 24, 22, .08), inset 0 1px 0 rgba(255, 255, 255, .82);
    color: var(--charcoal);
}

.brand-logo-card span {
    white-space: nowrap;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.brand-logo-card img {
    max-width: 132px;
    max-height: 54px;
    object-fit: contain;
}

.brand-logo-card.xyxx {
    background: #0e0f0d;
    color: #fff;
}

.brand-logo-card.xyxx span::first-letter {
    color: #0e0f0d;
    background: #fff;
    padding: 0 5px;
    margin-right: 2px;
}

.brand-logo-card.riza {
    background: linear-gradient(135deg, #fff8fb 0%, #f5deea 100%);
}

.brand-logo-card.riza span {
    font-family: Georgia, "Times New Roman", serif;
    color: #20231f;
}

.brand-logo-card.magd span {
    color: #8f1d24;
    font-style: italic;
}

.brand-logo-card.zbird span::first-letter {
    color: #c1272d;
    font-style: italic;
}

.brand-logo-card.popcorn {
    background: linear-gradient(135deg, #7e1f2b 0%, #411015 100%);
}

.brand-logo-card.tiny {
    background: linear-gradient(135deg, #fbf0d2 0%, #c9932b 100%);
}

.brand-logo-card.custom {
    background: linear-gradient(180deg, #ffffff 0%, #f1efe4 100%);
}

@keyframes brandMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-photo-showcase {
    margin: 34px 0;
    padding: clamp(22px, 4vw, 34px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(248, 247, 242, .9)),
        radial-gradient(circle at 90% 10%, rgba(184, 138, 42, .18), transparent 34%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(23, 24, 22, .08);
}

.home-products {
    display: block;
}

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

.section-kicker h2 {
    max-width: 700px;
    margin: 6px 0 0;
    padding-left: 13px;
    border-left: 4px solid var(--teal);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.08;
}

.brand-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.brand-photo-card {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    border-radius: var(--radius);
    color: #fff8e9;
    isolation: isolate;
    box-shadow: 0 18px 38px rgba(23, 24, 22, .16);
    transition: transform .25s ease, box-shadow .25s ease;
}

.brand-photo-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(8, 8, 6, .04) 0%, rgba(8, 8, 6, .28) 42%, rgba(8, 8, 6, .84) 100%),
        linear-gradient(90deg, rgba(0, 111, 98, .24), rgba(0, 0, 0, 0));
    content: "";
}

.brand-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 58px rgba(23, 24, 22, .22);
    text-decoration: none;
}

.brand-photo-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}

.brand-photo-card .brand-photo-logo {
    position: relative;
    inset: auto;
    z-index: 1;
    width: 118px;
    height: 54px;
    margin-bottom: 12px;
    padding: 7px;
    object-fit: contain;
    border: 1px solid rgba(255, 248, 233, .3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.brand-photo-card:hover .brand-photo-logo {
    transform: none;
}

.brand-photo-card:hover img {
    transform: scale(1.08);
}

.brand-photo-card span {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.08;
}

.brand-photo-card strong {
    width: fit-content;
    margin-top: 8px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 248, 233, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff8e9;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.benefit-grid {
    display: grid;
    gap: 12px;
}

.benefit-grid article,
.contact-grid a,
.contact-grid div {
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.benefit-grid article:hover,
.contact-grid a:hover {
    border-color: rgba(184, 138, 42, .42);
    box-shadow: 0 12px 26px rgba(23, 24, 22, .08);
    text-decoration: none;
    transform: translateY(-2px);
}

.benefit-grid span,
.contact-grid span {
    color: var(--gold-dark);
    font-weight: 800;
}

.benefit-grid h3 {
    margin: 7px 0 5px;
    font-size: 17px;
    font-weight: 700;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.retailer-section {
    margin: 34px 0;
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(248, 247, 242, .9)),
        radial-gradient(circle at 12% 10%, rgba(0, 111, 98, .13), transparent 34%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(23, 24, 22, .08);
}

.retailer-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    margin-bottom: 20px;
}

.retailer-head h2 {
    max-width: 720px;
    margin: 6px 0 10px;
    padding-left: 13px;
    border-left: 4px solid var(--gold);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.08;
}

.retailer-head p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

.retailer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.retailer-terms-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.retailer-terms-grid article,
.retailer-detail-card,
.retailer-enquiry-card {
    padding: 18px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(23, 24, 22, .06);
}

.retailer-terms-grid article {
    position: relative;
    overflow: hidden;
    min-height: 190px;
}

.retailer-terms-grid article::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72px;
    height: 5px;
    background: var(--gold);
    content: "";
}

.retailer-terms-grid span {
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
}

.retailer-terms-grid strong {
    display: block;
    margin: 8px 0;
    color: var(--charcoal);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.retailer-terms-grid h3,
.retailer-detail-card h3,
.retailer-enquiry-card h3 {
    margin: 0 0 8px;
    color: var(--charcoal);
    font-size: 17px;
    font-weight: 800;
}

.retailer-terms-grid p,
.retailer-enquiry-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.retailer-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, .9fr);
    gap: 12px;
}

.retailer-detail-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.retailer-detail-card li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: 14px;
}

.retailer-detail-card li::before {
    position: absolute;
    left: 0;
    top: .2em;
    width: 10px;
    height: 10px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 111, 98, .1);
    content: "";
}

.retailer-enquiry-card {
    background: linear-gradient(135deg, #20231f 0%, #123c38 100%);
    color: #fff8e9;
}

.retailer-enquiry-card .eyebrow {
    color: #f6c457;
}

.retailer-enquiry-card h3 {
    color: #fff8e9;
}

.retailer-enquiry-card p {
    margin-bottom: 16px;
    color: rgba(255, 248, 233, .78);
}

.banking-section {
    margin: 34px 0;
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(248, 247, 242, .92)),
        radial-gradient(circle at 88% 8%, rgba(0, 111, 98, .13), transparent 34%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(23, 24, 22, .08);
}

.banking-head {
    max-width: 780px;
    margin-bottom: 22px;
}

.banking-head p {
    color: var(--muted);
}

.banking-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .78fr);
    gap: 14px;
    align-items: stretch;
}

.bank-card {
    padding: 20px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 32px rgba(23, 24, 22, .07);
}

.bank-card span {
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.bank-card h2 {
    margin: 8px 0 16px;
    color: var(--charcoal);
    font-size: 22px;
    font-weight: 800;
}

.bank-card-primary {
    background: linear-gradient(135deg, #20231f 0%, #123c38 100%);
    color: #fff8e9;
}

.bank-card-primary h2 {
    color: #fff8e9;
}

.bank-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.bank-card dl div {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 248, 233, .14);
}

.bank-card dt {
    color: rgba(255, 248, 233, .68);
    font-size: 13px;
    font-weight: 700;
}

.bank-card dd {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.qr-card {
    display: grid;
    align-content: start;
}

.qr-card img {
    width: min(100%, 280px);
    margin: 4px auto 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.qr-card p,
.terms-card li {
    color: var(--muted);
    font-size: 14px;
}

.terms-card {
    grid-column: 1 / -1;
}

.terms-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 18px;
}

.image-feature {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(340px, 1.14fr);
    gap: clamp(20px, 4vw, 44px);
    align-items: center;
    overflow: hidden;
    margin: 34px 0;
    padding: clamp(22px, 4vw, 36px);
    background: linear-gradient(135deg, #20231f 0%, #183b36 56%, #3b2d18 100%);
    border: 1px solid rgba(255, 248, 233, .14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.image-feature-copy {
    color: #fff8e9;
}

.image-feature-copy h2 {
    max-width: 620px;
    margin: 7px 0 12px;
    padding-left: 13px;
    border-left: 4px solid #f6c457;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.05;
}

.image-feature-copy p {
    max-width: 590px;
    color: rgba(255, 248, 233, .76);
}

.image-feature .eyebrow {
    color: #f6c457;
}

.image-feature-media {
    overflow: hidden;
    border: 1px solid rgba(255, 248, 233, .16);
    border-radius: var(--radius);
    box-shadow: 0 24px 58px rgba(0, 0, 0, .25);
}

.image-feature-media img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .7s ease;
}

.image-feature:hover .image-feature-media img {
    transform: scale(1.07);
}

.feature-list,
.auth-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-list span,
.auth-points span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 248, 233, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff8e9;
    font-size: 13px;
    font-weight: 700;
}

.search-bar {
    position: relative;
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(140px, 180px) auto;
    gap: 10px;
    align-items: stretch;
}

.search-bar .button {
    min-width: 88px;
    white-space: nowrap;
}

.product-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.catalogue-head {
    position: relative;
    z-index: 50;
    overflow: visible;
}

.product-card {
    overflow: hidden;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 32px rgba(23, 24, 22, .08);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-card:hover {
    border-color: rgba(184, 138, 42, .4);
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(23, 24, 22, .15);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #eee5d6;
    filter: saturate(1.02) contrast(1.02);
    transition: transform .45s ease;
}

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

.product-card-body {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.product-card h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.product-card h2 a {
    color: var(--charcoal);
}

.product-card p {
    min-height: 44px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.product-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    padding-top: 9px;
    border-top: 1px solid rgba(222, 222, 212, .72);
}

.product-share span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-share .product-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-height: 0;
    padding: 0;
    border-radius: 999px !important;
    color: #fff !important;
    background-image: none !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 9px 20px rgba(23, 24, 22, .14);
}

.product-share .product-share-link:hover {
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(23, 24, 22, .18);
    transform: translateY(-1px);
}

.product-share .product-share-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.product-share .product-share-link.whatsapp {
    background: #25d366;
}

.product-share .product-share-link.facebook {
    background: #1877f2;
}

.product-card strong,
.price {
    color: var(--charcoal);
    font-size: 18px;
    font-weight: 800;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: 30px;
}

.gallery,
.product-info,
.form-card,
.summary-card,
.success-panel {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(23, 24, 22, .1);
    padding: 20px;
    backdrop-filter: blur(14px);
}

.main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    background: #eee5d6;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
}

.thumb-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.thumb-row img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
}

.product-info h1,
.page-head h1,
.success-panel h1,
.contact-panel h1,
.banking-head h1 {
    margin: 8px 0 10px;
    padding-left: 13px;
    border-left: 4px solid var(--gold);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.08;
}

.lead,
.page-head p {
    color: var(--muted);
    font-size: 15px;
}

.price-panel {
    display: grid;
    gap: 3px;
    margin: 18px 0;
    padding: 14px;
    background: linear-gradient(135deg, #fff8e9, #f5e5bd);
    border: 1px solid #efd6a3;
    border-radius: var(--radius);
}

.price-panel span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.price-panel strong {
    font-size: 26px;
    font-weight: 800;
}

.size-strip {
    margin-bottom: 18px;
}

.size-strip span {
    border-color: var(--line);
    color: var(--charcoal);
    background: #fff;
}

.specs {
    padding: 15px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 14px;
}

.order-box,
.login-prompt {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.auth-layout {
    display: grid;
    place-items: start center;
    min-height: 60vh;
}

.auth-layout-split {
    grid-template-columns: minmax(330px, .9fr) minmax(360px, 520px);
    gap: 24px;
    align-items: stretch;
    place-items: stretch;
}

.auth-showcase {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.auth-showcase img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.auth-showcase::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(13, 12, 9, .18) 0%, rgba(13, 12, 9, .8) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, 0));
    content: "";
}

.auth-showcase-copy {
    position: absolute;
    inset: auto 24px 24px;
    z-index: 1;
    color: #fff8e9;
}

.auth-showcase-copy h2 {
    max-width: 540px;
    margin: 7px 0 0;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.06;
}

.auth-showcase .eyebrow {
    color: #f6c457;
}

.auth-card {
    align-self: center;
    padding: clamp(22px, 3vw, 34px);
}

.auth-card h1,
.form-card h1,
.form-card h2 {
    margin: 0 0 8px;
    padding-left: 12px;
    border-left: 4px solid var(--teal);
    font-size: 30px;
    line-height: 1.1;
}

.form-card h2 {
    font-size: 24px;
}

.form-intro {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.form-card {
    display: grid;
    gap: 10px 12px;
    width: min(100%, 520px);
}

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

.form-row,
.form-full {
    min-width: 0;
}

.form-full {
    grid-column: 1 / -1;
}

.form-row label,
.form-full label,
.form-card > label {
    margin-top: 0;
}

.form-card .button[type="submit"],
.form-card button[type="submit"] {
    width: fit-content;
    margin-top: 12px;
}

.google-link {
    display: block;
    margin-top: 12px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    text-align: center;
    font-weight: 700;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.google-link:hover {
    border-color: rgba(0, 111, 98, .34);
    box-shadow: 0 10px 24px rgba(23, 24, 22, .08);
    text-decoration: none;
    transform: translateY(-1px);
}

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

.cart-item {
    display: grid;
    grid-template-columns: 76px 1fr 120px 100px 120px;
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.cart-item img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-item span {
    color: var(--muted);
}

.cart-summary {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

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

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.summary-total {
    border: 0;
    font-size: 20px;
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-grid strong {
    display: block;
    margin-top: 4px;
    color: var(--charcoal);
}

.alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: #e7f5ef;
    border: 1px solid #b7dfcf;
}

.alert.warning {
    background: #fff7e6;
    border-color: #f0cf8e;
}

.alert.danger {
    background: #fff1f0;
    border-color: #f5b5ad;
}

.empty-state {
    padding: 28px;
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    font-size: 14px;
    text-align: center;
}

.pagination {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 28px 0 8px;
}

.pagination-status {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.pagination-controls {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(23, 24, 22, .06);
}

.pagination a,
.pagination span.pagination-step,
.pagination-ellipsis {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 11px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--teal-dark);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.pagination a.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 111, 98, .18);
}

.pagination-step {
    min-width: 90px !important;
}

.pagination-step.disabled {
    color: #a7aaa3;
    cursor: not-allowed;
}

.pagination-ellipsis {
    min-width: 28px;
    border-color: transparent;
    background: transparent;
    color: var(--muted);
    box-shadow: none;
}

.site-footer {
    padding: 0 clamp(16px, 4vw, 46px);
    background: linear-gradient(120deg, #181b17 0%, #20231f 55%, #123c38 100%);
    color: #eadbc0;
    font-size: 14px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, .75fr));
    gap: clamp(22px, 4vw, 46px);
    max-width: 1220px;
    margin: 0 auto;
    padding: 42px 0 32px;
}

.footer-brand,
.footer-nav,
.footer-contact,
.footer-dealer {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: #fff6df;
    font-size: 20px;
    font-weight: 800;
}

.footer-logo img {
    width: 68px;
    height: 44px;
    object-fit: cover;
    border: 1px solid rgba(246, 196, 87, .34);
    border-radius: 6px;
}

.footer-brand p {
    max-width: 440px;
    margin: 4px 0 8px;
    color: rgba(234, 219, 192, .84);
}

.footer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer h2 {
    margin: 3px 0 8px;
    color: #fff6df;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-footer a {
    color: #f4d28a;
    background-image: none;
}

.footer-nav a,
.footer-contact a,
.footer-dealer a,
.footer-contact span {
    color: rgba(234, 219, 192, .86);
    line-height: 1.45;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-dealer a:hover,
.footer-logo:hover {
    color: #f6c457;
    background: transparent;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    max-width: 1220px;
    margin: 0 auto;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 248, 233, .13);
    color: rgba(234, 219, 192, .72);
    font-size: 12px;
}

.floating-social {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 20;
    display: grid;
    gap: 9px;
}

.floating-social-link {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 14px 32px rgba(23, 24, 22, .2);
    transition: transform .18s ease, box-shadow .18s ease;
}

.floating-social-link b {
    font-size: 18px;
    line-height: 1;
}

.floating-social-link span {
    position: absolute;
    right: calc(100% + 10px);
    min-width: max-content;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(24, 27, 23, .94);
    color: #fff8e9;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity .18s ease, transform .18s ease;
}

.floating-social-link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(23, 24, 22, .26);
    text-decoration: none;
}

.floating-social-link:hover span {
    opacity: 1;
    transform: translateX(0);
}

.floating-social-link.whatsapp {
    background: #17a85f;
}

.floating-social-link.phone {
    background: var(--teal);
}

.floating-social-link.mail {
    background: var(--gold);
    color: #20160a;
}

.floating-social-link.instagram {
    background: linear-gradient(135deg, #7f1d6f 0%, #d43f55 54%, #f4b84a 100%);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.992);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero {
        min-height: 500px;
        background-position: center;
    }

    .brand-showcase,
    .partner-section,
    .catalogue-head,
    .contact-panel,
    .image-feature,
    .product-detail,
    .checkout-layout,
    .auth-layout-split,
    .banking-grid {
        grid-template-columns: 1fr;
    }

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

    .retailer-head,
    .retailer-detail-grid {
        grid-template-columns: 1fr;
    }

    .retailer-actions {
        justify-content: flex-start;
    }

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

    .section-kicker {
        align-items: flex-start;
        flex-direction: column;
    }

    .auth-showcase,
    .auth-showcase img {
        min-height: 420px;
    }

    .auth-card {
        order: 1;
    }

    .auth-showcase {
        order: 2;
    }

    .metric-band {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .cart-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 8px 18px 9px;
        font-size: 12px;
        line-height: 1.25;
    }

    .top-strip div {
        display: flex;
        flex-wrap: wrap;
        gap: 7px 16px;
        align-items: center;
    }

    .top-strip a {
        width: fit-content;
    }

    .site-header {
        align-items: center;
    }

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

    .nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 130;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        width: min(86vw, 340px);
        height: 100vh;
        padding: 86px 18px 24px;
        background: rgba(255, 255, 255, .98);
        border-left: 1px solid var(--line);
        box-shadow: -18px 0 46px rgba(23, 24, 22, .18);
        transform: translateX(105%);
        transition: transform .24s ease;
    }

    body.menu-open .nav-panel {
        transform: translateX(0);
    }

    .nav-panel a,
    .nav-panel .nav-user {
        width: 100%;
        padding: 12px 10px;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .nav-panel a.button {
        width: fit-content;
        margin-top: 8px;
        border-bottom: 0;
        border-radius: var(--radius);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-social {
        right: 12px;
        bottom: 12px;
        gap: 7px;
    }

    .floating-social-link {
        width: 42px;
        height: 42px;
    }

    .floating-social-link span {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 26px;
        background-position: center;
    }

    .hero-slider,
    .hero-slider-track {
        min-height: 560px;
    }

    .hero-slider {
        padding: 0;
    }

    .hero-slide {
        padding: 26px;
    }

    .hero-slider-dots {
        left: 26px;
        bottom: 18px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

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

    .search-bar,
    .contact-grid,
    .form-two,
    .bank-card dl div {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        display: none;
    }

    .hero-proof::-webkit-scrollbar,
    .hero-badges::-webkit-scrollbar {
        display: none;
    }

    .hero-proof span {
        min-width: 186px;
    }

    .hero-badges {
        display: none;
    }

    .brand-logo-track {
        animation-duration: 22s;
    }

    .brand-logo-card {
        min-width: 138px;
        min-height: 64px;
        padding: 12px 14px;
    }

    .brand-logo-card span {
        font-size: 18px;
    }

    .brand-logo-card img {
        max-width: 110px;
        max-height: 44px;
    }

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

    .cart-item img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 460px) {
    .product-grid,
    .metric-band,
    .brand-photo-grid,
    .retailer-terms-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .brand-showcase,
    .brand-photo-showcase,
    .retailer-section,
    .banking-section,
    .partner-section,
    .catalogue-head,
    .contact-panel,
    .image-feature,
    .gallery,
    .product-info,
    .form-card,
    .summary-card {
        padding: 16px;
    }

    .hero h1,
    .product-info h1,
    .page-head h1,
    .success-panel h1,
    .contact-panel h1,
    .banking-head h1 {
        font-size: 30px;
    }

    .auth-showcase,
    .auth-showcase img {
        min-height: 340px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
