@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif !important;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #fff !important;
  padding: 5px 0 !important;
  z-index: 100;
  font-family: "Raleway", sans-serif !important;
}
header .main-menu {
  display: flex;
  align-items: center;
}
header .main-menu .logo {
  width: 16%;
}
header .main-menu .logo a {
  height: auto;
  display: block;
}
header .main-menu .logo img {
  max-width: 100%;
  width: 100%;
}
header .main-menu .nav-right {
  width: 84%;
  display: flex;
  align-items: center;
  justify-content: end;
}
header .main-menu .nav-right ul {
  display: flex;
  align-items: center;
  justify-content: end !important;
  gap: 0 !important;
  margin-right: 20px;
}
header .main-menu .nav-right ul li {
  display: inline;
  padding: 9px 10px;
}
header .main-menu .nav-right ul li a {
  color: #000000;
  font-size: 14px !important;
  font-weight: 400;
  text-decoration: none;
  font-family: "Raleway", sans-serif !important;
}
header .main-menu .nav-right .contact-btn {
  padding: 12px 15px 12px 15px !important;
  background-color: #ac2826;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase !important;
  font-family: "montserrat", sans-serif !important;
}
header .main-menu .nav-right .contact-btn:hover {
  background-color: #000;
}

.dropdown-wrapper {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ac2826;
  width: 220px;
  flex-direction: column !important;
  transform: translateX(10px);
  transition: all 0.3s;
}
.dropdown li {
  display: block !important;
  width: 100% !important;
  padding: 15px 15px !important;
}
.dropdown li a {
  color: #fff !important;
  display: block !important;
  width: 100% !important;
}
.dropdown li:hover {
  background-color: #000;
}
.dropdown li:hover a {
  color: #fff !important;
}

.dropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
}

.dropdown-wrapper:hover > .dropdown,
.dropdown-wrapper:focus-within > .dropdown {
  display: block !important;
}

header.fixed {
  background: rgba(255, 255, 255, 0.8784313725) !important;
}
header.fixed .logo {
  width: 16%;
  position: static;
  left: 0;
  top: 0;
  z-index: 9;
}

.filter-toggle-btn {
  position: fixed;
  top: 30%;
  left: 0;
  padding: 10px 10px 6px 10px;
  background-color: #ac2826;
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  z-index: 99999 !important;
  display: none;
  cursor: pointer;
  font-size: 25px;
}

.filter-toggle-btn.activeBtn {
  display: block;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  cursor: pointer;
  text-align: right;
  justify-content: end;
}

.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
  position: relative;
}

.menu-btn {
  width: 38px;
  height: 40px;
  position: relative;
  background-color: #ac2826;
  flex-direction: column;
  align-items: end;
  gap: 4px;
  display: flex;
  padding: 12px 8px;
  border-radius: 20px 0 20px 0;
}

/* Hamburger to X transition */
.menu-toggle.active .menu-btn span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .menu-btn span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-btn span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-top {
  display: none;
}

p,
label,
span,
input,
a {
  font-family: "Raleway", sans-serif !important;
  letter-spacing: 0.5px !important;
}

.container {
  margin: 0 auto;
  width: 94%;
  max-width: 1500px;
}

