/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/*CUSTOM DORIAN*/

#blockEmailSubscription_displayFooterBefore {
    padding: 50px 0;
}

:root {
    --pros-footer-bg: #313033; /* inverse-surface */
    --pros-footer-text: #f4eff4; /* inverse-on-surface */
    --pros-footer-title: #a8c7fa; /* inverse-primary */
    --pros-footer-title-2: #ffffff; /* on-tertiary */
    --pros-footer-link: #c4c6d0; /* secondary-fixed-dim */
    --pros-footer-link-hover: #ffffff;
    --pros-footer-border: #7d5260; /* tertiary */
    --pros-footer-copy: #cacaeb; /* tertiary-fixed-dim */
}
a:focus {
    outline: unset !important;
    outline-offset: unset !important;
}
.pros-footer {
    background-color: var(--pros-footer-bg);
    color: var(--pros-footer-text);
    padding-top: 3rem; /* py-12 */
    padding-bottom: 3rem;
    margin-top: auto;
    font-family: 'Inter', sans-serif;
}

.pros-footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .pros-footer__container {
        padding: 0 48px;
    }
}

.pros-footer__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    margin-bottom: 2rem; /* mb-8 */
}

@media (min-width: 768px) {
    .pros-footer__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pros-footer__wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pros-footer__col {
    display: flex;
    flex-direction: column;
}

.pros-footer__title {
    font-size: 18px; /* font-headline-md */
    font-weight: 700; /* font-bold */
    margin-top: 0;
    margin-bottom: 1rem; /* mb-4 */
    letter-spacing: -0.015em; /* tracking-tight */
    color: var(--pros-footer-title);
    text-transform: none;
}

.pros-footer__title--alt {
    font-size: 14px; /* text-nav-link */
    color: var(--pros-footer-title-2);
    text-transform: uppercase;
    letter-spacing: 0.05em; /* tracking-wider */
}

.pros-footer__text {
    font-size: 16px; /* body-md */
    color: var(--pros-footer-link);
    margin: 0 0 0.5rem 0; /* mb-2 */
    line-height: 30px;
}

.pros-footer__text a {
    color: var(--pros-footer-link) !important;
}
.pros-footer__text a:hover {
    color: var(--pros-footer-link-hover) !important;
}

.pros-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* space-y-3 */
}

.pros-footer__link {
    font-size: 16px; /* body-md */
    color: var(--pros-footer-link);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.pros-footer__link:hover {
    color: var(--pros-footer-link-hover);
    text-decoration: none;
}

.pros-footer__bottom {
    border-top: 1px solid var(--pros-footer-border);
    padding-top: 2rem; /* pt-8 */
    margin-top: 2rem; /* mt-8 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .pros-footer__bottom {
        flex-direction: row;
    }
}

.pros-footer__copy {
    font-size: 12px; /* label-sm */
    color: var(--pros-footer-copy);
    margin: 0;
}

/* =========================================
   HEADER STYLES (BEM)
   ========================================= */

:root {
    --pros-header-bg: #ffffff; /* surface-container-lowest */
    --pros-header-text: #1b1b1e; /* on-surface */
    --pros-header-primary: #003c90; /* primary */
    --pros-header-border: #c3c6d5; /* outline-variant */
    --pros-header-secondary: #5f5e61; /* secondary */
}

.pros-header {
    background-color: var(--pros-header-bg);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--pros-header-border);
    font-family: 'Inter', sans-serif;
}

.pros-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem; /* h-16 */
    padding: 0 16px; /* px-margin-mobile */
    max-width: 1440px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pros-header__container {
        padding: 0 48px; /* md:px-margin-desktop */
    }
}

/* Left part: Logo & Mobile Toggle */
.pros-header__left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0.5rem; /* gap-2 */
}

@media (min-width: 768px) {
    .pros-header__left {
        gap: 0;
    }
}

.pros-header__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem; /* h-10 */
    width: 2.5rem; /* w-10 */
    color: var(--pros-header-text);
    cursor: pointer;
    background: transparent;
    border: none;
    margin-left: -0.5rem; /* -ml-2 */
    transition: color 0.2s;
}

.pros-header__mobile-toggle:hover {
    color: var(--pros-header-primary);
}

@media (min-width: 768px) {
    .pros-header__mobile-toggle {
        display: none;
    }
}

.pros-header__logo-link {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--pros-header-text);
    text-decoration: none;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .pros-header__logo-link {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .pros-header__logo-link {
        font-size: 24px;
        margin-left: 0;
    }
}

.pros-header__logo {
    max-height: 50px; /* Optional constrain for image logo */
    margin-right: 10px;
    display: block; /* Shown if uploaded */
}

/* Center part: Nav */
.pros-header__center {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1 1 auto;
    gap: 24px; /* gap-gutter */
}

@media (min-width: 768px) {
    .pros-header__center {
        display: flex;
    }
}

/* Right part: Actions */
.pros-header__right {
    display: flex;
    align-items: center;
    gap: 1rem; /* gap-4 */
    flex: 0 0 auto;
    justify-content: flex-end;
}

.pros-header__trade-btn {
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pros-header-border);
    color: var(--pros-header-text);
    font-size: 12px; /* label-caps */
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    height: 2.5rem; /* h-10 */
    padding: 0 1rem; /* px-4 */
    border-radius: 0.25rem;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

