:root {
    --bg: #ffffff;
    --bg-dark: #babdbaf2;
    --panel-dark: #010409;
    --ink: #12161B;
    --steel: #00060b;
    --steel-light: #080114;
    --line: #1b1a19;
    --line-dark: #eceff3;
    --accent: #e0647d;
    --accent-ink: #e39415;
    --accent-soft: #EDE0C8;
    --teal: #12676A;
    --teal-ink: #0B4547;
    --teal-soft: #DCEEEC;
    --surface-alt: #f1f1f0;
    --max: 1200px;
    --radius: 1px;
}

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

html {
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Archivo', system-ui, sans-serif;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

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

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

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

button {
    font-family: inherit;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}


/* ---------- Header ---------- */

header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(244, 246, 244, 0.94);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.util-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--line-dark);
}

.util-bar .wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 38px;
    gap: 2px;
}

.util-bar a {
    font-size: 0.8rem;
    color: #060111;
    padding: 6px 12px;
}

.util-bar a:hover {
    color: #f1c708;
}

@media (max-width:500px) {
    .util-bar {
        display: none;
    }
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}

.logo svg {
    width: 30px;
    height: 30px;
    flex: none;
}

.logo .mark {
    color: var(--accent);
}

nav.primary {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--ink);
    border: none;
    background: none;
    cursor: pointer;
    border-radius: var(--radius);
}

.nav-link:hover {
    text-decoration: underline;
    text-decoration-color: rgb(236, 205, 6);
    text-decoration-thickness: 4px;
    text-underline-offset: 15px;
    text-decoration-skip-ink: none;
    text-decoration-style: solid;
    text-underline-position: under;
    transition: text-decoration-color-yellow 0.3s ease, text-decoration-thickness 0.3s ease, text-underline-offset 0.3s ease;
    text-underline-position: auto;
}

.nav-link .caret {
    width: 9px;
    height: 9px;
    transition: transform .18s ease;
}

.nav-item.open .caret {
    transform: rotate(180deg);
}

.mega {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -20px rgba(20, 20, 20, 0.35);
    padding: 18px;
    min-width: 300px;
    display: none;
    border-radius: var(--radius);
}

.nav-item.open .mega {
    display: block;
}

.mega a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 10px;
    font-size: 0.9rem;
    color: var(--ink);
    border-radius: var(--radius);
}

.mega a:hover {
    background: var(--accent-soft);
}

.mega a small {
    color: var(--steel);
    font-size: 0.78rem;
    font-weight: 400;
}

.mega .pic {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega .pic img {
    width: 80%;
    height: 80px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 4px);
    margin-bottom: 6px;
}

.mega.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 18px;
    min-width: 460px;
}

.nav-item.open .mega.grid2 {
    display: grid;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    color: var(--ink);
    cursor: pointer;
    position: relative;
    border-radius: 50%;
}

.icon-btn:hover {
    background: var(--surface-alt);
}

.icon-btn svg {
    width: 19px;
    height: 19px;
}

.icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    background: var(--accent);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.lang-select .nav-link {
    padding: 10px 10px;
}

.lang-select .mega {
    right: 0;
    left: auto;
    min-width: 160px;
}

.lang-select .mega a {
    flex-direction: row;
    justify-content: space-between;
}

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

.search-input {
    width: 0;
    opacity: 0;
    padding: 0;
    height: 38px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 20px 0 0 20px;
    font-size: 0.88rem;
    color: var(--ink);
    transition: width .22s ease, opacity .18s ease, padding .22s ease;
}

.search-wrap.active .search-input {
    width: 200px;
    opacity: 1;
    padding: 0 14px;
    margin-right: -18px;
}

.search-wrap.active .icon-btn {
    background: #fff;
    border: 1px solid var(--line);
    border-left: none;
    border-radius: 0 20px 20px 0;
}

@media (max-width:900px) {
    .search-wrap.active .search-input {
        width: 150px;
    }
}

@media (max-width:560px) {
    .search-wrap.active .search-input {
        position: absolute;
        right: 44px;
        width: min(60vw, 220px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-ink);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--steel);
}

