 /* ═══════════════════════════════════════════════
     TOP INFO BAR  (black bar above nav)
  ═══════════════════════════════════════════════ */
            #topBar {
                background: #111111;
                padding: 9px 0;
                font-size: 0.82rem;
                font-family: var(--font-body);
            }
            .topbar-item {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                color: rgba(255, 255, 255, 0.78);
                white-space: nowrap;
            }
            .topbar-item i {
                color: #ff6b00;
                font-size: 0.85rem;
            }
            .topbar-divider {
                width: 1px;
                height: 14px;
                background: rgba(255, 255, 255, 0.18);
                margin: 0 14px;
                display: inline-block;
                vertical-align: middle;
            }
            .topbar-reg {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background: #ff6b00;
                color: #fff;
                font-weight: 700;
                font-size: 0.78rem;
                padding: 4px 12px;
                border-radius: 100px;
                letter-spacing: 0.03em;
            }
            .topbar-reg i {
                font-size: 0.75rem;
            }

            /* ═══════════════════════════════════════════════
     MAIN NAVBAR  (white background, logo left)
  ═══════════════════════════════════════════════ */
            #mainNav {
                position: relative !important; /* not fixed — sits below topbar */
                background: #ffffff !important;
                padding: 0 !important;
                box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
                z-index: 900;
            }
            /* make the whole header sticky */
            #siteHeader {
                position: sticky;
                top: 0;
                z-index: 1000;
            }

            .nav-logo-img {
                height: 56px;
                width: auto;
                display: block;
                filter: none !important; /* show colour logo on white bg */
            }

            /* Nav links — dark text on white bg */
            #mainNav .navbar-nav .nav-link {
                color: #1c1c1c !important;
                font-family: var(--font-display);
                font-weight: 600;
                font-size: 0.9rem;
                padding: 22px 16px !important;
                border-radius: 0;
                transition: color 0.25s ease;
                position: relative;
            }
            #mainNav .navbar-nav .nav-link::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 16px;
                right: 16px;
                height: 3px;
                background: #ff6b00;
                transform: scaleX(0);
                transition: transform 0.25s ease;
            }
            #mainNav .navbar-nav .nav-link:hover,
            #mainNav .navbar-nav .nav-link.active {
                color: #ff6b00 !important;
            }
            #mainNav .navbar-nav .nav-link:hover::after,
            #mainNav .navbar-nav .nav-link.active::after {
                transform: scaleX(1);
            }

            /* Quote button */
            .nav-quote-main {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: #ff6b00;
                color: #fff !important;
                font-family: var(--font-display);
                font-weight: 700;
                font-size: 0.88rem;
                padding: 13px 26px !important;
                border-radius: 6px;
                border: none;
                transition:
                    background 0.25s ease,
                    box-shadow 0.25s ease;
                text-decoration: none;
                white-space: nowrap;
                margin-left: 20px;
            }
            .nav-quote-main:hover {
                background: #e55a00;
                color: #fff !important;
                box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
            }
            .nav-quote-main::after {
                display: none !important;
            }

            /* Mobile toggler dark */
            #mainNav .navbar-toggler {
                border: 1.5px solid #ddd;
                border-radius: 6px;
            }
            #mainNav .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2828,28,28,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
            }

            /* ═══════════════════════════════════════════════
     HERO SLIDER
  ═══════════════════════════════════════════════ */
            #heroSlider {
                position: relative;
                height: calc(100vh - 96px); /* full viewport minus topbar+nav */
                min-height: 560px;
                overflow: hidden;
                background: #111;
            }

            /* Slide backgrounds */
            .hero-slide {
                position: absolute;
                inset: 0;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                opacity: 0;
                transform: scale(1.05);
                transition:
                    opacity 1.1s ease,
                    transform 7s ease;
                z-index: 0;
            }
            .hero-slide.active {
                opacity: 1;
                transform: scale(1);
                z-index: 1;
            }
            .hero-slide.exit {
                opacity: 0;
                transform: scale(1.05);
                z-index: 0;
            }

            /* Slide images — UK delivery / logistics */
            .hero-slide-1 {
                background-image: url("../images/slider1.jpg");
            }
            .hero-slide-2 {
                background-image: url("../images/slider2.jpg");
            }
            .hero-slide-3 {
                background-image: url("../images/slider3.jpg");
            }

            /* Dark overlay — matches screenshot: heavy dark left, lighter right */
            .hero-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    100deg,
                    rgba(10, 10, 10, 0.88) 0%,
                    rgba(10, 10, 10, 0.72) 45%,
                    rgba(10, 10, 10, 0.35) 75%,
                    rgba(10, 10, 10, 0.15) 100%
                );
                z-index: 2;
            }

            /* Content layer */
            .hero-content-wrap {
                position: absolute;
                inset: 0;
                z-index: 3;
                display: flex;
                align-items: center;
            }

            /* Slide panels */
            .slide-panel {
                opacity: 0;
                transform: translateY(32px);
                transition:
                    opacity 0.75s ease 0.35s,
                    transform 0.75s ease 0.35s;
                pointer-events: none;
                position: absolute;
            }
            .slide-panel.active {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
                position: relative;
            }

            /* Badge pill */
            .slide-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(6px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                color: rgba(255, 255, 255, 0.9);
                font-size: 0.82rem;
                font-weight: 600;
                font-family: var(--font-display);
                padding: 7px 16px;
                border-radius: 100px;
                margin-bottom: 22px;
                letter-spacing: 0.03em;
            }
            .badge-dot {
                width: 8px;
                height: 8px;
                background: #ff6b00;
                border-radius: 50%;
                animation: badgePulse 1.8s ease-in-out infinite;
            }
            @keyframes badgePulse {
                0%,
                100% {
                    opacity: 1;
                    transform: scale(1);
                }
                50% {
                    opacity: 0.5;
                    transform: scale(0.65);
                }
            }

            /* Slide heading */
            .slide-heading {
                font-family: var(--font-display);
                font-size: clamp(2.4rem, 5vw, 4rem);
                font-weight: 800;
                line-height: 1.12;
                color: #fff;
                margin-bottom: 18px;
            }
            .slide-heading .orange {
                color: #ff6b00;
            }

            /* Slide sub */
            .slide-sub {
                color: rgba(255, 255, 255, 0.72);
                font-size: 1rem;
                line-height: 1.75;
                max-width: 540px;
                margin-bottom: 36px;
            }

            /* CTA buttons inside slider */
            .slide-btn-primary {
                display: inline-flex;
                align-items: center;
                gap: 9px;
                background: #ff6b00;
                color: #fff;
                font-family: var(--font-display);
                font-weight: 700;
                font-size: 0.9rem;
                padding: 14px 28px;
                border-radius: 6px;
                border: 2px solid #ff6b00;
                transition: all 0.25s ease;
                text-decoration: none;
            }
            .slide-btn-primary:hover {
                background: #e55a00;
                border-color: #e55a00;
                color: #fff;
                transform: translateY(-2px);
                box-shadow: 0 8px 24px rgba(255, 107, 0, 0.45);
            }

            .slide-btn-outline {
                display: inline-flex;
                align-items: center;
                gap: 9px;
                background: transparent;
                color: #fff;
                font-family: var(--font-display);
                font-weight: 700;
                font-size: 0.9rem;
                padding: 13px 26px;
                border-radius: 6px;
                border: 2px solid rgba(255, 255, 255, 0.55);
                transition: all 0.25s ease;
                text-decoration: none;
            }
            .slide-btn-outline:hover {
                background: rgba(255, 255, 255, 0.12);
                border-color: #fff;
                color: #fff;
                transform: translateY(-2px);
            }

            /* PREV / NEXT ARROWS — exactly like screenshot */
            .slider-arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
                width: 46px;
                height: 46px;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(6px);
                border: 1px solid rgba(255, 255, 255, 0.25);
                border-radius: 50%;
                color: #fff;
                font-size: 1.1rem;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.25s ease;
            }
            .slider-arrow:hover {
                background: #ff6b00;
                border-color: #ff6b00;
            }
            .slider-arrow.prev {
                left: 24px;
            }
            .slider-arrow.next {
                right: 24px;
            }

            /* DOTS — bottom centre, pill shape for active */
            .slider-dots {
                position: absolute;
                bottom: 28px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 10;
                display: flex;
                gap: 8px;
                align-items: center;
            }
            .slider-dot {
                width: 10px;
                height: 5px;
                border-radius: 3px;
                background: rgba(255, 255, 255, 0.35);
                cursor: pointer;
                border: none;
                padding: 0;
                transition: all 0.3s ease;
            }
            .slider-dot.active {
                width: 32px;
                background: #ff6b00;
            }

            /* PROGRESS BAR — bottom edge */
            .slider-progress {
                position: absolute;
                bottom: 0;
                left: 0;
                height: 3px;
                background: #ff6b00;
                z-index: 10;
                width: 0%;
                transition: width 5.5s linear;
            }
            .slider-progress.running {
                width: 100%;
            }

            /* ═══════════════════════════════════════════════
     ABOUT SECTION
  ═══════════════════════════════════════════════ */
            .about-img-wrap {
                position: relative;
                width: 100%;
            }
            .about-main-img {
                width: 100%;
                height: 460px;
                object-fit: cover;
                border-radius: 16px;
                display: block;
            }
            .about-small-img {
                position: absolute;
                bottom: -22px;
                right: -20px;
                width: 195px;
                height: 155px;
                object-fit: cover;
                border-radius: 12px;
                border: 5px solid #fff;
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
            }
            .about-exp-badge {
                position: absolute;
                top: 28px;
                left: -18px;
                background: #ff6b00;
                color: #fff;
                border-radius: 12px;
                padding: 16px 18px;
                text-align: center;
                box-shadow: 0 8px 24px rgba(255, 107, 0, 0.38);
            }
            .about-exp-badge .num {
                font-family: var(--font-display);
                font-size: 2rem;
                font-weight: 800;
                line-height: 1;
                display: block;
            }
            .about-exp-badge .label {
                font-size: 0.68rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                opacity: 0.9;
                margin-top: 4px;
            }
            .about-check-list {
                list-style: none;
                padding: 0;
                margin: 20px 0 28px;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            .about-check-list li {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 0.93rem;
                color: #2d2d2d;
            }
            .about-check-list li i {
                width: 22px;
                height: 22px;
                background: #fff3e8;
                color: #ff6b00;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.7rem;
                flex-shrink: 0;
            }

            /* ═══════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════ */
            @media (max-width: 991px) {
                #mainNav .navbar-collapse {
                    background: #fff;
                    padding: 12px 16px;
                    border-top: 1px solid #eee;
                }
                #mainNav .navbar-nav .nav-link {
                    padding: 12px 8px !important;
                }
                #mainNav .navbar-nav .nav-link::after {
                    display: none;
                }
                .nav-quote-main {
                    margin-left: 0;
                    margin-top: 10px;
                }
                #heroSlider {
                    height: 80vh;
                    min-height: 500px;
                }
                .slide-heading {
                    font-size: 2.2rem;
                }
            }
            @media (max-width: 576px) {
                .topbar-item:not(:first-child) {
                    display: none;
                }
                .topbar-divider {
                    display: none;
                }
                #heroSlider {
                    height: 85svh;
                    min-height: 480px;
                }
                .slide-heading {
                    font-size: 1.9rem;
                }
                .slider-arrow {
                    width: 38px;
                    height: 38px;
                    font-size: 0.95rem;
                }
                .about-small-img {
                    width: 130px;
                    height: 105px;
                    right: -8px;
                }
                .about-exp-badge {
                    left: -8px;
                }
            }
        

