/* ==========================================================================
   digiCART corporate gifting catalogue
   Design tokens taken from the supplied PDF reference.
   ========================================================================== */

:root {
    /* Core palette */
    --primary-color: #0d0d0d;      /* header / nav bar, primary type */
    --secondary-color: #14568f;    /* promo banner blue */
    --secondary-dark: #0c3c68;
    --accent-color: #b3903f;       /* gold used in the hero + dividers */
    --accent-soft: #e9dcc0;

    --text-color: #1d2b39;
    --muted-color: #6d7a86;
    --light-color: #f4f6f8;        /* section background */
    --white: #ffffff;
    --border-color: #e3e7ea;
    --dark-panel: #14181c;

    /* Type */
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-script: 'Great Vibes', 'Playfair Display', cursive;

    /* Shape */
    --radius: 2px;
    --radius-lg: 4px;
    --shadow-card: 0 1px 2px rgba(20, 30, 40, .05);
    --shadow-hover: 0 10px 26px rgba(20, 30, 40, .12);

    /* Rhythm */
    --section-gap: 3.75rem;
    --container-max: 1240px;
}

/* --------------------------------------------------------- base ---------- */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--white);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { color: var(--secondary-color); text-decoration: none; }
a:hover { color: var(--secondary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -.01em;
}

.container-site {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: 1rem;
}

:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.section { padding-block: var(--section-gap); }
.section-light { background: var(--light-color); }

.section-title {
    font-size: clamp(1.6rem, 3.6vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: .65rem;
}

.section-rule {
    width: 62px;
    height: 2px;
    background: var(--secondary-color);
    border: 0;
    opacity: 1;
    margin: 0 auto 2.5rem;
}

.eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-color);
}

/* ------------------------------------------------------- buttons ---------- */

.btn-flat,
.btn-outline-flat {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: .68rem 1.35rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    cursor: pointer;
    line-height: 1.2;
}

.btn-flat {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}
.btn-flat:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

.btn-outline-flat {
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
}
.btn-outline-flat:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

.btn-dark-flat {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    padding:10px 20px;
    border-radius:20px;
}
.btn-dark-flat:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: var(--white); }

/* -------------------------------------------------------- header ---------- */

.site-header {
    background: var(--primary-color);
    padding-block: .55rem;
    position: relative;
    z-index: 1030;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--white);
    line-height: 1;
}
.brand-mark:hover { color: var(--white); }

.brand-mark .bi { font-size: 1.6rem; color: var(--white); }

.brand-word { display: flex; flex-direction: column; }
.brand-word .b1 {
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1;
}
.brand-word .b2 {
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}
.brand-word .b3 {
    font-size: .42rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    opacity: .75;
    margin-top: 2px;
}

.main-nav .nav-link {
    color: var(--white);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .55rem .85rem;
}
.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .show > .nav-link { color: var(--accent-soft); }

.main-nav .dropdown-menu {
    border: 0;
    border-top: 2px solid var(--accent-color);
    border-radius: 0;
    box-shadow: var(--shadow-hover);
    padding: .35rem 0;
    min-width: 260px;
    margin-top: .35rem;
}
.main-nav .dropdown-item {
    font-size: .82rem;
    padding: .5rem 1.1rem;
    color: var(--text-color);
    white-space: normal;
}
.main-nav .dropdown-item:hover { background: var(--light-color); color: var(--secondary-color); }
.main-nav .dropdown-divider { margin: .3rem 0; }
.main-nav .dropdown-item.view-all { font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--radius);
    padding: .25rem .5rem;
    color: var(--white);
}
.navbar-toggler:focus { box-shadow: none; }

/* ---------------------------------------------------------- hero ---------- */

.hero {
    padding-top: 1.5rem;
    padding-bottom: 0;
}

.hero-panel {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: linear-gradient(100deg, #efe6d8 0%, #efe6d8 38%, #d9cbb6 55%, #1c1c1c 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-panel.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(239, 230, 216, .96) 0%, rgba(239, 230, 216, .82) 34%, rgba(239, 230, 216, 0) 62%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 3rem 2.75rem;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 4.6vw, 3rem);
    line-height: 1.05;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0;
}

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1.1;
    color: var(--accent-color);
    text-transform: none;
    display: block;
    margin-top: .1rem;
}

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.35rem);
    font-weight: 400;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #9a8250;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* --------------------------------------------- collection tiles ---------- */