@media (min-width: 768px) {
    .pros-header__trade-btn {
        display: flex;
    }
}

.pros-header__trade-btn:hover {
    color: var(--pros-header-primary);
    text-decoration: none;
}

.pros-header__actions {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* gap-1 */
}

@media (min-width: 768px) {
    .pros-header__actions {
        gap: 0.5rem; /* md:gap-2 */
    }
}

.pros-header__action-item {
    /* Wraps individual modules */
    display: inline-block;
}

.pros-header__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem; /* h-10 */
    width: 2.5rem; /* w-10 */
    color: var(--pros-header-text);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    padding: 0;
}

.pros-header__action-btn-inner, .pros-header__action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.pros-header__action-btn:hover {
    color: var(--pros-header-primary);
}

.pros-header__action-btn:hover .pros-header__action-link {
    color: var(--pros-header-primary);
    text-decoration: none;
}

.pros-header__cart-count {
    display: none; /* Ukryte zgodnie z makieta */
}

/* Main Menu */
.pros-header__nav-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

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

ul[data-depth="0"].pros-header__nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 24px; /* gap-gutter */
}

.pros-header__nav-item {
    position: relative;
}

ul[data-depth="0"] > .pros-header__nav-item {
    display: flex;
    align-items: center;
}

/* =========================================
   FLYOUT MENU OVERRIDE (DESKTOP)
   ========================================= */
@media (min-width: 768px) {
    /* 1. Reset the mega menu container to be a compact dropdown */
    #header .top-menu .popover.sub-menu {
        width: 280px;
        max-width: none;
        left: 0 !important;
        right: auto !important;
        padding: 0;
        border-radius: 4px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border: 1px solid #eaeaea;
    }
    
    /* 2. Level 1 list (depth 1) is a vertical column */
    #header .top-menu ul[data-depth="1"] {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* 3. Each item is full width */
    #header .top-menu ul[data-depth="1"] > li {
        width: 100%;
        position: relative; /* important for depth 2 positioning */
    }
    
    /* 4. Style the links */
    #header .top-menu ul[data-depth="1"] > li > a,
    #header .top-menu ul[data-depth="2"] > li > a {
        display: block;
        padding: 12px 20px;
        width: 100%;
        text-align: left;
        color: #434653;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: background-color 0.2s;
    }
    
    #header .top-menu ul[data-depth="1"] > li > a:hover,
    #header .top-menu ul[data-depth="2"] > li > a:hover {
        background-color: #f8f9fa;
        color: #003c90;
    }
    
    /* 5. Hide Level 2 popovers (depth 2) by default, position them to the right */
    #header .top-menu ul[data-depth="1"] > li > div.collapse {
        display: none !important;
        position: absolute;
        top: -1px; /* Align with parent border */
        left: 100%; /* Fly out to the right */
        width: 280px;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border: 1px solid #eaeaea;
        border-radius: 4px;
        z-index: 100;
        margin-left: 2px; /* Small gap to avoid accidental mouseout */
    }
    
    /* 6. Show Level 2 on hover of Level 1 item */
    #header .top-menu ul[data-depth="1"] > li:hover > div.collapse {
        display: block !important;
    }
    
    /* 7. Level 2 list (depth 2) is a vertical column */
    #header .top-menu ul[data-depth="2"] {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* 8. Show right arrow indicator ONLY for items that have children */
    /* PrestaShop renders a .hidden-md-up span for items with submenus */
    #header .top-menu ul[data-depth="1"] > li > a {
        padding-right: 40px; /* Make room for arrow */
        position: relative;
    }
    
    #header .top-menu ul[data-depth="1"] > li > a > .hidden-md-up {
        display: inline-block !important;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none; /* Let clicks pass through to the main link */
    }
    
    #header .top-menu ul[data-depth="1"] > li > a > .hidden-md-up .navbar-toggler {
        padding: 0;
        width: auto;
        height: auto;
        border: none;
        background: transparent;
    }
    
    #header .top-menu ul[data-depth="1"] > li > a > .hidden-md-up .material-icons.remove {
        display: none !important;
    }
    
    /* The default icon is expand_more (down arrow). Rotate it -90deg to point right */
    #header .top-menu ul[data-depth="1"] > li > a > .hidden-md-up .material-icons.add {
        display: block !important;
        color: #888;
        transform: rotate(-90deg);
        font-size: 20px;
        transition: transform 0.2s;
    }
}

.pros-header__nav-link {
    font-size: 15px; /* Slightly larger based on mockup */
    font-weight: 600; /* Semibold to match mockup */
    letter-spacing: 0.02em;
    color: var(--pros-header-secondary) !important; /* Force override classic theme */
    text-decoration: none !important;
    position: relative;
    padding: 4px 0; /* Tight padding to control underline gap */
    transition: color 0.2s ease;
    display: inline-block;
}

/* Underline pseudo-element for perfect alignment */
.pros-header__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px; /* Gap between text and underline */
    width: 100%;
    height: 2px;
    background-color: var(--pros-header-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Active and hover states */
#_desktop_top_menu .pros-header__nav-item.current > .pros-header__nav-link,
#_desktop_top_menu .pros-header__nav-item:hover > .pros-header__nav-link {
    color: var(--pros-header-primary) !important;
}

#_desktop_top_menu .pros-header__nav-item.current > .pros-header__nav-link::after,
#_desktop_top_menu .pros-header__nav-item:hover > .pros-header__nav-link::after {
    opacity: 1;
}

