       body {
            min-height: 100vh;
            overflow-x: hidden;
            font-family: "Roboto Condensed", system-ui, sans-serif;
			
        }
		.bgfoot { background-color: #313131; color: #999; }	
			.bgfoot a { color: #bbb; text-decoration: none }
				.bgfoot a:hover { color: #eee; }
			.bgfoot h5 { font-size: 14px; color: #888; text-transform: uppercase; }
		.red { color: red; font-weight:700; }
		.green { color: green; font-weight:700; }
		.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 .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.nav-b .nav-link {
            border-left: 0px;
            padding: 12px 20px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            white-space: nowrap;
            text-decoration: none;
            
			border-bottom: 3px solid transparent;
        }
		.nav.nav-b .nav-link:hover,  .nav.nav-b .nav-link:focus {
          
            border-bottom-color: #EBAB23;
        }
         .nav.nav-b .nav-link.active {

            border-bottom-color: #EBAB23;
            font-weight: 500;
        }

         .nav .nav-link:hover,  .nav .nav-link:focus {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
            border-left-color: #EBAB23;
        }

         .nav .nav-link.active {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.25);
            border-left-color: #EBAB23;
            font-weight: 500;
        }
         .nav .nav-link:active span { color: #fff; }
         .nav .nav-link i {
            font-size: 1.2rem;
            min-width: 30px;
            text-align: center;
        }

         .nav .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(0,0,0,.75);
}

.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-primary);
    border-color: var(--bs-primary);
    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);
}

#mycar {
    padding-left: 0;
    background-color: #666;
}

#mycar li {
    list-style: none;
}
#mycar a.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    background-color: #666;
    color: #f1f1f1;
    white-space: normal;
}

/* logo */
#mycar a.dropdown-item img {
    flex: 0 0 26px;
    height: 22px;
    margin-top: 4px;
    filter: brightness(0) invert(1);
}

/* MODEL – ZAWSZE PIERWSZA LINIA */
#mycar a.dropdown-item small {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

/* SILNIK – WYMUSZONA NOWA LINIA */
#mycar a.dropdown-item b {
 
    font-size: 12.5px;
    font-weight: 500;
    color: #e6e6e6;
    line-height: 1.4;
}

/* MOC – TA SAMA LINIA CO SILNIK */
#mycar a.dropdown-item .power {
    display: inline;
    font-size: 12px;
    font-weight: 400;
    color: #d0d0d0;
    margin-left: 4px;
}

/* hover */
#mycar a.dropdown-item:hover {
    background-color: #575757;
}

/** account */


.account-container {
    background: #fff;
    border-radius: 6px;
    position: relative;
}

.account-container .account-sidebar {
    width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 20px 30px;
    overflow: hidden;
    -webkit-border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
}

.account-container .account-sidebar .account-sidebar-cover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.account-container .account-sidebar .account-sidebar-cover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(36,42,48,.8);
}

.account-container .account-sidebar .account-sidebar-content {
    position: relative;
    color: #fff;
}

.account-container .account-sidebar .account-sidebar-content h4 {
    font-size: 24px;
    font-weight: 500;
}

.account-container .account-sidebar .account-sidebar-content p {
    color: rgba(255,255,255,.75);
}

.account-container .account-body {
    margin-left: 300px;
    padding: 20px 30px;
}

.account-container .account-body h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
}

.account-container .account-body .nav.nav-list {
    margin-bottom: 30px;
}

.account-container .account-body .nav.nav-list>li>a {
    padding: 0;
    color: #777;
}

.account-container .account-body .nav.nav-list>li+li {
    margin-top: 5px;
}

.account-container .account-body .nav.nav-list>li>a:focus,.account-container .account-body .nav.nav-list>li>a:hover {
    background: 0 0;
    color: #212121;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

.product-device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: #333;
  border-radius: 21px;
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background-color: rgba(255, 255, 255, .1);
  border-radius: 5px;
}

.product-device-2 {
  top: -25%;
  right: auto;
  bottom: 0;
  left: 5%;
  background-color: #e5e5e5;
}


/*
 * Extra utilities
 */

.flex-equal > * {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}

.cover-bg {
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#webnav { background-color: #ccc; padding: 8px; border-radius: 5px; } 
.upper { text-transform: uppercase; }

.prod-param b { font-weight: 400; } 
.prod-param small { font-weight: bold; }


.recL2- .ig-overlay { position: relative }
.recL2- .card-img-overlay { background-color: #aaa; padding: 10px; position: absolute; opacity: 0.1 }

.sticky-top-offset { top:80px; }

 #navbar-product > .nav-pills {
       overflow-x: auto;
       overflow-y:hidden;
       flex-wrap: nowrap;
    }
    #navbar-product > .nav-pills > .nav-link {
    white-space: nowrap;
    }
	

.product-image,.product-info {
    display: table-cell;
    vertical-align: top;
}

.product-thumbnail {
	
    float: left;
	overflow: hidden;
	
}


.product-thumbnail-list {
    list-style-type: none;
    margin: 0;
    padding: 0;display: flex;
	flex-direction: column;
	gap: 2px;
}

.product-thumbnail-list>li {
	margin-right: 2px;
}

.product-thumbnail-list>li a {
    text-decoration: none;
    background: #fff;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.product-thumbnail-list>li.active a {
    opacity: 0.5
}

.product-info-header,.product-info-list,.product-social,.product-tab .nav.nav-tabs,.product-warranty {
    border-bottom: 1px solid #D8E0E4;
}

.product-thumbnail-list>li a img {
    max-height: 100%;
    position: relative;
    top: -3px;
}

.dfxp { background-color: #f5f5f5; padding: 5px; padding-bottom: 0px; }

.dfxp strong { display: block; text-align: center; font-size: 12px; line-height: 20px; color: #666 }

.recL2- .ig-overlay .result-image img { max-width: 100%;
    height: auto; max-height: 200px; }
	
.bgx { background-color:#F6F6F6; }	
.bgy { background-color:#ddd; }	

.summary-container {
    display: flex;
    flex-direction: column;
}

.summary-container dt,
.summary-container dd {
    display: inline-block;
    margin: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
}

.summary-row.total {
    font-weight: bold;
}

.ero {
  position: relative;
  height: 400px;  
  overflow: hidden;
}

/* wideo jako tło */
.ero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ero2__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* przyciemnienie */
.ero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);   /* regulujesz moc – 0.3 jaśniej, 0.7 ciemniej */
  z-index: 1;
}
.ero2__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);   /* regulujesz moc – 0.3 jaśniej, 0.7 ciemniej */
  z-index: 1;
}

/* tekst nad wszystkim */
.ero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.ero2__content {
  position: relative;
  z-index: 2;
  color: #000;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}


.ero a.pz { background-color:#CD2F2F; color: #eee } 
.ero a.pz:hover { background-color:#B12323; color: #fff } 

.nav-link:focus {
    outline: none;
    box-shadow: none;
}
