@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700;800&display=swap');
:root {
    --nobo-orange: #005aaa;
    --nobo-orange-dark: #003d7a;
    --nobo-black: #111111;
    --nobo-white: #ffffff;
    --nobo-text: #222222;
    --nobo-muted: #666666;
    --nobo-grey: #f6f6f6;
    --nobo-light-orange: #e8f1f9;
    --nobo-border: #e5e5e5;
    --nobo-container: 1600px;
}

body {
    background: #ffffff !important;
    color: var(--nobo-text) !important;
}

body:not(.checkout-index-index) .page-header,
body:not(.checkout-index-index) .panel.wrapper,
body:not(.checkout-index-index) .sections.nav-sections,
body:not(.checkout-index-index) .nav-sections {
    display: none !important;
}

.nobo-container {
    width: 100%;
    max-width: var(--nobo-container);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Header */
.nobo-site-header {
    width: 100%;
    background: #ffffff;
    color: var(--nobo-text);
    position: relative;
    z-index: 5000;
    font-family: inherit;
}

.nobo-topbar {
    background: #f4f4f4;
    border-bottom: 1px solid var(--nobo-border);
    font-size: 13px;
}

.nobo-topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nobo-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    white-space: nowrap;
}

.nobo-stars {
    color: var(--nobo-orange);
    letter-spacing: 1px;
    font-weight: 900;
}

.nobo-topbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nobo-topbar-links a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
}

.nobo-topbar-links a:hover {
    color: var(--nobo-orange);
}

.nobo-main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--nobo-border);
}

.nobo-main-header-inner {
    min-height: 102px;
    display: grid;
    grid-template-columns: 260px minmax(360px, 1fr) auto;
    align-items: center;
    gap: 34px;
}

.nobo-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
    color: var(--nobo-black) !important;
}

.nobo-logo-mark {
    width: 54px;
    height: 54px;
    background: var(--nobo-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    font-weight: 950;
    border-radius: 15px;
    line-height: 1;
}

.nobo-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.nobo-logo-text strong,
.nobo-logo-text em {
    color: var(--nobo-black);
    font-style: normal;
    font-size: 31px;
    font-weight: 950;
}

.nobo-search {
    display: flex;
    width: 100%;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d7d7d7;
    background: #ffffff;
}

.nobo-search input {
    flex: 1;
    border: 0;
    padding: 0 18px;
    font-size: 15px;
    color: var(--nobo-text);
    background: #ffffff;
    outline: none;
}

.nobo-search button {
    width: 128px;
    border: 0;
    background: var(--nobo-orange);
    color: #ffffff;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
}

.nobo-search button:hover {
    background: var(--nobo-orange-dark);
}

.nobo-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
}

.nobo-header-actions a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: var(--nobo-black);
    text-decoration: none !important;
}

.nobo-header-actions span {
    color: var(--nobo-muted);
    font-size: 12px;
    font-weight: 600;
}

.nobo-header-actions strong {
    color: var(--nobo-black);
    font-size: 15px;
    font-weight: 950;
}

.nobo-phone strong {
    font-size: 24px;
    letter-spacing: -0.04em;
}

/* Nav */
.nobo-nav {
    background: var(--nobo-orange);
}

.nobo-nav-inner > ul {
    margin: 0;
    padding: 0;
    min-height: 48px;
    list-style: none;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.nobo-nav li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nobo-nav li > a {
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
}

.nobo-nav li > a:hover {
    background: var(--nobo-black);
    color: #ffffff !important;
}

.nobo-nav-highlight > a {
    background: var(--nobo-black);
}

.nobo-mega {
    display: none;
    position: absolute;
    left: 0;
    top: 48px;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid var(--nobo-border);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
    padding: 10px;
    z-index: 6000;
}

.nobo-nav li:hover .nobo-mega {
    display: block;
}

.nobo-mega a {
    display: block !important;
    height: auto !important;
    padding: 11px 12px !important;
    border-radius: 8px;
    color: var(--nobo-black) !important;
    background: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.nobo-mega a:hover {
    color: #ffffff !important;
    background: var(--nobo-orange) !important;
}

/* USP strip */
.nobo-usp-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--nobo-border);
}

.nobo-usp-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.nobo-usp-inner > div {
    min-height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 22px;
    border-right: 1px solid var(--nobo-border);
}

.nobo-usp-inner > div:last-child {
    border-right: 0;
}

.nobo-usp-inner strong {
    color: var(--nobo-black);
    font-size: 13.5px;
    font-weight: 950;
}

.nobo-usp-inner span {
    color: var(--nobo-muted);
    font-size: 12.5px;
    margin-top: 2px;
}

/* Mobile menu */
.nobo-mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: #ffffff;
    padding: 8px;
}

.nobo-mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--nobo-black);
    margin: 6px 0;
}

.nobo-mobile-panel,
.nobo-mobile-overlay {
    display: none;
}

body.nobo-menu-open {
    overflow: hidden;
}

body.nobo-menu-open .nobo-mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 7000;
}

body.nobo-menu-open .nobo-mobile-panel {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 88vw;
    max-width: 390px;
    background: #ffffff;
    z-index: 7001;
    overflow-y: auto;
    box-shadow: 10px 0 32px rgba(0,0,0,0.24);
}

.nobo-mobile-panel-head {
    min-height: 56px;
    padding: 0 18px;
    background: var(--nobo-black);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nobo-mobile-close {
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: #ffffff;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 800;
}

.nobo-mobile-search {
    display: flex;
    margin: 14px;
    height: 44px;
    border: 1px solid var(--nobo-border);
    border-radius: 10px;
    overflow: hidden;
}

.nobo-mobile-search input {
    flex: 1;
    border: 0;
    padding: 0 12px;
}

.nobo-mobile-search button {
    width: 58px;
    border: 0;
    background: var(--nobo-orange);
    color: #ffffff;
    font-weight: 900;
}

.nobo-mobile-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--nobo-border);
    border-bottom: 1px solid var(--nobo-border);
}

.nobo-mobile-tabs button {
    height: 50px;
    border: 0;
    background: #f6f6f6;
    color: var(--nobo-black);
    font-weight: 950;
    text-transform: uppercase;
}

.nobo-mobile-tabs button.active {
    background: #ffffff;
    color: var(--nobo-orange);
    border-bottom: 3px solid var(--nobo-orange);
}

.nobo-mobile-tab-content {
    display: none;
}

.nobo-mobile-tab-content.active {
    display: block;
}

.nobo-mobile-tab-content a,
.nobo-mobile-tab-content summary {
    display: block;
    padding: 16px 18px;
    border-bottom: 1px solid var(--nobo-border);
    color: var(--nobo-black) !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 850;
    cursor: pointer;
}

.nobo-mobile-tab-content details a {
    padding-left: 34px;
    background: var(--nobo-light-orange);
    color: var(--nobo-black) !important;
}

/* Homepage */
.nobo-home {
    max-width: 100%;
    overflow: hidden;
}

.nobo-home-hero {
    background: linear-gradient(90deg, #f4f4f4 0%, #ffffff 52%, #e8f1f9 100%);
    border-bottom: 1px solid var(--nobo-border);
}

.nobo-home-hero-inner {
    min-height: 480px;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 42px;
    align-items: center;
    padding-top: 54px;
    padding-bottom: 54px;
}

.nobo-home-hero-copy h1 {
    margin: 0 0 18px;
    color: var(--nobo-black);
    font-size: clamp(48px, 6vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    font-weight: 950;
    text-transform: uppercase;
}

.nobo-home-hero-copy p {
    max-width: 650px;
    margin: 0 0 26px;
    color: #444;
    font-size: 19px;
    line-height: 1.6;
}

.nobo-home-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.nobo-btn {
    display: inline-flex;
    min-height: 48px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 950;
}

.nobo-btn-orange {
    background: var(--nobo-orange);
    color: #ffffff !important;
}

.nobo-btn-orange:hover {
    background: var(--nobo-orange-dark);
    color: #ffffff !important;
}

.nobo-btn-black {
    background: var(--nobo-black);
    color: #ffffff !important;
}

.nobo-home-hero-visual {
    min-height: 360px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(254,116,43,0.92), rgba(17,17,17,0.94)),
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 30%);
    color: #ffffff;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 28px 58px rgba(0,0,0,0.16);
}