/* Remove underline from submenu items */
#_desktop_top_menu .popover .pros-header__nav-link::after {
    display: none;
}
#_desktop_top_menu .popover .pros-header__nav-link {
    font-weight: 500;
}

/* Search Overlay Styles */
.pros-header__action-item--search {
    position: static; /* Force static to break out of relative parents if any */
    width: auto !important; /* Nadpisanie rdzennego CSS motywu Classic, który ustawia szerokość */
    min-width: 0 !important;
}

.pros-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Dopasuje się do sticky header */
    background: var(--pros-header-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pros-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.pros-search-overlay__container {
    width: 100%;
    max-width: 1440px;
    padding: 0 16px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pros-search-overlay__container {
        padding: 0 48px;
    }
}

.pros-search-overlay__form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 3rem;
    border-bottom: 2px solid var(--pros-header-primary);
}

.pros-search-overlay__icon {
    color: var(--pros-header-primary);
    font-size: 24px;
    margin-right: 8px;
}

.pros-search-overlay__form input[type="text"] {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: var(--pros-header-text);
    padding: 0;
}

.pros-search-overlay__close {
    background: transparent;
    border: none;
    color: var(--pros-header-text);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.pros-search-overlay__close:hover {
    color: var(--pros-header-primary);
}

/* =========================================
   SUBMENU / DROPDOWN OVERRIDES
   ========================================= */
@media (min-width: 768px) {
    /* Set parent to relative so dropdown anchors to it */
    .pros-header__nav-item {
        position: relative !important;
    }

    /* Force desktop menu wrapper to static to allow children to be relative */
    #_desktop_top_menu {
        position: static;
    }

    /* Reset PrestaShop Mega Menu behavior */
    #_desktop_top_menu .popover.sub-menu {
        width: max-content;
        min-width: 260px;
        max-width: 400px;
        left: -10px !important; /* Anchor to the left of the .pros-header__nav-item */
        right: auto !important;
        top: 100% !important; /* Just below the nav item */
        margin-top: 0;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 8px 0;
        border: 1px solid var(--pros-header-border);
        background: var(--pros-header-bg);
    }

    /* Reset list to vertical column */
    #_desktop_top_menu .popover.sub-menu .top-menu {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    /* Reset list items */
    #_desktop_top_menu .popover.sub-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* Submenu links */
    #_desktop_top_menu .popover.sub-menu .pros-header__nav-link,
    #_desktop_top_menu .popover.sub-menu a.dropdown-item {
        padding: 10px 24px;
        display: block;
        width: 100%;
        text-transform: none;
        font-weight: 400;
        border: none;
        color: var(--pros-header-text);
        text-align: left;
    }

    #_desktop_top_menu .popover.sub-menu .pros-header__nav-link:hover,
    #_desktop_top_menu .popover.sub-menu a.dropdown-item:hover {
        background: rgba(0,0,0,0.03);
        color: var(--pros-header-primary);
    }
}

/* =========================================
   MOBILE MENU SIDEBAR STYLES
   ========================================= */

.pros-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
}

.pros-mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    animation: prosFadeIn 0.3s ease forwards;
}

.pros-mobile-menu__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: var(--pros-header-bg);
    box-shadow: 2px 0 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    animation: prosSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow-y: auto;
}

.pros-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px;
    border-bottom: 1px solid var(--pros-header-border);
}

.pros-mobile-menu__close {
    background: transparent;
    border: none;
    color: var(--pros-header-text);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: -8px;
}

.pros-mobile-menu__close:hover {
    color: var(--pros-header-primary);
}

/* Reset mobile menu list */
#_mobile_top_menu .pros-header__nav-list,
#_mobile_top_menu .top-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
    height: auto;
    gap: 0;
}

#_mobile_top_menu .pros-header__nav-item {
    display: block;
    height: auto;
    border-bottom: 1px solid var(--pros-header-border);
}

#_mobile_top_menu .pros-header__nav-link {
    display: block;
    text-align: left;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--pros-header-text) !important;
}

#_mobile_top_menu .popover .pros-header__nav-link {
    padding-left: 32px !important;
    font-weight: 400 !important;
    background: rgba(0,0,0,0.01);
}

#_mobile_top_menu .popover .popover .pros-header__nav-link {
    padding-left: 48px !important;
}

#_mobile_top_menu .pros-header__nav-link::after {
    display: none;
}

#_mobile_top_menu .collapse-icons {
    padding: 0 16px;
    cursor: pointer;
}

/* Ensure mobile actions in header are flex */
.pros-mobile-action {
    display: flex;
    align-items: center;
}

@keyframes prosFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes prosSlideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* =========================================
   PRODUCT PAGE (BEM)
   ========================================= */

.pros-product-divider {
    border: 0;
    border-top: 1px solid var(--pros-prod-border);
    margin: 24px 0;
}

/* Ukrycie domyślnych strzałek w type="number" */
.pros-product-cart__qty-input::-webkit-outer-spin-button,
.pros-product-cart__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-quantity .add, .product-quantity .qty {
    margin-bottom: 0 !important;
}
.pros-product-cart__qty-input[type=number] {
  -moz-appearance: textfield;
}

/* Ukrycie social sharing */
.social-sharing {
    display: none !important;
}