.btn-ghost-dark {
    background: transparent;
    color: #E7E9E1;
    border-color: var(--line-dark);
}

.btn-ghost-dark:hover {
    border-color: var(--steel-light);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span::before {
    position: absolute;
    top: -6px;
}

.menu-toggle span::after {
    position: absolute;
    top: 6px;
}

.menu-toggle.active span {
    background: transparent;
}

.menu-toggle.active span::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width:960px) {
    nav.primary,
    .nav-cta .btn-ghost {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

#mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
}

#mobile-panel.active {
    display: block;
}

#mobile-panel .wrap {
    padding: 14px 28px 26px;
}

.m-group summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid var(--line);
}

.m-group summary::-webkit-details-marker {
    display: none;
}

.m-group[open] summary .caret {
    transform: rotate(180deg);
}

.m-group .caret {
    width: 10px;
    height: 10px;
    transition: transform .18s ease;
}

.m-sub {
    padding: 4px 2px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-sub a {
    font-size: 0.92rem;
    color: var(--steel);
}

.m-flat a {
    display: block;
    padding: 14px 2px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
}


/* ---------- Hero ---------- */

.hero-slides {
    position: relative;
    height: min(624px, 92vh);
    min-height: 500%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 16, 16, 0.92) 0%, rgba(10, 16, 16, 0.72) 42%, rgba(10, 16, 16, 0.25) 78%);
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 440px;
    padding: 50px 0;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    color: var(--steel-light, #e6e60e);
    padding-bottom: 20px;
}

.kicker::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--accent, #cb1c0f);
}

.hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    line-height: 1.08;
    font-weight: 700;
    max-width: 16ch;
    color: #fff;
}

.hero-copy {
    margin-top: 20px;
    font-size: 1.06rem;
    color: #C4C9C3;
    max-width: 48ch;
}

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

.hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 50px;
    border-top: 1px solid var(--line-dark, #2a3535);
    padding-top: 24px;
    flex-wrap: wrap;
}

.stat b {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}

.stat span {
    font-size: 0.8rem;
    color: var(--steel-light, #9fb0b0);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(10, 16, 16, 0.35);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(10, 16, 16, 0.6);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    padding: 0;
    cursor: pointer;
}

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

@media (max-width: 100px) {
    .hero-slides {
        height: auto;
        min-height: 0;
    }
    .hero-slide {
        position: relative;
        display: none;
    }
    .hero-slide.is-active {
        display: flex;
    }
    .hero-slide img {
        position: absolute;
    }
    .hero-text {
        padding: 52px 0 40px;
    }
    .hero-stats {
        gap: 22px;
    }
    .hero-arrow {
        width: 36px;
        height: 36px;
    }
}


/* ---------- Sections shared ---------- */

section {
    padding: 1px 0;
}

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

.section-head h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    max-width: 16ch;
}

.section-head p {
    color: var(--steel);
    max-width: 42ch;
    font-size: 1rem;
}

.section-tag {
    font-size: 0.86rem;
    color: var(--accent-ink);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}


/* ---------- Intro / About ---------- */

.intro {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.intro .wrap {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 50px;
    padding: 70px 28px;
}

.intro-lead {
    font-size: 1.5rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    line-height: 1.32;
}

.intro-body {
    color: var(--steel);
    font-size: 1.02rem;
    max-width: 60ch;
}

.intro-body p+p {
    margin-top: 14px;
}


/* ---------- Product gallery (pictures) ---------- */


/*.gallery-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
}

.gallery-strip::-webkit-scrollbar {
    height: 6px;
}

.gallery-strip::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 4px;
}

.gallery-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.gallery-pic {
    height: 180px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.gallery-pic svg,
.gallery-pic img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: var(--accent-ink);
}

.dash-line {
    animation: march 1.6s linear infinite;
}

.gallery-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gallery-info h3 {
    font-size: 1rem;
}

.gallery-info span {
    font-size: 0.84rem;
    color: var(--steel);
}


/*
:root {
    --ink: #1B1D21;
    --steel: #5B6470;
    --steel-light: #8C93A0;
    --line: #E4E1D8;
    --bg: #FFFFFF;
    --cream: #EFEAdd;
    --accent: #BF5B1E;
    --teal: #1E7370;
    --radius: 6px;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    padding: 48px 24px;
    background: var(--cream);
    font-family: 'Inter', Arial, sans-serif;
    color: var(--ink);
  }

  .wrap { max-width: 1200px; margin: 0 auto; }

  .heading { margin-bottom: 32px; }
  .heading span {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
  }
  .heading h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
  }

  /* ---------- the box grid ---------- */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}

