:root {
    --navy: #24306f;
    --navy-deep: #121a45;
    --blue: #5a9bd1;
    --blue-soft: #a9cce4;
    --red: #ef1d25;
    --yellow: #f2e300;
    --white: #ffffff;
    --ink: #17203f;
    --muted: #67718f;
    --line: rgba(36, 48, 111, 0.12);
    --surface: #f4f7fb;
    --surface-2: #eaf1f8;
    --shadow: 0 18px 45px rgba(15, 24, 63, 0.16);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Barlow", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; color: var(--ink); }
h1, h2, h3, h4 { margin: 0 0 0.8rem; line-height: 1.05; }
.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(36, 48, 111, 0.08);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 1.25rem;
}
.brand img { width: 260px; max-width: 48vw; }
.site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-weight: 700;
    color: var(--hero-heading);
}
.site-nav a {
    position: relative;
    padding-bottom: 0.18rem;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta {
    padding: 0.85rem 1.15rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow);
}
.nav-cta::after { display: none; }
.menu-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    color: var(--white);
    padding: 0.85rem 1rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(239, 29, 37, 0.08), rgba(36, 48, 111, 0) 38%),
        linear-gradient(180deg, #f7fbff 0%, #eef5fd 100%);
}
.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: auto -15% 0 -10%;
    height: 220px;
    background: var(--navy);
    border-top-left-radius: 55% 100%;
    border-top-right-radius: 35% 100%;
    opacity: 0.95;
}
.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    right: -10%;
    top: 14%;
    width: 58%;
    height: 55%;
    background: var(--blue);
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.2;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    padding: 4.5rem 0 6rem;
}
.page-hero .container,
.small-hero .container {
    position: relative;
    z-index: 1;
    padding: 5rem 0 5.5rem;
}
.small-hero .container { padding: 4.25rem 0 4.75rem; }
.hero-copy h1,
.page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 5.1rem);
    letter-spacing: -0.04em;
    color: var(--navy-deep);
    max-width: 11ch;
}
.hero-copy p,
.page-hero p {
    max-width: 60ch;
    font-size: 1.1rem;
    color: var(--hero-text);
}
.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 1rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.8rem 0 2.2rem;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    background: linear-gradient(135deg, var(--red), #ff4c52);
    color: var(--white);
    box-shadow: 0 18px 35px rgba(239, 29, 37, 0.22);
}
.button-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid rgba(36, 48, 111, 0.12);
    box-shadow: var(--shadow);
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.stat-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(36, 48, 111, 0.08);
    border-radius: 20px;
    padding: 1rem 1.1rem;
    backdrop-filter: blur(12px);
}
.stat-card strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
}
.stat-card span {
    color: var(--muted);
    font-size: 0.94rem;
}
.hero-visual {
    display: flex;
    justify-content: center;
}
.pack-frame {
    position: relative;
    width: min(100%, 560px);
    padding: 1rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.75));
    border: 1px solid rgba(36, 48, 111, 0.08);
    box-shadow: var(--shadow);
}
.pack-frame::before {
    content: "";
    position: absolute;
    inset: auto 8% -12px 8%;
    height: 28px;
    background: rgba(18, 26, 69, 0.16);
    filter: blur(20px);
    border-radius: 50%;
}
.pack-frame img {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    border: 6px solid var(--white);
    object-fit: cover;
}
.floating-card { animation: floatCard 5.2s ease-in-out infinite; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.section {
    padding: 5.2rem 0;
}
.section-light {
    background: linear-gradient(180deg, #f3f8fd 0%, #edf4fb 100%);
}
.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}
.align-start { align-items: start; }
.content-card,
.icon-card,
.product-card,
.sustainability-card,
.form-card,
.contact-panel,
.cta-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.content-card,
.icon-card,
.sustainability-card,
.contact-panel,
.form-card {
    padding: 2rem;
}
.intro-strip .content-card h2,
.section-heading h2,
.cta-box h2,
.contact-panel h2 {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    color: var(--navy-deep);
    letter-spacing: -0.03em;
}
.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.section-heading.left { text-align: left; }
.section-heading p { max-width: 760px; margin: 0 auto; color: var(--muted); }
.section-heading.left p { margin: 0; }
.card-grid {
    display: grid;
    gap: 1.5rem;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue));
}
.product-card h3,
.icon-card h3,
.sustainability-card h3 { font-size: 1.55rem; color: var(--navy); }
.pill,
.capacity-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.84rem;
}
.pill {
    background: rgba(239, 29, 37, 0.1);
    color: var(--red);
}
.capacity-badge {
    background: rgba(36, 48, 111, 0.08);
    color: var(--navy);
}
.product-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}
.product-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}
.product-meta.stacked { grid-template-columns: 1fr; }
.product-meta li {
    background: var(--surface);
    border-radius: 16px;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(36, 48, 111, 0.08);
}
.product-meta span {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}
.product-meta strong { color: var(--navy-deep); }
.product-card-detailed .product-image-wrap {
    background: linear-gradient(180deg, #eef6fd 0%, #e6eef7 100%);
    border-radius: 22px;
    border: 1px solid rgba(36, 48, 111, 0.08);
    overflow: hidden;
}
.product-card-detailed .product-image-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: scale-down;
    object-position: center;
}
.process-band {
    background:
        linear-gradient(180deg, rgba(36, 48, 111, 0.98), rgba(18, 26, 69, 1)),
        var(--navy-deep);
    color: var(--white);
}
.process-band h2,
.process-band h3,
.process-band p,
.process-band .section-tag { color: var(--white); }
.process-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}
.single-column { grid-template-columns: 1fr; }
.timeline {
    display: grid;
    gap: 1rem;
}
.timeline-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 1rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 1.2rem;
}
.timeline-index {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    color: var(--navy-deep);
    font-weight: 900;
    font-size: 1.25rem;
    display: grid;
    place-items: center;
}
.cta-box {
    padding: 2rem 2.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(36,48,111,1), rgba(90,155,209,1));
    color: var(--white);
}
.cta-box h2,
.cta-box p,
.cta-box .section-tag { color: var(--white); }

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}
.filter-button {
    border: 1px solid rgba(36, 48, 111, 0.12);
    background: var(--white);
    color: var(--navy);
    padding: 0.75rem 1.05rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-button.active,
.filter-button:hover {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow);
}
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: start;
}
.contact-list,
.footer-links { list-style: none; margin: 0; padding: 0; }
.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.3rem;
}
.contact-list li {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid rgba(36, 48, 111, 0.08);
}
.form-card { padding: 1.8rem; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.form-grid label {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
    color: var(--navy);
}
.full-width { grid-column: 1 / -1; }
input,
textarea {
    width: 100%;
    border: 1px solid rgba(36, 48, 111, 0.14);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--ink);
    background: #fbfdff;
}
input:focus,
textarea:focus {
    outline: 3px solid rgba(90, 155, 209, 0.18);
    border-color: rgba(36, 48, 111, 0.3);
}
.flash {
    border-radius: 18px;
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.flash-success {
    background: rgba(11, 169, 97, 0.12);
    color: #0a7c4a;
}
.flash-error {
    background: rgba(239, 29, 37, 0.12);
    color: #aa1620;
}

.site-footer {
    background: linear-gradient(180deg, var(--navy-deep), #0c1130);
    color: rgba(255,255,255,0.9);
    padding-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.8fr;
    gap: 2rem;
}
.footer-logo { width: 220px; margin-bottom: 1rem; }
.footer-copy { max-width: 40ch; color: rgba(255,255,255,0.78); }
.site-footer h3 { margin-bottom: 1rem; color: var(--white); }
.footer-links { display: grid; gap: 0.7rem; color: rgba(255,255,255,0.78); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    padding: 1.3rem 0 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.65); }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1024px) {
    .hero-grid,
    .process-layout,
    .contact-layout,
    .three-up,
    .product-grid,
    .footer-grid,
    .grid-two {
        grid-template-columns: 1fr;
    }
    .hero-copy h1,
    .page-hero h1,
    .intro-strip .content-card h2,
    .section-heading h2,
    .cta-box h2,
    .contact-panel h2 {
        max-width: none;
    }
    .stats-row { grid-template-columns: 1fr; }
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 780px) {
    .menu-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 86px;
        right: 1rem;
        left: 1rem;
        background: var(--white);
        border: 1px solid rgba(36, 48, 111, 0.08);
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .site-nav.is-open { display: flex; }
    .hero-grid { padding: 3.4rem 0 4.8rem; }
    .page-hero .container,
    .small-hero .container { padding: 3.5rem 0 4rem; }
    .section { padding: 4rem 0; }
    .hero-copy h1,
    .page-hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .product-meta { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}


.current-nav {
    color: var(--red);
}
.current-nav::after {
    transform: scaleX(1) !important;
}
.small-note {
    color: var(--muted);
    font-size: 0.95rem;
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}
.contact-help {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid rgba(36, 48, 111, 0.08);
}
.mailto-note {
    margin-top: 1rem;
}
.success-box {
    display: none;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: rgba(11, 169, 97, 0.12);
    color: #0a7c4a;
}
.success-box.is-visible {
    display: block;
}
.copy-button {
    border: 1px solid rgba(36, 48, 111, 0.12);
    background: var(--white);
    color: var(--navy);
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.copy-button:hover {
    box-shadow: var(--shadow);
}


.error-box {
    display: block;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: rgba(239, 29, 37, 0.12);
    color: #aa1620;
}
.footer-admin-link {
    margin-top: 1rem;
}
.footer-admin-link a {
    color: var(--yellow);
    font-weight: 800;
}
.footer-admin-link a:hover {
    color: #fff4a0;
}
.website-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.product-image-wrap img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
}



.storefront-card .product-image-wrap.compact {
    min-height: 240px;
    display: grid;
    place-items: center;
}
.storefront-card .product-image-wrap.compact img {
    max-height: 240px;
    width: auto;
    aspect-ratio: auto;
}
.product-copy {
    display: grid;
    gap: 0.45rem;
}
.product-sku {
    display: inline-block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 700;
}
.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}
.product-features li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--ink);
    font-weight: 600;
}
.product-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
}
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: auto;
}
.product-price {
    font-size: 1.6rem;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}