.tiles { padding-block: 2.5rem; }

.tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
    padding: 1.5rem;
    background-color: var(--dark-panel);
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 14, .18) 0%, rgba(10, 12, 14, .72) 62%, rgba(10, 12, 14, .88) 100%);
    transition: background .3s ease;
}
.tile:hover::before { background: linear-gradient(180deg, rgba(10, 12, 14, .3) 0%, rgba(10, 12, 14, .82) 62%, rgba(10, 12, 14, .94) 100%); }

.tile-body { position: relative; z-index: 2; }

.tile-title {
    color: var(--white);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.28;
    margin-bottom: .55rem;
}

.tile-text {
    font-size: .78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 1.15rem;
}

/* ------------------------------------------------- product cards ---------- */

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.product-thumb {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--light-color);
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.04); }

.product-body {
    padding: .85rem .95rem 1.05rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-cat {
    font-size: .6rem;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted-color);
    margin-bottom: .4rem;
}

.product-name {
    font-size: .85rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: .35rem;
}
.product-name a { color: var(--text-color); }
.product-name a:hover { color: var(--secondary-color); }

.product-excerpt {
    font-size: .76rem;
    color: var(--muted-color);
    margin-bottom: .85rem;
}

.product-body .btn-outline-flat { align-self: flex-start; margin-top: auto; }

/* -------------------------------------------------- promo banner ---------- */

.promo {
    position: relative;
    background: linear-gradient(90deg, var(--secondary-dark) 0%, var(--secondary-color) 55%, #2f7ab8 100%);
    background-size: cover;
    background-position: right center;
    color: var(--white);
    overflow: hidden;
}
.promo.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 60, 104, .95) 0%, rgba(20, 86, 143, .85) 45%, rgba(20, 86, 143, .1) 85%);
}

.promo-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 2.75rem 2.5rem;
}

.promo-eyebrow {
    font-size: .8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem;
}

.promo-title {
    color: var(--white);
    font-size: clamp(1.5rem, 3.4vw, 2.15rem);
    font-weight: 700;
    line-height: 1.22;
    margin-bottom: .9rem;
}

.promo-text {
    font-size: .8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 1rem;
}

.promo-points {
    font-size: .84rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* ----------------------------------------------------- features ---------- */

.feature { text-align: center; padding: 1rem .5rem; }
.feature .bi { font-size: 1.65rem; color: var(--primary-color); }
.feature h3 {
    font-size: .92rem;
    font-weight: 700;
    margin: .85rem 0 .5rem;
}
.feature p {
    font-size: .78rem;
    color: var(--muted-color);
    margin: 0;
    max-width: 230px;
    margin-inline: auto;
}

/* -------------------------------------------------------- footer ---------- */

.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding-block: 2.5rem 1.5rem;
    font-size: .8rem;
}

.footer-brand .brand-mark { color: var(--text-color); }
.footer-brand .brand-mark .bi { color: var(--text-color); }

.footer-about {
    font-size: .78rem;
    color: var(--muted-color);
    margin-top: .9rem;
}

.footer-heading {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a { color: var(--muted-color); font-size: .78rem; }
.footer-links a:hover { color: var(--secondary-color); }

.footer-bar {
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: .78rem;
    color: var(--muted-color);
}

/* --------------------------------------------------- page header ---------- */

.page-banner {
    position: relative;
    background: var(--dark-panel);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding-block: 4rem;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 12, 14, .85) 0%, rgba(10, 12, 14, .55) 100%);
}
.page-banner .container-site { position: relative; z-index: 2; }
.page-banner h1 { color: var(--white); font-size: clamp(1.5rem, 3.4vw, 2.15rem); }
.page-banner p {
    color: rgba(255, 255, 255, .88);
    font-size: .85rem;
    max-width: 640px;
    margin-bottom: 0;
}

.page-head {
    background: var(--light-color);
    padding-block: 2.75rem;
    border-bottom: 1px solid var(--border-color);
}
.page-head h1 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); margin-bottom: .5rem; }
.page-head p { font-size: .85rem; color: var(--muted-color); max-width: 100%; margin-bottom: 0; }


.filter-list li {
    background: grey;
    margin: 10px 0px 10px 0px;
    list-style: none;
    padding: 5px;
    color: black;
    
}
.crumbs {
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted-color);
    padding-block: .9rem;
    border-bottom: 1px solid var(--border-color);
}
.crumbs a { color: var(--muted-color); }
.crumbs a:hover { color: var(--secondary-color); }
.crumbs .sep { margin-inline: .45rem; opacity: .55; }