/* Tweak dla touchspin - wymuszenie układu poziomego mimo verticalbuttons w JS */
.bootstrap-touchspin {
    position: relative;
    display: flex !important;
    align-items: center;
    border: 1px solid var(--pros-prod-border) !important;
    height: 48px;
    background: #fff;
    padding: 0 40px;
    width: 100%;
}

.bootstrap-touchspin input.form-control,
.bootstrap-touchspin input.pros-product-cart__qty-input {
    text-align: center;
    border: none !important;
    box-shadow: none !important;
    height: 100%;
    width: 100%;
    padding: 0;
    background: transparent;
}

.bootstrap-touchspin .input-group-btn-vertical {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center;
    margin: 0;
    padding: 0;
}

.bootstrap-touchspin .bootstrap-touchspin-down,
.bootstrap-touchspin .bootstrap-touchspin-up {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    width: 40px;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: auto;
    z-index: 10;
    color: #1a1a1a;
    cursor: pointer;
}

.bootstrap-touchspin .bootstrap-touchspin-down {
    order: 1 !important; /* Wymuszenie minusa na pierwszą pozycję (lewo) */
}

.bootstrap-touchspin .bootstrap-touchspin-up {
    order: 2 !important; /* Wymuszenie plusa na drugą pozycję (prawo) */
}

/* Category Hero Banner Fix */
.pros-category-hero {
    margin-bottom: 24px;
}

/* Fix product miniature add to cart form margin */
.product-miniature .add-to-cart-or-refresh {
    margin: 0;
}

/* ---------------------------------
   Category Hero Banner 
--------------------------------- */
.pros-category-hero {
    width: 100%;
    background-color: #fcfcfc;
    padding: 32px 16px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 32px;
}
.pros-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 768px) {
    .pros-hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 32px;
    }
}
.pros-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 700;
    color: #1b1b1e;
    margin-bottom: 16px;
    text-transform: none;
}
@media (min-width: 768px) {
    .pros-hero-title {
        font-size: 48px;
        letter-spacing: -0.02em;
    }
}
.pros-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgb(67, 70, 83);
    margin-bottom: 24px;
    max-width: 600px;
    line-height: 24px;
    letter-spacing: 0.16px;
}
/* Override theme.css and inline classes pasted in editor */
.pros-hero-desc * {
    color: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    font-size: inherit !important;
}
.pros-hero-desc p {
    margin-bottom: 12px;
}
.pros-hero-desc p:last-child {
    margin-bottom: 0;
}
.pros-hero-desc p:empty {
    display: none;
}
.pros-hero-desc ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 12px;
}
.pros-hero-desc li {
    margin-bottom: 4px;
}
.pros-hero-btn {
    font-family: 'Inter', sans-serif;
    border: 1px solid #A1A1AA;
    background: transparent;
    color: #1b1b1e;
    height: 40px;
    padding: 0 16px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    font-size: 14px;
    text-decoration: none;
}
.pros-hero-btn:hover {
    border-color: #003c90; /* primary */
    color: #003c90;
}
.pros-hero-img-wrapper {
    height: 320px;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}
.pros-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------
   Product List View 