.nobo-visual-board {
    background: #ffffff;
    color: var(--nobo-black);
    border-radius: 18px;
    min-height: 210px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.nobo-visual-board strong {
    display: block;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.nobo-visual-board span {
    display: block;
    margin-top: 12px;
    color: #555;
    font-weight: 700;
}

.nobo-visual-caption {
    font-size: 18px;
    font-weight: 950;
}

.nobo-section {
    padding: 52px 0;
}

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

.nobo-section-head h2 {
    margin: 0;
    color: var(--nobo-black);
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.nobo-section-head p {
    max-width: 560px;
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.55;
}

.nobo-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.nobo-category-card {
    min-height: 230px;
    border-radius: 22px;
    padding: 24px;
    background: #f6f6f6;
    border: 1px solid var(--nobo-border);
    text-decoration: none !important;
    color: var(--nobo-black) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.nobo-category-card:after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(254,116,43,0.16);
}

.nobo-category-card:hover {
    border-color: var(--nobo-orange);
}

.nobo-category-card strong {
    position: relative;
    z-index: 1;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.nobo-category-card span {
    position: relative;
    z-index: 1;
    color: #555;
    font-weight: 750;
}

.nobo-solutions {
    background: var(--nobo-black);
    color: #ffffff;
}

.nobo-solutions .nobo-section-head h2,
.nobo-solutions .nobo-section-head p {
    color: #ffffff;
}

.nobo-solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.nobo-solution-card {
    background: #1d1d1d;
    border: 1px solid #333;
    border-radius: 22px;
    padding: 26px;
    color: #ffffff !important;
    text-decoration: none !important;
}

.nobo-solution-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 950;
}

.nobo-solution-card span {
    color: #d6d6d6;
    line-height: 1.55;
}

.nobo-range-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.nobo-range-card {
    min-height: 250px;
    border-radius: 24px;
    padding: 30px;
    background: var(--nobo-light-orange);
    border: 1px solid #ffd8c3;
}

.nobo-range-card:nth-child(2) {
    background: #f6f6f6;
    border-color: var(--nobo-border);
}

.nobo-range-card h3 {
    margin: 0 0 10px;
    color: var(--nobo-black);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 950;
}

.nobo-range-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.nobo-home-cta {
    background: var(--nobo-orange);
    color: #ffffff;
    border-radius: 28px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.nobo-home-cta h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.nobo-home-cta p {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
}

.nobo-home-cta a {
    background: #ffffff;
    color: var(--nobo-black) !important;
    border-radius: 999px;
    padding: 14px 22px;
    text-decoration: none !important;
    font-weight: 950;
    white-space: nowrap;
}

/* General button text */
a.action.primary,
button.action.primary,
.action.primary,
.action.tocart,
button.tocart,
.products-grid .product-item a.action,
.products-grid .product-item button.action {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .nobo-main-header-inner {
        grid-template-columns: 220px 1fr auto;
        gap: 22px;
    }

    .nobo-phone {
        display: none !important;
    }

    .nobo-nav li > a {
        padding: 0 12px;
        font-size: 13px;
    }

    .nobo-category-grid,
    .nobo-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nobo-container {
        padding: 0 16px;
    }

    .nobo-topbar-links,
    .nobo-header-actions,
    .nobo-nav,
    .nobo-usp-strip {
        display: none;
    }

    .nobo-topbar-left span {
        display: none;
    }

    .nobo-main-header-inner {
        min-height: 76px;
        display: grid;
        grid-template-columns: 42px 1fr 42px;
        gap: 12px;
    }

    .nobo-mobile-toggle {
        display: block;
    }

    .nobo-logo {
        justify-self: center;
    }

    .nobo-logo-mark {
        width: 42px;
        height: 42px;
        font-size: 24px;
        border-radius: 12px;
    }

    .nobo-logo-text strong,
    .nobo-logo-text em {
        font-size: 24px;
    }

    .nobo-search {
        display: none;
    }

    .nobo-home-hero-inner,
    .nobo-range-strip {
        grid-template-columns: 1fr;
    }

    .nobo-home-hero-inner {
        min-height: auto;
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .nobo-home-hero-copy h1 {
        font-size: 52px;
    }

    .nobo-section-head {
        display: block;
    }

    .nobo-section-head p {
        margin-top: 10px;
    }

    .nobo-home-cta {
        display: block;
    }

    .nobo-home-cta a {
        display: inline-flex;
        margin-top: 18px;
    }
}

@media (max-width: 560px) {
    .nobo-category-grid,
    .nobo-solution-grid {
        grid-template-columns: 1fr;
    }

    .nobo-home-hero-copy h1 {
        font-size: 42px;
    }

    .nobo-home-hero-visual {
        min-height: 280px;
        padding: 22px;
    }

    .nobo-section {
        padding: 34px 0;
    }
}

/* NOBO BODY WIDTH + CATEGORY FIX START */

/* Match site body to the 1600px header width */
body:not(.checkout-index-index) .page-main,
body:not(.checkout-index-index) .breadcrumbs,
body:not(.checkout-index-index) .columns,
body:not(.checkout-index-index) .page.messages,
body:not(.checkout-index-index) .page-title-wrapper,
body:not(.checkout-index-index) .category-view,
body:not(.checkout-index-index) .toolbar-products {
    max-width: 1600px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
}

body:not(.checkout-index-index) .page-main {
    padding-top: 24px !important;
}

/* Clean category layout */
body.catalog-category-view .columns {
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 34px !important;
    align-items: start !important;
}

body.catalog-category-view .column.main {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
}

body.catalog-category-view .sidebar-main,
body.catalog-category-view .sidebar-additional {
    width: 100% !important;
    padding: 0 !important;
}

/* Category title */
body.catalog-category-view .page-title-wrapper .page-title {
    font-size: clamp(42px, 4vw, 68px) !important;
    line-height: .96 !important;
    letter-spacing: -0.065em !important;
    font-weight: 950 !important;
    color: #111111 !important;
    margin: 16px 0 26px !important;
}

/* Sidebar filter styling */
body.catalog-category-view .filter.block {
    border: 1px solid #e5e5e5 !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.04) !important;
}

body.catalog-category-view .filter-title strong {
    display: block !important;
    background: #111111 !important;
    color: #ffffff !important;
    padding: 16px 18px !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    border-radius: 0 !important;
}

body.catalog-category-view .filter-options-title {
    color: #111111 !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    padding: 18px !important;
    border-top: 1px solid #eeeeee !important;
}

body.catalog-category-view .filter-options-content {
    padding: 0 18px 18px !important;
}

/* Toolbar */
body.catalog-category-view .toolbar-products {
    border-top: 1px solid #e5e5e5 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    margin-bottom: 28px !important;
}

body.catalog-category-view .toolbar-products .toolbar-amount {
    font-weight: 900 !important;
    color: #111111 !important;
}

body.catalog-category-view .sorter-label,
body.catalog-category-view .limiter-label {
    font-weight: 900 !important;
    color: #111111 !important;
}

body.catalog-category-view .sorter-options,
body.catalog-category-view .limiter-options {
    min-height: 44px !important;
    border: 1px solid #cfcfcf !important;
    border-radius: 8px !important;
    padding: 0 38px 0 12px !important;
}

/* Product grid */
body.catalog-category-view .products-grid .product-items,
body.catalogsearch-result-index .products-grid .product-items {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 34px 24px !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.catalog-category-view .products-grid .product-item,
body.catalogsearch-result-index .products-grid .product-item {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.catalog-category-view .products-grid .product-item-info,
body.catalogsearch-result-index .products-grid .product-item-info {
    width: 100% !important;
    max-width: none !important;
    padding: 18px !important;
    border: 1px solid transparent !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease !important;
}

body.catalog-category-view .products-grid .product-item-info:hover,
body.catalogsearch-result-index .products-grid .product-item-info:hover {
    border-color: #ffd0b7 !important;
    box-shadow: 0 16px 38px rgba(0,0,0,.08) !important;
    transform: translateY(-2px) !important;
}

body.catalog-category-view .product-item-photo,
body.catalogsearch-result-index .product-item-photo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 260px !important;
    padding: 10px !important;
    background: #ffffff !important;
}

body.catalog-category-view .product-image-container,
body.catalog-category-view .product-image-wrapper,
body.catalogsearch-result-index .product-image-container,
body.catalogsearch-result-index .product-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

body.catalog-category-view .product-image-photo,
body.catalogsearch-result-index .product-image-photo {
    max-height: 245px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

body.catalog-category-view .product-item-name,
body.catalogsearch-result-index .product-item-name {
    min-height: 46px !important;
    margin: 14px 0 8px !important;
}

body.catalog-category-view .product-item-name a,
body.catalogsearch-result-index .product-item-name a {
    color: #111111 !important;
    font-size: 17px !important;
    line-height: 1.18 !important;
    font-weight: 950 !important;
    text-decoration: none !important;
}

body.catalog-category-view .price-box,
body.catalogsearch-result-index .price-box {
    margin: 10px 0 16px !important;
}

body.catalog-category-view .price-box .price,
body.catalogsearch-result-index .price-box .price {
    color: #111111 !important;
    font-size: 28px !important;
    font-weight: 950 !important;
    letter-spacing: -0.045em !important;
}

body.catalog-category-view .price-box .price-label,
body.catalogsearch-result-index .price-box .price-label {
    color: #555555 !important;
    font-size: 13px !important;
}

/* Fix clipped/green add-to-cart buttons */
body.catalog-category-view .product-item-actions,
body.catalogsearch-result-index .product-item-actions {
    display: block !important;
    margin: 0 !important;
    width: 100% !important;
}

body.catalog-category-view .actions-primary,
body.catalogsearch-result-index .actions-primary {
    display: block !important;
    width: 100% !important;
}

body.catalog-category-view .product-item .action.tocart,
body.catalog-category-view .product-item button.action.tocart,
body.catalog-category-view .product-item a.action.tocart,
body.catalog-category-view .product-item a.action.primary,
body.catalogsearch-result-index .product-item .action.tocart,
body.catalogsearch-result-index .product-item button.action.tocart,
body.catalogsearch-result-index .product-item a.action.tocart,
body.catalogsearch-result-index .product-item a.action.primary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 48px !important;
    padding: 0 18px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #005aaa !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body.catalog-category-view .product-item .action.tocart span,
body.catalog-category-view .product-item a.action.primary span,
body.catalogsearch-result-index .product-item .action.tocart span,
body.catalogsearch-result-index .product-item a.action.primary span {
    color: #ffffff !important;
    display: inline !important;
    clip: auto !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    position: static !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    text-decoration: none !important;
}

body.catalog-category-view .product-item .action.tocart:hover,
body.catalog-category-view .product-item a.action.primary:hover,
body.catalogsearch-result-index .product-item .action.tocart:hover,
body.catalogsearch-result-index .product-item a.action.primary:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

/* NOBO BODY WIDTH + CATEGORY FIX END */


/* NOBO FOOTER START */
body:not(.checkout-index-index) .page-footer {
    display: none !important;
}

.nobo-footer {
    margin-top: 54px;
    background: #111111;
    color: #ffffff;
}

.nobo-footer a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.nobo-footer a:hover {
    color: #005aaa !important;
}

.nobo-footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
    padding: 44px 24px;
}

.nobo-footer-brand strong {
    display: block;
    font-size: 34px;
    line-height: .95;
    letter-spacing: -0.055em;
    font-weight: 950;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.nobo-footer-brand p {
    margin: 0;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
}

.nobo-footer-col h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nobo-footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nobo-footer-col li {
    margin: 0 0 9px;
    color: #cccccc;
    font-size: 14px;
}

.nobo-footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 18px 24px;
    color: #bdbdbd;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nobo-footer-bottom span {
    color: #bdbdbd;
}

@media (max-width: 1200px) {
    body.catalog-category-view .products-grid .product-items,
    body.catalogsearch-result-index .products-grid .product-items {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

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

@media (max-width: 900px) {
    body:not(.checkout-index-index) .page-main,
    body:not(.checkout-index-index) .breadcrumbs,
    body:not(.checkout-index-index) .columns,
    body:not(.checkout-index-index) .page.messages,
    body:not(.checkout-index-index) .page-title-wrapper,
    body:not(.checkout-index-index) .category-view,
    body:not(.checkout-index-index) .toolbar-products {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    body.catalog-category-view .columns {
        display: block !important;
    }

    body.catalog-category-view .sidebar-main,
    body.catalog-category-view .sidebar-additional {
        margin-bottom: 24px !important;
    }

    body.catalog-category-view .products-grid .product-items,
    body.catalogsearch-result-index .products-grid .product-items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 22px 14px !important;
    }

    body.catalog-category-view .product-item-photo,
    body.catalogsearch-result-index .product-item-photo {
        min-height: 190px !important;
    }

    .nobo-footer-main {
        grid-template-columns: 1fr;
        padding: 34px 16px;
    }

    .nobo-footer-bottom {
        display: block;
        padding-left: 16px;
        padding-right: 16px;
    }

    .nobo-footer-bottom span {
        display: block;
        margin-bottom: 8px;
    }
}

@media (max-width: 560px) {
    body.catalog-category-view .products-grid .product-items,
    body.catalogsearch-result-index .products-grid .product-items {
        grid-template-columns: 1fr !important;
    }
}
/* NOBO FOOTER END */


/* NOBO CLEANUP V2 START */

/* Hide remaining old Magento footer/copyright bar */
body:not(.checkout-index-index) .copyright,
body:not(.checkout-index-index) small.copyright,
body:not(.checkout-index-index) .footer.content,
body:not(.checkout-index-index) .footer-toolbar,
body:not(.checkout-index-index) .page-footer .copyright {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Header icons */
.nobo-phone,
.nobo-account,
.nobo-basket {
    position: relative !important;
    padding-left: 38px !important;
}

.nobo-phone:before,
.nobo-account:before,
.nobo-basket:before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 28px !important;
    height: 28px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 28px 28px !important;
}

.nobo-phone:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23005aaa' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.79 19.79 0 0 1 11.19 19a19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.77.62 2.6a2 2 0 0 1-.45 2.11L8 9.66a16 16 0 0 0 6.34 6.34l1.23-1.23a2 2 0 0 1 2.11-.45c.83.29 1.7.5 2.6.62A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") !important;
}

.nobo-account:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c1.7-4.6 4.4-6.8 8-6.8s6.3 2.2 8 6.8'/%3E%3C/svg%3E") !important;
}

.nobo-basket:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7h15l-1.5 9H8L6 7z'/%3E%3Cpath d='M6 7 5 3H2'/%3E%3Ccircle cx='9' cy='20' r='1.5'/%3E%3Ccircle cx='18' cy='20' r='1.5'/%3E%3C/svg%3E") !important;
}

/* Better filter title — remove ugly black box */
body.catalog-category-view .filter-title strong,
body.catalogsearch-result-index .filter-title strong {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 54px !important;
    background: #005aaa !important;
    color: #ffffff !important;
    padding: 0 18px !important;
    border-radius: 14px 14px 0 0 !important;
    font-size: 20px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

body.catalog-category-view .filter-title strong:after,
body.catalogsearch-result-index .filter-title strong:after {
    content: "Filter products" !important;
    color: rgba(255,255,255,.85) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

body.catalog-category-view .filter.block,
body.catalogsearch-result-index .filter.block {
    border-radius: 14px !important;
}

/* Product grid button clipping fix — very strong override */
body.catalog-category-view .product-item .product-item-actions,
body.catalogsearch-result-index .product-item .product-item-actions,
body.catalog-category-view .product-item .actions-primary,
body.catalogsearch-result-index .product-item .actions-primary,
body.catalog-category-view .product-item .stock.unavailable,
body.catalogsearch-result-index .product-item .stock.unavailable {
    display: block !important;
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    text-align: left !important;
}

body.catalog-category-view .product-item .action.tocart,
body.catalog-category-view .product-item button.action.tocart,
body.catalog-category-view .product-item a.action.tocart,
body.catalog-category-view .product-item a.action.primary,
body.catalog-category-view .product-item .actions-primary > *,
body.catalogsearch-result-index .product-item .action.tocart,
body.catalogsearch-result-index .product-item button.action.tocart,
body.catalogsearch-result-index .product-item a.action.tocart,
body.catalogsearch-result-index .product-item a.action.primary,
body.catalogsearch-result-index .product-item .actions-primary > * {
    position: relative !important;
    display: flex !important;
    float: none !important;
    clear: both !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 50px !important;
    min-height: 50px !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #005aaa !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-indent: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    clip: auto !important;
    box-sizing: border-box !important;
    opacity: 1 !important;
}

body.catalog-category-view .product-item .action.tocart:before,
body.catalog-category-view .product-item .action.tocart:after,
body.catalog-category-view .product-item a.action.primary:before,
body.catalog-category-view .product-item a.action.primary:after,
body.catalogsearch-result-index .product-item .action.tocart:before,
body.catalogsearch-result-index .product-item .action.tocart:after,
body.catalogsearch-result-index .product-item a.action.primary:before,
body.catalogsearch-result-index .product-item a.action.primary:after {
    display: none !important;
    content: none !important;
}

body.catalog-category-view .product-item .action.tocart span,
body.catalog-category-view .product-item button.action.tocart span,
body.catalog-category-view .product-item a.action.tocart span,
body.catalog-category-view .product-item a.action.primary span,
body.catalogsearch-result-index .product-item .action.tocart span,
body.catalogsearch-result-index .product-item button.action.tocart span,
body.catalogsearch-result-index .product-item a.action.tocart span,
body.catalogsearch-result-index .product-item a.action.primary span {
    position: static !important;
    display: inline !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    clip: auto !important;
    clip-path: none !important;
    overflow: visible !important;
    color: #ffffff !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
    text-indent: 0 !important;
    white-space: normal !important;
    text-decoration: none !important;
}

body.catalog-category-view .product-item .action.tocart:hover,
body.catalog-category-view .product-item a.action.primary:hover,
body.catalogsearch-result-index .product-item .action.tocart:hover,
body.catalogsearch-result-index .product-item a.action.primary:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

/* Product page buttons too */
body.catalog-product-view .box-tocart .action.tocart,
body.catalog-product-view .product-info-main .action.tocart {
    background: #005aaa !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 10px !important;
    min-height: 52px !important;
    padding: 0 26px !important;
    font-weight: 950 !important;
}

body.catalog-product-view .box-tocart .action.tocart span,
body.catalog-product-view .product-info-main .action.tocart span {
    color: #ffffff !important;
}

/* NOBO CLEANUP V2 END */


/* NOBO HEADER SEARCH FIX START */
/* Makes the full visible search area clickable/typeable */
.nobo-main-header .nobo-search {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid #d7d7d7 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
}

.nobo-main-header .nobo-search input,
.nobo-main-header .nobo-search input[type="text"],
.nobo-main-header .nobo-search input[name="q"] {
    flex: 1 1 auto !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 52px !important;
    min-height: 52px !important;
    line-height: 52px !important;
    margin: 0 !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: #111111 !important;
    font-size: 15px !important;
    box-shadow: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.nobo-main-header .nobo-search input:focus {
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.nobo-main-header .nobo-search button {
    flex: 0 0 128px !important;
    width: 128px !important;
    height: 52px !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #005aaa !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    line-height: 52px !important;
    text-align: center !important;
    box-shadow: none !important;
}

.nobo-main-header .nobo-search button:hover {
    background: #111111 !important;
    color: #ffffff !important;
}
/* NOBO HEADER SEARCH FIX END */


/* NOBO GLOBAL FONT + BUTTON FINAL START */

/* Clean modern font stack across the whole site */
html,
body,
button,
input,
select,
textarea,
.page-wrapper,
.nobo-site-header,
.nobo-footer,
.product-item,
.product-info-main {
    font-family: Inter, Aptos, "Segoe UI", Mulish, Helvetica, Arial, sans-serif !important;
}

/* Global orange button treatment */
a.action.primary,
button.action.primary,
.action.primary,
.action.tocart,
button.tocart,
button.action.tocart,
.product-item .action.tocart,
.product-info-main .action.tocart,
.box-tocart .action.tocart {
    background: #005aaa !important;
    background-color: #005aaa !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

a.action.primary *,
button.action.primary *,
.action.primary *,
.action.tocart *,
button.tocart *,
button.action.tocart *,
.product-item .action.tocart *,
.product-info-main .action.tocart *,
.box-tocart .action.tocart * {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* NOBO GLOBAL FONT + BUTTON FINAL END */


/* =========================================================
   NOBO CATEGORY CARD LAYOUT REBUILD
   ========================================================= */

/* Wider content container */
.page-wrapper .columns,
.page-wrapper .page-main,
.page-layout-2columns-left .column.main,
.page-layout-1column .column.main {
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Category pages / search result layout */
body.catalog-category-view .columns,
body.catalogsearch-result-index .columns {
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    gap: 36px !important;
    align-items: start !important;
}

/* Left filter area */
body.catalog-category-view .sidebar.sidebar-main,
body.catalogsearch-result-index .sidebar.sidebar-main {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.catalog-category-view .block.filter,
body.catalogsearch-result-index .block.filter {
    background: #ffffff !important;
    border: 1px solid #ececec !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04) !important;
}

/* Fix giant shop-by banner */
body.catalog-category-view .block.filter .filter-title,
body.catalogsearch-result-index .block.filter .filter-title,
body.catalog-category-view .block.filter .block-title,
body.catalogsearch-result-index .block.filter .block-title {
    display: block !important;
    background: #005aaa !important;
    color: #111111 !important;
    padding: 20px 22px !important;
    margin: 0 !important;
    border: 0 !important;
    width: auto !important;
}

body.catalog-category-view .block.filter .filter-title strong,
body.catalogsearch-result-index .block.filter .filter-title strong,
body.catalog-category-view .block.filter .block-title strong,
body.catalogsearch-result-index .block.filter .block-title strong {
    color: #111111 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body.catalog-category-view .block.filter .filter-options,
body.catalogsearch-result-index .block.filter .filter-options {
    padding: 10px 22px 18px !important;
}

body.catalog-category-view .block.filter .filter-options-item,
body.catalogsearch-result-index .block.filter .filter-options-item {
    border-bottom: 1px solid #ececec !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.catalog-category-view .block.filter .filter-options-item:last-child,
body.catalogsearch-result-index .block.filter .filter-options-item:last-child {
    border-bottom: 0 !important;
}

body.catalog-category-view .block.filter .filter-options-title,
body.catalogsearch-result-index .block.filter .filter-options-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    padding: 18px 0 !important;
    position: relative !important;
}

body.catalog-category-view .block.filter .filter-options-content,
body.catalogsearch-result-index .block.filter .filter-options-content {
    padding: 0 0 18px 0 !important;
}

/* Main area */
body.catalog-category-view .column.main,
body.catalogsearch-result-index .column.main {
    width: 100% !important;
    min-width: 0 !important;
}

/* Toolbar cleaner */
body.catalog-category-view .toolbar,
body.catalogsearch-result-index .toolbar {
    margin-bottom: 28px !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid #e6e6e6 !important;
}

/* Product grid */
body.catalog-category-view .products-grid .product-items,
body.catalogsearch-result-index .products-grid .product-items {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px !important;
    margin: 0 !important;
}

@media (max-width: 1400px) {
    body.catalog-category-view .products-grid .product-items,
    body.catalogsearch-result-index .products-grid .product-items {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1100px) {
    body.catalog-category-view .products-grid .product-items,
    body.catalogsearch-result-index .products-grid .product-items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Product card */
body.catalog-category-view .products-grid .product-item,
body.catalogsearch-result-index .products-grid .product-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.catalog-category-view .products-grid .product-item-info,
body.catalogsearch-result-index .products-grid .product-item-info {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 100% !important;
    background: #ffffff !important;
    border: 1px solid #ececec !important;
    border-radius: 18px !important;
    padding: 18px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    transform: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

body.catalog-category-view .products-grid .product-item-info:hover,
body.catalogsearch-result-index .products-grid .product-item-info:hover {
    transform: none !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    border-color: #005aaa !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08) !important;
}

/* Kill inherited hover jump madness */
body.catalog-category-view .products-grid .product-item:hover,
body.catalogsearch-result-index .products-grid .product-item:hover,
body.catalog-category-view .products-grid .product-item:hover .product-item-info,
body.catalogsearch-result-index .products-grid .product-item:hover .product-item-info {
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
}

/* Image area */
body.catalog-category-view .products-grid .product-item-photo,
body.catalogsearch-result-index .products-grid .product-item-photo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 240px !important;
    max-height: 240px !important;
    background: #f7f7f7 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    margin-bottom: 16px !important;
}

body.catalog-category-view .products-grid .product-image-container,
body.catalogsearch-result-index .products-grid .product-image-container {
    width: 100% !important;
    max-width: none !important;
}

body.catalog-category-view .products-grid .product-image-photo,
body.catalogsearch-result-index .products-grid .product-image-photo {
    width: 100% !important;
    height: 100% !important;
    max-height: 220px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

/* Product details */
body.catalog-category-view .products-grid .product-item-details,
body.catalogsearch-result-index .products-grid .product-item-details {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    padding: 0 !important;
}

body.catalog-category-view .products-grid .product-item-name,
body.catalogsearch-result-index .products-grid .product-item-name {
    min-height: 58px !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.25 !important;
}

body.catalog-category-view .products-grid .product-item-name a,
body.catalogsearch-result-index .products-grid .product-item-name a {
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body.catalog-category-view .products-grid .product-item-name a:hover,
body.catalogsearch-result-index .products-grid .product-item-name a:hover {
    color: #005aaa !important;
}

/* Price block */
body.catalog-category-view .products-grid .price-box,
body.catalogsearch-result-index .products-grid .price-box {
    margin: 0 0 18px 0 !important;
    min-height: 58px !important;
}

body.catalog-category-view .products-grid .price,
body.catalogsearch-result-index .products-grid .price {
    color: #111111 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

/* Actions area pinned to bottom */
body.catalog-category-view .products-grid .product-item-actions,
body.catalogsearch-result-index .products-grid .product-item-actions {
    margin-top: auto !important;
    padding-top: 8px !important;
}

body.catalog-category-view .products-grid .actions-primary,
body.catalogsearch-result-index .products-grid .actions-primary {
    width: 100% !important;
    display: block !important;
}

body.catalog-category-view .products-grid .actions-primary .action,
body.catalogsearch-result-index .products-grid .actions-primary .action {
    width: 100% !important;
    min-height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #005aaa !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    padding: 0 18px !important;
    box-shadow: none !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

body.catalog-category-view .products-grid .actions-primary .action:hover,
body.catalogsearch-result-index .products-grid .actions-primary .action:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

body.catalog-category-view .products-grid .actions-primary .action span,
body.catalogsearch-result-index .products-grid .actions-primary .action span {
    display: inline-block !important;
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* Remove weird old Magento offsets */
body.catalog-category-view .products-grid .product-item-inner,
body.catalogsearch-result-index .products-grid .product-item-inner,
body.catalog-category-view .products-grid .product-item-actions .actions-secondary,
body.catalogsearch-result-index .products-grid .product-item-actions .actions-secondary {
    display: none !important;
}

/* Make layered nav / products stack on mobile */
@media (max-width: 900px) {
    body.catalog-category-view .columns,
    body.catalogsearch-result-index .columns {
        grid-template-columns: 1fr !important;
    }

    body.catalog-category-view .products-grid .product-items,
    body.catalogsearch-result-index .products-grid .product-items {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
}

@media (max-width: 640px) {
    body.catalog-category-view .products-grid .product-items,
    body.catalogsearch-result-index .products-grid .product-items {
        grid-template-columns: 1fr !important;
    }
}


/* =========================================================
   NOBO FONT + PRODUCT CARD CLEANUP
   ========================================================= */

/* Global font */
html, body,
button, input, select, textarea,
.page-wrapper, .page-main, .columns,
.navigation, .toolbar, .products, .product-item,
.block, .footer, .copyright {
    font-family: 'Mulish', Arial, sans-serif !important;
}

/* Keep product grid neat */
body.catalog-category-view .products-grid .product-items,
body.catalogsearch-result-index .products-grid .product-items {
    align-items: start !important;
}

/* Remove outer card shell / border / grey box */
body.catalog-category-view .products-grid .product-item-info,
body.catalogsearch-result-index .products-grid .product-item-info {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    transform: none !important;
}

/* No extra hover panel */
body.catalog-category-view .products-grid .product-item-info:hover,
body.catalogsearch-result-index .products-grid .product-item-info:hover,
body.catalog-category-view .products-grid .product-item:hover .product-item-info,
body.catalogsearch-result-index .products-grid .product-item:hover .product-item-info {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    margin: 0 !important;
}

/* Remove any weird generated layers */
body.catalog-category-view .products-grid .product-item-info::before,
body.catalog-category-view .products-grid .product-item-info::after,
body.catalogsearch-result-index .products-grid .product-item-info::before,
body.catalogsearch-result-index .products-grid .product-item-info::after,
body.catalog-category-view .products-grid .product-item::before,
body.catalog-category-view .products-grid .product-item::after,
body.catalogsearch-result-index .products-grid .product-item::before,
body.catalogsearch-result-index .products-grid .product-item::after {
    display: none !important;
    content: none !important;
}

/* Make image area cleaner and bigger */
body.catalog-category-view .products-grid .product-item-photo,
body.catalogsearch-result-index .products-grid .product-item-photo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 320px !important;
    max-height: 320px !important;
    height: 320px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

body.catalog-category-view .products-grid .product-image-container,
body.catalogsearch-result-index .products-grid .product-image-container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.catalog-category-view .products-grid .product-image-photo,
body.catalogsearch-result-index .products-grid .product-image-photo {
    width: 100% !important;
    height: 100% !important;
    max-height: 320px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: transparent !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Tighten product text block */
body.catalog-category-view .products-grid .product-item-details,
body.catalogsearch-result-index .products-grid .product-item-details {
    padding: 0 !important;
}

body.catalog-category-view .products-grid .product-item-name,
body.catalogsearch-result-index .products-grid .product-item-name {
    margin: 0 0 10px 0 !important;
    min-height: 52px !important;
}

body.catalog-category-view .products-grid .product-item-name a,
body.catalogsearch-result-index .products-grid .product-item-name a {
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: #111111 !important;
}

/* Price spacing */
body.catalog-category-view .products-grid .price-box,
body.catalogsearch-result-index .products-grid .price-box {
    margin: 0 0 18px 0 !important;
}

body.catalog-category-view .products-grid .price,
body.catalogsearch-result-index .products-grid .price {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #111111 !important;
}

/* Clean button */
body.catalog-category-view .products-grid .product-item-actions,
body.catalogsearch-result-index .products-grid .product-item-actions {
    margin-top: 0 !important;
    padding-top: 6px !important;
}

body.catalog-category-view .products-grid .actions-primary,
body.catalogsearch-result-index .products-grid .actions-primary {
    width: 100% !important;
    display: block !important;
}

body.catalog-category-view .products-grid .actions-primary .action,
body.catalogsearch-result-index .products-grid .actions-primary .action,
body.catalog-category-view .products-grid .action.tocart,
body.catalogsearch-result-index .products-grid .action.tocart {
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #005aaa !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    padding: 0 18px !important;
    line-height: 1 !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Remove weird black/orange overlays */
body.catalog-category-view .products-grid .actions-primary .action::before,
body.catalog-category-view .products-grid .actions-primary .action::after,
body.catalog-category-view .products-grid .action.tocart::before,
body.catalog-category-view .products-grid .action.tocart::after,
body.catalogsearch-result-index .products-grid .actions-primary .action::before,
body.catalogsearch-result-index .products-grid .actions-primary .action::after,
body.catalogsearch-result-index .products-grid .action.tocart::before,
body.catalogsearch-result-index .products-grid .action.tocart::after {
    display: none !important;
    content: none !important;
}

body.catalog-category-view .products-grid .actions-primary .action span,
body.catalogsearch-result-index .products-grid .actions-primary .action span,
body.catalog-category-view .products-grid .action.tocart span,
body.catalogsearch-result-index .products-grid .action.tocart span {
    display: inline-block !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

body.catalog-category-view .products-grid .actions-primary .action:hover,
body.catalogsearch-result-index .products-grid .actions-primary .action:hover,
body.catalog-category-view .products-grid .action.tocart:hover,
body.catalogsearch-result-index .products-grid .action.tocart:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

body.catalog-category-view .products-grid .actions-primary .action:hover span,
body.catalogsearch-result-index .products-grid .actions-primary .action:hover span,
body.catalog-category-view .products-grid .action.tocart:hover span,
body.catalogsearch-result-index .products-grid .action.tocart:hover span {
    color: #ffffff !important;
}

/* Remove Magento hover/action junk */
body.catalog-category-view .products-grid .product-item-inner,
body.catalogsearch-result-index .products-grid .product-item-inner,
body.catalog-category-view .products-grid .actions-secondary,
body.catalogsearch-result-index .products-grid .actions-secondary {
    display: none !important;
}


/* =========================================================
   NOBO CATEGORY TREE NAVIGATION
   ========================================================= */

.nobo-nav {
    position: relative;
    z-index: 80;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.nobo-nav-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
}

.nobo-nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nobo-nav-item > a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 15px;
    color: #111111;
    font-family: "Mulish", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nobo-nav-item > a:hover,
.nobo-nav-item:hover > a {
    color: #005aaa;
    border-bottom-color: #005aaa;
}

.nobo-nav-item.has-dropdown > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.nobo-dropdown {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    min-width: 280px;
    max-width: 360px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-top: 3px solid #005aaa;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 38px rgba(0,0,0,.13);
    z-index: 999;
}

.nobo-nav-item:hover .nobo-dropdown,
.nobo-nav-item:focus-within .nobo-dropdown {
    display: block;
}

.nobo-dropdown a {
    display: block;
    padding: 11px 12px;
    color: #222222;
    font-family: "Mulish", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.25;
    text-decoration: none;
    border-radius: 9px;
}

.nobo-dropdown a:hover {
    background: #e8f1f9;
    color: #005aaa;
}

/* Current active category visual hint */
.catalog-category-view .nobo-nav-item > a:hover {
    color: #005aaa;
}

/* Mobile fallback */
@media (max-width: 1100px) {
    .nobo-nav-inner {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nobo-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .nobo-nav-item > a {
        min-height: 50px;
        padding: 0 14px;
        font-size: 13px;
    }

    .nobo-dropdown {
        display: none !important;
    }
}


/* =========================================================
   NOBO ORANGE NAV BAR RESTORE + REMOVE ARROWS
   ========================================================= */

.nobo-nav {
    background: #005aaa !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: 0 8px 20px rgba(254, 116, 43, .18) !important;
}

.nobo-nav-inner {
    max-width: 1600px !important;
}

.nobo-nav-item > a {
    color: #ffffff !important;
    border-bottom: 0 !important;
    font-family: "Mulish", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 800 !important;
}

.nobo-nav-item > a:hover,
.nobo-nav-item:hover > a,
.nobo-nav-item:focus-within > a {
    color: #ffffff !important;
    background: rgba(0, 0, 0, .14) !important;
    border-bottom: 0 !important;
}

/* Remove little dropdown arrows */
.nobo-nav-item.has-dropdown > a::after {
    display: none !important;
    content: none !important;
}

/* Keep dropdowns clean against orange nav */
.nobo-dropdown {
    border-top: 0 !important;
    border-radius: 0 0 14px 14px !important;
    box-shadow: 0 18px 38px rgba(0,0,0,.16) !important;
}

.nobo-dropdown a {
    color: #222222 !important;
}

.nobo-dropdown a:hover {
    background: #e8f1f9 !important;
    color: #005aaa !important;
}

/* Mobile horizontal nav still orange */
@media (max-width: 1100px) {
    .nobo-nav {
        background: #005aaa !important;
    }

    .nobo-nav-item > a {
        color: #ffffff !important;
    }
}


/* NOBO MOBILE HEADER V4 START */
.nobo-mobile-fixed-header {
    display: none;
}

@media (max-width: 768px) {
    body {
        background: #fff !important;
    }

    /* Hide the existing broken desktop/Luma mobile header only on mobile */
    .page-header,
    .sections.nav-sections {
        display: none !important;
    }

    .nobo-mobile-fixed-header {
        display: block !important;
        background: #fff !important;
        border-bottom: 1px solid #e8e8e8 !important;
        font-family: "Mulish", Arial, sans-serif !important;
        position: relative;
        z-index: 50;
    }

    .nobo-mobile-rating {
        height: 34px;
        display: flex;
        align-items: center;
        padding: 0 16px;
        border-bottom: 1px solid #e8e8e8;
        font-size: 13px;
        font-weight: 800;
        color: #111;
    }

    .nobo-mobile-mainrow {
        display: grid;
        grid-template-columns: 48px 1fr 48px;
        align-items: center;
        gap: 12px;
        padding: 16px 18px 14px;
    }

    .nobo-mobile-menu-btn {
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    .nobo-mobile-menu-btn span {
        display: block;
        width: 26px;
        height: 2px;
        background: #111;
        border-radius: 2px;
    }

    .nobo-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none !important;
        color: #050505 !important;
    }

    .nobo-mobile-logo-icon {
        width: 42px;
        height: 42px;
        background: #005aaa;
        color: #fff;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 24px;
        line-height: 1;
    }

    .nobo-mobile-logo-text {
        font-weight: 1000;
        font-size: 23px;
        line-height: 0.82;
        letter-spacing: -1.4px;
        color: #050505;
    }

    .nobo-mobile-cart {
        width: 44px;
        height: 44px;
        border: 1px solid #dedede;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #111 !important;
        text-decoration: none !important;
    }

    .nobo-mobile-cart svg {
        fill: #111;
        display: block;
    }

    .nobo-mobile-search {
        display: flex;
        width: auto;
        margin: 0 18px 16px;
        height: 50px;
        border: 1px solid #dedede;
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
    }

    .nobo-mobile-search input {
        flex: 1 1 auto;
        min-width: 0;
        height: 50px;
        border: 0 !important;
        padding: 0 14px;
        font-size: 15px;
        color: #111;
        background: #fff;
        box-shadow: none !important;
        outline: none !important;
        font-family: "Mulish", Arial, sans-serif !important;
    }

    .nobo-mobile-search button {
        flex: 0 0 98px;
        height: 50px;
        border: 0;
        background: #005aaa;
        color: #fff;
        font-size: 13px;
        font-weight: 900;
        font-family: "Mulish", Arial, sans-serif !important;
        cursor: pointer;
    }

    .nobo-mobile-nav-panel {
        display: none;
        border-top: 1px solid #ededed;
        padding: 8px 18px 16px;
        background: #fff;
    }

    .nobo-mobile-fixed-header.is-open .nobo-mobile-nav-panel {
        display: block;
    }

    .nobo-mobile-nav-panel a {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #111 !important;
        text-decoration: none !important;
        font-weight: 850;
        font-size: 15px;
    }

    .nobo-mobile-nav-panel a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 420px) {
    .nobo-mobile-mainrow {
        padding-left: 14px;
        padding-right: 14px;
        gap: 8px;
    }

    .nobo-mobile-search {
        margin-left: 14px;
        margin-right: 14px;
    }

    .nobo-mobile-logo-text {
        font-size: 22px;
    }

    .nobo-mobile-logo-icon {
        width: 40px;
        height: 40px;
    }
}
/* NOBO MOBILE HEADER V4 END */


/* NOBO MOBILE DUPLICATE HEADER KILL START */
@media (max-width: 768px) {

    /*
      Keep our new mobile header.
      Hide the original/broken desktop header that is still rendering underneath.
    */
    body .nobo-mobile-fixed-header {
        display: block !important;
    }

    body .page-wrapper > .page-header,
    body .page-wrapper header.page-header,
    body .page-wrapper .sections.nav-sections,
    body .page-wrapper .nobo-header,
    body .page-wrapper .nobo-topbar,
    body .page-wrapper .nobo-top-bar,
    body .page-wrapper .topbar,
    body .page-wrapper .nobo-header-main,
    body .page-wrapper .nobo-main-header,
    body .page-wrapper .header.content,
    body .page-wrapper .block-search,
    body .page-wrapper .minicart-wrapper,
    body .page-wrapper .nobo-nav,
    body .page-wrapper .navigation,
    body .page-wrapper .nobo-usp-strip,
    body .page-wrapper .nobo-usps {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }

    /*
      Reset main page spacing now the old header is hidden.
    */
    body .page-wrapper,
    body .page-main,
    body main.page-main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
/* NOBO MOBILE DUPLICATE HEADER KILL END */

/* NOBO FINAL MOBILE HEADER SWITCH START */

/* Desktop: show normal desktop header, hide custom mobile header */
@media (min-width: 769px) {
    .nobo-mobile-fixed-header {
        display: none !important;
    }

    .nobo-desktop-header-only {
        display: block !important;
    }
}

/* Mobile: show custom mobile header, hide old desktop/mobile Luma/Nobo header */
@media (max-width: 768px) {
    .nobo-mobile-fixed-header {
        display: block !important;
    }

    .nobo-desktop-header-only {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .page-header {
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }
}

/* NOBO FINAL MOBILE HEADER SWITCH END */

/* NOBO MOBILE CATEGORY TOOLBAR + FILTER FIX START */
@media (max-width: 768px) {

    .catalog-category-view .page-main,
    .catalogsearch-result-index .page-main {
        padding: 28px 24px 50px !important;
        box-sizing: border-box !important;
    }

    .catalog-category-view .columns,
    .catalogsearch-result-index .columns {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .catalog-category-view .column.main,
    .catalogsearch-result-index .column.main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        float: none !important;
    }

    .catalog-category-view .page-title-wrapper,
    .catalogsearch-result-index .page-title-wrapper {
        text-align: center !important;
        margin: 0 0 26px !important;
    }

    .catalog-category-view .page-title,
    .catalogsearch-result-index .page-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        font-weight: 900 !important;
        margin: 0 !important;
    }

    /* Stop Sort By / Items overlap */
    .catalog-category-view .toolbar-products,
    .catalogsearch-result-index .toolbar-products {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px 12px !important;
        width: 100% !important;
        margin: 0 0 20px !important;
        padding: 0 0 18px !important;
        border-bottom: 1px solid #d7dce2 !important;
        clear: both !important;
        float: none !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }

    .catalog-category-view .toolbar-products .sorter,
    .catalogsearch-result-index .toolbar-products .sorter {
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 !important;
        padding: 0 !important;
        position: static !important;
        white-space: normal !important;
    }

    .catalog-category-view .toolbar-products .sorter-label,
    .catalogsearch-result-index .toolbar-products .sorter-label {
        flex: 0 0 auto !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        color: #111827 !important;
        line-height: 1.1 !important;
    }

    .catalog-category-view .toolbar-products .sorter-options,
    .catalogsearch-result-index .toolbar-products .sorter-options {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 220px !important;
        height: 46px !important;
        margin: 0 !important;
        border: 1px solid #d1d5db !important;
        border-radius: 8px !important;
        background: #fff !important;
        font-size: 15px !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
    }

    .catalog-category-view .toolbar-products .sorter-action,
    .catalogsearch-result-index .toolbar-products .sorter-action {
        display: none !important;
    }

    .catalog-category-view .toolbar-products .toolbar-amount,
    .catalogsearch-result-index .toolbar-products .toolbar-amount {
        order: 2 !important;
        display: block !important;
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin: -2px 0 0 !important;
        padding: 0 !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #111827 !important;
        line-height: 1.4 !important;
        text-align: left !important;
    }

    .catalog-category-view .toolbar-products .modes,
    .catalogsearch-result-index .toolbar-products .modes,
    .catalog-category-view .toolbar-products .limiter,
    .catalogsearch-result-index .toolbar-products .limiter {
        display: none !important;
    }

    /* Hide bottom toolbar on mobile if Magento outputs another one */
    .catalog-category-view .products.wrapper + .toolbar-products,
    .catalogsearch-result-index .products.wrapper + .toolbar-products {
        display: none !important;
    }

    /* Moved Shop By filter */
    .catalog-category-view .sidebar-main.nobo-mobile-filter-moved,
    .catalog-category-view .sidebar.sidebar-main.nobo-mobile-filter-moved,
    .catalogsearch-result-index .sidebar-main.nobo-mobile-filter-moved,
    .catalogsearch-result-index .sidebar.sidebar-main.nobo-mobile-filter-moved {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        clear: both !important;
        margin: 0 0 24px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .catalog-category-view .nobo-mobile-filter-moved .filter,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter {
        border: 1px solid #e5e7eb !important;
        border-radius: 14px !important;
        background: #fff !important;
        overflow: hidden !important;
        box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06) !important;
    }

    .catalog-category-view .nobo-mobile-filter-moved .filter-title,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter-title {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .catalog-category-view .nobo-mobile-filter-moved .filter-title strong,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter-title strong,
    .catalog-category-view .nobo-mobile-filter-moved .filter-subtitle,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter-subtitle {
        display: block !important;
        background: #111827 !important;
        color: #fff !important;
        padding: 14px 16px !important;
        font-size: 15px !important;
        font-weight: 900 !important;
        border: 0 !important;
    }

    .catalog-category-view .nobo-mobile-filter-moved .filter-content,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter-content {
        display: block !important;
        padding: 0 !important;
    }

    .catalog-category-view .nobo-mobile-filter-moved .filter-options,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter-options {
        margin: 0 !important;
        padding: 0 !important;
    }

    .catalog-category-view .nobo-mobile-filter-moved .filter-options-item,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter-options-item {
        border-bottom: 1px solid #edf0f3 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .catalog-category-view .nobo-mobile-filter-moved .filter-options-title,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter-options-title {
        padding: 14px 16px !important;
        font-size: 14px !important;
        font-weight: 900 !important;
        color: #111827 !important;
    }

    .catalog-category-view .nobo-mobile-filter-moved .filter-options-content,
    .catalogsearch-result-index .nobo-mobile-filter-moved .filter-options-content {
        padding: 0 16px 14px !important;
    }
}
/* NOBO MOBILE CATEGORY TOOLBAR + FILTER FIX END */





/* NOBO TINY FILTER FIX 1 - REMOVE ORANGE FILTER TITLE OUTLINE/BACKGROUND */
body.catalog-category-view .block.filter .filter-title,
body.catalogsearch-result-index .block.filter .filter-title,
body.catalog-category-view .block.filter .block-title,
body.catalogsearch-result-index .block.filter .block-title {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: none !important;
    outline: none !important;
    color: #111111 !important;
}

body.catalog-category-view .block.filter .filter-title strong,
body.catalogsearch-result-index .block.filter .filter-title strong,
body.catalog-category-view .block.filter .block-title strong,
body.catalogsearch-result-index .block.filter .block-title strong {
    background: transparent !important;
    color: #111111 !important;
    box-shadow: none !important;
    outline: none !important;
}
/* NOBO TINY FILTER FIX 1 END */

/* NOBO MOBILE FILTER - HIDE SHOPPING OPTIONS BAR */
@media (max-width: 768px) {
    body.catalog-category-view .block.filter .filter-subtitle,
    body.catalog-category-view .block.filter .block-subtitle,
    body.catalogsearch-result-index .block.filter .filter-subtitle,
    body.catalogsearch-result-index .block.filter .block-subtitle {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }
}
/* NOBO MOBILE FILTER - HIDE SHOPPING OPTIONS BAR END */

/* NOBO CATEGORY TOP SPACING COMPACT START */

/* Desktop + mobile: reduce space between breadcrumb/title/products */
body.catalog-category-view .breadcrumbs,
body.catalogsearch-result-index .breadcrumbs {
    margin-top: 18px !important;
    margin-bottom: 26px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.catalog-category-view .page-title-wrapper,
body.catalogsearch-result-index .page-title-wrapper {
    margin-top: 0 !important;
    margin-bottom: 34px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.catalog-category-view .page-title,
body.catalogsearch-result-index .page-title {
    margin: 0 !important;
}

body.catalog-category-view .columns,
body.catalogsearch-result-index .columns {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.catalog-category-view .toolbar-products,
body.catalogsearch-result-index .toolbar-products {
    margin-top: 0 !important;
}

/* Mobile tighter again */
@media (max-width: 768px) {
    body.catalog-category-view .breadcrumbs,
    body.catalogsearch-result-index .breadcrumbs {
        margin-top: 12px !important;
        margin-bottom: 18px !important;
    }

    body.catalog-category-view .page-title-wrapper,
    body.catalogsearch-result-index .page-title-wrapper {
        margin-bottom: 24px !important;
    }

    body.catalog-category-view .page-main,
    body.catalogsearch-result-index .page-main {
        padding-top: 20px !important;
    }
}

/* NOBO CATEGORY TOP SPACING COMPACT END */

/* NOBO DESKTOP CATEGORY SPACING FIX START */
@media (min-width: 769px) {
    body.catalog-category-view .breadcrumbs,
    body.catalogsearch-result-index .breadcrumbs {
        margin-top: 14px !important;
        margin-bottom: 14px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body.catalog-category-view .page-title-wrapper,
    body.catalogsearch-result-index .page-title-wrapper {
        margin-top: 0 !important;
        margin-bottom: 18px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body.catalog-category-view .page-title,
    body.catalogsearch-result-index .page-title {
        margin: 0 !important;
    }

    body.catalog-category-view .columns,
    body.catalogsearch-result-index .columns {
        margin-top: -8px !important;
        padding-top: 0 !important;
    }

    body.catalog-category-view .sidebar-main,
    body.catalogsearch-result-index .sidebar-main,
    body.catalog-category-view .column.main,
    body.catalogsearch-result-index .column.main {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    body.catalog-category-view .toolbar-products,
    body.catalogsearch-result-index .toolbar-products {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
/* NOBO DESKTOP CATEGORY SPACING FIX END */

/* NOBO DESKTOP CATEGORY SPACING AGGRESSIVE FIX START */
@media (min-width: 769px) {
    body.catalog-category-view main.page-main,
    body.catalogsearch-result-index main.page-main,
    body.catalog-category-view .page-main,
    body.catalogsearch-result-index .page-main {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    body.catalog-category-view .breadcrumbs,
    body.catalogsearch-result-index .breadcrumbs {
        margin-top: 10px !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body.catalog-category-view .page-title-wrapper,
    body.catalogsearch-result-index .page-title-wrapper {
        margin-top: -42px !important;
        margin-bottom: 18px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body.catalog-category-view .page-title,
    body.catalogsearch-result-index .page-title {
        margin: 0 !important;
        padding: 0 !important;
    }

    body.catalog-category-view .columns,
    body.catalogsearch-result-index .columns {
        margin-top: -6px !important;
        padding-top: 0 !important;
    }

    body.catalog-category-view .sidebar-main,
    body.catalogsearch-result-index .sidebar-main,
    body.catalog-category-view .column.main,
    body.catalogsearch-result-index .column.main {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    body.catalog-category-view .toolbar-products,
    body.catalogsearch-result-index .toolbar-products {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
/* NOBO DESKTOP CATEGORY SPACING AGGRESSIVE FIX END */

/* NOBO RESTORE DESKTOP BREADCRUMB BUT KEEP COMPACT SPACING START */
@media (min-width: 769px) {
    body.catalog-category-view .breadcrumbs,
    body.catalogsearch-result-index .breadcrumbs {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        margin-top: 12px !important;
        margin-bottom: 18px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body.catalog-category-view .breadcrumbs ul,
    body.catalogsearch-result-index .breadcrumbs ul {
        margin: 0 !important;
        padding: 0 !important;
    }

    body.catalog-category-view .page-title-wrapper,
    body.catalogsearch-result-index .page-title-wrapper {
        margin-top: 0 !important;
        margin-bottom: 30px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body.catalog-category-view .columns,
    body.catalogsearch-result-index .columns {
        margin-top: -4px !important;
        padding-top: 0 !important;
    }
}
/* NOBO RESTORE DESKTOP BREADCRUMB BUT KEEP COMPACT SPACING END */

/* NOBO PRODUCT LIST PAGINATION SPACING START */

/* Add breathing room above bottom pagination / limiter */
body.catalog-category-view .products.wrapper,
body.catalogsearch-result-index .products.wrapper {
    margin-bottom: 42px !important;
}

body.catalog-category-view .products.wrapper + .toolbar-products,
body.catalogsearch-result-index .products.wrapper + .toolbar-products,
body.catalog-category-view .toolbar-products:last-child,
body.catalogsearch-result-index .toolbar-products:last-child {
    margin-top: 34px !important;
    padding-top: 18px !important;
    border-top: 1px solid #d8dde6 !important;
}

/* Keep desktop pagination nicely aligned */
@media (min-width: 769px) {
    body.catalog-category-view .toolbar-products .pages,
    body.catalogsearch-result-index .toolbar-products .pages {
        margin-top: 0 !important;
    }

    body.catalog-category-view .toolbar-products .limiter,
    body.catalogsearch-result-index .toolbar-products .limiter {
        margin-top: 0 !important;
    }
}

/* Mobile: a little more space before pagination */
@media (max-width: 768px) {
    body.catalog-category-view .products.wrapper,
    body.catalogsearch-result-index .products.wrapper {
        margin-bottom: 34px !important;
    }

    body.catalog-category-view .products.wrapper + .toolbar-products,
    body.catalogsearch-result-index .products.wrapper + .toolbar-products,
    body.catalog-category-view .toolbar-products:last-child,
    body.catalogsearch-result-index .toolbar-products:last-child {
        margin-top: 28px !important;
        padding-top: 18px !important;
    }
}

/* NOBO PRODUCT LIST PAGINATION SPACING END */

/* NOBO PAGINATION CENTRE + MOBILE RESTORE START */

/* Bottom toolbar: centre it neatly between the two divider lines */
body.catalog-category-view .products.wrapper + .toolbar-products,
body.catalogsearch-result-index .products.wrapper + .toolbar-products {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 48px !important;
    width: 100% !important;
    min-height: 74px !important;
    margin-top: 36px !important;
    margin-bottom: 0 !important;
    padding: 14px 0 !important;
    border-top: 1px solid #d8dde6 !important;
    border-bottom: 1px solid #d8dde6 !important;
    box-sizing: border-box !important;
}

/* Remove extra internal spacing */
body.catalog-category-view .products.wrapper + .toolbar-products .pages,
body.catalogsearch-result-index .products.wrapper + .toolbar-products .pages,
body.catalog-category-view .products.wrapper + .toolbar-products .limiter,
body.catalogsearch-result-index .products.wrapper + .toolbar-products .limiter {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
}

/* Pagination numbers */
body.catalog-category-view .products.wrapper + .toolbar-products .pages-items,
body.catalogsearch-result-index .products.wrapper + .toolbar-products .pages-items {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Limiter select alignment */
body.catalog-category-view .products.wrapper + .toolbar-products .limiter,
body.catalogsearch-result-index .products.wrapper + .toolbar-products .limiter {
    gap: 10px !important;
    white-space: nowrap !important;
}

body.catalog-category-view .products.wrapper + .toolbar-products .limiter select,
body.catalogsearch-result-index .products.wrapper + .toolbar-products .limiter select {
    height: 44px !important;
    min-width: 170px !important;
    margin: 0 !important;
}

/* Mobile: restore pagination and stack cleanly */
@media (max-width: 768px) {
    body.catalog-category-view .products.wrapper + .toolbar-products,
    body.catalogsearch-result-index .products.wrapper + .toolbar-products {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
        min-height: 112px !important;
        margin-top: 30px !important;
        padding: 18px 0 !important;
        border-top: 1px solid #d8dde6 !important;
        border-bottom: 1px solid #d8dde6 !important;
    }

    body.catalog-category-view .products.wrapper + .toolbar-products .pages,
    body.catalogsearch-result-index .products.wrapper + .toolbar-products .pages {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        order: 1 !important;
    }

    body.catalog-category-view .products.wrapper + .toolbar-products .pages-items,
    body.catalogsearch-result-index .products.wrapper + .toolbar-products .pages-items {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 9px !important;
        width: auto !important;
    }

    body.catalog-category-view .products.wrapper + .toolbar-products .limiter,
    body.catalogsearch-result-index .products.wrapper + .toolbar-products .limiter {
        display: flex !important;
        order: 2 !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
    }

    body.catalog-category-view .products.wrapper + .toolbar-products .limiter select,
    body.catalogsearch-result-index .products.wrapper + .toolbar-products .limiter select {
        width: 110px !important;
        min-width: 110px !important;
        height: 42px !important;
    }
}

/* NOBO PAGINATION CENTRE + MOBILE RESTORE END */

/* NOBO PRODUCT PAGE CLEANUP START */

/* Remove wishlist / compare on product pages */
body.catalog-product-view .product-social-links,
body.catalog-product-view .product-addto-links,
body.catalog-product-view .action.towishlist,
body.catalog-product-view .action.tocompare,
body.catalog-product-view a.towishlist,
body.catalog-product-view a.tocompare {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Also hide wishlist/compare if they appear on category/product cards */
body.catalog-category-view .action.towishlist,
body.catalog-category-view .action.tocompare,
body.catalogsearch-result-index .action.towishlist,
body.catalogsearch-result-index .action.tocompare {
    display: none !important;
}

/* SKU / stock text font fix */
body.catalog-product-view .product-info-main .stock,
body.catalog-product-view .product-info-main .stock span,
body.catalog-product-view .product-info-main .product.attribute.sku,
body.catalog-product-view .product-info-main .product.attribute.sku *,
body.catalog-product-view .product-info-main .sku,
body.catalog-product-view .product-info-main .sku * {
    font-family: "Mulish", Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

/* Tighten stock/SKU to add-to-cart spacing */
body.catalog-product-view .product-info-main .product-info-stock-sku {
    margin: 6px 0 14px !important;
    padding: 0 !important;
}

body.catalog-product-view .product-info-main .product-add-form {
    margin-top: 10px !important;
    padding-top: 0 !important;
}

body.catalog-product-view .product-info-main .box-tocart,
body.catalog-product-view .product-info-main .fieldset {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.catalog-product-view .product-info-main .box-tocart .fieldset {
    display: flex !important;
    align-items: flex-end !important;
    gap: 14px !important;
    margin: 0 !important;
}

body.catalog-product-view .product-info-main .box-tocart .field.qty {
    margin: 0 !important;
}

body.catalog-product-view .product-info-main .box-tocart .actions {
    flex: 1 1 auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Keep add to cart wide and neat */
body.catalog-product-view .product-info-main .box-tocart .action.tocart {
    width: 100% !important;
    height: 54px !important;
    border-radius: 10px !important;
    font-family: "Mulish", Arial, sans-serif !important;
    font-weight: 900 !important;
}

/* Mobile */
@media (max-width: 768px) {
    body.catalog-product-view .product-info-main .product-info-stock-sku {
        margin-bottom: 12px !important;
        text-align: left !important;
    }

    body.catalog-product-view .product-info-main .box-tocart .fieldset {
        gap: 10px !important;
    }
}

/* NOBO PRODUCT PAGE CLEANUP END */


/* NOBO ICON ONLY LOGO REPLACEMENT START */

/* Replace only the square N icon, keep NOBO BOARDS text */
.nobo-mobile-logo-icon,
.nobo-logo-icon,
.nobo-brand-icon,
.nobo-header-logo-icon,
.nobo-logo-mark,
.nobo-brand-mark {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border-radius: 12px !important;
    background: url('/media/wysiwyg/nobologo.png') no-repeat center center !important;
    background-size: contain !important;
    color: transparent !important;
    font-size: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
}

/* Keep text visible */
.nobo-mobile-logo-text,
.nobo-logo-text,
.nobo-brand-text,
.nobo-header-logo-text {
    opacity: 1 !important;
    visibility: visible !important;
    color: #050505 !important;
}

/* Mobile sizing */
@media (max-width: 768px) {
    .nobo-mobile-logo-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
    }
}

/* NOBO ICON ONLY LOGO REPLACEMENT END */


/* NOBO PRODUCT PAGE TITLE SIZE */
body.catalog-product-view .page-title-wrapper .page-title,
body.catalog-product-view .page-title-wrapper .page-title .base,
body.catalog-product-view .product-info-main .page-title-wrapper h1,
body.catalog-product-view .product-info-main .page-title-wrapper h1 span {
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}
/* NOBO PRODUCT PAGE TITLE SIZE END */


/* NOBO PRODUCT PAGE BULK DISCOUNT STYLING START */

body.catalog-product-view .product-info-main .prices-tier {
    margin: 22px 0 22px !important;
    padding: 18px !important;
    list-style: none !important;
    background: #fff7f2 !important;
    border: 1px solid rgba(254, 116, 43, 0.22) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06) !important;
    font-family: "Mulish", Arial, sans-serif !important;
}

body.catalog-product-view .product-info-main .prices-tier:before {
    content: "Bulk savings";
    display: flex;
    align-items: center;
    margin: 0 0 12px;
    color: #111827;
    font-family: "Mulish", Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

body.catalog-product-view .product-info-main .prices-tier .item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin: 0 0 9px !important;
    padding: 12px 14px !important;
    background: #ffffff !important;
    border: 1px solid #f0dfd7 !important;
    border-radius: 12px !important;
    color: #111827 !important;
    font-family: "Mulish", Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

body.catalog-product-view .product-info-main .prices-tier .item:last-child {
    margin-bottom: 0 !important;
}

body.catalog-product-view .product-info-main .prices-tier .item:hover {
    border-color: rgba(254, 116, 43, 0.45) !important;
    box-shadow: 0 8px 18px rgba(254, 116, 43, 0.08) !important;
}

body.catalog-product-view .product-info-main .prices-tier .price {
    color: #111827 !important;
    font-family: "Mulish", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.catalog-product-view .product-info-main .prices-tier .benefit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 8px !important;
    padding: 5px 9px !important;
    background: #005aaa !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    font-family: "Mulish", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

body.catalog-product-view .product-info-main .prices-tier strong {
    color: #ffffff !important;
    font-weight: 900 !important;
}

body.catalog-product-view .product-info-main .prices-tier .item > span,
body.catalog-product-view .product-info-main .prices-tier .item > div {
    font-family: "Mulish", Arial, sans-serif !important;
}

/* Mobile */
@media (max-width: 768px) {
    body.catalog-product-view .product-info-main .prices-tier {
        margin: 18px 0 20px !important;
        padding: 14px !important;
        border-radius: 14px !important;
    }

    body.catalog-product-view .product-info-main .prices-tier .item {
        display: block !important;
        padding: 12px !important;
        font-size: 13px !important;
    }

    body.catalog-product-view .product-info-main .prices-tier .benefit {
        margin: 8px 0 0 !important;
        width: fit-content !important;
    }
}

/* NOBO PRODUCT PAGE BULK DISCOUNT STYLING END */


/* NOBO PRODUCT PAGE BULK DISCOUNT HORIZONTAL TEST START */

body.catalog-product-view .product-info-main .prices-tier {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin: 22px 0 22px !important;
    padding: 18px !important;
    list-style: none !important;
    background: #fff7f2 !important;
    border: 1px solid rgba(254, 116, 43, 0.22) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06) !important;
    font-family: "Mulish", Arial, sans-serif !important;
}

body.catalog-product-view .product-info-main .prices-tier:before {
    content: "Bulk savings";
    grid-column: 1 / -1 !important;
    display: block !important;
    margin: 0 0 2px !important;
    color: #111827 !important;
    font-family: "Mulish", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}

body.catalog-product-view .product-info-main .prices-tier .item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 112px !important;
    margin: 0 !important;
    padding: 14px 10px !important;
    background: #ffffff !important;
    border: 1px solid #f0dfd7 !important;
    border-radius: 14px !important;
    color: #111827 !important;
    font-family: "Mulish", Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    text-align: center !important;
}

body.catalog-product-view .product-info-main .prices-tier .item:hover {
    border-color: rgba(254, 116, 43, 0.45) !important;
    box-shadow: 0 8px 18px rgba(254, 116, 43, 0.08) !important;
}

body.catalog-product-view .product-info-main .prices-tier .price {
    display: block !important;
    color: #111827 !important;
    font-family: "Mulish", Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
}

body.catalog-product-view .product-info-main .prices-tier .benefit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 6px 10px !important;
    background: #005aaa !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    font-family: "Mulish", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

body.catalog-product-view .product-info-main .prices-tier strong {
    color: #ffffff !important;
    font-weight: 900 !important;
}

@media (max-width: 900px) {
    body.catalog-product-view .product-info-main .prices-tier {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    body.catalog-product-view .product-info-main .prices-tier {
        grid-template-columns: 1fr !important;
        padding: 14px !important;
    }

    body.catalog-product-view .product-info-main .prices-tier .item {
        min-height: 96px !important;
    }
}

/* NOBO PRODUCT PAGE BULK DISCOUNT HORIZONTAL TEST END */


/* NOBO FILTER ACTIVE CHOICE X POSITION FIX START */

body.catalog-category-view .filter-current .items .item,
body.catalogsearch-result-index .filter-current .items .item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-left: 34px !important;
}

body.catalog-category-view .filter-current .items .item .action.remove,
body.catalogsearch-result-index .filter-current .items .item .action.remove {
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2 !important;
}

body.catalog-category-view .filter-current .items .item .filter-label,
body.catalogsearch-result-index .filter-current .items .item .filter-label {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

body.catalog-category-view .filter-current .items .item .filter-value,
body.catalogsearch-result-index .filter-current .items .item .filter-value {
    margin-left: auto !important;
    padding-left: 10px !important;
    font-weight: 900 !important;
}

/* NOBO FILTER ACTIVE CHOICE X POSITION FIX END */

/* NOBO LOGO TEXT GAP TIGHTEN START */

/* Desktop logo: move NOBO BOARDS text closer to icon */
.nobo-logo,
.nobo-brand,
.nobo-header-logo,
.nobo-brand-link {
    gap: 8px !important;
}

.nobo-logo-text,
.nobo-brand-text,
.nobo-header-logo-text {
    margin-left: -10px !important;
}

/* Mobile logo: move NOBO BOARDS text closer to icon */
.nobo-mobile-logo {
    gap: 0 !important;
}

.nobo-mobile-logo-text {
    margin-left: -10px !important;
}

/* NOBO LOGO TEXT GAP TIGHTEN END */

/* NOBO MOBILE LOGO GAP MICRO ADJUST START */
@media (max-width: 768px) {
    .nobo-mobile-logo-text {
        margin-left: -6px !important;
    }
}
/* NOBO MOBILE LOGO GAP MICRO ADJUST END */

/* NOBO LOGO WHOLE POSITION MICRO ADJUST START */

/* Desktop: move whole logo group 4px right */
@media (min-width: 769px) {
    .nobo-logo,
    .nobo-brand,
    .nobo-header-logo,
    .nobo-brand-link {
        transform: translateX(4px) !important;
    }
}

/* Mobile: move whole logo group 2px left */
@media (max-width: 768px) {
    .nobo-mobile-logo {
        transform: translateX(-2px) !important;
    }
}

/* NOBO LOGO WHOLE POSITION MICRO ADJUST END */

/* NOBO DESKTOP LOGO EXTRA 2PX RIGHT START */
@media (min-width: 769px) {
    .nobo-logo,
    .nobo-brand,
    .nobo-header-logo,
    .nobo-brand-link {
        transform: translateX(6px) !important;
    }
}
/* NOBO DESKTOP LOGO EXTRA 2PX RIGHT END */

/* NOBO LOGO EXTRA MICRO ADJUST START */

/* Desktop: was 6px right, now 8px right */
@media (min-width: 769px) {
    .nobo-logo,
    .nobo-brand,
    .nobo-header-logo,
    .nobo-brand-link {
        transform: translateX(8px) !important;
    }
}

/* Mobile: was 2px left, now 4px left */
@media (max-width: 768px) {
    .nobo-mobile-logo {
        transform: translateX(-4px) !important;
    }
}

/* NOBO LOGO EXTRA MICRO ADJUST END */


/* NOBO FOOTER LEGAL LINKS START */

.nobo-footer-legal-links {
    border-top: 1px solid rgba(255,255,255,0.16);
    margin-top: 28px;
    padding-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 700;
}

.nobo-footer-legal-links a {
    color: rgba(255,255,255,0.86) !important;
    text-decoration: none !important;
}

.nobo-footer-legal-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .nobo-footer-legal-links {
        gap: 12px;
        font-size: 12px;
        padding-left: 18px;
        padding-right: 18px;
        text-align: center;
    }
}

/* NOBO FOOTER LEGAL LINKS END */

/* NOBO FOOTER LEGAL LINKS MOVE UP 7PX START */
.nobo-footer-legal-links {
    transform: translateY(-7px) !important;
}
/* NOBO FOOTER LEGAL LINKS MOVE UP 7PX END */

/* NOBO CART COUNT BADGE START */

.nobo-cart-count-anchor {
    position: relative !important;
}

.nobo-cart-count-badge {
    position: absolute !important;
    top: -7px !important;
    left: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    border-radius: 999px !important;
    background: #ff6b2b !important;
    color: #ffffff !important;
    font-family: Mulish, Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 18px !important;
    text-align: center !important;
    box-shadow: 0 0 0 2px #ffffff !important;
    z-index: 20 !important;
}

@media (max-width: 768px) {
    .nobo-cart-count-badge {
        top: -6px !important;
        left: 18px !important;
        min-width: 17px !important;
        height: 17px !important;
        font-size: 10px !important;
        line-height: 17px !important;
    }
}

/* NOBO CART COUNT BADGE END */

/* NOBO FILTER SINGLE CLICK FIX START */

body.catalog-category-view .filter-options-title,
body.catalogsearch-result-index .filter-options-title {
    cursor: pointer !important;
}

body.catalog-category-view .filter-options-content,
body.catalogsearch-result-index .filter-options-content {
    display: none;
}

body.catalog-category-view .filter-options-content.nobo-filter-open,
body.catalogsearch-result-index .filter-options-content.nobo-filter-open {
    display: block !important;
}

/* NOBO FILTER SINGLE CLICK FIX END */

/* NOBO FILTER FIRST CLICK COMPATIBILITY FIX START */

/* Allow Magento's native active state to open the filter on first click */
body.catalog-category-view .filter-options-item.active .filter-options-content,
body.catalogsearch-result-index .filter-options-item.active .filter-options-content,
body.catalog-category-view .filter-options-item._active .filter-options-content,
body.catalogsearch-result-index .filter-options-item._active .filter-options-content,
body.catalog-category-view .filter-options-title[aria-expanded="true"] + .filter-options-content,
body.catalogsearch-result-index .filter-options-title[aria-expanded="true"] + .filter-options-content {
    display: block !important;
}

/* Keep our custom single-click state working too */
body.catalog-category-view .filter-options-title.nobo-filter-open + .filter-options-content,
body.catalogsearch-result-index .filter-options-title.nobo-filter-open + .filter-options-content,
body.catalog-category-view .filter-options-content.nobo-filter-open,
body.catalogsearch-result-index .filter-options-content.nobo-filter-open {
    display: block !important;
}

/* NOBO FILTER FIRST CLICK COMPATIBILITY FIX END */

/* NOBO 960PX HEADER AND DISCOUNT FIX START */

/*
   960px is an awkward tablet/desktop width.
   Keep the desktop header from crushing, and make bulk discount cards use 2 columns.
*/
@media (min-width: 900px) and (max-width: 1024px) {

    /* Header / nav: reduce crowding without changing desktop/mobile elsewhere */
    .nobo-desktop-header-only .nobo-header-main,
    .nobo-desktop-header-only .nobo-header-inner,
    .nobo-desktop-header-only .nobo-header-content {
        gap: 14px !important;
    }

    .nobo-desktop-header-only .nobo-logo,
    .nobo-desktop-header-only .nobo-brand,
    .nobo-desktop-header-only .nobo-header-logo,
    .nobo-desktop-header-only .nobo-brand-link {
        flex: 0 0 auto !important;
        max-width: 250px !important;
    }

    .nobo-desktop-header-only .nobo-main-nav,
    .nobo-desktop-header-only .nobo-nav,
    .nobo-desktop-header-only .nobo-category-nav,
    .nobo-desktop-header-only nav {
        white-space: nowrap !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .nobo-desktop-header-only .nobo-main-nav::-webkit-scrollbar,
    .nobo-desktop-header-only .nobo-nav::-webkit-scrollbar,
    .nobo-desktop-header-only .nobo-category-nav::-webkit-scrollbar,
    .nobo-desktop-header-only nav::-webkit-scrollbar {
        display: none !important;
    }

    .nobo-desktop-header-only .nobo-main-nav a,
    .nobo-desktop-header-only .nobo-nav a,
    .nobo-desktop-header-only .nobo-category-nav a,
    .nobo-desktop-header-only nav a {
        font-size: 13px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .nobo-desktop-header-only .nobo-header-actions,
    .nobo-desktop-header-only .nobo-actions,
    .nobo-desktop-header-only .nobo-account-cart {
        gap: 14px !important;
        flex: 0 0 auto !important;
    }

    /* Product page bulk discounts: 2 columns at 960px instead of cramped desktop layout */
    body.catalog-product-view .prices-tier,
    body.catalog-product-view .tier-prices,
    body.catalog-product-view .product-info-main .prices-tier {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    body.catalog-product-view .prices-tier .item,
    body.catalog-product-view .tier-prices .item,
    body.catalog-product-view .product-info-main .prices-tier .item {
        min-width: 0 !important;
        padding: 12px 10px !important;
    }
}

/* NOBO 960PX HEADER AND DISCOUNT FIX END */

/* FastSigns — override Luma orange buttons with blue */
.action.primary,
button.action.primary,
.action.tocart,
button.tocart,
.tocart.action,
#product-addtocart-button,
.product-info-main .action.primary,
.box-tocart .action.tocart {
    background: #005aaa !important;
    background-color: #005aaa !important;
    border-color: #005aaa !important;
    color: #fff !important;
}
.action.primary:hover,
button.action.primary:hover,
.action.tocart:hover,
button.tocart:hover,
#product-addtocart-button:hover,
.product-info-main .action.primary:hover {
    background: #003d7a !important;
    background-color: #003d7a !important;
    border-color: #003d7a !important;
}

/* High specificity tocart override */
body button.action.tocart.primary,
body .action.tocart.primary,
body #product-addtocart-button,
body .product-info-main button.tocart,
body .box-tocart button.tocart {
    background-color: #005aaa !important;
    border-color: #005aaa !important;
    color: #fff !important;
}
body button.action.tocart.primary:hover,
body .product-info-main button.tocart:hover {
    background-color: #003d7a !important;
    border-color: #003d7a !important;
}

/* FastSigns — force blue Add to Cart buttons everywhere */
button.action.tocart.primary,
button.tocart.primary,
.action.tocart.primary,
form[data-role="tocart-form"] button[type="submit"],
form[data-role="tocart-form"] button {
    background: #005aaa !important;
    background-color: #005aaa !important;
    border-color: #005aaa !important;
    color: #ffffff !important;
}
button.action.tocart.primary:hover,
button.tocart.primary:hover,
form[data-role="tocart-form"] button[type="submit"]:hover,
form[data-role="tocart-form"] button:hover {
    background: #003d7a !important;
    background-color: #003d7a !important;
    border-color: #003d7a !important;
}

/* FastSigns — fix login message position on category pages */
.catalog-category-view .messages,
.catalog-category-view .message-container,
.catalogsearch-result-index .messages {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    margin: 0 0 16px !important;
    grid-column: 1 / -1 !important;
}

/* FastSigns — force login message above category grid */
.catalog-category-view .page-main > .messages {
    display: block !important;
    width: 100% !important;
    margin: 16px 0 !important;
    grid-column: 1 / -1 !important;
    order: -1 !important;
}
.catalog-category-view .columns {
    display: grid !important;
}
.catalog-category-view .messages {
    order: -999 !important;
    grid-column: 1 / -1 !important;
}






/* FastSigns — position login message full width above grid */
.catalog-category-view .page-main > .messages {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    clear: both !important;
}
.catalog-category-view .page-main > .messages .message {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #e8f1f9 !important;
    border: 1px solid #005aaa !important;
    border-left: 4px solid #005aaa !important;
    color: #005aaa !important;
    padding: 12px 16px !important;
    border-radius: 4px !important;
    font-family: 'Mulish', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}
.catalog-category-view .page-main > .messages .message:before {
    display: none !important;
}