.product-price-note {
    color: var(--muted);
    font-weight: 700;
}
.product-card-actions {
    margin-top: 0.3rem;
}
.product-grid-featured {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}




/* Hero media slideshow */
.page-hero-with-media .hero-grid,
.hero-home .hero-grid-store { align-items: center; }
.hero-grid-page { grid-template-columns: 1.05fr 0.95fr; }
.page-hero-with-media .container { padding: 4.7rem 0 5.4rem; }
.hero-media-box {
    position: relative;
    width: min(100%, 540px);
    margin-inline: auto;
    padding: 1.2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78));
    border: 1px solid rgba(36, 48, 111, 0.08);
    box-shadow: var(--shadow);
}
.hero-media-box::before {
    content: "";
    position: absolute;
    inset: auto 8% -12px 8%;
    height: 28px;
    background: rgba(18, 26, 69, 0.16);
    filter: blur(20px);
    border-radius: 50%;
}
.hero-media-stage {
    position: relative;
    min-height: 430px;
}
.hero-media-item {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}
.hero-media-item.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.hero-media-item img {
    max-width: 100%;
    max-height: 420px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 32px rgba(12, 17, 48, 0.22));
}
.hero-media-dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(36, 48, 111, 0.18);
    cursor: pointer;
}
.hero-dot.is-active { background: var(--red); }
.hero-media-box-home .hero-media-stage { min-height: 520px; }
.hero-media-box-home .hero-media-item img { max-height: 500px; }
@media (max-width: 980px) {
    .hero-grid-page,
    .hero-home .hero-grid-store { grid-template-columns: 1fr; }
    .hero-media-stage,
    .hero-media-box-home .hero-media-stage { min-height: 340px; }
    .hero-media-item img,
    .hero-media-box-home .hero-media-item img { max-height: 320px; }
}