--------------------------------- */
.pros-product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pros-product-list-item {
    font-family: 'Inter', sans-serif;
    background: #fcfcfc;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.2s;
}
@media (min-width: 768px) {
    .pros-product-list-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px;
        gap: 0;
    }
}
.pros-product-list-item:hover {
    background: #f4f4f4;
}
.pros-product-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-grow: 1;
}
@media (min-width: 768px) {
    .pros-product-left {
        align-items: center;
    }
}
.pros-product-thumb {
    width: 64px;
    height: 64px;
    background: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    flex-shrink: 0;
    overflow: hidden;
}
.pros-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.pros-product-info {
    display: flex;
    flex-direction: column;
}
.pros-product-sku {
    font-size: 12px;
    line-height: 1.2;
    color: #5f5e61;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.pros-product-name {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #1b1b1e;
    margin: 4px 0;
}
.pros-product-name a {
    color: inherit;
    text-decoration: none;
}
.pros-product-dims {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 500;
    color: rgb(67, 70, 83);
    margin-top: 4px;
}
.pros-product-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
    .pros-product-right {
        width: auto;
        justify-content: flex-end;
        padding-top: 0;
        border-top: none;
        padding-right: 8px;
        gap: 24px;
    }
}
.pros-product-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.pros-stock {
    font-size: 11px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.pros-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.pros-stock-in { color: #16a34a; }
.pros-stock-in .pros-dot { background: #16a34a; }
.pros-stock-warn { color: #f59e0b; }
.pros-stock-warn .pros-dot { background: #f59e0b; }
.pros-stock-out { color: #dc2626; }
.pros-stock-out .pros-dot { background: #dc2626; }
.pros-product-price {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #1b1b1e;
    margin-top: 4px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pros-regular-price {
    font-size: 14px;
    text-decoration: line-through;
    color: rgb(67, 70, 83);
    font-weight: 400;
}
.pros-price-tax {
    font-size: 11px;
    line-height: 1.2;
    color: #5f5e61;
    font-weight: 500;
    text-transform: none;
}
.pros-add-to-cart {
    margin: 0;
}
.pros-qty-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 4px;
    background: #fff;
}
.pros-qty-input {
    width: 48px;
    height: 32px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 400;
    padding: 0;
    -moz-appearance: textfield;
}
.pros-qty-input::-webkit-outer-spin-button,
.pros-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.pros-qty-input:focus {
    outline: none;
}
.pros-cart-btn {
    font-family: 'Inter', sans-serif;
    background: #003c90; /* Primary */
    color: #fff;
    height: 32px;
    padding: 0 16px;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}
.pros-cart-btn:hover {
    background: #00419c; /* on-primary-fixed-variant */
}
.pros-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}


/* Products Top Bar */
.pros-products-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
}
.pros-products-found p {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: rgb(67, 70, 83);
}
.pros-sort-container {
    display: flex;
    align-items: center;
}
.pros-sort-by-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pros-sort-by-label {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
    color: #5f5e61;
}
.pros-sort-btn {
    font-family: 'Inter', sans-serif;
    border: 1px solid #c3c6d5; /* outline-variant */
    background: #fff;
    padding: 4px 8px 4px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1b1b1e;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    cursor: pointer;
}
.pros-sort-btn:hover {
    border-color: #999;
}
.pros-sort-selected-text {
    font-weight: 500;
}

/* =========================================
   STOCK INDICATOR (BEM)
   ========================================= */
.pros-product-stock-wrapper {
    margin-bottom: 4px;
}
.pros-stock {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
}
.pros-stock--in {
    color: #166534;
}
.pros-stock--out {
    color: #dc2626;
}
.pros-stock__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.pros-stock__dot--in {
    background-color: #166534;
}
.pros-stock__dot--out {
    background-color: #dc2626;
}

/* Hide default category tree on category page to match mockup */
#category .block-categories {
    display: none;
}

/* Light background for wrapper to make cards pop */
#wrapper {
    background-color: #f8f9fa;
}

/* Remove default wrapper padding only on pages with hero banners or custom spacing */
#index #wrapper, #category #wrapper, #product #wrapper {
    padding-top: 0 !important;
}
#wrapper .breadcrumb {
    background-color: transparent;
}

/* =========================================
   BREADCRUMBS (BEM)
   ========================================= */
.pros-breadcrumb-wrapper {
    width: 100%;
    background-color: #fbf8fc;
    border-bottom: 1px solid #c3c6d5;
    padding: 16px;
    font-family: 'Inter', sans-serif;
}
@media (min-width: 768px) {
    .pros-breadcrumb-wrapper {
        padding: 16px 48px;
    }
}
.pros-breadcrumb-container {
    max-width: 1440px;
    margin: 0 auto;
}
.pros-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5f5e61;
}
.pros-breadcrumb__link {
    color: #5f5e61;
    text-decoration: none;
    transition: color 0.2s;
}
.pros-breadcrumb__link:hover {
    color: #003c90; /* primary */
}
.pros-breadcrumb__separator {
    color: #5f5e61;
}
.pros-breadcrumb__current {
    color: #1b1b1e;
}

.bootstrap-touchspin .bootstrap-touchspin-down i,
.bootstrap-touchspin .bootstrap-touchspin-up i {
    display: none !important;
}

.bootstrap-touchspin .bootstrap-touchspin-down::after {
    content: "−";
    font-size: 24px;
    line-height: 1;
    display: block;
}

.bootstrap-touchspin .bootstrap-touchspin-up::after {
    content: "+";
    font-size: 24px;
    line-height: 1;
    display: block;
}

/* Ukrycie przycisku wishlist wewnątrz nowego bloku */
.pros-product-cart__quantity > *:not(.qty):not(.add):not(.pros-product-cart__qty-wrapper):not(.pros-product-cart__btn-wrapper) {
    display: none !important;
}

/* =========================================
   EXTRACTED INLINE STYLES (BEM)
   ========================================= */

.pros-product-prices__ex-vat {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--pros-prod-text-secondary);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-left: 12px;
}

.pros-product-prices__tax-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #434653;
    margin-top: 4px;
    letter-spacing: 0.01em;
}

.pros-product-cart__box {
    background-color: var(--pros-prod-bg);
    border: 1px solid var(--pros-prod-border);
    padding: 16px;
    margin-bottom: 24px;
}

.pros-product-cart__label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--pros-prod-text);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pros-product-cart__quantity {
    display: flex;
    gap: 16px;
}

.pros-product-cart__qty-wrapper {
    flex: 0 0 120px;
}

.pros-product-cart__btn-wrapper {
    flex-grow: 1;
}

.pros-product-cart__btn-add {
    width: 100%;
    height: 48px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.pros-product-cart__btn-icon {
    font-size: 20px;
    margin-right: 8px;
}

.pros-product-guarantees {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pros-prod-text-secondary);
}

.pros-product-guarantees__item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pros-product-guarantees__icon {
    font-size: 16px;
}

.pros-product-hero__stock-badge--out {
    background-color: #fef2f2;
    color: #dc2626;
}

:root {
    --pros-prod-primary: #003c90;
    --pros-prod-primary-hover: #00419c;
    --pros-prod-surface: #fbf8fc;
    --pros-prod-surface-low: #f6f2f7;
    --pros-prod-text: #1b1b1e;
    --pros-prod-text-secondary: #5f5e61;
    --pros-prod-border: #c3c6d5;
    --pros-prod-success: #166534;
}

.pros-product {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 16px;
}

@media (min-width: 768px) {
    .pros-product {
        padding: 48px;
    }
}

.pros-product-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .pros-product-hero {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }
    
    .pros-product-hero__left {
        position: sticky;
        top: 96px;
    }
}