/* ============================================================
   SHARED HEADER — MOBILE FIX
   Same header behaviour on index.html and about.html
   ============================================================ */

#siteHeader {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100%;
}

#topBar,
#mainNav {
  width: 100%;
}

@media (max-width: 991.98px) {
  /* TOP INFO BAR */
  #topBar {
    padding: 7px 0 !important;
  }

  #topBar > .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  #topBar .container > .d-flex {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  #topBar .container > .d-flex > div:first-child {
    min-width: 0;
    flex: 1 1 auto;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
    overflow: hidden;
  }

  /* Hide the long street address on phones. */
  #topBar .topbar-item:first-child,
  #topBar .topbar-divider:first-of-type {
    display: none !important;
  }

  #topBar .topbar-item {
    font-size: 11px !important;
    line-height: 1.25 !important;
    gap: 5px !important;
    white-space: nowrap !important;
    min-width: 0;
  }

  #topBar .topbar-item i {
    font-size: 11px !important;
    flex-shrink: 0;
  }

  #topBar .topbar-item a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #topBar .topbar-divider {
    margin: 0 6px !important;
    height: 12px !important;
    flex: 0 0 1px;
  }

  #topBar .topbar-reg {
    flex: 0 0 auto;
    font-size: 10px !important;
    padding: 5px 8px !important;
    gap: 4px !important;
    white-space: nowrap !important;
  }

  /* MAIN NAVBAR */
  #mainNav {
    padding: 0 !important;
    min-height: 68px;
  }

  #mainNav > .container {
    min-height: 68px;
    padding-left: 12px !important;
    padding-right: 12px !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  #mainNav .navbar-brand {
    margin-right: auto;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
    max-width: calc(100% - 60px);
  }

  #mainNav .nav-logo-img {
    height: 48px !important;
    width: auto !important;
    max-width: 190px;
    object-fit: contain;
  }

  #mainNav .navbar-toggler {
    width: 44px;
    height: 42px;
    padding: 7px 9px !important;
    margin-left: 10px;
    border: 1.5px solid #ddd !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    outline: none !important;
    flex: 0 0 auto;
  }

  #mainNav .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255,107,0,.14) !important;
  }

  #mainNav .navbar-toggler-icon {
    width: 100%;
    height: 100%;
    background-size: 22px 22px !important;
  }

  /* Full-width mobile menu below the logo row. */
  #mainNav .navbar-collapse {
    width: 100%;
    flex-basis: 100%;
    background: #fff !important;
    border-top: 1px solid #eee;
    box-shadow: none !important;
    padding: 8px 0 12px !important;
    margin: 0 !important;
  }

  #mainNav .navbar-nav {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    gap: 0 !important;
  }

  #mainNav .navbar-nav .nav-item {
    width: 100%;
  }

  #mainNav .navbar-nav .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 12px !important;
    border-radius: 6px;
    font-size: .88rem !important;
    color: #1c1c1c !important;
  }

  #mainNav .navbar-nav .nav-link:hover,
  #mainNav .navbar-nav .nav-link.active {
    color: #ff6b00 !important;
    background: #fff7f0;
  }

  #mainNav .navbar-nav .nav-link::after {
    display: none !important;
  }

  #mainNav .nav-quote-main {
    width: 100%;
    justify-content: center;
    margin: 8px 0 0 !important;
    padding: 11px 18px !important;
    min-height: 44px;
    border-radius: 6px;
    font-size: .86rem !important;
  }
}

