       body {
            min-height: 100vh;
            overflow-x: hidden;
            font-family: "Roboto Condensed", system-ui, sans-serif;
			
        }
		.bg-dex { 
			background-color: #CC2A2A;
		}
        /* Header */
        #header {
            position: fixed;
            top: 0;
            left: 280px;
            right: 0;
            height: 70px;
            background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(238,238,238,0) 100%);
            z-index: 1030;
            transition: left 0.3s ease-in-out;
        }

        #header.expanded {
            left: 70px;
        }

        .header-content {
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 30px;
            max-width: 100%;
            gap: 20px;
        }

        .breadcrumb-container {
            flex: 1;
        }

        .breadcrumb {
            background: transparent;
            margin: 0;
            padding: 0;
        }

        .breadcrumb-item {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        .breadcrumb-item.active {
            color: rgba(255,255,255,1);
        }

        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }

        .breadcrumb-item a:hover {
            color: rgba(255,255,255,1);
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255,255,255,0.5);
        }
        .form-control-dark::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .search-box {
            width: 100%;
            max-width: 600px;
            margin: 20px auto;
        }

        .search-box input {
            background-color: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.3);
            color: #fff;
        }

        .search-box input::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .search-box input:focus {
            background-color: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
            color: #fff;
        }

        .search-box .input-group-text {
            background-color: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.3);
            color: rgba(255,255,255,0.8);
        }

        .header-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .header-menu-item {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
            cursor: pointer;
        }

        .header-menu-item:hover, .header-menu-item:focus {
            color: #fff;
        }

        .header-icons {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-left: auto;
        }

        .header-icon {
            position: relative;
            color: rgba(255,255,255,0.9);
            font-size: 1.3rem;
            cursor: pointer;
            transition: color 0.2s;
        }

        .header-icon:hover {
            color: #fff;
        }

        .badge-notification {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #EBAB23;
            color: black;
            border-radius: 10px;
            padding: 2px 6px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .dropdown-menu {
           /* background-color: rgba(0,0,0,0.95);
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);*/
        }

        .dropdown-item {
            /*color: rgba(255,255,255,0.8);  */
        }

        .dropdown-item:hover {
            background-color: rgba(255,255,255,0.1);
            color: #fff;
        }

        /* Sidebar */
        #sidebar {
            position: fixed;
            left: 0;
            top: 0;
            bottom: 0;
            width: 280px;
            
            transition: width 0.3s ease-in-out;
            overflow-x: hidden;
            overflow-y: auto;
            z-index: 1040;
            background-color: #222; 
            box-shadow: 2px 0 15px rgba(0,0,0,0.6);
			
			scrollbar-width: thin;              /* thin | auto */
			scrollbar-color: #888 #222222;  
  
        }
		
		#sidebar::-webkit-scrollbar {
		  width: 6px; /* węższy scrollbar */
		}

		#sidebar::-webkit-scrollbar-track {
		  background: #222222; /* tło */
		}

		#sidebar::-webkit-scrollbar-thumb {
		  background-color: #888; /* kolor suwaka */
		  border-radius: 4px;
		}

		#sidebar::-webkit-scrollbar-thumb:hover {
		  background-color: #aaa; /* opcjonalnie hover */
		}


        #sidebar.collapsed {
            width: 70px;
        }

        .sidebar-logo {
            padding: 20px;
            background-color: #000;   
            transition: padding 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #sidebar.collapsed .sidebar-logo {
            padding: 15px 10px;
        }

        .mobile-menu-btn {
            position: fixed;
            left: 20px;
            top: 15px;
            z-index: 1035;
            background-color: transparent;
            border: none;
            color: rgba(255,255,255,0.6);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .mobile-menu-btn:hover {
            color: rgba(255,255,255,0.9);
            background-color: rgba(255,255,255,0.1);
        }

        .header-logo {
            display: none;
            align-items: center;
            /*margin-left: 50px; */
        }

        .header-logo img {
            height: 35px;
        }

        .sidebar-logo img {
            height: 40px;
            transition: opacity 0.3s;
        }

        #sidebar.collapsed .sidebar-logo img {
            height: 35px;
            display:none;
        }

        .sidebar-toggle {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 40px;
            background-color: transparent;
            border: none;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1;
            transition: all 0.3s;
            color: rgba(255,255,255,0.4);
        }

        .sidebar-toggle:hover {
            background-color: rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.7);
        }

        #sidebar.collapsed .sidebar-toggle i {
            transform: rotate(180deg);
        }

        .sidebar-toggle i {
            font-size: 1rem;
            transition: transform 0.3s;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            padding: 12px 20px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            white-space: nowrap;
            text-decoration: none;
            border-left: 3px solid transparent;
        }

        .nav-link:hover, .nav-link:focus {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
            border-left-color: #EBAB23;
        }

        .nav-link.active {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.25);
            border-left-color: #EBAB23;
            font-weight: 500;
        }
           .nav-link:active span { color: #fff; }
        .nav-link i {
            font-size: 1.2rem;
            min-width: 30px;
            text-align: center;
        }

        .nav-link span {
            margin-left: 15px;
            transition: opacity 0.3s;
        }
        #sidebar.collapsed .nav-link {
           background-color: rgba(255, 255, 255, 0.1);
        }
        #sidebar.collapsed .nav-link span {
            opacity: 0;
            width: 0;
            margin: 0;
        }

        .nav-section-title {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 20px 20px 10px;
            letter-spacing: 0.5px;
            transition: opacity 0.3s;
        }

        #sidebar.collapsed .nav-section-title {
            opacity: 0;
            height: 10px;
            padding: 5px 0;
        }

        .submenu {
             background-color: rgba(255,255,255,0.04);
        }

        .submenu .nav-link {
            padding-left: 60px;
            font-size: 0.9rem;
        }

        #sidebar.collapsed .submenu .nav-link {
            padding-left: 20px;
        }

        .nav-link .bi-chevron-down {
            margin-left: auto;
            font-size: 0.8rem;
            transition: transform 0.3s;
        }

        .nav-link[aria-expanded="true"] .bi-chevron-down {
            transform: rotate(180deg);
        }

        #sidebar.collapsed .bi-chevron-down {
            display: none;
        }

        /* Content */
        #content {
            margin-left: 280px;
            margin-right: 0;
            margin-top: 70px;
            /*padding: 30px;*/
            transition: margin 0.3s ease-in-out;
            min-height: calc(100vh - 70px);
            background-color: #eee; /**#f8f9fa;*/
        }

        #content.expanded {
            margin-left: 70px;
        }

        #content.cart-open {
            margin-right: 400px;
        }

        /* Right Sidebar - Cart */
        #cartSidebar {
            position: fixed;
            right: -400px;
            top: 0;
            bottom: 0;
            width: 400px;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            transition: right 0.3s ease-in-out;
            z-index: 1050;
            overflow-y: auto;
        }

        #cartSidebar.show {
            right: 0;
        }

        .cart-header {
            padding: 20px;
            border-bottom: 1px solid #dee2e6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #6c757d;
        }

        .cart-close:hover {
            color: #000;
        }

        .cart-items {
            padding: 20px;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            background-color: #f8f9fa;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #0d6efd;
            font-weight: 600;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .quantity-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #dee2e6;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-btn:hover {
            background-color: #f8f9fa;
        }

        .cart-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background-color: #fff;
            border-top: 2px solid #dee2e6;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Tooltip dla collapsed sidebar */
        #sidebar.collapsed .nav-link {
            position: relative;
        }

        #sidebar.collapsed .nav-link:hover::after {
            content: attr(data-title);
            position: absolute;
            left: 70px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #000;
            color: #fff;
            padding: 5px 10px;
            border-radius: 4px;
            white-space: nowrap;
            z-index: 1000;
            font-size: 0.85rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        
        
        .sidebar-logo img {
            opacity: 1;
            height: 40px;
            transition: opacity 0.25s ease;
        }
       
        #sidebar.collapsed .sidebar-logo img {
            opacity: 0;
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 992px) {
            #sidebar {
                width: 70px;
            }

            #sidebar.collapsed {
                width: 280px;
            }

            #sidebar .nav-link span,
            #sidebar .nav-section-title,
            #sidebar .bi-chevron-down {
                opacity: 0;
                width: 0;
                margin: 0;
            }

            #sidebar.collapsed .nav-link span {
                opacity: 1;
                width: auto;
                margin-left: 15px;
            }

            #sidebar.collapsed .nav-section-title {
                opacity: 1;
                height: auto;
                padding: 20px 20px 10px;
            }

            #sidebar.collapsed .bi-chevron-down {
                display: block;
            }

            #sidebar .sidebar-logo img {
                opacity: 0;
                width: 0;
                height: 0;
            }
            
       

            /*
            #sidebar .sidebar-logo-btn {
                display: block;
            }

            #sidebar.collapsed .sidebar-logo img {
                opacity: 1;
                width: auto;
                height: 40px;
            }
            */

            #sidebar.collapsed .sidebar-logo-btn {
                display: none;                 
            }

            #sidebar .submenu .nav-link {
                padding-left: 20px;
            }

            #sidebar.collapsed .submenu .nav-link {
                padding-left: 60px;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .header-logo {
                display: flex;
            }

            .breadcrumb-container {
                display: none;
            }

            #header {
                left: 70px;
            }

            #header.expanded {
                left: 280px;
            }
            
            #content {
                margin-left: 70px;
            }

            #content.expanded {
                margin-left: 280px;
            }

            .overlay {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .header-menu {
                display: none;
            }

            #cartSidebar {
                width: 100%;
                right: -100%;
            }

            #content.cart-open {
                margin-right: 0;
            }
        }

        @media (max-width: 576px) {
            .header-content {
                padding: 0 15px;
            }

            .header-logo {
                margin-left: 45px;
            }

            .header-logo img {
                height: 30px;
            }
        }

        .mobile-toggle {
            display: none;
        }

        .overlay {
            display: none;
        }

        .content-header {
            background-color: #fff;
            padding: 20px 0;
            margin: -30px -30px 20px -30px;
            border-bottom: 1px solid #dee2e6;
        }
        
      /****/
        #sidebar.collapsed .sidebar-logo-btn {
              /*display: none;*/
          }
          
          
          
          #sidebar.collapsed ~ #header .header-sidebar-btn {
              display: inline-flex;
              align-items: center;
          }
          
          #header.expanded .header-logo {
              display: inline;
              align-items: center;
          }
          
          