/* Reset base PrestaShop floats */
.pros-product-hero__left,
.pros-product-hero__right {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
}

.pros-product-hero__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.pros-product-hero__title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--pros-prod-text);
    margin: 0;
    text-transform: none;
    letter-spacing: -0.015em;
}

@media (min-width: 768px) {
    .pros-product-hero__title {
        font-size: 48px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }
}

.pros-product-hero__badges {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

@media (min-width: 576px) {
    .pros-product-hero__badges {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

.pros-product-hero__sku {
    font-family: monospace;
    font-size: 14px;
    color: var(--pros-prod-text-secondary);
    background: var(--pros-prod-surface-low);
    padding: 4px 8px;
    border: 1px solid var(--pros-prod-border);
    white-space: nowrap;
}

.pros-product-hero__stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--pros-prod-success);
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
}

/* Prices */
.pros-product-prices {
    margin-bottom: 24px;
}

.pros-product-prices__container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pros-product-prices__current {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pros-product-prices__value {
    font-family: 'Inter', sans-serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--pros-prod-primary) !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
}

@media (min-width: 768px) {
    .pros-product-prices__value {
        font-size: 48px !important;
        letter-spacing: -0.02em !important;
    }
}

.pros-product-prices__tax-label,
.pros-product-prices__tax-excl {
    font-size: 14px;
    color: var(--pros-prod-text-secondary) !important;
    margin: 0 !important;
}

/* Actions & Forms */
.pros-product-actions {
    margin-top: 24px;
    /*padding-top: 24px;*/
    /*border-top: 1px solid var(--pros-prod-border);*/
}

.pros-product-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Variants */
.pros-product-variants {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pros-product-variants__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 !important;
}

.pros-product-variants__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--pros-prod-text) !important;
    margin: 0 !important;
    text-align: left;
    width: 100% !important;
}

.pros-product-variants__select {
    width: 100% !important;
    max-width: 100% !important;
    height: 48px !important;
    border: 1px solid var(--pros-prod-border) !important;
    background-color: var(--pros-prod-surface-low) !important;
    border-radius: 0 !important;
    padding: 0 16px !important;
    box-shadow: none !important;
}

/* Colors and Radio lists */
.pros-product-variants__color-list,
.pros-product-variants__radio-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
}

.pros-product-variants__color-item,
.pros-product-variants__radio-item {
    margin: 0 !important;
    float: none !important;
}

.pros-product-variants__color {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 2px solid transparent !important;
    box-shadow: 0 0 0 1px var(--pros-prod-border) !important;
    margin: 0 !important;
}

.pros-product-variants__color-item input:checked + .pros-product-variants__color {
    border-color: var(--pros-prod-primary) !important;
    box-shadow: 0 0 0 2px var(--pros-prod-primary) !important;
}

/* Cart */
.pros-product-cart {
    margin-top: 24px;
}

.pros-product-cart__quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pros-product-cart__qty-wrapper {
    width: 120px !important;
    height: 48px !important;
    margin: 0 !important;
}

.pros-product-cart__qty-wrapper .bootstrap-touchspin {
    height: 100% !important;
    display: flex !important;
    align-items: center;
    border: 1px solid var(--pros-prod-border);
    background: #fff;
    border-radius: 4px;
}

.pros-product-cart__qty-input {
    height: 46px !important;
    border: none !important;
    text-align: center !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 40px !important;
    flex-grow: 1;
}

.pros-product-cart__btn-add {
    flex: 1;
    height: 48px !important;
    background: var(--pros-prod-primary) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: background 0.2s !important;
    margin: 0 !important;
}

.pros-product-cart__btn-add:hover {
    background: var(--pros-prod-primary-hover) !important;
}

/* Tabs */
.pros-product-tabs {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--pros-prod-border);
}

.pros-product-tabs__nav {
    display: flex;
    gap: 32px;
    border-bottom: 2px solid var(--pros-prod-surface-low) !important;
    margin-bottom: 32px !important;
}

.pros-product-tabs__nav .nav-item {
    margin: 0 !important;
}

.pros-product-tabs__nav .nav-link {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--pros-prod-text-secondary) !important;
    padding: 16px 0 !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -2px !important;
    background: transparent !important;
}

.pros-product-tabs__nav .nav-link.active {
    color: var(--pros-prod-primary) !important;
    border-bottom-color: var(--pros-prod-primary) !important;
}

.pros-product-tabs__content {
    font-size: 16px;
    line-height: 1.5;
    color: var(--pros-prod-text);
}

/* =========================================
   FACETED SEARCH (BEM)
   ========================================= */
#left-column .block-categories {
    display:none;
}
.pros-facets-container {
    font-family: 'Inter', sans-serif;
}
@media (min-width: 768px) {
    .pros-facets-container {
        background: #fff;
        border: 1px solid #e5e5e5;
        padding: 24px;
        border-radius: 4px;
    }
}
@media (max-width: 767px) {
    #category #left-column #search_filters_wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Products Top Bar */
.pros-products-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 24px;
    background: #fff;
    gap: 12px;
}
@media (min-width: 768px) {
    .pros-products-top {
        padding: 12px 24px;
        flex-wrap: nowrap;
    }
}
.pros-products-found p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #434653;
}
.pros-sort-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pros-sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #c3c6d5;
    border-radius: 4px;
    font-size: 14px;
    color: #1b1b1e;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