@media (max-width: 1024px) {
    .product-grid-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
    .product-grid-featured { grid-template-columns: 1fr; }
}
.large-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.large-feature-panel {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.25rem 2rem 2rem;
    box-shadow: 0 14px 36px rgba(18, 26, 69, 0.08);
    border: 1px solid rgba(36, 48, 111, 0.08);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.large-feature-panel .section-kicker {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
}

.large-feature-panel h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--hero-heading, var(--navy-deep));
    max-width: 11ch;
}

.large-feature-panel p {
    margin: 0;
    max-width: 34ch;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--hero-text, var(--ink));
}

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

    .large-feature-panel {
        min-height: auto;
    }

    .large-feature-panel h2 {
        max-width: none;
    }

    .large-feature-panel p {
        max-width: none;
    }
}
.section-soft {
    background: #eef2f7;
}
.catalogue-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    align-items: center;
}

.catalogue-filter-row .filter-chip {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(36, 48, 111, 0.18);
    background: #ffffff;
    color: var(--navy-deep, #121a45);
    border-radius: 999px;
    padding: 0.8rem 1.15rem;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(18, 26, 69, 0.06);
    transition: all 0.2s ease;
}

.catalogue-filter-row .filter-chip:hover {
    border-color: var(--blue, #5a9bd1);
    transform: translateY(-1px);
}

.catalogue-filter-row .filter-chip.is-active {
    background: var(--navy, #24306f);
    color: #ffffff;
    border-color: var(--navy, #24306f);
    box-shadow: 0 12px 26px rgba(36, 48, 111, 0.18);
}

.catalogue-filter-row .filter-chip:focus-visible {
    outline: 3px solid rgba(90, 155, 209, 0.25);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .catalogue-filter-row {
        gap: 0.5rem;
    }

    .catalogue-filter-row .filter-chip {
        padding: 0.72rem 1rem;
        font-size: 0.9rem;
    }
}