@media (max-width: 575.98px) {
  #topBar .topbar-item,
  #topBar .topbar-item i {
    font-size: 10px !important;
  }

  #topBar .topbar-reg {
    font-size: 9px !important;
    padding: 4px 7px !important;
  }

  #mainNav .nav-logo-img {
    height: 45px !important;
    max-width: 175px;
  }

  #mainNav > .container,
  #mainNav {
    min-height: 64px;
  }
}

@media (max-width: 380px) {
  #topBar .topbar-item:nth-of-type(3),
  #topBar .topbar-divider:nth-of-type(2) {
    display: none !important;
  }

  #topBar .topbar-reg {
    font-size: 8.5px !important;
  }

  #mainNav .nav-logo-img {
    height: 42px !important;
    max-width: 160px;
  }
}













/* MOBILE TOP BAR — MOBILE NUMBER + EMAIL ONLY */
@media (max-width: 991.98px) {
    #topBar .container > .d-flex {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        width: 100% !important;
    }

    #topBar .container > .d-flex > div:first-child {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
        gap: 10px !important;
    }

    /* Hide address and all dividers */
    #topBar .container > .d-flex > div:first-child .topbar-item:first-child,
    #topBar .container > .d-flex > div:first-child .topbar-divider {
        display: none !important;
    }

    /* Show mobile number */
    #topBar .container > .d-flex > div:first-child .topbar-item:nth-of-type(2) {
        display: inline-flex !important;
        align-items: center !important;
        flex: 0 1 auto !important;
        min-width: 0 !important;
        white-space: nowrap !important;
    }

    /* Show email */
    #topBar .container > .d-flex > div:first-child .topbar-item:last-child {
        display: inline-flex !important;
        align-items: center !important;
        flex: 0 1 auto !important;
        min-width: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }

    #topBar .topbar-item a {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Hide registration badge */
    #topBar .topbar-reg {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    #topBar .container > .d-flex > div:first-child {
        gap: 7px !important;
    }

    #topBar .topbar-item {
        font-size: 9px !important;
        gap: 4px !important;
    }

    #topBar .topbar-item i {
        font-size: 9px !important;
    }
}

