@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.form {
  --inputsize: 48px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: var(--black);
  --borderafter: var(--secondary);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: 500;
  --inputsize: 42px;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: #838282;
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: none;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group.file-input input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize) - var(--borderwidth));
  position: relative;
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url(../../icon/clip-gray.svg) no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: calc(var(--inputsize) - var(--borderwidth));
}
.form .form-group.file-input .file-name::before, .form .form-group.file-input .file-name::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.form .form-group.file-input .file-name::before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize) - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.form .form-group.file-input .file-name::after {
  content: "";
  right: 0;
  background: var(--image);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  --paddingleftright: 0;
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: url(../../icon/location-gradient.svg);
  --iconspace: 8px;
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  transition: 0.5s ease;
}
.custom-select.has-icon::after {
  left: 0;
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: break-spaces;
  font-size: 14px;
}
.custom-select .list li.selected {
  background: var(--secondary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--secondary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.filter-ul li {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.filter-ul li:has(input:checked) .check-span {
  background: var(--primary);
}
.filter-ul li:has(input:checked) .check-span::before {
  opacity: 1;
}
.filter-ul li input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.filter-ul li .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 20px;
  height: var(--size);
  width: var(--size);
  position: relative;
  padding: 0;
  border-radius: 5px;
  background: #D9D9D9;
  pointer-events: none;
}
.filter-ul li .check-span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url(../../icon/tick-white.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 10px auto;
  opacity: 0;
}
.filter-ul li p {
  padding-left: 14px;
}
.filter-ul li:not(:last-child) {
  margin-bottom: 10px;
}
.filter-ul li p {
  font-size: 14px;
  color: var(--text);
}

.checkbox-full {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}
.checkbox-full:has(input:checked) .check-span::before {
  opacity: 1;
}
.checkbox-full input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.checkbox-full .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 20px;
  height: var(--size);
  width: var(--size);
  position: relative;
  padding: 0;
  border-radius: 5px;
  background: #D9D9D9;
  pointer-events: none;
}
.checkbox-full .check-span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url(../../icon/tick-white.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 10px auto;
  opacity: 0;
}
.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}
.radio-full input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.radio-full .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 17px;
  display: inline-block;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  background: transparent;
}
.radio-full p {
  padding-left: 14px;
}

.proListing_banner::before {
  background: #F6ECE2;
}
.proListing_banner .bg {
  height: 65vh;
}
@media only screen and (max-width: 768px) {
  .proListing_banner .bg {
    height: 35vh;
  }
}
@media only screen and (max-width: 670px) {
  .proListing_banner .bg {
    height: 45vh;
  }
}
.proListing_banner .bg .banner-wrapper {
  top: 55%;
}
@media only screen and (max-width: 670px) {
  .proListing_banner .bg .banner-wrapper {
    top: 45%;
  }
}
.proListing_banner .bg .banner-wrapper .content {
  display: flex;
}
@media only screen and (max-width: 670px) {
  .proListing_banner .bg .banner-wrapper .content {
    justify-content: center;
  }
}
.proListing_banner .bg .banner-wrapper .content .wrapper-image {
  width: 450px;
}
@media only screen and (max-width: 991px) {
  .proListing_banner .bg .banner-wrapper .content .wrapper-image {
    width: 230px;
  }
}
.proListing_banner .bg .banner-wrapper .content .heading {
  position: absolute;
  text-align: left;
  top: 40%;
  left: 58%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 991px) {
  .proListing_banner .bg .banner-wrapper .content .heading {
    left: 55%;
  }
}
@media only screen and (max-width: 670px) {
  .proListing_banner .bg .banner-wrapper .content .heading {
    top: 120%;
    left: 50%;
    text-align: center;
    width: 80%;
  }
}
.proListing_banner .bg .banner-wrapper .content .heading h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
  padding-bottom: 5px;
}
@media only screen and (max-width: 991px) {
  .proListing_banner .bg .banner-wrapper .content .heading h2 {
    font-size: 26px;
  }
}
.proListing_banner .bg .banner-wrapper .content .heading p {
  max-width: 350px;
  margin: 0 auto;
  font-weight: 300;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .proListing_banner .bg .banner-wrapper .content .heading p {
    font-size: 14px;
  }
}
.proListing_banner .bg .banner-wrapper .content .banner-logo {
  position: absolute;
  top: 70%;
  left: 85%;
  transform: translate(-50%, -50%);
  width: 118.6px;
}
@media only screen and (max-width: 991px) {
  .proListing_banner .bg .banner-wrapper .content .banner-logo {
    width: 80px;
  }
}
@media only screen and (max-width: 670px) {
  .proListing_banner .bg .banner-wrapper .content .banner-logo {
    width: 83px;
    top: 19%;
    right: 10%;
  }
}

