@font-face {
  font-family: claritycity-bold;
  src: url("../assest/font/ClarityCity-Bold.otf");
}
@font-face {
  font-family: claritycity-black ;
  src: url("../assest/font/ClarityCity-Medium.otf");
}

@font-face {
  font-family: claritycity-light;
  src: url("../assest/font/ClarityCity-Light.otf");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  li{
    list-style-type:none ;
  }

html,
body {
  user-select: none;
  overflow-x: hidden;
}

body{
  overflow-x: hidden;
  background-color: #D9D9D999;
   font-family: claritycity-light;
}
a{
    text-decoration: none;
}
  .container {
    max-width: 1390px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    /* margin: 0 -15px; */
  }


.top-nav {
  background-color: #ff3434;
  padding: 10px 0px;
  position: relative;
}

.top-nav-main {
  display: flex;
  justify-content: space-between;
}

.top-nav-left {
  display: flex;
  align-items: center;
  gap: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.top-nav-left > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.location-dropdown {
  position: relative;
  display: inline-block;
  color: white;
  cursor: pointer;
}

.location-label {
  display: flex;
  align-items: center;
}

.location-label i {
  margin-right: 6px;
}

.location-text {
  margin-right: 6px;
}

.location-select {
  display: flex;
  align-items: center;
  border-bottom: 1px solid white;
  padding: 2px 0;
}

.location-select span {
  margin: 0 4px;
}

.fa-caret-down {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.location-dropdown.active .fa-caret-down {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 160px;
  z-index: 9999;
  margin-top: 5px;
  border: 1px solid white;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content div {
  color: white;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dropdown-content div:hover {
  background-color: #444;
}

.dropdown-content div:first-child {
  border-radius: 4px 4px 0 0;
}

.dropdown-content div:last-child {
  border-radius: 0 0 4px 4px;
}

.dropdown-content div.selected {
  background-color: #555;
  font-weight: bold;
}

/* Location icon placeholder */
.location-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-color: white;
  border-radius: 2px;
}

.top-nav-main,
.nav-main,
.nav-content,
.nav-content > ul,
.nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bottom {
  background-color: #252525;
  padding-top: 30px;
  padding-bottom: 21px;
  top: 44px;
  right: 0px;
  left: 0px;
}

.logo {
  max-width: 211px;
  height: fit-content;
}

.logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hamberger,
.close-bar {
  color: #9ec30c;
  font-size: 30px;
  display: none;
}

.nav-content {
  gap: 142px;
}

.nav-content > ul {
  gap: 49px;
}

.nav-btn {
  gap: 30px;
}

.nav-content > ul > li {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.nav-content > ul > li > a:hover {
  background: linear-gradient(to right, #40e193, #9ec30c);
  background-clip: text;
  color: transparent;
  transform: rotateX(10deg) translateZ(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.top-nav-left > a,
.top-nav-left > p,
.top-nav-right > p,
.nav-content > ul > li > a,
.nav-btn > a {
  color: #ffffff;
}

.nav-btn > a:nth-child(3) {
  padding: 18px 63.5px;
  border-radius: 5px;
  background: #ff3434;
  z-index: 2;
  overflow: hidden;
  position: relative;
}
.nav-links.active {
  color: #f13636;
}
.nav-btn > a:nth-child(3):hover {
  background-color: #4b2004;
}

.hdr-bttm-wrpr {
  padding: 20px 0;
  background: #252525;
  /* backdrop-filter: blur(10px); */
  position: relative;
  z-index: 1000;
}

.hdr-bttm-wrpr-inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width: 201px;
  height: 30px;
  z-index: 10000;
  position: relative;
}

.nav-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Desktop Navigation */
.nav-collapse {
  display: flex;
  align-items: center;
  flex-grow: 2;
}

.nav-collapse ul {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.nav-collapse ul li {
  margin: 0 26px;
}

.nav-collapse ul li a {
  font-size: 16px;
  font-family: Montserrat-Medium;
  color: #f1f1f1;
  transition: all 0.3s ease;
  position: relative;
}

.nav-collapse ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;

  background: red;
  transition: width 0.3s ease;
}

.nav-collapse ul li a:hover::after {
  width: 100%;
}

.nav-collapse ul li a:hover {
  background: red;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn a {
  transition: transform 0.3s ease;
}

.nav-btn a:hover {
  transform: scale(1.1);
}

.main-btn {
  padding: 18px 63px;
  color: #ffffff;
  font-size: 17px;
  border-radius: 5px;

  background-color: #ff3434;
  font-family: Alatsi-Regular;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); */
  border: none;
  font-family: claritycity-light;
}

.main-btn:hover {
  /* transform: translateY(-2px); */
  /* box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); */
}

/* Hamburger Menu */
.nav-toggler {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 10000;
  position: relative;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.nav-toggler span,
.nav-toggler::before,
.nav-toggler::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;

  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggler::before {
  position: absolute;
  top: 0;
}

.nav-toggler::after {
  position: absolute;
  bottom: 0;
}

.nav-toggler.active::before {
  transform: rotate(45deg) translate(0, 11px);
}

.nav-toggler.active span {
  opacity: 0;
}

.nav-toggler.active::after {
  transform: rotate(-45deg) translate(0, -11px);
}

/* Sidebar Styles */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.98),
    rgba(40, 40, 40, 0.98)
  );
  backdrop-filter: blur(20px);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-nav {
  list-style: none;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-nav li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s ease;
}

.sidebar.active .sidebar-nav li {
  opacity: 1;
  transform: translateX(0);
}

.sidebar.active .sidebar-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.sidebar.active .sidebar-nav li:nth-child(2) {
  transition-delay: 0.2s;
}

.sidebar.active .sidebar-nav li:nth-child(3) {
  transition-delay: 0.3s;
}

.sidebar.active .sidebar-nav li:nth-child(4) {
  transition-delay: 0.4s;
}

.sidebar.active .sidebar-nav li:nth-child(5) {
  transition-delay: 0.5s;
}

.sidebar-nav a {
  display: block;
  color: #f1f1f1;
  text-decoration: none;
  font-size: 24px;
  font-family: Montserrat-Medium;
  padding: 15px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transition: left 0.3s ease;
  z-index: -1;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.sidebar.active .sidebar-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.sidebar-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.sidebar-icons a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sidebar-icons a:hover {
  background: linear-gradient(
    135deg,
    var(--linear-color-one),
    var(--linear-color-two)
  );
  transform: scale(1.1);
}

.sidebar .main-btn {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 20px;
  padding: 15px;
}

/* Close button */
.sidebar-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.sidebar-close::before,
.sidebar-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.sidebar-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

 @media screen and (max-width: 1200px) {
  .hdr-left-item {
    padding-right: 5px;
  }

  .hdr-left-item::after {
    display: none;
  }

  .nav-collapse {
    display: none;
  }

  .nav-toggler {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .sidebar {
    width: 280px;
  }

  .sidebar-nav a {
    font-size: 18px;
  }

  .sidebar .main-btn {
    font-size: 16px;
    padding: 10px 10px;
  }
}

@media screen and ( max-width : 992px ) {
   .top-nav-main {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
   }
}

@media screen and (max-width: 576px) {
   
  .top-nav-left {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  
  .top-nav-left>a{
    font-size: 12px;
  }
  .top-nav-left>a>img{
    width: 15px;
  }
  .location-label>img{
    width: 15px;
  }
  .location-text{
    font-size: 12px;
  }
  .location-select span{
    font-size: 12px;
  }

  
  
  
  
  
  
  .sidebar {
    width: 100%;
    right: -100%;
    padding: 80px 75px 30px;
  }
} 

/* Login Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-modal {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.modal-overlay.active .login-modal {
  transform: scale(1) translateY(0);
}

.login-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  border-radius: 20px 20px 0 0;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: #ff3434;
  background: rgba(255, 52, 52, 0.1);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 8px;

  background: #ff3434;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.modal-subtitle {
  color: #666;
  font-size: 16px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
  outline: none;
}

.form-input:focus {
  border-color: #ff3434;
  box-shadow: 0 0 0 3px rgba(255, 52, 52, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

#modal1-checkbox > input {
  width: 16px;
  height: 16px;
}

.forgot-password {
  color: #ff3434;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: #9ec30c;
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 15px;

  background: #ff3434;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 52, 52, 0.3);
}

.login-btn:active {
  transform: translateY(0);
}

.modal-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: #999;
}

.modal-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e1e5e9;
  z-index: 1;
}

.modal-divider span {
  background: #fff;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.social-login {
  display: flex;
  gap: 15px;
}

.social-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-btn:hover {
  border-color: #ff3434;
  background: rgba(255, 52, 52, 0.05);
}

.signup-link {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 14px;
}

.signup-link a {
  color: #ff3434;
  text-decoration: none;
  font-weight: 600;
}

.signup-link a:hover {
  color: #9ec30c;
  text-decoration: underline;
}

 @media screen and (max-width: 576px) {
  .login-modal {
    padding: 17px;
  }
  .modal-title {
    font-size: 22px;
  }
  .modal-subtitle {
    font-size: 15px;
  }
  #modal1-checkbox > input {
    width: 14px;
    height: 14px;
  }
} 










  .spare-part{

    background: no-repeat center/cover url(../assest/img/image\ \(21\).png);
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .spare-part-bg{
    font-size:65px ;
    font-weight: 700;
    color: #FFFFFF;
  }

.products-banner{
    margin-top: 70px;
}

.products-banner-title{
    text-align: center;
    margin: auto;

}
.products-banner-title>span{
    color: #FF3434;
    font-size: 20px;
    font-weight: 600;
}
.products-banner-title>h3{ .service-steps{
    margin-top: 75px;
}
.service-steps-top{
    margin: auto;
    text-align: center;
    padding: 0 15px
}
.service-steps-top>span{
    color: #FF3434;
    font-size: 20px;
    font-weight: 600;
}
.service-steps-top>h3{
    font-size: 40px;
    color: #343434;
    margin-top: 10px;
}
.col-12{
    width: 100%;
}
.col-4{
    width: 33.33%;
    padding: 0 15px;
}
.service-steps-content{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.service-steps-top-content{
    display: flex;
    align-items: center;
    gap: 14px;
}
.service-steps-img{
    max-width: 50px;
    height: 50px;
}
.service-steps-img>img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-steps-line{
    max-width: 369px;
}
.service-steps-line>img{
    width: 100%;
    object-fit: contain;
}
.service-bottom-img{
    max-width:437px ;
    height:241px ;
    margin-top: 20px;
}
.service-bottom-img>img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-steps-main-content>h6{
    margin-top: 15px;
    font-size: 22px;
    color: #343434;
    font-weight: 600;
}
.service-steps-main-content>p{
    margin-top: 15px;
    max-width: 345px;
    width: 100%;
    color: #343434;
}
.service-steps-middle-content{
    display: flex;
    flex-direction: column;
}

@media screen and ( max-width : 1200px ) {
   /* .col-4{
    width: 50%;
    padding: 15px 15px;
   }  */
   .service-steps-content{
    justify-content: center;
 }
 .service-bottom-img{
    max-width:100% ;
   
 }
 .service-steps-top-content{
    justify-content: center;
 }
 .service-steps-main-content>p {
   
    max-width: 100%;
    text-align: center;
 }
 .service-steps-main-content>h6 {
    
    text-align: center;
 }

}
@media screen and ( max-width : 992px ) {
    .col-4{
    width: 50%;
    padding: 15px;
   }
}

@media screen and ( max-width : 576px ) {
   .col-4{
    width: 100%;
    padding: 5px 15px;
   } 
   .service-bottom-img {
    
    height: 200px;
    margin-top: 10px;
    
 }
 .service-steps-main-content>h6 {
    margin-top: 5px;
 }
 .service-steps-main-content>p {
    margin-top: 10px;
   
  }
  .service-steps-content {
    
    margin-top: 15px;
 }
 .service-steps {
    margin-top: 40px;
 }
 .service-steps-top>h3 {
    font-size: 32px;
    
 }
}
    font-size: 40px;
    color: #343434;
    font-weight: 600;
    margin-top: 10px;
}

.sparepart3-section{
   margin-top: 40px;
}

.sparepart-dropdown {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}

.col-31 {
  width: calc(25% - 7.5px);
  /* width: 25%; */
  padding: 0 10px;
}

.dropdown-wrapper select {
  width: 100%;
  padding: 20px 12px;
  font-size: 17px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200l5%206%205-6H0z'%20fill%3D'%23999'%20/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  cursor: pointer;
}

/* Search Button Styling */
.search-btn {
  width: 100%;
  padding: 20px 0;
  background-color: #ff3d3d;
  color: #fff;
  font-size: 13px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-btn:hover {
  background-color: #e63333;
}

/* Responsive */
@media (max-width: 768px) {
  .col-31 {
    width: 100%;
    padding: 0px;
  }
}


.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    padding: 0 10px;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Header Styles */
/* .header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.header-title .subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.header-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.search-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.search-container {
    position: relative;
}

.search-input {
    width: 250px;
    padding: 10px 15px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-btn {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background: #c53030;
} */

/* Brand Search Styles */
.brand-search-container {
    position: relative;
    margin-bottom: 15px;
}

.brand-search-input {
    width: 100%;
    padding: 8px 12px 8px 35px;
    /* border: 1px solid #ddd; */
    /* border-radius: 4px; */
    font-size: 13px;
    /* background: #f8f9fa; */
    border: none;
}

.brand-search-input:focus {
    outline: none;
    border-color: #e53e3e;
    background: white;
}

.brand-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
}

/* Mobile Filters */
.mobile-filters {
    display: none;
    /* background: white; */
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.mobile-filters-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.mobile-filter-dropdown {
    position: relative;
}

.mobile-filter-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.mobile-filter-btn:hover {
    background: #e9ecef;
}

.mobile-filter-btn.active {
    background: #e53e3e;
    color: white;
    border-color: #e53e3e;
}

.mobile-filter-btn i {
    transition: transform 0.2s;
    font-size: 12px;
}

.mobile-filter-btn.active i {
    transform: rotate(180deg);
}

.mobile-filter-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-filter-content.active {
    max-height: 350px;
    padding: 15px;
}

.mobile-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.mobile-checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.mobile-checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.mobile-checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
}

.mobile-checkbox-item:hover input ~ .mobile-checkmark {
    border-color: #e53e3e;
}

.mobile-checkbox-item input:checked ~ .mobile-checkmark {
    background-color: #e53e3e;
    border-color: #e53e3e;
}

.mobile-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.mobile-checkbox-item input:checked ~ .mobile-checkmark:after {
    display: block;
}

.mobile-checkbox-item .mobile-checkmark:after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.mobile-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-category-item {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

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

.mobile-category-item:hover {
    color: #e53e3e;
}

.clear-filters-btn {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.2s;
}

.clear-filters-btn:hover {
    background: #5a6268;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

/* Desktop Sidebar Styles */
.desktop-sidebar {
    display: block;
}

.sidebar1 {
    background: white;
    border-radius: 8px;
    padding: 20px;
}

.filter-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 15px;
    padding-top: 10px;
}

.extra-option{
    display: block;
    margin: 8px 0px 0px 30px;

}

.filter-header i {
    transition: transform 0.2s;
}

.filter-header.active i {
    transform: rotate(180deg);
}

.filter-content {
    height: 140px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px !important;
    /* align-items: center; */
}

.filter-content.collapsed {
    max-height: 0;
}

.filter-item {
    padding: 5px 0;
    color:#252525;
    font-size: 14px;
    cursor: pointer;
    margin-left: 30px;
}

.filter-item:hover {
    color: #e53e3e;
}

.filter-group h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

/* Price Range */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.price-inputs span {
    font-size: 14px;
    color: #666;
}

.content-fitting{
  height: 200px !important;
}
.filter-para{
  padding-top: 6px;
  font-size: 14px;
}

.banner-extra{
  margin-top: 6px;
}


/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    padding-left: 30px;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 1px solid #4B4B4B;
    /* border-radius: 3px; */
}

.checkbox-item:hover input ~ .checkmark {
    border-color: #e53e3e;
}

.checkbox-item input:checked ~ .checkmark {
    background-color: #e53e3e;
    border-color: #e53e3e;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-item input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-item .checkmark:after {
    left: 7px;
    top: 5px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Products Grid */
.products-content {
    /* display: grid; */
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 31%;
}

.product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.product-image {
    width: 100%;
    height: 150px;
    background: #f5f5f5;
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #343434;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.star {
    color:#FF3434;
    font-size: 12px;
    margin-right: 2px;
}

.star.empty {
    color: #ddd;
}

.product-price {
    font-size: 25px;
    font-weight: 600;
    color: #343434;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #e53e3e;
    color: white;
}

.btn-primary:hover {
    background: #c53030;
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.cardsection-star{
    display: flex;
    justify-content: space-between;
}


/* new price tag  */

.filter-section {
  border-bottom: 1px solid #e0e0e0;
}

.section-header {
  /* padding: 16px 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  transition: background-color 0.2s;
}

.section-header:hover {
  background: #f8f9fa;
}

.section-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* .chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #666;
  border-bottom: 1.5px solid #666;
  transform: rotate(45deg);
  transition: transform 0.2s;
} */

.chevron.expanded {
  transform: rotate(225deg);
}

.section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.section-content.expanded {
  max-height: 500px;
}

.category-list {
  padding: 0 20px 16px;
}

.category-item {
  padding: 8px 0;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}

.category-item:hover {
  color: #007bff;
}

.show-more {
  color: #007bff;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
}

.show-more:hover {
  text-decoration: underline;
}

/* .price-section {
  padding: 16px 20px;
} */

.price-inputs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.price-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: white;
}

.price-input:focus {
  outline: none;
  border-color: #007bff;
}

.to-label {
  color: #666;
  font-size: 14px;
}


@media screen and ( max-width : 1200px ) {
    .price-input {
    flex: 1;
    padding: 8px 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
  }
}










/* Responsive Design */

@media screen and ( max-width : 1200px ) {
    .product-card {
    
    width: 48%;
 }
}

@media screen and ( max-width : 992px ) {
     .mobile-filters {
        display: block;
    }
    .desktop-sidebar {
        display: none;
    }
     /* .search-section {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    } */
      .search-input {
        width: 100%;
    }
    
    .mobile-filters-row {
        justify-content: center;
    }
    .col-3, .col-6, .col-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
     .mobile-filter-content {
   
    border: none;
    max-width: 100%;
    box-shadow: none;
   
  }
}


@media (max-width: 768px) {
    /* Show mobile filters */
    /* .mobile-filters {
        display: block;
    } */
    
    /* Hide desktop sidebar */
    /* .desktop-sidebar {
        display: none;
    } */
    
    /* Full width product grid */
    /* .col-3, .col-6, .col-9 {
        flex: 0 0 100%;
        max-width: 100%;
    } */
    
    .main-content {
    padding: 15px 0;
    }   
    
    .search-section {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    /* .search-input {
        width: 100%;
    }
    
    .mobile-filters-row {
        justify-content: space-between;
    } */
    
    .header-title h1 {
        font-size: 20px;
    }
   
}

@media (max-width: 576px) {
    /* .products-grid {
        grid-template-columns: 1fr;
    } */
  .col-9{
    padding: 0px;
  }
    
    .container {
        padding: 0 15px;
    }
    
    .mobile-filters-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .mobile-filter-dropdown {
        width: 100%;
    }
    
    .mobile-filter-btn {
        width: 100%;
        justify-content: space-between;
    }
    .product-card {
        width: 100%;
    }
    .spare-part-bg {
    font-size: 45px;
    
 }
 .products-banner {
    margin-top: 20px;
}
.products-banner-title > h3 {
    font-size: 28px;
    
}
.sparepart3-section {
    margin-top: 20px;
}
}



/* automobile section  */

.automobile-sec{
    margin-top: 75px;
}

.automobile-sec-top-part{
    margin: auto;
    text-align: center;
    padding: 0 15px;
}
.automobile-sec-top-part>h3{
    color: #252525;
    font-size: 42px;
    font-weight: 600;
}
.automobile-sec-top-part>h3>span{
    color: #FF3434;
    font-size: 42px;
    font-weight: 600;
}
.automobile-sec-top-part>p{
    font-size: 16px;
    color:#00000099;
    margin-top: 10px;
}

#automobile-services{
    margin-top: 45px;
}


.automobile-div{
    max-width:210px ;
    min-height:100px ;
    background-color: #D9D9D999;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and ( max-width : 576px ) {
  .automobile-sec-top-part>h3>span{
    font-size: 26px;
  }
  .automobile-sec-top-part>h3 {
    font-size: 26px;
  }
  .automobile-sec {
    margin-top: 20px;
 }
 .automobile-sec-top-part>p{
  font-size: 13px;
 }
}


/* footer section  */

.footer{
    background: no-repeat center/cover url(../assest/img/Footer\ an\ Copy\ right\ \(1\).png);
    min-height: 426px;
    margin-top: 75px;
}
.col-120{
    width: 100%;
}
.footer-content{
    display: flex;
    flex-wrap: wrap;
    margin-top: 34px;
}
.col-41{
    width: 40%;
     padding: 0 15px;
}
.col-15{
    width: 15%;
     padding: 0 15px;
}
.col-25{
    width: 25%;
     padding: 0 15px;
    
}
.col-20{
    width: 20%;
    padding: 0 15px;
}
.footer-logo{
    max-width: 201px;
    width: 100%;
}
.footer-logo>img{
    
    width: 100%;
    object-fit: contain;
}
.footer-content-p1{
    max-width: 365px;
    font-size: 16px;
    color: #FFFFFF;
    width: 100%;
    line-height: 100%;
    margin-top: 20px;
}
.footer-content-p2{
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 40px;
}
#footer-email {
  padding: 15px 10px;
  width: 100%;
  max-width: 450px;
  /* margin: 10px 0; */
  border: 1px solid #ccc;
  border-radius: 5px;
  /* height: 56px; */
  margin-top: 21px;
  background-color: transparent;
}

.footer-side1-btn {
  background-color:#FF3434 ;
  /* color: white; */
  border: none;
  padding: 15px 10px;
  width: 100%;
  max-width: 450px;
  border-radius: 4px;
  /* font-weight: bold; */
  /* cursor: pointer; */
  /* height: 56px; */
  text-align: center;
  margin-top: 21px;
}
.footer-side1-btn:hover{
  background-color: #4b2004;
  /* transform: scale(1.1); */
  transform: translateY(-10px);
}
.footer-side1-btn>a{
    color: #FFFFFF;
}

.footer2div{
    margin-top: 55px;
}
.footer2div>h3{
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 600;
    text-wrap: nowrap;
}
.footer2divlink1{
    margin-top: 25px;
   
}
.footer2divlink1>a{
   
     color: #FFFFFF;
}
.footer2divlink1>a:hover{
  color: #F13636;
  transform: scale(1.1);
}
.footer2divlink2{
    margin-top: 20px;
    
}
.footer2divlink2>a{
    
     color: #FFFFFF;
}
.footer2divlink2>a:hover{
  color: #F13636;
  transform: scale(1.1);
}
.footer2divlink3{
    margin-top: 20px;
    
}
.footer2divlink3>a{
    
     color: #FFFFFF;
}
.footer2divlink3>a:hover{
  color: #F13636;
  transform: scale(1.1);
}
.footer2divlink4{
    margin-top: 20px;
   
}
.footer2divlink4>a{
   
     color: #FFFFFF;
}
.footer2divlink4>a:hover{
  color: #F13636;
  transform: scale(1.1);
}
.footer3div{
   margin-top: 55px; 
}
.footer3div>h3{
    font-size: 20px;
     color: #FFFFFF;
    font-weight: 600;
}
.footer3div>p{
    
     color: #FFFFFF;
    
}
.footer3div>p{
    margin-top: 25px;
}
.footer4div-logo-content1{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.footer4div-logo-content1:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.footer4div-logo-content1>a{
    color: #FFFFFF;
}
.footer4div-logo-content1>a:hover{
   color: #F13636;
  transform: scale(1.1);
}
.footer4div{
    margin-top: 55px;
}
.footer4div>h3{
     font-size: 20px;
     color: #FFFFFF;
    font-weight: 600;
     text-wrap: nowrap;
}
.footer4div-logo-content2{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.footer4div-logo-content2:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.footer4div-logo-content2>a{
    color: #FFFFFF;
}
.footer4div-logo-content2>a:hover {
      color: #F13636;
      transform: scale(1.1);
  }
.footer4div-logo-content3{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.footer4div-logo-content3:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.footer4div-logo-content3>a{
    color: #FFFFFF;
}
.footer4div-logo-content3>a:hover{
    color: #F13636;
    transform: scale(1.1);
}

.footer-line{
    max-width:1360px ;
    height:1px ;
    width: 100%;
    background-color:#FFFFFF ;
    margin-top: 23px;
}
.footer-bottom{
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-bottom>p{
    color: #FFFFFF;
    font-size: 14px;
}
.footer-bottom-links{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-bottom-links>a{
    color: #FFFFFF;
    font-size: 14px;
}

@media screen and ( max-width : 992px ) {
     .footer4div>h3{
     font-size: 16px;
    
  }
   .footer2div>h3{
     font-size: 16px;
    
  }
  .footer2divlink1>a{
   
     font-size: 14px;
 } 
 .footer2divlink2>a{
   
     font-size: 14px;
 } 
 .footer2divlink3>a{
   
     font-size: 14px;
 } 
 .footer2divlink4>a{
   
     font-size: 14px;
 } 
 .footer3div>p {
    font-size: 14px;
  }
  .footer4div-logo-content1>a {
     font-size: 14px;
 }
 .footer4div-logo-content2>a {
     font-size: 14px;
 }
.footer4div-logo-content3>a {
     font-size: 14px;
 }
}

@media screen and ( max-width : 768px) {
    /* .footer4div>h3{
     font-size: 16px;
    
  }
   .footer2div>h3{
     font-size: 16px;
    
  }
  .footer2divlink1>a{
   
     font-size: 14px;
 } 
 .footer2divlink2>a{
   
     font-size: 14px;
 } 
 .footer2divlink3>a{
   
     font-size: 14px;
 } 
 .footer2divlink4>a{
   
     font-size: 14px;
 } 
 .footer3div>p {
    font-size: 14px;
  }
  .footer4div-logo-content1>a {
     font-size: 14px;
 }
 .footer4div-logo-content2>a {
     font-size: 14px;
 }
.footer4div-logo-content3>a {
     font-size: 14px;
 } */
 .footer-side1-btn {
  
  padding: 12px 10px;
  
 }
 #footer-email {
  padding: 12px 10px;
  
 }
  .col-41{
    width: 100%;
    padding: 0px;
     
 }
 .col-15{
    width: 33%;
    /* padding: 0px; */
     
 }
.col-25{
    width: 33%;
    /* padding: 0px; */
     
    
 }
.col-20{
    width: 33%;
    /* padding: 0px; */
    
 }
}


@media screen and ( max-width : 576px ) {
    .col-41{
    width: 100%;
    padding: 0px;
     
 }
.col-15{
    width: 50%;
    padding: 0px;
     
 }
.col-25{
    width: 50%;
    padding: 0px;
     
    
 }
.col-20{
    width: 50%;
    padding: 0px;
    
 } 
 .footer-bottom {
   
    justify-content: center;
    
 }
 .footer-bottom-links {
   
    gap: 11px;
    justify-content: center;
 }
 .footer{
  margin-top: 40px;
 }
 
}