    .header {
            background-color: #2c3e50;
            color: white;
            position: relative;
            background: #132530 !important;
        }

        .top-bar {
            background-color: #132530;
            padding: 8px 0;
            font-size: 13px;
            padding-bottom: 0px !important;
        }

        .top-bar-content {
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            max-width: 80rem;
            margin-bottom: 10px;
        }

        .contact-info {
            display: flex;
            gap: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fff;
        }

        .user-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .user-action {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #bdc3c7;
            text-decoration: none;
            font-size: 13px;
        }

        .cart-countust {
            background-color: #e67e22;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 50%;
            margin-left: -2px;
            z-index: 9999;
            bottom: 10px;
            position: relative;
        }

        .main-header {
            padding: 0px;
            /*! padding-bottom: 0px !important; */
            /*! padding-top: 0px !important; */
        }

        .main-header-content {
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 0 20px;
            max-width: 80rem;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #e67e22;
        }

        .category-dropdown {
            background-color: rgba(255,255,255,0.1);
            border: 1px solid #252824;
            color: white;
            padding: 12px 15px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            min-width: 180px;
            position: relative;
            font-weight: 500;
            letter-spacing: -0.5px;
            font-size: 13px;
        }

        .category-dropdown:hover {
            background-color: rgba(255,255,255,0.1);
        }

        .search-container {
            flex: 1;
            display: flex;
        }

        .search-input {
            flex: 1;
            padding: 14px 15px;
            border: none;
            outline: none;
            font-size: 14px;
        }

        .search-button {
            background-color: #e67e22;
            color: white;
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
        }

        .cart-info {
            display: flex;
            /*! align-items: center; */
            /*! gap: 10px; */
            /*! color: white; */
            /*! font-size: 14px; */
            /*! background: rgba(255,255,255,0.1); */
            /*! padding: 13px 18px; */
            /*! border-radius: 4px; */
            gap: 10px;
            /*! padding-left: 2px !important; */
        }

        .navigation {
            background-color: #132530;
            padding: 12px 0;
            padding-top: 0px !important;
        }

        .nav-content {
            max-width: ;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            max-width: 80rem;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            padding: 8px 0;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: white;
        }

        .icon-placeholder {
            width: 20px;
            height: 20px;
            /*! background-color: #7f8c8d; */
            border-radius: 2px;
            display: inline-block;
        }

        .dropdown-arrow {
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 4px solid #bdc3c7;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .dropdown-arrow.open {
            transform: rotate(180deg);
        }

        /* Dropdown Menu Styles */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            width: 600px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            display: flex;
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .menu-left {
            width: 250px;
            border-right: 1px solid #f0f0f0;
        }

        .menu-right {
            width: 350px;
            padding: 15px;
            background-color: #f8f9fa;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 15px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s;
            position: relative;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
        }

        .dropdown-item.active {
            background-color: #e8f4fd;
            color: #2c5aa0;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .submenu-content {
            display: none;
        }

        .submenu-content.active {
            display: block;
        }

        .submenu-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .submenu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .submenu-item {
            padding: 8px 12px;
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            text-decoration: none;
            color: #666;
            font-size: 13px;
            transition: all 0.2s;
        }

        .submenu-item:hover {
            background-color: #f0f8ff;
            border-color: #2c5aa0;
            color: #2c5aa0;
        }

        /* Filter Menu Styles */
        .filter-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            width: 250px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .filter-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .filter-section {
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .filter-section:last-child {
            border-bottom: none;
        }

        .filter-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 0;
            color: #666;
            font-size: 13px;
        }

        .filter-checkbox {
            width: 16px;
            height: 16px;
            border: 1px solid #ddd;
            border-radius: 3px;
            cursor: pointer;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: transparent;
            z-index: 999;
            display: none;
        }

        .overlay.show {
            display: block;
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .main-header-content {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .category-dropdown {
                min-width: auto;
                float: right;
                position: relative;
                z-index: 999999;
                right: 0px;
                display: block;
                margin-bottom: 5px;
                width: 100%;
                padding: 10px 10px !important;
                height: 48px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                gap: 15px;
            }

            .dropdown-menu {
                width: 100%;
            }
        }
		
		.sitelogo {
                width: 200px;
        }
		.sepetx {
          width: 26px !important;
          height: 25px !important;
          position: relative;
          right: -14px;
        }
		
		
	.search-box {
      max-width: 100%;
      margin: 2px auto;
      background: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      margin-left: 0px !important;
    }
    .search-box h5 {
      margin-bottom: 9px;
      font-weight: 600;
      font-size: 15px;
      /*! text-align: center; */
    }
    .form-label {
      font-weight: 500;
      margin-bottom: 5px;
      font-size: 13px;
    }
    select.form-select {
      padding-left: 40px;
      position: relative;
      margin-bottom: 8px;
      height: 50px;
      background: #f1f5f6;
      font-size: 14px;
      font-weight: ;
      border-radius: 6px;
      border: none;
      color: gray;
      padding-right: 40px;
      border: 1px solid #1325301c;
    }
    .step-icon {
      position: absolute;
      left: 7px;
      top: 14px;
      background: #dee2e6;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      text-align: center;
      line-height: 24px;
      font-size: 14px;
      font-weight: 600;
      color: #495057;
      z-index: 999;
    }
    .select-wrapper {
      position: relative;
      margin-bottom: 6px;
      display: grid;
    }
    .step-icon.step-3 {
      background-color: #fd7e14;
      color: #fff;
    }
    .btn-search {
      width: 100%;
      background-color: #1a5bff !important;
      color: #fff !important;
      font-weight: 600 !important;
      border: none !important;
      padding: 15px 10px !important;
      border-radius: 4px !important;
    }
    .btn-search:hover {
      background-color: #004ce0;
    }
    .vin-search input {
      height: 48px;
      font-size: 13px;
      background: #f1f5f6;
      width: 100%;
      border: none;
      padding-left: 5px;
      color: gray;
    }
	.sasearama {
	  display: flex;
    }
	.saseara {
		background-color: #1a5bff !important;
		color:white;
    }
	
.vin-search {
  margin-top: 10px;

}
.metinkismi {
margin: 0 auto;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  max-width: 79rem;

background: white;
padding: 28px 24px;
border-radius: 6px;
}

.slideraltbanner {
padding-left:0px !important;
}

@media screen and (max-device-width: 480px) and (orientation: portrait){

.navigation {
  display: none !important;
}

#laber_template--18526473224477__165018826364c02d6a {
    margin-top: 40% !important;
}
.search-container {
  margin-bottom: 20px;
}
.logo {
  margin-right: 26%;
    margin-top: 10px;
}
.cart-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 14px;
  background: black;
  padding: 10px 15px;
    padding-left: 15px;
  border-radius: 100%;
  gap: 10px;
  padding-left: 2px !important;
  height: 60px;
  width: 62px;
  display: none !important;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #bdc3c7;
  margin-left: 5px;
  transition: transform 0.3s;
  float: right;
  top: 10px;
  position: relative;
  font-size: 40px;
}