@media (max-width: 380px) {
    #topBar .container > .d-flex > div:first-child {
        gap: 5px !important;
    }

    #topBar .topbar-item {
        font-size: 8px !important;
    }

    #topBar .topbar-item i {
        font-size: 8px !important;
    }
}



/* FINAL MOBILE TOP HEADER: MOBILE NUMBER + EMAIL ONLY */
@media (max-width: 991.98px) {
    #topBar .container > .d-flex {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        width: 100% !important;
    }

    #topBar .container > .d-flex > div:first-child {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
    }

    /* Hide every contact item and divider first */
    #topBar .container > .d-flex > div:first-child .topbar-item,
    #topBar .container > .d-flex > div:first-child .topbar-divider {
        display: none !important;
    }

    /* Then show ONLY the item containing the mobile telephone link */
    #topBar .container > .d-flex > div:first-child .topbar-item:has(a[href^="tel:"]) {
        display: inline-flex !important;
        align-items: center !important;
        flex: 0 1 auto !important;
        min-width: 0 !important;
        white-space: nowrap !important;
    }

    /* And ONLY the item containing the email link */
    #topBar .container > .d-flex > div:first-child .topbar-item:has(a[href^="mailto:"]) {
        display: inline-flex !important;
        align-items: center !important;
        flex: 0 1 auto !important;
        min-width: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
    }

    #topBar .topbar-item:has(a[href^="tel:"]) a,
    #topBar .topbar-item:has(a[href^="mailto:"]) a {
        color: inherit !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    #topBar .topbar-item:has(a[href^="mailto:"]) {
        max-width: 55% !important;
    }

    /* Registration badge hidden on mobile */
    #topBar .topbar-reg {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    #topBar .container > .d-flex > div:first-child {
        gap: 7px !important;
    }

    #topBar .topbar-item {
        font-size: 9px !important;
        line-height: 1.2 !important;
        gap: 4px !important;
    }

    #topBar .topbar-item i {
        font-size: 9px !important;
    }
}

@media (max-width: 380px) {
    #topBar .container > .d-flex > div:first-child {
        gap: 5px !important;
    }

    #topBar .topbar-item {
        font-size: 8px !important;
    }

    #topBar .topbar-item i {
        font-size: 8px !important;
    }
}
* Mobile */
@media (max-width: 767px) {

    .trust-bar .row {
        flex-wrap: nowrap !important;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .trust-bar .col-auto {
        flex: 1 1 33.333333% !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .trust-item {
        width: 100%;
        gap: 3px;
        font-size: 9px;
        line-height: 1.2;
        text-align: center;
        white-space: normal;
    }

    .trust-item i {
        flex-shrink: 0;
        font-size: 11px;
    }
}


/* Very small mobile */
@media (max-width: 576px) {

    .trust-bar {
        padding: 8px 0 !important;
    }

    .trust-bar .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .trust-bar .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .trust-bar .col-auto {
        flex: 0 0 33.333333% !important;
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        padding: 0 1px !important;
    }

    .trust-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
        font-size: 7px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .trust-item i {
        font-size: 9px !important;
        flex-shrink: 0 !important;
    }
}