.product_listingA {
  position: relative;
}
.product_listingA .main_wrapper {
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .product_listingA .main_wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.product_listingA .main_wrapper .colA {
  flex: 0 1 25%;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper {
  position: sticky;
  top: calc(var(--headerheight) + 20px);
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2509803922);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .title_head {
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--secondary);
  border-radius: 10px 10px 0 0;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .title_head h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .title_head .clear_all_btn {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col.active .title h6 {
  color: var(--primary);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col.active .title .icon {
  --bgcolor: var(--primary);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col.active .title .icon::after {
  transform: scale(0);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col .title {
  padding: 10px 20px;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col .title h6 {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col .title .icon {
  flex: 0 1 auto;
  --size: 18px;
  --border: 2px;
  --bgcolor: var(--black);
  height: var(--size);
  width: var(--size);
  position: relative;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col .title .icon::before, .product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col .title .icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  transition: 0.5s ease;
  background: var(--bgcolor);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col .title .icon::after {
  left: calc(var(--size) / 2);
  translate: -50% 0;
  right: auto;
  width: var(--border);
  height: 100%;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col .title .icon::before {
  top: calc(var(--size) / 2 - var(--border) / 2);
  bottom: auto;
  height: var(--border);
  width: 100%;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article {
  padding: 10px 30px 10px 0;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul {
  margin-right: -5px;
  padding: 10px 0;
  overflow-y: auto;
  max-height: 200px;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: var(--primary);
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul li {
  padding: 3px 20px;
  display: flex;
  position: relative;
  align-items: center;
  gap: 12px;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul li input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul li .chk_box {
  --chk_height: 20px;
  height: var(--chk_height);
  width: var(--chk_height);
  border-radius: 5px;
  background-color: #D9D9D9;
  position: relative;
  transition: 0.5s ease;
  position: relative;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul li .chk_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: url(../../icon/tick-white.svg);
  transition: 0.5s ease;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul li .chk_box::before {
  background-repeat: no-repeat;
  background-size: 48%;
  background-position: center center;
  opacity: 0;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul li:has(input:checked) .chk_box {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transition: 0.5s ease;
}
.product_listingA .main_wrapper .colA .filter_option_wrapper .filter_options .col article ul li:has(input:checked) .chk_box::before {
  opacity: 1;
}
.product_listingA .main_wrapper .colB {
  flex: 1;
  width: 100%;
}
.product_listingA .main_wrapper .colB .upper_sec {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.product_listingA .main_wrapper .colB .upper_sec .total_pro_count p {
  color: #000000;
  font-weight: 500;
}
.product_listingA .main_wrapper .colB .upper_sec .sort_by_wrapper {
  width: 150px;
  border: 1px solid #C3C0C0;
  border-radius: 5px;
  color: #666666;
}
.product_listingA .main_wrapper .colB .upper_sec .sort_by_wrapper .custom-select {
  padding: 8px 10px;
}
.product_listingA .main_wrapper .colB .upper_sec .sort_by_wrapper .custom-select::before {
  right: 10px;
}
.product_listingA .main_wrapper .colB .product_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 20px 0 50px;
}
@media only screen and (max-width: 991px) {
  .product_listingA .main_wrapper .colB .product_wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .product_listingA .main_wrapper .colB .product_wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 10px;
    padding: 20px 0px 50px;
  }
}
.product_listingA .main_wrapper .colB .product_wrapper .item {
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #dbdbdb;
  text-align: center;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col {
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption {
    padding: 10px 5px 15px;
  }
  .product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption .price_wrapper {
    gap: 5px;
  }
  .product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption .price_wrapper .price {
    font-size: 14px;
  }
  .product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption .price_wrapper .mrp {
    font-size: 12px;
  }
  .product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption .price_wrapper .disct {
    font-size: 10px;
  }
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col:hover .product-btn {
  transform: translateY(0%);
}
@media only screen and (max-width: 540px) {
  .product_listingA .main_wrapper .colB .product_wrapper .item .product-col:hover .product-btn {
    display: none;
  }
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .wishlist {
  width: 22px;
  position: absolute;
  top: 18px;
  right: 15px;
  z-index: 1;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .wishlist .svg {
  transform: scale(1);
  cursor: pointer;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .product-img {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  .product_listingA .main_wrapper .colB .product_wrapper .item .product-col .product-img {
    padding: 15px;
  }
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .product-img:hover .product-btn {
  transform: translateY(0%);
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .product-img img:hover .product-btn {
  transform: translateY(0%);
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption {
  width: 100%;
  background: none;
  bottom: 0;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption .price_wrapper {
  justify-content: center;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption h6 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 20px;
}
@media only screen and (max-width: 540px) {
  .product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption h6 {
    font-size: 12px;
  }
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption .flex {
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  padding-bottom: 5px;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption .flex .quant {
  border-right: 1px solid var(--text);
  padding-right: 10px;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col figcaption .price {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .product-btn {
  transform: translateY(100%);
  transition: 0.5s ease;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: purple;
  display: flex;
  justify-content: space-between;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .product-btn a {
  width: 50%;
  color: var(--white);
  padding: 10px;
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .product-btn a:first-child {
  background: var(--secondary);
}
.product_listingA .main_wrapper .colB .product_wrapper .item .product-col .product-btn a:last-child {
  background: #1DA9E1;
}
.product_listingA .main_wrapper .colB .btn_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 540px) {
  .product_listingA .main_wrapper .colB .btn_wrap svg {
    width: 50px;
  }
}
.product_listingA .main_wrapper .colB .btn_wrap button {
  font-family: Poppins;
  font-weight: 500;
  color: #9A9A9A;
  font-size: 16px;
  line-height: 100%;
}

.product-detail-container {
  margin-top: var(--headerheight);
}
@media only screen and (max-width: 540px) {
  .product-detail-container {
    margin-top: 130px;
  }
}
.product-detail-container .breadcrumps {
  padding-top: 10px;
}
.product-detail-container .breadcrumps li {
  display: inline-block;
  vertical-align: middle;
}
.product-detail-container .breadcrumps li a {
  color: var(--text);
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}
@media only screen and (max-width: 520px) {
  .product-detail-container .breadcrumps li a {
    font-size: 12px;
    text-overflow: ellipsis;
  }
}
.product-detail-container .breadcrumps li a.active {
  color: var(--secondary);
}
.product-detail-container .breadcrumps li:nth-child(3)::before {
  content: "";
}
.product-detail-container .breadcrumps li:last-child {
  display: none;
}
.product-detail-container .detail-product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 65px;
  margin-top: 35px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap {
    display: block;
    padding-bottom: 50px;
  }
}
.product-detail-container .detail-product-wrap .colA .pro_preview_wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_img {
  border: 1px solid #dbdbdb;
  width: 100%;
  border-radius: 10px;
  position: relative;
}
.product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_img .pro-main-img {
  width: 344px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_img .pro-main-img {
    width: 100%;
  }
}
.product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_img img {
  border-radius: 10px;
}
.product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_grid {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_grid {
    gap: 14px;
  }
}
.product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_grid button {
  display: block;
  border: 1px solid var(--text);
  border-radius: 5px;
  padding: 10px;
  opacity: 0.4;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_grid button {
    padding: 5px;
  }
}
.product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_grid button.active {
  opacity: 1;
  border: 1px solid var(--primary);
}
.product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_grid button img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_grid button img {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colA .pro_preview_wrap .pro_preview_grid button img {
    width: 50px;
    height: 40px;
  }
}
.product-detail-container .detail-product-wrap .colB .pro_title {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.168627451);
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .pro_title {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .pro_title {
    margin-top: 25px;
    padding-bottom: 25px;
  }
}
.product-detail-container .detail-product-wrap .colB .pro_title h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  font-family: Poppins;
  line-height: 27px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .pro_title h6 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .pro_title h6 {
    font-size: 17px;
    margin-bottom: 4px;
    line-height: 1.4;
  }
}
.product-detail-container .detail-product-wrap .colB .pro_title p {
  font-weight: 400;
  color: var(--text);
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .pro_title p {
    font-weight: 400;
    color: var(--text);
  }
}
.product-detail-container .detail-product-wrap .colB .pro_quant {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.168627451);
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details.active .menu-dropdown {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.231372549);
  padding-right: 25px;
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details.has_dropdown {
  padding-right: 50px;
  cursor: pointer;
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details.has_dropdown::before {
  content: "";
  position: absolute;
  width: 15px;
  background: url(/assets/icon/arrow-down-gray.svg) no-repeat;
  height: 100%;
  right: 20px;
  top: 40%;
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details .menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  text-align: center;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  background-color: var(--white);
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details .menu-dropdown ul {
  display: block;
  background: #fff;
  padding: 12px 0px;
  box-shadow: rgba(0, 0, 0, 0.01) -2px 6px 2px 3px;
  white-space: nowrap;
  border-radius: 5px;
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details .menu-dropdown ul li {
  cursor: pointer;
  text-align: center;
  gap: 10px;
  padding: 5px;
  font-size: 14px;
  color: var(--text);
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details .menu-dropdown ul li:hover {
  background-color: rgba(193, 193, 193, 0.2509803922);
  color: var(--black);
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details svg, .product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details img {
  width: 25px;
  height: 100%;
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_quant_det .pro_details p {
  color: var(--text);
  font-weight: 500;
}
.product-detail-container .detail-product-wrap .colB .pro_quant .pro_tag {
  flex: 0 1 auto;
}
.product-detail-container .detail-product-wrap .colB .pro_desc {
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.168627451);
}
.product-detail-container .detail-product-wrap .colB .pro_desc p {
  font-weight: 400;
  color: var(--text);
}
.product-detail-container .detail-product-wrap .colB .pro_price {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .product-detail-container .detail-product-wrap .colB .pro_price {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .pro_price {
    gap: 6px 20px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: start;
    padding: 0;
  }
}
.product-detail-container .detail-product-wrap .colB .pro_price .sp {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--black);
}
.product-detail-container .detail-product-wrap .colB .pro_price .mrp {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  text-decoration: line-through;
}
.product-detail-container .detail-product-wrap .colB .pro_price .disct {
  font-size: 16px;
  font-weight: 500;
  color: #3E8329;
}
.product-detail-container .detail-product-wrap .colB .pro_price .value_wrap {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .pro_price .value_wrap {
    flex: 1;
    min-width: 100%;
  }
}
.product-detail-container .detail-product-wrap .colB .pro_price .value_wrap .minus-val, .product-detail-container .detail-product-wrap .colB .pro_price .value_wrap .plus-val {
  width: 30px;
  height: 30px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--text);
  outline: none;
  border-radius: 50%;
}
.product-detail-container .detail-product-wrap .colB .pro_price .value_wrap .count-val {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
  color: var(--text);
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .pro_price .value_wrap .count-val {
    width: 25px;
  }
}
.product-detail-container .detail-product-wrap .colB .mesg {
  padding: 10px 0 0 0;
}
.product-detail-container .detail-product-wrap .colB .mesg p {
  position: relative;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  padding-bottom: 10px;
  line-height: 1.2;
}
.product-detail-container .detail-product-wrap .colB .impo {
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.168627451);
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .impo {
    padding: 20px 0;
  }
}
.product-detail-container .detail-product-wrap .colB .impo .pro_btns {
  padding: 35px 0 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns {
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 0;
  }
}
.product-detail-container .detail-product-wrap .colB .impo .pro_btns a {
  --height: 43px;
  --padding: 24px;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns a img {
    width: 50%;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns a {
    flex: 0.5;
    height: 30px;
  }
}
.product-detail-container .detail-product-wrap .colB .impo .pro_btns .whatsapp-icon {
  width: 32px;
  height: 43px;
  flex: 1.4;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns .whatsapp-icon {
    flex: 0.3;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns .whatsapp-icon {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex: 0.7;
  }
}
.product-detail-container .detail-product-wrap .colB .impo .pro_btns .enquirebtn .animate-button {
  padding: 9px 24px;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns .enquirebtn .animate-button {
    padding: 4px 24px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns .enquirebtn .animate-button {
    padding: 4px 55px;
  }
}
.product-detail-container .detail-product-wrap .colB .impo .pro_btns .enquirebtn .animate-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns .enquirebtn .animate-button a {
    height: 22px;
  }
}
@media only screen and (max-width: 540px) and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .pro_btns .enquirebtn .animate-button a p {
    font-size: 12px;
  }
}
.product-detail-container .detail-product-wrap .colB .impo .pro_btns .secondary {
  background: #1DA9E1;
}
.product-detail-container .detail-product-wrap .colB .impo .msg {
  display: flex;
  justify-content: left;
  gap: 15px;
  align-items: center;
  padding: 5px 15px;
  background: #FFEDED;
  border-radius: 5px;
  border: 1px dashed #BFBFBF;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .impo .msg {
    padding: 2px 15px;
  }
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .msg {
    padding: 5px 15px;
    justify-content: start;
    gap: 5px;
  }
}
.product-detail-container .detail-product-wrap .colB .impo .msg .cigar-img {
  width: 30px;
  display: flex;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .msg .cigar-img {
    width: 22px;
  }
}
.product-detail-container .detail-product-wrap .colB .impo .msg p {
  color: #8B4633;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .impo .msg p {
    font-size: 10px;
  }
}
.product-detail-container .detail-product-wrap .colB .add_info {
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}
.product-detail-container .detail-product-wrap .colB .add_info h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
  padding-bottom: 10px;
}
.product-detail-container .detail-product-wrap .colB .add_info ul {
  padding-left: 25px;
}
.product-detail-container .detail-product-wrap .colB .add_info ul li {
  position: relative;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
  line-height: 1.2;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .add_info ul li {
    font-size: 14px;
  }
}
.product-detail-container .detail-product-wrap .colB .add_info ul li::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 4px;
  width: 7px;
  height: 7px;
  background: var(--text);
  border-radius: 50%;
}
.product-detail-container .detail-product-wrap .colB .col-itqeq {
  display: flex;
  padding-top: 25px;
}
@media only screen and (max-width: 991px) {
  .product-detail-container .detail-product-wrap .colB .col-itqeq {
    padding-top: 20px;
  }
}
.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv {
  flex: 1;
  padding: 10px 43px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv {
    padding: 10px 4px;
  }
}
.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv:not(:last-child) {
  border-right: 1px solid #CFCFCF;
}
.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv .ico {
  line-height: 0;
  margin-bottom: 15px;
}
.product-detail-container .detail-product-wrap .colB .col-itqeq .rgcwv p {
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}

.related-sec {
  padding: 60px 0 0px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .related-sec {
    padding: 40px 0 0 0;
  }
}
.related-sec .heading-img {
  width: 80px;
  margin: auto;
}
@media only screen and (max-width: 540px) {
  .related-sec .heading-img {
    width: 50px;
  }
}
.related-sec .heading-img img {
  animation: wiggle 2s ease-in-out infinite;
  transform-origin: center;
}
.related-sec .heading {
  margin-top: 10px;
}
.related-sec .heading h2 {
  color: var(--primary);
}
.related-sec .related_slider_sec {
  padding: 50px 0;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .related-sec .related_slider_sec {
    padding: 30px 0 50px 0;
  }
}
.related-sec .related_slider_sec .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 104%;
  position: absolute;
  top: 50%;
  left: -2%;
  translate: 0% -50%;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .related-sec .related_slider_sec .swiper-nav {
    display: none;
  }
}
.related-sec .related_slider_sec .swiper-nav button {
  width: 45px;
  height: 45px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.3490196078);
}
.related-sec .related_slider_sec .swiper-nav button.swiper-prev:hover svg {
  translate: -5px 0;
}
.related-sec .related_slider_sec .swiper-nav button.swiper-next:hover svg {
  translate: 5px 0;
}
.related-sec .related_slider_sec .swiper-nav button svg {
  transition: 0.3s ease;
  vertical-align: middle;
}
.related-sec .related_slider_sec .swiper-nav button svg path {
  fill: var(--black);
}
.related-sec .related_slider_sec .item {
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #dbdbdb;
  text-align: center;
}
.related-sec .related_slider_sec .item .product-col {
  width: 100%;
  height: 100%;
  position: relative;
}
.related-sec .related_slider_sec .item .product-col:hover .product-btn {
  transform: translateY(0%);
}
.related-sec .related_slider_sec .item .product-col .wishlist {
  width: 22px;
  position: absolute;
  top: 18px;
  right: 15px;
  z-index: 1;
}
.related-sec .related_slider_sec .item .product-col .wishlist .svg {
  transform: scale(1);
  cursor: pointer;
}
.related-sec .related_slider_sec .item .product-col .product-img {
  width: 100%;
  padding: 25px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.related-sec .related_slider_sec .item .product-col .product-img:hover .product-btn {
  transform: translateY(0%);
}
.related-sec .related_slider_sec .item .product-col .product-img img:hover .product-btn {
  transform: translateY(0%);
}
.related-sec .related_slider_sec .item .product-col figcaption {
  width: 100%;
  background: none;
  bottom: 0;
}
.related-sec .related_slider_sec .item .product-col figcaption .price_wrapper {
  justify-content: center;
}
.related-sec .related_slider_sec .item .product-col figcaption h6 {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 20px;
}
.related-sec .related_slider_sec .item .product-col figcaption .flex {
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  padding-bottom: 5px;
}
.related-sec .related_slider_sec .item .product-col figcaption .flex .quant {
  border-right: 1px solid var(--text);
  padding-right: 10px;
}
.related-sec .related_slider_sec .item .product-col figcaption .price {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
}
.related-sec .related_slider_sec .item .product-col .product-btn {
  transform: translateY(100%);
  transition: 0.5s ease;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: purple;
  display: flex;
  justify-content: space-between;
}
.related-sec .related_slider_sec .item .product-col .product-btn a {
  width: 50%;
  color: var(--white);
  padding: 10px;
}
.related-sec .related_slider_sec .item .product-col .product-btn a:first-child {
  background: var(--secondary);
}
.related-sec .related_slider_sec .item .product-col .product-btn a:last-child {
  background: #1DA9E1;
}

.pin-line {
  position: relative;
  background-color: var(--white);
  height: 20px;
}
.pin-line::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 7px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-bottom: 2px dashed var(--secondary);
}
.pin-line::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 0px;
  transform: rotate(1deg);
  width: 215px;
  height: 76px;
  z-index: 1;
  background: url(../../images/home/pin.svg) no-repeat;
  background-position: 100% 100%;
}
@media only screen and (max-width: 540px) {
  .pin-line::after {
    right: 1px;
    top: -32px;
    width: 110px;
    background-size: contain;
  }
}

.wishlist-fill {
  fill: var(--primary);
}

.enquire-btn {
  border: none;
  z-index: 2;
  border-radius: 25px;
  position: relative;
}
.enquire-btn a {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 5%;
  right: 2%;
  font-size: 16px;
  transition: background-color 0.3s;
  color: var(--white) !important;
  padding: 8px 21px;
  border-radius: 25px;
  background: var(--secondary);
}
.enquire-btn a:hover {
  background-color: var(--primary);
}/*# sourceMappingURL=product.css.map */