/** moved style.min */

.carousel .container {
    position: relative;
}

.carousel-control {
    background: rgba(0,0,0,.55)!important;
    height: 60px;
    width: 40px;
    top: 50%;
    margin-top: -30px;
}

.carousel-control .glyphicon,.carousel-control i {
    display: block;
    margin: 0;
    text-align: center;
    line-height: 60px;
    position: initial;
    height: 60px;
    font-size: 32px;
}

.carousel-caption-right {
    text-align: right;
}

.carousel-caption-left {
    text-align: left;
}

.carousel-caption {
    text-shadow: none;
    right: 0;
    left: 0;
    top: 60px;
    bottom: 60px;
    font-weight: 300;
}

.carousel-caption .container {
    padding: 0 60px;
}

.carousel-caption .title {
    font-size: 64px;
    margin: 0;
    font-weight: 300;
}

.carousel-caption .price {
    font-size: 36px;
    margin: 0;
}

.carousel-caption .price small {
    font-size: 24px;
}

.carousel-caption .price span {
    background: rgba(0,0,0,.5);
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.carousel-caption .btn {
    border: 2px solid #fff;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 30px;
    border-radius: 6px;
}

.carousel-caption .btn:focus,.carousel-caption .btn:hover {
    background: rgba(255,255,255,.25);
}

.carousel-caption p {
    margin-bottom: 0;
    font-size: 26px;
}



.stepper {
    width: 100%;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 2px solid #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto;
    color: #6c757d;
}

.step-label {
    margin-top: 8px;
    font-size: 0.9rem;
}

.step.active .step-circle {
background-color: var(--bs-danger);
    border-color: var(--bs-danger);
    color: #fff;
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: #ced4da;
    margin: 0 10px;
}

.brand-tile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    height: 100%;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all .15s ease-in-out;
	position: relative;
    overflow: hidden;
}

.brand-tile img {
    max-height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.brand-tile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #ffc107;
    transform: scaleY(0);
    transition: transform .15s ease;
}

.brand-tile:hover::before {
    transform: scaleY(1);
}

.brand-tile span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

/* Hover / focus */
.brand-tile:hover,
.brand-tile:focus {
    border-color: #EBAB23;
}
.brand-tile:active {
    background-color: #EBAB23;
}
          
.bootstrap-select .btn.disabled,
.bootstrap-select .btn:disabled {
    border: 0 !important;
    box-shadow: none !important;
}

/** Cart */
.breadcrumb-custom .breadcrumb-item::after {
	background-color: transparent;
	box-shadow: 3px -3px var(--bs-border-color);
}