.cat-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cat-box:hover {
    box-shadow: 0 10px 28px rgba(27, 29, 33, 0.12);
    transform: translateY(-3px);
}


/* picture area */

.cat-box .pic {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
}

.cat-box .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.cat-box:hover .pic img {
    transform: scale(1.05);
}


/* shown automatically if the image fails to load / is a placeholder */

.cat-box .pic .no-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--steel-light);
    text-align: center;
    padding: 12px;
}

.cat-box .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(27, 29, 33, 0.85);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}


/* details area */

.cat-box .body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.cat-box h3 {
    margin: 0;
    font-size: 1.1rem;
}

.cat-box .tagline {
    margin: -8px 0 0;
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 600;
}

.cat-box .desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--steel);
}

.cat-box .specs {
    list-style: none;
    margin: 4px 0 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
}

.cat-box .specs li {
    font-size: 0.78rem;
    line-height: 1.4;
}

.cat-box .specs .k {
    display: block;
    color: var(--steel-light);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.68rem;
}

.cat-box .specs .v {
    display: block;
    font-weight: 600;
    color: var(--ink);
}

.cat-box .segments {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.cat-box .segments span {
    font-size: 0.72rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 3px 10px;
    color: var(--steel);
}

.cat-box .btn {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    padding-top: 8px;
}

.cat-box .btn:hover {
    text-decoration: underline;
}


/* ---------- About product ---------- */

.about-product {
    background: var(--bg-dark);
    color: #E7E9E1;
}

.about-product .wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.about-product h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    max-width: 14ch;
}

.about-product .lead {
    color: #C4C9C3;
    margin-top: 18px;
    font-size: 1.02rem;
    max-width: 44ch;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.feature {
    border-top: 1px solid var(--line-dark);
    padding-top: 16px;
}

.feature h4 {
    font-size: 1rem;
    color: #fff;
}

.feature p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--steel-light);
}

@media (max-width:800px) {
    .about-product .wrap {
        grid-template-columns: 1fr;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
}


/* ---------- Markets + product details ---------- */

.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.market-card {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.market-pic {
    height: 140px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.market-pic svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.market-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.market-card .icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.market-card h3 {
    font-size: 1.15rem;
}

.market-card p {
    color: var(--steel);
    font-size: 0.92rem;
}

.market-products {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
}

.chip {
    font-size: 0.76rem;
    padding: 4px 9px;
    border: 1px solid var(--line);
    color: var(--steel);
    border-radius: 20px;
    background: #fff;
}

@media (max-width:900px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .markets-grid {
        grid-template-columns: 1fr;
    }
}

.market-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-ink);
    border-bottom: 1px solid transparent;
    width: max-content;
}

.market-view-btn:hover {
    border-bottom-color: var(--accent-ink);
}

.market-view-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.15s ease;
}

.market-view-btn:hover svg {
    transform: translateX(3px);
}


/* ---------- About CTA button (About section) ---------- */

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-ink), var(--accent));
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px -6px rgba(227, 148, 21, 0.55);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    margin-bottom: 10px;
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -6px rgba(227, 148, 21, 0.7);
}

.about-cta:active {
    transform: translateY(0);
}

.about-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.about-cta svg {
    transition: transform 0.18s ease;
}

.about-cta:hover svg {
    transform: translateX(3px);
}


/* ---------- Standalone detail pages (product-detail / market-detail / about) ---------- */