.product-section {
  width: 100% !important;
}
.product-section .container {
  margin: 90px auto 20px auto !important;
  width: 93.5%;
}
.product-section .products-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.product-section .products-row .filter-panel {
  width: 20%;
  padding: 15px;
  background-color: rgba(172, 40, 38, 0.0588235294);
  position: sticky;
  top: 90px;
}
.product-section .products-row .product-outer {
  width: 80%;
  padding: 20px;
  background-color: rgba(239, 239, 239, 0.3);
}
.product-section .products-row .product-outer .grids {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 25px;
}
.product-section .products-row .product-outer .grids .grid {
  width: 32%;
}
.product-section .products-row .product-outer .grids .grid a {
  text-decoration: none;
}
.product-section .products-row .product-outer .grids .grid a:hover {
  color: #ac2826 !important;
}
.product-section .products-row .product-outer .grids .grid img {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-section .products-row .product-outer .grids .grid h4 {
  background-color: rgba(172, 40, 38, 0.062745098);
  color: #000;
  padding: 10px;
  margin-top: -5px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.product-section .products-row .product-outer .grids .grid h4:hover {
  color: #ac2826 !important;
}
.product-section .products-row .product-outer .grids .grid:hover {
  color: #ac2826 !important;
}
.product-section .products-row .product-outer.fullwidth {
  width: 100%;
}
.product-section .products-row .product-outer.fullwidth .grids {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 25px;
}
.product-section .products-row .product-outer.fullwidth .grids .grid {
  width: 23.5%;
}
.product-section .products-row .product-outer.fullwidth .grids .grid a {
  text-decoration: none;
}
.product-section .products-row .product-outer.fullwidth .grids .grid a:hover {
  color: #ac2826 !important;
}
.product-section .products-row .product-outer.fullwidth .grids .grid img {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}

.reset-row {
  padding-bottom: 0 !important;
}

.product-details-outer.grids-outer {
  width: 100%;
}
.product-details-outer.grids-outer a {
  margin-bottom: 20px;
}
.product-details-outer.grids-outer .products-slider .slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-details-outer.grids-outer .products-slider .slide .img-box {
  width: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  overflow: hidden;
}
.product-details-outer.grids-outer .products-slider .slide .img-box img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 1s;
  cursor: pointer;
}
.product-details-outer.grids-outer .products-slider .slide .img-box img:hover {
  transform: scale(1.1);
  transition: 1s;
}
.product-details-outer.grids-outer .products-slider .slide .head-row {
  width: 50%;
  padding: 20px;
}
.product-details-outer.grids-outer .products-slider .slide .head-row .head {
  width: 100%;
}
.product-details-outer.grids-outer .products-slider .slide .head-row .head h3 {
  color: #000 !important;
  -webkit-text-fill-color: #000000 !important;
  text-align: left !important;
  font-weight: 500;
  font-size: 25px;
  text-transform: capitalize !important;
  margin-bottom: 20px !important;
}
.product-details-outer.grids-outer .products-slider .slide .head-row .head h3 span {
  color: #ac2826;
  -webkit-text-fill-color: initial;
  padding-left: 5px !important;
}
.product-details-outer.grids-outer .products-slider .slide .head-row .head p {
  color: #000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px !important;
  line-height: 25px;
  margin-bottom: 20px !important;
}
.product-details-outer.grids-outer .products-slider .brand-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
}
.product-details-outer.grids-outer .products-slider .brand-name .img-box {
  width: 70%;
}
.product-details-outer.grids-outer .products-slider .brand-name .col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  color: #fff;
}
.product-details-outer.grids-outer .products-slider .brand-name .col:nth-child(2) {
  width: 35%;
  justify-content: center;
}
.product-details-outer.grids-outer .products-slider .brand-name .col:nth-child(2) span {
  margin: 0 10px;
}
.product-details-outer.grids-outer .products-slider .brand-name .col:nth-child(2) span .icon {
  border-radius: 50%;
  border: 1px solid #ac2826;
  height: 75px;
  width: 75px;
  padding: 5px;
}
.product-details-outer.grids-outer .products-slider .brand-name .col:nth-child(2) span .country {
  color: #ac2826;
}

.product-details .product-details-outer.grids-outer {
  width: 90%;
  margin: 0 auto;
}