.katyazi {
  font-size: 16px;
  position: absolute;
  left: 50px;
}
.submenu-item {
  padding: 6px;
}

}		
	

        /* Kategori Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 10px;
        }

        .category-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.2s ease;
            cursor: pointer;
        }

        .category-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .category-item h3 {
            font-size: 13px;
            color: #333;
            font-weight: 500;
        }

      
      

        /* Responsive Design */
        @media (max-width: 768px) {
       
            .category-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 10px;
            }

            .category-item {
                padding: 15px;
            }

            .category-item h3 {
                font-size: 14px;
            }

           
        }

        @media (max-width: 480px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .category-item {
                padding: 12px;
            }

            .category-item h3 {
                font-size: 13px;
                line-height: 1.3;
            }

        }

        @media (max-width: 320px) {
            .category-grid {
                grid-template-columns: 1fr;
            }
            

        }	
		
		.sasegrid {
			width: 20% !important;
		}
	.whatsappikon {
     margin-top: 16% !important;
    }
	
	ul.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mobile-facets__item {
  position: relative;
}

.mobile-facets__item > a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  background: #f9f9f9;
  cursor: pointer;
}

.mobile-facets__item > a:hover {
  background: #eaeaea;
}

.mobile-facets__item > ul {
  display: none;
  padding-left: 15px;
}