.detail-header {
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.detail-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    gap: 16px;
}

.detail-header .logo img {
    width: 150px;
    height: auto;
}

.breadcrumb {
    padding: 18px 28px 0;
    font-size: 0.84rem;
    color: var(--steel);
    max-width: var(--max);
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--accent-ink);
    font-weight: 600;
}

.detail-hero {
    padding: 28px 28px 0;
    max-width: var(--max);
    margin: 0 auto;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 28px 28px 70px;
    max-width: var(--max);
    margin: 0 auto;
    align-items: start;
}

.detail-pic {
    position: relative;
    border: 1px solid var(--line);
    background: var(--accent-soft);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.detail-pic svg,
.detail-pic img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-body .section-tag {
    margin-bottom: 6px;
}

.detail-body h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.detail-tagline {
    color: var(--steel);
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.detail-desc {
    color: var(--steel);
    margin-bottom: 24px;
    max-width: 60ch;
}

.detail-spec-table {
    border-top: 1px solid var(--line);
    margin-bottom: 22px;
}

.detail-spec-table .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}

.detail-spec-table .spec-row .k {
    color: var(--steel);
}

.detail-spec-table .spec-row .v {
    font-weight: 600;
}

.detail-segments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.detail-segments span {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--steel);
}

.detail-related {
    padding: 0 28px 70px;
    max-width: var(--max);
    margin: 0 auto;
}

.detail-related h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.detail-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.related-card {
    display: block;
    border: 1px solid var(--line);
    background: #fff;
    padding: 18px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.related-card:hover {
    border-color: var(--accent-ink);
    transform: translateY(-2px);
}

.related-card .related-pic {
    height: 110px;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--accent-soft);
}

.related-card .related-pic svg,
.related-card .related-pic img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card h4 {
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.related-card p {
    font-size: 0.82rem;
    color: var(--steel);
}

.detail-not-found {
    padding: 90px 28px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.detail-not-found h1 {
    margin-bottom: 12px;
}

.detail-not-found p {
    color: var(--steel);
    margin-bottom: 22px;
}

.about-page-hero {
    background: var(--panel-dark);
    color: #E7E9E1;
    padding: 60px 28px;
}

.about-page-hero .wrap {
    max-width: var(--max);
    margin: 0 auto;
}

.about-page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 14px;
}

.about-page-hero p {
    color: var(--steel-light);
    max-width: 62ch;
    font-size: 1.05rem;
}

.about-page-body {
    padding: 56px 28px;
    max-width: 780px;
    margin: 0 auto;
}

.about-page-body p {
    color: var(--steel);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto 0;
    max-width: var(--max);
    padding: 0 28px 56px;
}

.about-stats .stat {
    border-top: 3px solid var(--accent-ink);
    padding-top: 14px;
}

.about-stats .stat strong {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    color: var(--ink);
}

.about-stats .stat span {
    color: var(--steel);
    font-size: 0.88rem;
}

@media (max-width:800px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
}


/* ---------- Categories & segments (tabbed) ---------- */

.categories {
    background: var(--surface-alt);
}

.cat-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
}

.cat-tabs {
    border-right: 1px solid var(--line);
}

.cat-tab {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.cat-tab span.name {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.96rem;
}

.cat-tab span.tag {
    font-size: 0.8rem;
    color: var(--steel);
}

.cat-tab:hover {
    background: var(--accent-soft);
}

.cat-tab.active {
    background: #fff;
    border-left: 3px solid var(--accent);
}

.cat-panel {
    padding: 40px;
}

.cat-pic {
    height: 220px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 28px;
}

.cat-pic svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cat-panel h3 {
    font-size: 1.5rem;
}

.cat-panel .desc {
    color: var(--steel);
    margin-top: 12px;
    max-width: 60ch;
}

.spec-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    margin-top: 28px;
}