/* ------------------------------------------------ product detail ---------- */

.gallery-main {
    border: 1px solid var(--border-color);
    background: var(--light-color);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .7rem; }
.gallery-thumb {
    width: 72px;
    height: 72px;
    border: 1px solid var(--border-color);
    padding: 0;
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-active { border-color: var(--primary-color); }

.detail-title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    margin-bottom: .6rem;
}

.detail-short {
    font-size: .9rem;
    color: var(--muted-color);
    margin-bottom: 1.25rem;
}

.detail-body { font-size: .88rem; line-height: 1.8; }
.detail-body p { margin-bottom: .9rem; }

.info-table { width: 100%; font-size: .82rem; border-top: 1px solid var(--border-color); }
.info-table th, .info-table td { padding: .6rem .25rem; border-bottom: 1px solid var(--border-color); vertical-align: top; }
.info-table th { width: 40%; font-weight: 700; color: var(--text-color); }
.info-table td { color: var(--muted-color); }

.enquiry-card {
    border: 1px solid var(--border-color);
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--radius);
}
.enquiry-card h2 {
    font-size: 1.05rem;
    margin-bottom: .25rem;
}
.enquiry-card .lead-note {
    font-size: .78rem;
    color: var(--muted-color);
    margin-bottom: 1.15rem;
}
.enquiry-card .form-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .3rem;
}
.enquiry-card .form-control {
    border-radius: var(--radius);
    border-color: var(--border-color);
    font-size: .86rem;
    padding: .55rem .75rem;
}
.enquiry-card .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 .18rem rgba(20, 86, 143, .12);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.empty-state {
    border: 1px dashed var(--border-color);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--muted-color);
    font-size: .88rem;
    background: var(--light-color);
}

/* ---------------------------------------------------- responsive ---------- */

@media (max-width: 1199.98px) {
    :root { --section-gap: 3.25rem; }
    .hero-panel { min-height: 320px; }
}

@media (max-width: 991.98px) {
    .main-nav {
        background: var(--primary-color);
        padding: .5rem 0 .75rem;
    }
    .main-nav .nav-link { padding: .6rem .25rem; }
    .main-nav .dropdown-menu {
        background: transparent;
        box-shadow: none;
        border-top: 0;
        border-left: 2px solid rgba(255, 255, 255, .2);
        margin-left: .25rem;
        padding-left: .5rem;
    }
    .main-nav .dropdown-item { color: rgba(255, 255, 255, .8); font-size: .8rem; }
    .main-nav .dropdown-item:hover { background: transparent; color: var(--white); }
    .hero-panel {
        min-height: 0;
        background: linear-gradient(160deg, #efe6d8 0%, #e2d6c2 62%, #cbbca4 100%);
    }
    .hero-panel.has-image::after {
        background: linear-gradient(180deg, rgba(239, 230, 216, .92) 0%, rgba(239, 230, 216, .6) 100%);
    }
    .hero-copy { padding: 2.25rem 1.5rem; max-width: none; }
    .promo-inner { max-width: none; padding: 2.25rem 1.5rem; }
    .promo.has-image::after {
        background: linear-gradient(180deg, rgba(12, 60, 104, .92) 0%, rgba(20, 86, 143, .88) 100%);
    }
    .tile { min-height: 280px; }
}

@media (max-width: 575.98px) {
    :root { --section-gap: 2.5rem; }
    body { font-size: 14px; }
    .product-body { padding: .7rem .7rem .85rem; }
    .product-name { font-size: .8rem; }
    .enquiry-card { padding: 1.15rem; }
    .gallery-thumb { width: 60px; height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .product-card:hover { transform: none; }
}

/* ==========================================================================
   Nested category submenus (added with the parent / sub-category hierarchy)
   Additive only - nothing above this block is changed.
   ========================================================================== */

.main-nav .dropdown-submenu { position: relative; }

.main-nav .dropdown-submenu > .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Desktop: submenus fly out to the side on hover, keyboard focus or click. */
@media (min-width: 992px) {
    .main-nav .dropdown-submenu > .dropdown-toggle::after {
        transform: rotate(-90deg);          /* caret points to the submenu */
        margin-left: 0;
    }

    .main-nav .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -.35rem;
        margin-left: 0;
    }

    /* Flip to the left when the submenu would run off the viewport,
       so nothing ever causes horizontal scrolling. */
    .main-nav .dropdown-submenu.drop-start > .dropdown-menu {
        left: auto;
        right: 100%;
    }

    .main-nav .dropdown-submenu:hover > .dropdown-menu,
    .main-nav .dropdown-submenu:focus-within > .dropdown-menu,
    .main-nav .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }
}