.pros-sort-btn:hover {
    border-color: #003c90;
}
.pros-sort-menu {
    padding: 8px 0;
    margin: 4px 0 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
}
.pros-sort-menu a.select-list {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #434653;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    line-height: 1.5;
}
.pros-sort-menu a.select-list:hover {
    background: #f5f5f5;
    color: #003c90;
}
.pros-sort-menu a.select-list.current {
    font-weight: 600;
    color: #003c90;
    background: #f0f6ff;
}
.pros-products-top .showing {
    flex: 1 1 100%;
    margin-top: 8px;
    color: #434653;
    font-size: 13px;
}
.pros-facets-header {
    border-bottom: 1px solid #c3c6d5;
    padding-bottom: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pros-facets-title {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b1e;
    margin: 0;
}
.pros-facets-toggle {
    display: none;
}
.pros-facet-group {
    margin-bottom: 24px;
}
.pros-facet-group:not(:last-child) {
    border-bottom: 1px solid #c3c6d5;
    padding-bottom: 24px;
}
#search_filters .facet.clearfix {
    padding-bottom: 10px;
    box-shadow: none;
    background: transparent;
}
#search_filters .facet .title {
    padding: 0;
}
.pros-facet-label {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b1e;
    margin: 0;
    letter-spacing: 0.05em;
}
.pros-facet-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 16px;
}
.pros-facet-toggler {
    color: #434653;
    display: flex;
    align-items: center;
}
@media (min-width: 768px) {
    .pros-facet-title-wrapper {
        cursor: default;
    }
    .pros-facet-toggler {
        display: none !important;
    }
}
.pros-facet-toggler i {
    font-size: 18px;
}
.pros-facet-title-wrapper[aria-expanded="true"] .add {
    display: none;
}
.pros-facet-title-wrapper[aria-expanded="false"] .remove,
.pros-facet-title-wrapper:not([aria-expanded="true"]) .remove {
    display: none;
}
.pros-facet-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#search_filters .facet .facet-label.pros-facet-item,
#search_filters_brands .facet .facet-label.pros-facet-item,
#search_filters_suppliers .facet .facet-label.pros-facet-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    /*margin: 0 !important;*/
    cursor: pointer;
}
.pros-facet-link,
#search_filters .facet .facet-label a.pros-facet-link,
#search_filters_brands .facet .facet-label a.pros-facet-link,
#search_filters_suppliers .facet .facet-label a.pros-facet-link {
    font-size: 14px;
    color: #434653;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    display: block !important;
    /*margin: 0 !important;*/
    padding: 0 !important;
}
.pros-facet-link:hover,
#search_filters .facet .facet-label a.pros-facet-link:hover {
    color: #003c90;
    text-decoration: none;
}
.pros-facet-link .magnitude {
    display: none !important;
}

/* Custom Checkbox */
.pros-custom-checkbox {
    position: relative;
    top: 4px !important; /* Override top: -7px from theme.css */
    width: 18px;
    height: 18px;
    border: 1px solid #c3c6d5;
    border-radius: 2px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pros-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.pros-custom-checkbox span {
    display: none !important;
}

/* Checked State using PS .active class */
.pros-facet-item.active .pros-custom-checkbox {
    background-color: #003c90;
    border-color: #003c90;
}
.pros-facet-item.active .pros-custom-checkbox::after {
    content: '';
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}
.pros-facet-item.active .pros-facet-link {
    color: #003c90;
}

/* =========================================
   MAIN MENU (TOP MENU)
   ========================================= */
.top-menu a,
#mobile_top_menu_wrapper .top-menu a {
    font-family: 'Inter', sans-serif !important;
}

/* Desktop 1st level items */
#top-menu > li > a.dropdown-item {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1b1b1e;
    text-transform: none;
}

#top-menu > li > a.dropdown-item:hover {
    color: #003c90;
}

/* Submenu items */
#top-menu .sub-menu a.dropdown-item,
.popover.sub-menu a.dropdown-item {
    font-size: 14px;
    font-weight: 400;
    color: #434653;
}

#top-menu .sub-menu a.dropdown-item:hover,
.popover.sub-menu a.dropdown-item:hover {
    color: #003c90;
}

/* =========================================
   CART BADGE
   ========================================= */
.pros-header__cart-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background-color: #003c90;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    min-width: 16px;
    height: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.inactive .pros-header__cart-count {
    display: none !important;
}

/* =========================================
   FAQ SECTION (pros_faq)
   ========================================= */
.pros-faq-section {
    padding: 64px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    margin-top: 25px;
}

.pros-faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #1b1b1e;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.pros-faq-accordion {
    border-top: 1px solid #e5e5e5;
}

.pros-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.pros-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.pros-faq-header:hover .pros-faq-question {
    color: #003c90;
}

.pros-faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b1e;
    margin: 0;
    padding-right: 24px;
    line-height: 1.4;
    transition: color 0.2s;
}

.pros-faq-icon {
    font-size: 24px;
    color: #003c90;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.pros-faq-header[aria-expanded="true"] .pros-faq-icon {
    transform: rotate(180deg);
}

.pros-faq-body {
    padding-bottom: 24px;
    font-size: 15px;
    font-weight: 400;
    color: #434653;
    line-height: 1.6;
}