.spec-row {
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

.spec-row .k {
    font-size: 0.78rem;
    color: var(--steel-light);
    text-transform: lowercase;
}

.spec-row .v {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    margin-top: 2px;
}

.segment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.segment-list span {
    font-size: 0.84rem;
    padding: 7px 13px;
    border: 1px solid var(--line);
    background: #fff;
}

@media (max-width:800px) {
    .cat-layout {
        grid-template-columns: 1fr;
    }
    .cat-tabs {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .cat-tab {
        border-bottom: none;
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .cat-tab.active {
        border-left: none;
        border-bottom: 3px solid var(--accent);
    }
    .cat-panel {
        padding: 28px 20px;
    }
}


/* ---------- Process ---------- */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.process-step {
    border-top: 2px solid var(--ink);
    padding-top: 18px;
}

.process-step .idx {
    font-family: 'Archivo', sans-serif;
    font-size: 0.95rem;
    color: var(--accent-ink);
}

.process-step h3 {
    margin-top: 10px;
    font-size: 1.15rem;
}

.process-step p {
    margin-top: 10px;
    color: var(--steel);
    font-size: 0.94rem;
}

@media (max-width:800px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- News ---------- */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}

.news-thumb {
    height: 160px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #E2E4DA, #EEF0EA);
    position: relative;
    overflow: hidden;
}

.news-thumb svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.news-tag {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
}

.news-card h3 {
    font-size: 1.05rem;
    line-height: 1.35;
}

.news-card p.excerpt {
    font-size: 0.9rem;
    color: var(--steel);
}

.news-date {
    font-size: 0.82rem;
    color: var(--steel-light);
}

.news-status {
    color: var(--steel);
    font-size: 0.9rem;
}

@media (max-width:900px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- Media (photos & videos) ---------- */

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.media-card {
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
}

.media-thumb {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: var(--accent-soft);
}

.media-thumb svg,
.media-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-kind {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 4px 9px;
    background: rgba(18, 22, 27, 0.82);
    color: #fff;
    border-radius: 20px;
}

.media-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 22, 27, 0.28);
}

.media-play::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff;
}

.media-play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.media-info h3 {
    font-size: 0.98rem;
    line-height: 1.35;
}

.media-info span.tag {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
}

.media-info span.date {
    font-size: 0.8rem;
    color: var(--steel-light);
}

@media (max-width:900px) {
    .media-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- FAQ ---------- */

.faq {
    background: var(--surface-alt);
}

.faq-list {
    max-width: 820px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 1.03rem;
}

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

.faq-item .plus {
    width: 16px;
    height: 16px;
    position: relative;
    flex: none;
}

.faq-item .plus::before,
.faq-item .plus::after {
    content: "";
    position: absolute;
    background: var(--ink);
}

.faq-item .plus::before {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.faq-item .plus::after {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
    transition: transform .18s ease;
}

.faq-item[open] .plus::after {
    transform: rotate(90deg);
}

.faq-item .faq-a {
    padding: 0 4px 24px;
    color: var(--steel);
    max-width: 70ch;
    font-size: 0.98rem;
}

.faq-item .faq-a a {
    color: var(--accent-ink);
    font-weight: 600;
}

.faq-item .faq-a ul {
    margin-top: 8px;
    padding-left: 18px;
    list-style: disc;
}

.faq-item .faq-a li {
    margin-bottom: 4px;
}


/* ---------- Inquiry / contact form ---------- */

.contact-panel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 34px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-panel h3 {
    color: var(--ink);
    font-size: 1.2rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 0.82rem;
    color: var(--steel);
}

.field input,
.field textarea,
.field select {
    border: 1px solid var(--line);
    padding: 10px 12px;
    font-size: 0.94rem;
    font-family: inherit;
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
}

.field textarea {
    resize: vertical;
    min-height: 90px;
}

.form-msg {
    font-size: 0.86rem;
    padding: 10px 12px;
    border-radius: var(--radius);
    display: none;
}

.form-msg.show {
    display: block;
}

.form-msg.ok {
    background: var(--teal-soft);
    color: var(--teal-ink);
}

.form-msg.err {
    background: var(--accent-soft);
    color: var(--accent-ink);
}


/* ---------- CTA band ---------- */

.cta-band {
    background: var(--bg-dark);
    color: #E7E9E1;
}

.cta-band .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding: 64px 28px;
    flex-wrap: wrap;
}

.cta-band h2 {
    color: #fff;
    font-size: 1.9rem;
    max-width: 16ch;
}

.cta-band p {
    color: var(--steel-light);
    margin-top: 10px;
    max-width: 40ch;
}

.cta-copy {
    flex: 1;
    min-width: 260px;
}


/* ---------- Footer ---------- */

footer {
    background: var(--panel-dark);
    color: #B3B9B2;
    padding: 64px 0 28px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line-dark);
}

.foot-brand .logo {
    color: #fff;
}

.foot-brand p {
    margin-top: 16px;
    color: #848E86;
    font-size: 0.9rem;
    max-width: 32ch;
}

.foot-col h4 {
    font-size: 0.86rem;
    color: #848E86;
    font-weight: 600;
    margin-bottom: 16px;
}

.foot-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.foot-col a {
    font-size: 0.9rem;
    color: #D2D6CD;
}

.foot-col a:hover {
    color: #fff;
}

.foot-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.foot-social a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.foot-social svg {
    width: 15px;
    height: 15px;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 26px;
    font-size: 0.82rem;
    color: #767F77;
}

.foot-bottom .legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.foot-bottom a:hover {
    color: #E7E9E1;
}

@media (max-width:100px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:100px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-art {
        order: -1;
    }
    .intro .wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width:100px) {
    section {
        padding: 0px 0;
    }
    .hero {
        padding-top: 0px;
    }
}


/* ============================================================
   INVENTORY NAV ENTRY
   Added for the "Inventory" link that opens the stock app in
   /inventory/. Scoped to its own classes so nothing else in the
   header changes.
   ============================================================ */

.nav-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link-icon .nav-ico {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--accent, #A3701F);
    transition: transform .18s ease;
}

.nav-link-icon:hover .nav-ico {
    transform: translateY(-1px);
}


/* The round icon button version sits next to favourites/search. It is
   an <a>, not a <button>, so it needs the button box styles restated. */

a.icon-btn {
    text-decoration: none;
}

a.icon-btn:hover {
    background: var(--surface-alt);
}


/* Mobile drawer entry — flagged so it reads as an app, not a page anchor. */

.m-flat a.m-inventory {
    font-weight: 600;
}

.m-flat a.m-inventory::after {
    content: "app";
    margin-left: 8px;
    padding: 1px 6px;
    border: 1px solid var(--line, #D6D9D2);
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--steel, #566068);
    vertical-align: middle
}

/* ============================================================
   HERO SLIDE SIZE / IMAGE ALIGNMENT FIX
   Keeps every hero slide the same size as its image area.
   ============================================================ */

.hero-slides {
    position: relative;
    width: 100%;
    height: 620px;
    min-height: 620px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-grid {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
    width: min(440px, 48%);
    max-width: 440px;
}

/* Keep the controls inside the fixed hero block */
.hero-arrow {
    z-index: 5;
}

.hero-dots {
    z-index: 5;
}

/* Tablet */
@media (max-width: 900px) {
    .hero-slides {
        height: 520px;
        min-height: 520px;
    }

    .hero-text {
        width: min(520px, 70%);
        max-width: 520px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-slides {
        height: 460px;
        min-height: 460px;
    }

    .hero-slide img {
        object-position: center center;
    }

    .hero-grid {
        align-items: flex-end;
        padding-bottom: 58px;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        padding: 30px 0 20px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-copy {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-actions {
        margin-top: 20px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-dots {
        bottom: 14px;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .hero-slides {
        height: 430px;
        min-height: 430px;
    }

    .hero-text {
        padding-top: 20px;
    }

    .hero-copy {
        margin-top: 12px;
    }
}


/* ---------- TiMOTION-style centered hero carousel ---------- */
.hero-slides {
    position: relative;
    width: min(calc(100% - 40px), 1050px);
    height: 562px;
    min-height: 410px;
    margin: 0 auto 58px;
    overflow: visible;
    background: #fff;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

.hero-slide img {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-scrim {
    position: absolute;
    left: 55%;
    right: 0;
    top: 0;
    bottom: 0;
    background: #3f735f;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    left: 55%;
    top: 0;
    width: 45%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-grid.wrap {
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-text {
    width: 100%;
    max-width: none;
    padding: 42px 42px;
}

.hero .kicker {
    color: #fff;
    padding-bottom: 14px;
}

.hero .kicker::before {
    background: #f5b400;
}

.hero h1 {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    line-height: 1.08;
    max-width: 14ch;
    color: #fff;
}

.hero-copy {
    margin-top: 18px;
    font-size: 0.98rem;
    color: rgba(255,255,255,0.92);
    max-width: 44ch;
}

.hero-actions {
    margin-top: 24px;
}

.hero .btn-primary {
    background: #f5b400;
    color: #111;
    border-color: #f5b400;
    border-radius: 24px;
}

.hero .btn-primary:hover {
    background: #e3a400;
}

.hero .btn-ghost-dark {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.hero-arrow {
    display: none;
}

.hero-dots {
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    gap: 10px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border: 2px solid #f5b400;
    background: #fff;
}

.hero-dot.is-active {
    background: #f5b400;
}

@media (max-width: 900px) {
    .hero-slides {
        width: calc(100% - 32px);
        height: 380px;
        min-height: 380px;
    }

    .hero-text {
        padding: 32px;
    }
}

@media (max-width: 650px) {
    .hero-slides {
        width: 100%;
        height: 520px;
        min-height: 520px;
        margin-top: 0;
    }

    .hero-slide {
        flex-direction: column;
    }

    .hero-slide img {
        width: 100%;
        height: 48%;
        bottom: auto;
    }

    .hero-scrim {
        left: 0;
        top: 48%;
        width: 100%;
        bottom: 0;
    }

    .hero-grid {
        left: 0;
        top: 48%;
        width: 100%;
        height: 52%;
    }

    .hero-text {
        padding: 24px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-copy {
        font-size: 0.9rem;
    }
}


/* ---------- TiMOTION-style Products mega menu ---------- */
.product-mega {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100vw - 40px));
    min-width: 0;
    padding: 28px 26px 42px;
    border: none;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 0 18px 35px -24px rgba(20,20,20,.35);
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 18px 12px;
    background: #fff;
}

.nav-item.open .product-mega {
    display: grid;
}

.product-mega-item {
    min-width: 0;
    min-height: 150px;
    padding: 4px 6px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: center;
    color: #4d4d4d;
    border-radius: 2px;
    transition: background .18s ease, transform .18s ease;
}

.product-mega-item:hover {
    background: #fafafa;
    transform: translateY(-2px);
}

.product-mega-item strong {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: .88rem;
    line-height: 1.35;
    font-weight: 500;
    color: #444;
}

.product-mega-pic {
    width: 112px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-mega-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1100px) {
    .product-mega {
        grid-template-columns: repeat(4, 1fr);
        width: min(900px, calc(100vw - 32px));
    }
}

@media (max-width: 960px) {
    .product-mega {
        position: static;
        transform: none;
        width: auto;
        margin: 0;
        padding: 12px 0;
        grid-template-columns: 1fr 1fr;
        box-shadow: none;
        border: 0;
    }

    .product-mega-item {
        min-height: 110px;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 8px;
    }

    .product-mega-pic {
        width: 74px;
        height: 60px;
        flex: 0 0 74px;
    }
}


/* ============================================================
   HERO CAROUSEL — DESKTOP SIZE
   Exact desktop hero size: 1119 × 562 px
   ============================================================ */
@media (min-width: 961px) {
    .hero-slides {
        width: 1119px;
        max-width: 1119px;
        height: 562px;
        min-height: 562px;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }

    .hero-slide,
    .hero-slide img {
        width: 100%;
        height: 100%;
        min-height: 562px;
    }
}

/* Keep the carousel responsive below desktop */
@media (max-width: 960px) {
    .hero-slides {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
    }
}