/* Mobile / tablet: submenus open inline underneath their parent. */
@media (max-width: 991.98px) {
    .main-nav .dropdown-submenu > .dropdown-menu {
        display: none;
        position: static;
        float: none;
        width: auto;
        min-width: 0;
        margin: 0 0 .25rem .5rem;
        padding-left: .5rem;
    }
    .main-nav .dropdown-submenu.show > .dropdown-menu { display: block; }

    .main-nav .dropdown-submenu > .dropdown-toggle::after {
        transition: transform .2s ease;
    }
    .main-nav .dropdown-submenu.show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Sub-category cards on a parent category page reuse the product card look. */
.subcategory-grid { margin-bottom: 0; }

/* ============================================================
   Product price (added with the price / customization update)
   Exactly ONE price is ever rendered. There is no strike-through,
   compare-at, discount or savings style in this file by design.
   ============================================================ */

.product-price {
    font-size: .92rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: .4rem;
    letter-spacing: .01em;
}

.detail-price {
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 575.98px) {
    .product-price { font-size: .85rem; }
}

/* ============================================================
   Shop by Price Range (/corporate/shop-by-price-range)
   Uses the existing tokens only - no new colour, no new font,
   no change to any selector that existed before this feature.
   ============================================================ */

.filter-panel {
    position: sticky;
    top: 1rem;
}

.filter-toggle {
    width: 100%;
    justify-content: center;
    margin-bottom: .85rem;
}

.filter-form {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.15rem;
    box-shadow: var(--shadow-card);
}

.filter-group + .filter-group {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.filter-heading {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-color);
    margin-bottom: .6rem;
}

.filter-select,
.filter-input {
    font-family: var(--font-body);
    font-size: .82rem;
    border-radius: var(--radius);
    border-color: var(--border-color);
    color: var(--text-color);
}

.filter-select:focus,
.filter-input:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .4rem .55rem;
    font-size: .82rem;
    color: var(--text-color);
    border-radius: var(--radius);
    border: 1px solid transparent;
}

.filter-option:hover {
    background: var(--light-color);
    color: var(--secondary-color);
}

.filter-option.is-active {
    background: var(--light-color);
    border-color: var(--border-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.filter-count {
    font-size: .7rem;
    color: var(--muted-color);
    background: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0 .45rem;
    line-height: 1.5;
}

.filter-option.is-active .filter-count {
    background: var(--white);
}

.filter-minmax {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.filter-dash {
    color: var(--muted-color);
    flex: 0 0 auto;
}

.filter-apply {
    width: 100%;
    margin-top: .7rem;
    justify-content: center;
}

.filter-clear {
    display: inline-block;
    margin-top: 1rem;
    font-size: .76rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted-color);
}

.filter-clear:hover { color: var(--secondary-color); }

.results-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1.1rem;
}

.results-count {
    font-size: .8rem;
    color: var(--muted-color);
    letter-spacing: .02em;
}

.results-sort {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.results-sort-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted-color);
    margin: 0;
    white-space: nowrap;
}

.results-sort .filter-select { width: auto; min-width: 175px; }

/* Shown only on this page, for products whose price is not set yet. */
.product-price-tbc {
    color: var(--muted-color);
    font-weight: 400;
    font-style: italic;
}

.catalog-pager {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
}

.catalog-pager .page-link {
    color: var(--text-color);
    border-color: var(--border-color);
    border-radius: var(--radius);
    font-size: .8rem;
}

.catalog-pager .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.catalog-pager .page-item.disabled .page-link { color: var(--muted-color); }

@media (max-width: 991.98px) {
    .filter-panel { position: static; }
    .filter-form { margin-bottom: .25rem; }
}

@media (max-width: 575.98px) {
    .results-bar { align-items: flex-start; }
    .results-sort { width: 100%; }
    .results-sort .filter-select { flex: 1 1 auto; min-width: 0; }
}
