:root {
  --black: #000;
  --white: #fff;
  --blue: #3f6c51;
}

.breadcrumb {
  position: relative;
  margin-bottom: 0;
  text-align: center;
  color: var(--white);
  padding: 100px 0 50px;
  background-position: center;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 50%);
  width: 100%;
  height: 100%;
}

.breadcrumb ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-left: 0;
  margin-bottom: 0;
}

.breadcrumb ul li {
  list-style: none;
}

.breadcrumb ul li a {
  color: var(--white);
  text-decoration: none;
}

.breadTitle {
  position: relative;
  z-index: 9;
}

.breadTitle h1 {
  color: var(--white);
}

.py-80 {
  padding: 80px 0;
}

.listingBox {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
  margin: auto;
  margin-bottom: 25px;
}

.listingCont {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  text-align: center;
  padding: 20px;
}

.listingCont a {
  color: var(--black);
  text-decoration: none;
}

.listingCont {
  background: var(--lightGrey);
  width: 100%;
}

.flexFilter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flexColor {
  display: flex;
  gap: 10px;
}

.custom-checkbox input[type="checkbox"],
.color-checkbox input[type="checkbox"] {
  display: none;
}

.custom-checkbox,
.color-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid var(--blue);
  margin-right: 8px;
  background-color: var(--white);
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
  background-color: var(--blue);
  border-color: var(--blue);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.flexColor .item:nth-child(1) .checkmark {
  background-color: var(--green);
}

.flexColor .item:nth-child(2) .checkmark {
  background-color: var(--red);
}

.flexColor .item:nth-child(3) .checkmark {
  background-color: var(--blue);
}

.flexColor .item:nth-child(4) .checkmark {
  background-color: var(--black);
}

.color-checkbox .checkmark {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
}

.color-checkbox input[type="checkbox"]:checked + .checkmark::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.listing .sidebar {
  position: sticky;
  top: 150px;
}

.sidebar {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
}

.sidebar h4 {
  margin-bottom: 15px;
  text-transform: uppercase;
}

.listingBox .cartBtn {
  transform: translateY(-45px);
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: all 500ms ease;
  left: 0;
  right: 0;
  position: absolute;
}

.listingBox:hover .cartBtn {
  transform: translateY(-55px);
  opacity: 1;
  transition: all 500ms ease;
}

.blueBtn {
  position: relative;
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  background-color: var(--blue);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.blueBtn:hover {
  color: var(--white);
  text-decoration: none;
}

.blueBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  z-index: 0;
  transition: left 0.4s ease-in-out;
}

.blueBtn:hover::before {
  left: 0;
}

.blueBtn span {
  position: relative;
  z-index: 2;
}

.range-slider {
  height: 5px;
  position: relative;
  background-color: #e1e9f6;
  border-radius: 2px;
}
.range-selected {
  height: 100%;
  left: 30%;
  right: 30%;
  position: absolute;
  border-radius: 5px;
  background-color: #3f6c51;
}

.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input input::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px solid #3f6c51;
  background-color: #fff;
  pointer-events: auto;
  -webkit-appearance: none;
}
.range-input input::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 3px solid #3f6c51;
  background-color: #fff;
  pointer-events: auto;
  -moz-appearance: none;
}

.range-price {
  margin: 20px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.range-price label {
  margin-right: 5px;
}
.range-price input {
  width: 100px;
  padding: 5px;
  border: 1px solid #e1e9f6;
}
.range-price input:first-of-type {
  margin-right: 15px;
}

.range-price input[name="max"] {
  text-align: end;
}

.range-price input:focus-visible {
  outline: none;
}

.price {
  font-size: 20px;
  color: #fbb217;
  font-weight: 600;
}

#field1 {
  display: flex;
  gap: 5px;
}

#field1 button {
  background: var(--black);
  border: none;
  width: 35px;
  height: 35px;
  color: var(--white);
  font-size: 22px;
}

#field1 input {
  border-radius: 0;
  border: 1px solid var(--black);
}

.btn-learn-more {
  background: #3f6c51;
  color: #fff;
  border-radius: 0;
  padding: 10px 20px;
}

.btn-learn-more:hover {
  background: #3f6c51;
  color: #fff;
}

.mt-15 {
  margin-top: 15px;
}

.loginForm {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 50px 0;
}

.badge {
  position: absolute;
  right: -15px;
  background: #bc700f;
}

.section-mrgn {
  margin: 50px 0;
}

.cart-data table img {
  height: 50px;
}

.cart-data table tr td {
  vertical-align: middle;
}

.shop-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-checkout a {
  border-radius: 0;
}