/* Ensure smooth collapse transition */
.pros-faq-item .collapse {
    transition: height 0.3s ease;
}

/* =========================================
   INTERNAL PAGES SPACING
   ========================================= */
body:not(#index):not(#category):not(#product) #wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* =========================================
   TOPBAR (displayNav1)
   ========================================= */
.pros-topbar {
    background-color: #f4f5f7;
    border-bottom: 1px solid #e1e3e8;
    padding: 6px 0;
    font-size: 13px;
    color: #555;
}

.pros-topbar__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.pros-topbar__contact {
    display: flex;
    align-items: center;
    gap: 16px;
}
.pros-topbar__phone {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
}
.pros-topbar__phone:hover {
    color: #0f52ba;
}
.pros-topbar__quote-btn {
    background-color: #0f52ba;
    color: #ffffff !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.pros-topbar__quote-btn:hover {
    background-color: #0a3d8f;
    color: #ffffff;
}

@media (min-width: 768px) {
    .pros-topbar__container {
        padding: 0 48px;
    }
}

.pros-topbar__container .language-selector-wrapper,
.pros-topbar__container .currency-selector-wrapper {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.pros-topbar__container .language-selector,
.pros-topbar__container .currency-selector {
    margin: 0;
    display: flex;
    align-items: center;
}

.pros-topbar__container select.link,
.pros-topbar__container button.dropdown-toggle,
.pros-topbar__container .language-selector-wrapper select {
    background: transparent;
    border: none;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    padding: 4px 8px;
    font-weight: 500;
    outline: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pros-topbar__container select.link:hover,
.pros-topbar__container button.dropdown-toggle:hover {
    color: #003c90;
}

.pros-topbar__container .expand-more {
    font-size: 16px;
    vertical-align: middle;
}

.pros-topbar__container .dropdown-menu {
    margin-top: 0;
    font-size: 13px;
    min-width: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e1e3e8;
    border-radius: 4px;
}

.pros-topbar__container .dropdown-item {
    padding: 6px 12px;
}

/* =========================================
   PRODUCT FEATURES TABLE (Data Sheet)
   ========================================= */
.product-features .data-sheet {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    margin: 1rem 0 2rem 0 !important;
    padding: 0 !important;
    border: 1px solid #e1e3e8 !important;
    border-bottom: none !important;
    border-radius: 4px !important;
    background-color: #fff !important;
    overflow: hidden;
}

.product-features .data-sheet dt.name,
.product-features .data-sheet dd.value {
    display: flex !important;
    align-items: center !important;
    padding: 16px 24px !important;
    margin: 0 !important;
    border-bottom: 1px solid #e1e3e8 !important;
    min-height: 54px !important;
    box-sizing: border-box !important;
    font-family: 'Inter', sans-serif !important;
}

.product-features .data-sheet dt.name {
    flex: 0 0 35% !important;
    max-width: 35% !important;
    font-weight: 600 !important;
    color: #222 !important;
    border-right: 1px solid #e1e3e8 !important;
    font-size: 15px !important;
}

.product-features .data-sheet dd.value {
    flex: 0 0 65% !important;
    max-width: 65% !important;
    font-weight: 400 !important;
    color: #4a4a5a !important;
    font-size: 15px !important;
}

/* Zebra striping for alternating rows */
.product-features .data-sheet dt.name:nth-of-type(odd),
.product-features .data-sheet dd.value:nth-of-type(odd) {
    background-color: #f6f2f7 !important;
}

.product-features .data-sheet dt.name:nth-of-type(even),
.product-features .data-sheet dd.value:nth-of-type(even) {
    background-color: #ffffff !important;
}

@media (max-width: 767px) {
    .product-features .data-sheet dt.name {
        flex: 0 0 45% !important;
        max-width: 45% !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
    .product-features .data-sheet dd.value {
        flex: 0 0 55% !important;
        max-width: 55% !important;
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
}

/* =========================================
   PRODUCT ATTACHMENTS (Downloads Tab)
   ========================================= */
.product-attachments {
    margin-top: 1rem;
}

.product-attachments .h5 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #111 !important;
    text-transform: none !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #e1e3e8 !important;
    margin-bottom: 24px !important;
}

.product-attachments .attachment {
    display: flex;
    align-items: center;
    background-color: #fcfcfc;
    border: 1px solid #e1e3e8;
    border-radius: 4px;
    padding: 16px 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.product-attachments .attachment:hover {
    border-color: #003c90;
    background-color: #f4f6fa;
    box-shadow: 0 4px 10px rgba(0, 60, 144, 0.05);
}

.product-attachments .attachment p {
    display: none; /* Hide standard description */
}

.product-attachments .attachment::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d32f2f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Ctext x='7.5' y='17' font-family='Arial' font-size='6' font-weight='bold' stroke='none' fill='%23d32f2f'%3EPDF%3C/text%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.product-attachments .attachment h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    flex-grow: 1;
}

.product-attachments .attachment h4 a {
    color: #003c90;
    text-decoration: none;
}

/* Stretched link to make the whole card clickable */
.product-attachments .attachment h4 a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.product-attachments .attachment > a {
    font-size: 0; /* Hide "Download (7.85MB)" text */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: inline-block;
    z-index: 3;
}

.product-attachments .attachment > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003c90' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='7 10 12 15 17 10'%3E%3C/polyline%3E%3Cline x1='12' y1='15' x2='12' y2='3'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