.mobile-facets__item.open > ul {
  display: block;
}

.mobile-facets__toggle {
  float: right;
  cursor: pointer;
  font-weight: bold;
  padding: 0 10px;
}


@media screen and (max-device-width: 480px) and (orientation: portrait){

.minicart {
float: right;
  display: block;
  position: absolute;
  z-index: 9999;
  right: 18px;
  width: 147px;
  top: 29%;
  background: #e67e22;
  padding: 10px;
  border-radius: 4px;
  padding-left: 15px;
  }
  .cart-block .total-price .text {
  font-weight: 400;
  font-size: 12px !important;
  line-height: 15px !important;
  color: #fff !important;
}

.header .header-icon {
  padding-left: 22px !important;

}
.header__counter {
width: 20px;
  background: red;
  display: block;
  position: absolute;
  height: 20px;
  text-align: center;
  border-radius: 100%;
  top: -9px !important;
  right: -7px !important;	
	
}

.apus-footer-mobile > ul > li .mini-cart {
  background: #e67e22 !important;
}


}


.minicart {
/*! float: right; */
  /*! display: block; */
  /*! position: absolute; */
  /*! z-index: 9999; */
  /*! right: 18px; */
  /*! width: 147px; */
  /*! top: 12%; */
  background: #e67e22;
  padding: 7px 15px;
  border-radius: 2px;
  padding-left: 15px;
  }
  .cart-block .total-price .text {
  font-weight: 400;
  font-size: 12px !important;
  line-height: 15px !important;
  color: #fff !important;
}

.header .header-icon {
  padding-left: 0px !important;

}
.header__counter {
width: 20px;
  background: #c62f3e;
  display: block;
  position: absolute;
  height: 19px;
  text-align: center;
  border-radius: 100%;
  top: 47%;
  right: 141px;
	
}
.cms-top-header .topbar {
  background-color: #000 !important;
  /*! border-bottom: 1px solid #2e2d2d !important; */
  margin-bottom: 8px;
}

.header .header-top {
    background: #132530 !important;
	border:none !important;
}
  .header.header-2-lines .navigationMenu {
    background: #132530 !important;
	border:none !important;
  }

.topbar .topbar-menu li a {
  color: #bababa !important;
    font-size: 14px !important;
  line-height: 1.25rem !important;
  letter-spacing: -0.5px;
}
.topbar .topbar-menu::before {
  background-color: #fff0  !important;
}
.mr5 {
  margin-right: 5px;
  font-size: 14px !important;
}
.mrl5 {
  margin-left: 5px;
}
.topbar .topbar-menu li {
  padding-left: 6px! important;
}
.cms-top-header .topbar .announcement-bar {
  padding-top: .75rem important;
  margin-bottom: 8px important;
}
.text-horizontal-running a {
  color: var(--color-text);
  white-space: nowrap;
  font-size: 15px important;
}

 .metinkismi .title {
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 30px;
        color: #333;
    }
    
    .metinkismi .aracmarkalari {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .metinkismi .brand-card {
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .metinkismi .brand-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
    
    .metinkismi .brand-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .metinkismi .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border: none;
        background: transparent;
    }
    
    .metinkismi .brand-name {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        text-transform: uppercase;
        margin-top: auto;
    }
    
    @media (max-width: 768px) {
        .metinkismi .aracmarkalari {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .metinkismi .title {
            font-size: 20px;
        }
        
        .metinkismi .brand-card {
            padding: 15px;
            min-height: 120px;
        }
        
        .metinkismi .brand-logo {
            width: 60px;
            height: 60px;
        }
        
        .metinkismi .brand-name {
            font-size: 14px;
        }
    }
	
	.sepetimx {
     width: 27px;
  height: 27px;
        }