.related-items {
  width: 100%;
  margin-left: auto;
  margin-top: 2%;
  padding: 20px 0 40px 0;
}
.related-items .head {
  padding: 0 0 30px 0;
}
.related-items .custom-flex {
  display: flex;
  gap: 30px;
}
.related-items .custom-flex .col {
  width: 23%;
  color: #fff;
}
.related-items .custom-flex .col a {
  text-decoration: none;
  color: #000;
}
.related-items .custom-flex .col a:hover {
  color: #ac2826;
}
.related-items .custom-flex .col img {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-items .custom-flex .col h4 {
  background-color: rgba(172, 40, 38, 0.062745098);
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  margin-top: -5px;
}

.slide-footer {
  margin-top: 35px;
}
.slide-footer .goback-btn {
  background-color: #ac2826;
  border: 1px solid #ac2826;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  margin-right: 5px;
}
.slide-footer .goback-btn:hover {
  background-color: transparent;
  color: #ac2826;
}
.slide-footer .contact-btn {
  background-color: transparent;
  border: 1px solid #ac2826;
  color: #ac2826;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
}
.slide-footer .contact-btn:hover {
  background-color: #ac2826;
  color: #fff;
}

.fieldset {
  border: none !important;
}

.filter-form h3 {
  padding-bottom: 15px;
}
.filter-form .form-box {
  padding: 5px 0;
  font-size: 14px;
}
.filter-form .row {
  padding-bottom: 20px;
}
.filter-form .head {
  padding-bottom: 15px;
}

.empty {
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reset {
  background-color: #ac2826;
  padding: 10px 20px;
  color: #fff;
  border: none;
  outline: none;
  border: 1px solid #ac2826;
  border-radius: 30px;
}
.reset:hover {
  background: transparent;
  color: #ac2826;
}

.quicklinks {
  margin: 30px 0;
  text-align: left;
}
.quicklinks a {
  background-color: #ac2826;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #ac2826;
  border-radius: 30px;
}
.quicklinks a:hover {
  background: transparent;
  color: #ac2826;
}

.search-div {
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #ac2826;
}
.search-div input {
  border: none;
  border-radius: 30px 0 0 30px;
  outline: none;
  border: 1px solid #ac2826;
}
.search-div input:hover {
  border: 1px solid rgba(172, 40, 38, 0.6941176471);
}
.search-div input:focus {
  border: 1px solid rgba(172, 40, 38, 0.6941176471);
}

#search-btn {
  background-color: #ac2826;
  color: #fff;
  border: 1px solid #ac2826;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
}

footer {
  font-family: "Raleway", sans-serif !important;
  letter-spacing: 0.5px !important;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: #222222;
  font-style: 14px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer .footer-row {
  padding: 20px 0;
  align-items: center;
}
footer .footer-row .footer-col-1 {
  width: 30%;
}
footer .footer-row .footer-col-1 img {
  width: 80%;
  padding: 5px 10px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
footer .footer-row .footer-col-2 {
  width: 60%;
}
footer .footer-row .footer-col-2 h4 {
  text-align: center;
}
footer .footer-row .footer-col-2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
footer .footer-row .footer-col-2 ul li {
  display: inline;
  padding: 10px;
}
footer .footer-row .footer-col-3 {
  width: 20%;
  text-align: right;
}
footer .footer-row .footer-col-3 .social-links {
  display: flex;
  justify-content: end;
  gap: 10px;
}
footer .footer-row .footer-col-3 .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
}
footer .footer-row .footer-col-3 .social-links a:hover {
  background-color: #ac2826;
  color: #fff;
}

.search-div {
  margin-top: 10px;
  margin-bottom: 10px;
}

.filter-panel.closed {
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  display: none;
}

.filter-panel.open {
  display: block;
}

.product-section .products-row .product-outer.fullwidth {
  width: 100%;
}

.filter-col.active {
  display: block;
  position: static;
  left: 0;
}

@media (max-width: 1100px) {
  .product-details-outer.grids-outer .products-slider .slide .head {
    width: 100%;
  }
}
/* Hide filter-col by default on small screens */
@media (max-width: 768px) {
  .filter-col.active {
    display: block;
    position: absolute;
    left: 0;
    padding: 10px;
    top: 50px;
  }
  .search-div {
    margin-top: 5px;
  }
  .mobile-top {
    display: block;
    width: 100%;
    padding: 5px;
    text-align: center;
  }
  .mobile-top a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
  }
  header .main-menu {
    flex-wrap: wrap;
  }
  header .main-menu .logo {
    width: 20%;
  }
  .menu-toggle {
    width: 80%;
    text-align: center;
    align-items: end;
  }
  .nav-right {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100% !important;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px;
    display: none !important;
  }
  .nav-right ul {
    flex-direction: column;
    width: 100%;
  }
  .filter-btn {
    width: 100%;
  }
  .filter-btn svg {
    width: 20px;
  }
  .nav-right ul li {
    width: 100%;
  }
  .dropdown {
    position: static !important;
    top: 100%;
    left: 0;
    display: block !important;
    margin-left: -10px !important;
    margin-top: 10px !important;
  }
  .dropdown-wrapper:hover > .dropdown,
  .dropdown-wrapper:focus-within > .dropdown {
    display: block !important;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-contact {
    display: flex;
    align-items: start;
    justify-content: start;
    margin: 0;
    width: 100%;
    padding: 0 10px;
  }
  .nav-right {
    justify-content: start !important;
  }
  .nav-right ul {
    margin-right: 0 !important;
  }
  .nav-right.show {
    display: flex !important;
    padding: 10px 0 !important;
    height: 70vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
    /* Optional: Custom scrollbar styling for Webkit browsers */
  }
  .nav-right.show ::-webkit-scrollbar {
    width: 8px;
  }
  .nav-right.show ::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
  .nav-right.show ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .filter-col {
    padding-top: 10px;
    display: block;
    width: 100%;
    height: 70vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
    /* Optional: Custom scrollbar styling for Webkit browsers */
  }
  .filter-col .search-div {
    margin-bottom: 20px;
  }
  .filter-col ::-webkit-scrollbar {
    width: 8px;
  }
  .filter-col ::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
  .filter-col ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .filter-col.active {
    display: block;
    position: absolute;
    left: 0;
    top: 50px;
  }
  .product-section .products-row .filter-panel {
    padding: 10px;
  }
  .filter-panel br {
    display: none;
  }
  .product-section .container {
    margin-top: 100px !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: 100%;
  }
  .product-section .products-row {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .product-section .products-row .filter-panel {
    width: 70%;
    background-color: #fff3f5;
    top: 90px;
  }
  .product-section .products-row .product-outer {
    width: 100%;
    padding: 10px 10px;
  }
  .product-section .products-row .product-outer .grids .grid {
    width: 100%;
  }
  .product-section .products-row .product-outer .grids .grid img {
    width: 100%;
    height: 120px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .product-details-outer.grids-outer .products-slider {
    padding: 10px;
  }
  .product-details-outer.grids-outer .products-slider .slide {
    flex-direction: column;
  }
  .product-details-outer.grids-outer .products-slider .slide .img-box {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
  }
  .product-details-outer.grids-outer .products-slider .slide .img-box img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-details-outer.grids-outer .products-slider .slide .head-row {
    width: 100%;
    padding: 10px 0;
  }
  .product-details-outer.grids-outer .products-slider .slide .head-row .head h3 {
    font-size: 22px !important;
  }
  .product-details-outer.grids-outer .products-slider .slide .head-row .head p {
    font-size: 14px !important;
  }
  .footer-row {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .product-details-outer.grids-outer .products-slider .img-box img {
    height: 200px !important;
  }
  .related-items {
    padding: 10px;
  }
  .related-items .custom-flex {
    flex-wrap: wrap;
    gap: 10px;
  }
  .related-items .custom-flex .col {
    width: 100%;
  }
  .related-items .custom-flex .col img {
    height: 120px;
  }
  footer {
    font-family: "Raleway", sans-serif !important;
    letter-spacing: 0.5px !important;
    width: 100%;
    padding: 10px;
    color: #fff;
    background: #222222;
    font-style: 14px;
  }
  footer a {
    color: #fff;
    text-decoration: none;
  }
  footer .footer-row {
    padding: 30px 0;
    align-items: center;
    gap: 20px;
  }
  footer .footer-row .footer-col-1 {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  footer .footer-row .footer-col-1 img {
    width: 60%;
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  footer .footer-row .footer-col-2 {
    width: 100%;
  }
  footer .footer-row .footer-col-2 h4 {
    text-align: center;
  }
  footer .footer-row .footer-col-2 ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    text-align: center;
    flex-wrap: wrap;
  }
  footer .footer-row .footer-col-2 ul li {
    display: inline;
    padding: 5px;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .footer-row .footer-col-3 {
    width: 100%;
    text-align: center;
  }
  footer .footer-row .footer-col-3 .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  footer .footer-row .footer-col-3 .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
  }
  footer .footer-row .footer-col-3 .social-links a:hover {
    background-color: #ac2826;
    color: #fff;
  }
  .product-section .products-row .product-outer.fullwidth .grids .grid {
    width: 32%;
  }
}
@media (max-width: 468px) {
  header .main-menu .logo {
    width: 50%;
  }
  .menu-toggle {
    width: 50%;
    text-align: center;
    align-items: end;
  }
  .product-section .products-row .product-outer.fullwidth .grids .grid {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */