@charset "UTF-8";
@font-face {
  font-family: "Afacad Regular";
  src: url("../../fonts/Afacad/Afacad-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Afacad Medium";
  src: url("../../fonts/Afacad/Afacad-Medium.ttf") format("truetype");
}
:root {
  --Afacad-Regular: "Afacad Regular", sans-serif;
  --Afacad-Medium: "Afacad Medium", sans-serif;
  --primary-main-color: #DF3E17;
  --white: #fff;
  --black: #22223C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.2;
  font-family: var(--Afacad-Regular);
  background-color: #FAFAFA;
}

main {
  max-width: 1920px;
  margin: 0 auto;
}

img,
video {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:focus-visible,
img:focus-visible {
  outline: 0 !important;
}

input:focus-visible,
textarea:focus-visible {
  outline: 0px !important;
}

.primary-title {
  color: var(--black);
  font-size: clamp(30px, 4vw, 52px);
  font-family: var(--Afacad-Regular);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.desc {
  font-size: clamp(14px, 4vw, 17px);
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  line-height: 1.1;
  color: rgba(34, 34, 60, 0.5019607843);
}

.primary-btn {
  background-color: var(--primary-main-color);
  color: var(--white);
  font-family: var(--Afacad-Regular);
  font-size: clamp(14px, 4vw, 16px);
  padding: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  display: block;
  max-width: fit-content;
}
.primary-btn[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.primary-btn.white {
  background-color: var(--white);
  color: var(--primary-main-color);
}

/* SIDEBAR START STYLE */
body.open-sidebar .sidebar,
body.open-filter .filter-card-main {
  transition-delay: 0.2s;
}

body.open-sidebar .sidebar-bg,
body.open-filter .filter-bg,
body.open-sidebar .sidebar,
body.open-filter .filter-card-main {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.filter-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.sidebar-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 350px;
  background-color: var(--white);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
  z-index: 102;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 10px;
  border-bottom: 1px solid var(--black);
}

.sidebar .sidebar-body {
  overflow: auto;
  height: calc(100% - 80px);
  padding: 15px;
}

.sidebar .sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar .sidebar-body ul li {
  border-bottom: 1px solid var(--black);
}

.sidebar .sidebar-body ul li a {
  display: block;
  padding: 10px;
  color: var(--black);
  font-size: 1.1rem;
}

.sidebar .sidebar-body ul li:last-child {
  border-bottom: none;
}

.sidebar .sidebar-body ul.dropdown {
  padding: 0px;
  display: none;
}

.sidebar .sidebar-body ul.dropdown li {
  border-bottom: none;
  border-top: 1px solid #eee;
}

.sidebar .sidebar-body ul.dropdown li .our-simple-main {
  padding-left: 20px;
  font-size: 16px;
}

/* HEADER STYLE START */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  z-index: 999;
  right: 20px;
}

header {
  position: sticky;
  top: 0;
  padding: 20px 0px;
  z-index: 999;
  background-color: var(--white);
  box-shadow: 0px 2px 4px 0px rgba(34, 34, 60, 0.2);
}
@media screen and (max-width: 992px) {
  header {
    z-index: 9;
  }
}
header .header-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
header .header-menu li {
  position: relative;
}
header .header-menu li a {
  color: var(--black);
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 400;
}
header .header-menu li a.active {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--white);
}
header .header-menu li a.our-brands::after {
  content: "";
  background-image: url("../../images/chevron-down.svg");
  width: 10px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
header .header-menu li a.our-brands {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
header .header-phone {
  color: var(--primary-main-color);
  font-size: clamp(16px, 4vw, 18px);
  font-family: var(--Afacad-Medium);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}
header div.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 99vw;
  background: #fff;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
}
header div.custom-dropdown .brand-grid {
  display: flex;
  border-top: 1px solid #E0E0E0;
  overflow: auto;
}
header div.custom-dropdown .brand-grid .brand-card {
  flex: 0 0 250px;
  text-align: center;
  border-radius: 8px;
}
header div.custom-dropdown .brand-grid .brand-card a {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0px;
  border-right: 1px solid #E0E0E0;
}
header div.custom-dropdown .brand-grid .brand-card a .image {
  min-height: 70px;
  line-height: 70px;
  height: 70px;
}
header div.custom-dropdown .brand-grid .brand-card a h3 {
  color: var(--black);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  letter-spacing: -0.5px;
}
header div.custom-dropdown .brand-grid .brand-card a .view-all {
  color: var(--primary-main-color);
  font-size: clamp(14px, 4vw, 16px);
}

.brand-grid::-webkit-scrollbar {
  height: 4px;
}

.brand-grid::-webkit-scrollbar-thumb {
  background-color: var(--primary-main-color);
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  header {
    padding: 20px 0px;
  }
  .menu-open svg {
    fill: var(--primary-main-color);
  }
}
/* HEADER STYLE CLOSE */
/* SLIDER LOGO STYLE START */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.sliderLogo {
  overflow: hidden;
  background: #FAFAFA;
  white-space: nowrap;
  border-top: 1px solid rgba(34, 34, 60, 0.1019607843);
  border-bottom: 1px solid rgba(34, 34, 60, 0.1019607843);
  position: relative;
}

.sliderLogo-slide {
  display: inline-flex;
  animation: 35s slide infinite linear;
}

.logoImage {
  line-height: 150px;
  border-right: 1px solid rgba(34, 34, 60, 0.1019607843);
  padding: 20px;
  text-align: center;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .logoImage {
    line-height: 100px;
    padding: 0px;
    width: 200px;
  }
}

/* SLIDER LOGO STYLE CLOSE */
/* FOOTER STYLE START */
.border-top {
  border-top: 1px solid rgba(34, 34, 60, 0.1019607843);
  margin: 20px 0px;
}

.main-footer {
  background-color: var(--white);
  padding-top: 70px;
  background-image: url("../../images/footer-bg.png");
  background-position: top left;
  background-size: 70% auto;
  background-repeat: no-repeat;
}
.main-footer h3 {
  font-size: clamp(18px, 4vw, 24px);
  color: var(--primary-main-color);
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.main-footer ul {
  padding: 0;
  margin: 0;
}
.main-footer ul li {
  list-style: none;
}
.main-footer ul li a {
  font-size: clamp(14px, 4vw, 16px);
  color: var(--black);
  margin-bottom: 5px;
  display: block;
}
.main-footer span {
  color: rgba(34, 34, 60, 0.6980392157);
  font-size: clamp(14px, 4vw, 16px);
}
.main-footer span a {
  color: rgba(34, 34, 60, 0.6980392157);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-family: var(--Afacad-Medium);
}

/* FOOTER STYLE CLOSE */
/* HUSSAIN STYLE START */
.why-choose-us {
  margin: 30px 0px;
}
@media screen and (max-width: 768px) {
  .why-choose-us {
    margin: 15px 0px;
  }
}
.why-choose-us .feature-card {
  border-radius: 4px;
  padding: 46px;
  background: rgba(34, 34, 60, 0.0509803922);
  border: 1px solid rgba(34, 34, 60, 0.1019607843);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .why-choose-us .feature-card {
    padding: 40px 20px;
  }
}
.why-choose-us .feature-card .icon {
  font-size: 24px;
  color: #0d6efd;
}
.why-choose-us .feature-card h5 {
  font-size: clamp(26px, 4vw, 32px);
  margin-bottom: 12px;
  color: var(--black);
}
.why-choose-us .feature-card p {
  font-size: clamp(14px, 4vw, 17px);
  color: rgba(34, 34, 60, 0.8);
}
.why-choose-us .cta-card {
  background-color: var(--primary-main-color);
  border-radius: 4px;
  padding: 46px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .why-choose-us .cta-card {
    padding: 40px 20px;
  }
}
.why-choose-us .cta-card .icon {
  font-size: 24px;
  color: var(--white);
}
.why-choose-us .cta-card h5 {
  margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 32px);
  color: var(--white);
}
.why-choose-us .cta-card p {
  color: var(--white);
  opacity: 0.9;
  font-size: clamp(14px, 4vw, 17px);
}
.why-choose-us .cta-card .primary-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 8px 20px;
}

.banner-section {
  padding: 70px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .banner-section {
    padding: 30px 0px;
    margin-bottom: 30px;
    background-position: center;
  }
}
.banner-section .banner-text {
  max-width: 570px;
  margin: auto;
  text-align: center;
}
.banner-section h1 {
  font-size: clamp(30px, 5vw, 64px);
  letter-spacing: -1px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
}
.banner-section p {
  font-size: clamp(16px, 4vw, 20px);
  color: var(--white);
  margin: 20px 0px;
}
.banner-section .primary-btn {
  font-size: clamp(16px, 4vw, 18px);
  letter-spacing: -0.5px;
  font-family: var(--Afacad-Medium);
  text-transform: capitalize;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-section img {
  cursor: pointer;
  border-radius: 5px;
}
.banner-section .form-card-main {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(50px);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .banner-section .form-card-main {
    padding: 20px;
  }
}
.banner-section .form-card-main form .input {
  position: relative;
  margin-bottom: 20px;
}
.banner-section .form-card-main form .input.error input {
  border: 1px solid #e15837 !important;
}
.banner-section .form-card-main form .input .iti {
  width: 100%;
}
.banner-section .form-card-main form .input .iti .iti__flag-container {
  padding-inline-start: 20px;
}
.banner-section .form-card-main form .input .iti .iti__tel-input {
  padding-left: 100px !important;
}
.banner-section .form-card-main form .input .iti .iti__search-input {
  padding: 10px;
}
.banner-section .form-card-main form .input input {
  background: rgb(255, 255, 255);
  width: 100%;
  padding: 20px 16px 20px 50px;
  border-radius: 36px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 60, 0.5);
  border: 0;
}
.banner-section .form-card-main form .input input::placeholder {
  color: rgba(34, 34, 60, 0.5);
}
.banner-section .form-card-main form .input .error-txt {
  display: block;
  width: 100%;
  color: #e15837;
  font-size: 12px;
  font-family: var(--Afacad-Medium);
}
.banner-section .form-card-main form .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}
.banner-section .form-card-main form .primary-btn {
  background-color: var(--primary-main-color);
  color: var(--white);
  font-family: var(--Afacad-Regular);
  font-size: clamp(14px, 4vw, 16px);
  padding: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: unset;
  border: none;
}

#videoModal {
  margin-top: 20px;
}
#videoModal .modal-content {
  background-color: transparent;
  border-radius: 8px;
  max-width: 1000px;
}
#videoModal .modal-content .video-container {
  border-radius: 8px;
}
#videoModal .modal-content .video-container #bannerVideo {
  border-radius: 8px;
}
#videoModal #closeModalBtn {
  position: absolute;
  top: 40px;
  right: 40px;
}
@media screen and (max-width: 768px) {
  #videoModal #closeModalBtn {
    top: 20px;
    right: 20px;
  }
}

.testimonial-section {
  position: relative;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .testimonial-section {
    margin: 15px 10px;
  }
}
.testimonial-section .testimonial-position {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(50% 50% at 50% 50%, rgba(121, 34, 12, 0.7) 0%, rgba(223, 62, 23, 0.7) 100%);
  max-width: 50%;
  width: 100%;
  padding: 0 100px;
  color: var(--white);
  z-index: 2;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  gap: 70px;
  height: 100%;
}
.testimonial-section .testimonial-position .primary-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.testimonial-section .testimonial-position .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1192px) {
  .testimonial-section .testimonial-position {
    padding: 0 70px;
    gap: 20px;
    max-width: unset;
  }
}
@media screen and (max-width: 992px) {
  .testimonial-section .testimonial-position {
    padding: 0 30px;
    gap: 20px;
    max-width: unset;
  }
}
.testimonial-section .testimonial-text {
  display: grid;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .testimonial-section .testimonial-text {
    gap: 20px;
  }
}
.testimonial-section .text-name-main p.desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6980392157);
}
.testimonial-section .text-name-main span {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  color: #fff;
}
.testimonial-section .testimonial-arrow {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .testimonial-section .testimonial-arrow {
    margin-top: 0;
  }
}
.testimonial-section .testimonial-arrow .swiper-button-disabled img {
  cursor: not-allowed !important;
  opacity: 0.5;
}
.testimonial-section .testimonial-arrow .testimonial-prev img,
.testimonial-section .testimonial-arrow .testimonial-next img {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.testimonial-section .testimonial-image .swiper-slide img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-height: 400px;
  object-fit: cover;
  object-position: center;
}

/* HUSSAIN STYLE CLOSE */
/* NOMAN STYLE START */
.closeFilter,
.openFilter {
  cursor: pointer;
}

.product-section {
  margin: 30px 0px;
}
@media screen and (max-width: 768px) {
  .product-section {
    margin: 15px 0px;
  }
}
.product-section .desc {
  max-width: 650px;
}
.product-section .filter-card-main {
  position: sticky;
  top: 0;
  /* Hover effects */
}
.product-section .filter-card-main .filter-panel {
  background: white;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}
@media screen and (max-width: 992px) {
  .product-section .filter-card-main .filter-panel {
    margin-bottom: 25px;
  }
}
.product-section .filter-card-main .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.product-section .filter-card-main .filter-title {
  font-family: var(--Afacad-Regular);
  font-size: 22px;
  font-weight: 400;
  color: rgb(34, 34, 60);
}
.product-section .filter-card-main .filter-icon {
  color: var(--primary-main-color);
  font-size: 16px;
  cursor: pointer;
}
.product-section .filter-card-main .filter-section {
  margin-bottom: 20px;
}
.product-section .filter-card-main .filter-label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.product-section .filter-card-main .dropdown-arrow {
  color: #666;
  font-size: 12px;
  transition: transform 0.3s ease;
}
.product-section .filter-card-main .dropdown-arrow.active img {
  transform: rotate(0deg);
}
.product-section .filter-card-main .dropdown-arrow img {
  transform: rotate(-90deg);
  transition: 0.3s all;
}
.product-section .filter-card-main .model-options {
  display: block;
  margin-left: 0;
}
.product-section .filter-card-main .model-option {
  display: flex;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
}
.product-section .filter-card-main .model-option.hidden {
  display: none;
}
.product-section .filter-card-main .model-option:hover {
  background-color: #f8f9fa;
  border-radius: 6px;
  margin: 0 -8px;
  padding: 8px 8px;
}
.product-section .filter-card-main .checkbox-input {
  display: none;
}
.product-section .filter-card-main .checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(223, 62, 23, 0.1);
  border-radius: 3px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 62, 23, 0.1);
  transition: all 0.2s ease;
}
.product-section .filter-card-main .checkbox-input:checked + .checkbox {
  background-color: var(--primary-main-color);
  border-color: var(--primary-main-color);
}
.product-section .filter-card-main .checkbox-input:checked + .checkbox::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.product-section .filter-card-main .option-text {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  color: rgb(34, 34, 60);
  font-weight: 400;
  flex: 1;
}
.product-section .filter-card-main .collapsed .model-options {
  display: none;
}
.product-section .filter-card-main .collapsed .dropdown-arrow {
  transform: rotate(-90deg);
}
.product-section .filter-card-main .filter-label span {
  font-family: var(--Afacad-Regular);
  font-size: 18px;
  color: rgb(34, 34, 60);
  font-weight: 400;
}
.product-section .filter-card-main .filter-label:hover {
  color: var(--primary-main-color);
}
.product-section .filter-card-main .filter-label:hover .dropdown-arrow {
  color: var(--primary-main-color);
}
@media screen and (max-width: 992px) {
  .product-section .filter-card-main {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 350px;
    background-color: var(--white);
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
    z-index: 102;
    transform: translateX(400px);
    visibility: hidden;
    transition: 0.3s;
    opacity: 0;
    overflow: auto;
  }
  .product-section .filter-card-main .filter-panel {
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
  }
}
.product-section .heading-main {
  border-bottom: solid 1px rgba(34, 34, 60, 0.1);
  margin-bottom: 30px;
}
.product-section .land-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  z-index: 2;
}
.product-section .land-card-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200vh;
  height: 100%;
  background-color: #FAFAFA;
  z-index: -1;
}
.product-section .land-card-main.right {
  margin-left: 0;
  right: auto;
}
.product-section .land-card-main.right::after {
  left: 0;
}
@media screen and (max-width: 1300px) {
  .product-section .land-card-main.right {
    margin-right: 0;
  }
}
@media screen and (max-width: 1300px) {
  .product-section .land-card-main {
    margin-left: 0;
  }
}
.product-section .land-card-main .img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-section .land-card-main .product-button-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .product-section .land-card-main .product-button-main {
    justify-content: center;
    margin-bottom: 20px;
  }
}
.product-section .land-card-main .product-button-main .arrow-main {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-section .land-card-main .product-button-main .arrow-main a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--primary-main-color);
  border-radius: 100%;
}
.product-section .land-card-main .product-button-main .arrow-main a.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-section .product-slider-main .swiper-slide {
  height: auto;
}
.product-section .product-card-main {
  background-color: rgb(255, 255, 255);
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 20px;
  border-radius: 4px;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.product-section .product-card-main:hover .product-img-main .img-main .eye-img {
  transform: translateY(50px);
  visibility: visible;
  opacity: 1;
}
.product-section .product-card-main .product-img-main .img-main {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  position: relative;
}
.product-section .product-card-main .product-img-main .img-main .land-img {
  border: solid 1px rgba(34, 34, 60, 0.2);
  background: rgb(255, 255, 255);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-section .product-card-main .product-img-main .img-main .eye-img {
  border: solid 1px var(--primary-main-color);
  background: var(--primary-main-color);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  transition: 0.3s all;
  transform: translateY(0);
  visibility: hidden;
  cursor: pointer;
  opacity: 0;
}
.product-section .product-card-main .product-img-main .custom-card-slider {
  position: relative;
  z-index: 0;
}
.product-section .product-card-main .title-link h4 {
  font-family: var(--Afacad-Regular);
  font-size: 24px;
  font-weight: 400;
}
.product-section .product-card-main .title-link a {
  font-family: var(--Afacad-Medium);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-main-color);
  text-decoration: underline;
}

.our-simple-main {
  margin: 80px 0px;
}
.our-simple-main.active svg path {
  fill: var(--white);
}
.our-simple-main.active .counting-circle-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 492px;
  overflow: hidden;
  margin: 0 auto 30px auto;
}
.our-simple-main.active .counting-circle-main .circle-number {
  width: 48px;
  height: 48px;
  display: flex;
  background: var(--primary-main-color);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.our-simple-main.active .counting-circle-main .circle-number::before {
  transition: 0.7s ease all;
  content: "";
  position: absolute;
  top: 50%;
  left: 48px;
  border: dashed 1px var(--primary-main-color);
  width: 110px;
}
.our-simple-main.active .counting-circle-main .circle-number span {
  font-family: var(--Afacad-Regular);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.our-simple-main.active .simple-card-main {
  border: solid 1px var(--primary-main-color);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 20px);
  margin-bottom: 20px;
}
.our-simple-main.active .simple-card-main .svg-main {
  border-bottom: solid 1px rgba(34, 34, 60, 0.05);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.our-simple-main.active .simple-card-main .svg-main .icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--primary-main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-simple-main .heading-main {
  text-align: center;
}
.our-simple-main .counting-circle-main {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  max-width: 492px;
  overflow: hidden;
  margin: 0 auto 30px auto;
}
.our-simple-main .counting-circle-main .circle-number {
  width: 48px;
  height: 48px;
  display: flex;
  background: rgb(240, 240, 240);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.our-simple-main .counting-circle-main .circle-number span {
  font-family: var(--Afacad-Regular);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}
.our-simple-main .counting-circle-main .connecting-lines {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  height: 1.5px;
  z-index: -1;
  transform: translateY(-50%);
}
.our-simple-main .counting-circle-main .connecting-line {
  position: absolute;
  top: 0;
  height: 1.5px;
  width: 0;
}
.our-simple-main .counting-circle-main .connecting-line:nth-child(2) {
  background-image: linear-gradient(to right, #dedddd 50%, transparent 50%);
  background-size: 20px 2px;
  width: 100%;
  transition: width 4.5s ease-in-out;
}
.our-simple-main .simple-card-main {
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  transition: 0.7s ease all;
}
.our-simple-main .simple-card-main .svg-main {
  border-bottom: solid 1px rgba(34, 34, 60, 0.05);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.our-simple-main .simple-card-main .svg-main .icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: rgba(34, 34, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.7s ease all;
}
.our-simple-main .simple-card-main .simple-text-main span {
  font-family: var(--Afacad-Medium);
  font-size: 16px;
  color: var(--primary-main-color);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.our-simple-main .simple-card-main .simple-text-main h5 {
  font-family: var(--Afacad-Regular);
  font-size: 28px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1;
}
.our-simple-main .simple-card-main .simple-text-main p {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgba(34, 34, 60, 0.6);
  margin-bottom: 0;
}

.modal-product-slider-main {
  position: relative;
  padding-inline: 50px;
}
.modal-product-slider-main .product-img {
  text-align: center;
  position: relative;
  z-index: 0;
}
.modal-product-slider-main .modal-arrow-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.modal-product-slider-main .modal-arrow-main a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--primary-main-color);
  border-radius: 100%;
}
.modal-product-slider-main .modal-arrow-main a.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#productModal #closeModalBtn {
  width: 25px;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1;
  cursor: pointer;
}

#productModal .modal-content {
  border-radius: 0;
}

.map-section-main {
  margin: 50px 0;
  padding-block: 30px;
}
@media screen and (max-width: 768px) {
  .map-section-main {
    margin: 15px 0px;
  }
}
.map-section-main .heading-main {
  text-align: center;
  margin-bottom: 30px;
}
.map-section-main .heading-main h2 {
  margin-bottom: 10px;
}
.map-section-main .map-slider-main {
  margin-top: -250px;
}
@media screen and (max-width: 992px) {
  .map-section-main .map-slider-main {
    margin-top: -140px;
  }
}
@media screen and (max-width: 768px) {
  .map-section-main .map-slider-main {
    margin-top: -60px;
  }
}
.map-section-main .map-slider-main .swiper-slide {
  height: auto;
}
.map-section-main .map-slider-main .map-card-main {
  position: relative;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}
.map-section-main .map-slider-main .map-card-main:hover .map-img-main {
  transform: translateY(0);
}
.map-section-main .map-slider-main .map-card-main:hover .map-card {
  background-color: var(--primary-main-color);
}
.map-section-main .map-slider-main .map-card-main:hover .map-card .icon-text-main p {
  color: rgba(255, 255, 255, 0.5);
}
.map-section-main .map-slider-main .map-card-main:hover .map-card .icon-text-main h6 {
  color: rgb(255, 255, 255);
}
.map-section-main .map-slider-main .map-card-main:hover .map-card .icon-text-main span {
  background: rgb(255, 255, 255);
}
.map-section-main .map-slider-main .map-card-main:hover .map-card .icon-text-main span svg path {
  fill: var(--primary-main-color);
}
.map-section-main .map-slider-main .map-card-main:hover .map-card p {
  color: rgba(255, 255, 255, 0.6);
}
.map-section-main .map-slider-main .map-card-main.active .map-card {
  background-color: var(--primary-main-color);
}
.map-section-main .map-slider-main .map-card-main.active .map-card .icon-text-main p {
  color: rgba(255, 255, 255, 0.5);
}
.map-section-main .map-slider-main .map-card-main.active .map-card .icon-text-main h6 {
  color: rgb(255, 255, 255);
}
.map-section-main .map-slider-main .map-card-main.active .map-card .icon-text-main span {
  background: rgb(255, 255, 255);
}
.map-section-main .map-slider-main .map-card-main.active .map-card .icon-text-main span svg path {
  fill: var(--primary-main-color);
}
.map-section-main .map-slider-main .map-card-main.active .map-card p {
  color: rgba(255, 255, 255, 0.6);
}
.map-section-main .map-slider-main .map-card-main .map-card {
  background: var(--white);
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 45px;
  height: 100%;
  transition: 0.4s;
}
.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 99;
}
.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main .flex-size {
  width: 70%;
}
.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main p {
  font-family: var(--Afacad-Medium);
  font-size: 18px;
  color: var(--primary-main-color);
  font-weight: 400;
  text-align: left;
}
.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main h6 {
  font-family: var(--Afacad-Medium);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  text-align: left;
}
.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 100%;
  background: rgba(35, 35, 35, 0.1);
  border: solid 1px rgba(35, 35, 35, 0.1);
}
.map-section-main .map-slider-main .map-card-main .map-card p {
  font-family: var(--Afacad-Medium);
  font-size: 16px;
  font-weight: 400;
  color: rgba(34, 34, 60, 0.6);
  margin-bottom: 0;
  position: relative;
  z-index: 99;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.map-section-main .map-slider-main .map-card-main .map-img-main {
  position: absolute;
  top: 0;
  z-index: 0;
  transform: translateY(101%);
  transition: 0.3s all;
  height: 100%;
  width: 100%;
}
.map-section-main .map-slider-main .map-card-main .map-img-main img {
  width: 100%;
  height: 100%;
}
.map-section-main .map-img {
  text-align: center;
  position: relative;
  display: inline-block;
}
.map-section-main .map-img .map-pin-icon {
  position: absolute;
  transition: 0.3s all;
}
.map-section-main .map-img .map-pin-icon:nth-child(2) {
  top: 36%;
  left: 29%;
}
.map-section-main .map-img .map-pin-icon:nth-child(3) {
  top: 29%;
  right: 32%;
}
.map-section-main .map-img .map-pin-icon:nth-child(4) {
  top: 19%;
  right: 25%;
}
.map-section-main .map-img .map-pin-icon:nth-child(5) {
  top: 15%;
  right: 18%;
}
.map-section-main .map-img .map-pin-icon:nth-child(6) {
  top: 0;
  right: 2%;
}
.map-section-main .map-img .map-pin-icon:nth-child(7) {
  top: 40%;
  right: 19%;
}
.map-section-main .map-img .map-pin-icon:nth-child(8) {
  top: 25%;
  right: 4%;
}
.map-section-main .map-img .map-pin-icon.active span {
  background: var(--primary-main-color);
}
.map-section-main .map-img .map-pin-icon.active span svg path {
  fill: #fff;
}
.map-section-main .map-img .map-pin-icon span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 62, 23, 0.1);
  border-radius: 100%;
}
@media screen and (max-width: 992px) {
  .map-section-main .map-img .map-pin-icon span {
    width: 40px;
    height: 40px;
  }
  .map-section-main .map-img .map-pin-icon span svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 768px) {
  .map-section-main .map-img .map-pin-icon span {
    width: 25px;
    height: 25px;
  }
  .map-section-main .map-img .map-pin-icon span svg {
    width: 10px;
    height: 10px;
  }
}

.who-we-are-main {
  margin: 30px 0px;
}
@media screen and (max-width: 768px) {
  .who-we-are-main {
    margin: 15px 0px;
  }
}
@media screen and (max-width: 992px) {
  .who-we-are-main .who-img-main {
    margin-bottom: 15px;
  }
}
.who-we-are-main .who-text-main p {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgba(34, 34, 60, 0.5);
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .who-we-are-main .who-text-main p {
    margin-bottom: 25px;
  }
}
.who-we-are-main .who-text-main .badge-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.who-we-are-main .who-text-main .badge-main span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(223, 62, 23, 0.08);
  padding: 8px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgb(105, 105, 105);
  border-radius: 4px;
}

.contact-inquiry-main {
  padding: 80px 0 30px 0;
}
@media screen and (max-width: 768px) {
  .contact-inquiry-main {
    padding: 40px 0 30px 0;
  }
}
.contact-inquiry-main .inquiry-card-main {
  margin-bottom: 20px;
}
.contact-inquiry-main .social-icon-main {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact-inquiry-main .social-icon-main a {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: solid 1px rgba(34, 34, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-inquiry-main .review-card-main {
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  height: calc(100% - 25px);
  margin-bottom: 25px;
}
.contact-inquiry-main .review-card-main .review-text-img img {
  margin-bottom: 10px;
}
.contact-inquiry-main .review-card-main .review-text-img h5 {
  font-family: var(--Afacad-Regular);
  font-size: 18px;
  font-weight: 400;
  color: rgb(34, 34, 60);
  margin-bottom: 0;
}
.contact-inquiry-main .review-card-main .review-owner-name span {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-main-color);
}
.contact-inquiry-main .brand-form-main .select-brand-main {
  margin-bottom: 30px;
}
.contact-inquiry-main .brand-form-main .select-brand-main h5 {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgb(18, 17, 19);
  margin-bottom: 8px;
}
.contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main .brand-img {
  width: calc(33.33% - 16px);
  height: 100%;
  border: solid 1px rgba(34, 34, 60, 0.1);
  background: rgba(34, 34, 60, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  height: 125px;
  border-radius: 5px;
  transition: 0.3s all;
  cursor: pointer;
}
.contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main .brand-img.active {
  background: var(--primary-main-color);
}
.contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main .brand-img.active img {
  filter: brightness(0) invert(1);
  transition: 0.3s all;
}
@media screen and (max-width: 450px) {
  .contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main .brand-img {
    width: calc(50% - 16px);
    max-width: 180px;
  }
}
.contact-inquiry-main .brand-form-main .inquiry-form .input {
  position: relative;
  margin-bottom: 20px;
}
.contact-inquiry-main .brand-form-main .inquiry-form .input label {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgb(18, 17, 19);
  margin-bottom: 5px;
}
.contact-inquiry-main .brand-form-main .inquiry-form .input.error input,
.contact-inquiry-main .brand-form-main .inquiry-form .input.error textarea {
  border: 1px solid var(--primary-main-color) !important;
}
.contact-inquiry-main .brand-form-main .inquiry-form .input .iti {
  width: 100%;
}
.contact-inquiry-main .brand-form-main .inquiry-form .input .iti .iti__flag-container {
  padding-inline-start: 20px;
}
.contact-inquiry-main .brand-form-main .inquiry-form .input .iti .iti__tel-input {
  padding-left: 100px !important;
}
.contact-inquiry-main .brand-form-main .inquiry-form .input .iti .iti__search-input {
  padding: 10px;
}
.contact-inquiry-main .brand-form-main .inquiry-form .input textarea,
.contact-inquiry-main .brand-form-main .inquiry-form .input input {
  background: transparent;
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 16px;
  border-radius: 36px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 60, 0.5);
}
.contact-inquiry-main .brand-form-main .inquiry-form .input textarea::placeholder,
.contact-inquiry-main .brand-form-main .inquiry-form .input input::placeholder {
  color: rgba(34, 34, 60, 0.5);
}
.contact-inquiry-main .brand-form-main .inquiry-form .input .error-txt {
  display: block;
  width: 100%;
  color: var(--primary-main-color);
  font-size: 12px;
  font-family: var(--Afacad-Medium);
}
.contact-inquiry-main .brand-form-main .inquiry-form .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}
.contact-inquiry-main .brand-form-main .inquiry-form .primary-btn {
  background-color: var(--primary-main-color);
  color: var(--white);
  font-family: var(--Afacad-Regular);
  font-size: clamp(14px, 4vw, 16px);
  padding: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}
.contact-inquiry-main .brand-form-main .contact-form {
  background: rgb(255, 255, 255);
  border: solid 1px rgb(224, 224, 224);
  border-radius: 16px;
  padding: 48px;
}
@media screen and (max-width: 768px) {
  .contact-inquiry-main .brand-form-main .contact-form {
    padding: 20px;
  }
}
.contact-inquiry-main .brand-form-main .contact-form .input {
  position: relative;
  margin-bottom: 20px;
}
.contact-inquiry-main .brand-form-main .contact-form .input label {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgb(18, 17, 19);
  margin-bottom: 10px;
}
.contact-inquiry-main .brand-form-main .contact-form .input.error input,
.contact-inquiry-main .brand-form-main .contact-form .input.error textarea {
  border: 1px solid var(--primary-main-color) !important;
}
.contact-inquiry-main .brand-form-main .contact-form .input .iti {
  width: 100%;
}
.contact-inquiry-main .brand-form-main .contact-form .input .iti .iti__flag-container {
  padding-inline-start: 20px;
}
.contact-inquiry-main .brand-form-main .contact-form .input .iti .iti__tel-input {
  padding-left: 100px !important;
}
.contact-inquiry-main .brand-form-main .contact-form .input .iti .iti__search-input {
  padding: 10px;
}
.contact-inquiry-main .brand-form-main .contact-form .input textarea,
.contact-inquiry-main .brand-form-main .contact-form .input input {
  background: rgb(250, 250, 250);
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 16px;
  border-radius: 36px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 60, 0.5);
}
.contact-inquiry-main .brand-form-main .contact-form .input textarea::placeholder,
.contact-inquiry-main .brand-form-main .contact-form .input input::placeholder {
  color: rgba(34, 34, 60, 0.5);
}
.contact-inquiry-main .brand-form-main .contact-form .input .error-txt {
  display: block;
  width: 100%;
  color: var(--primary-main-color);
  font-size: 12px;
  font-family: var(--Afacad-Medium);
}
.contact-inquiry-main .brand-form-main .contact-form .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}
.contact-inquiry-main .brand-form-main .contact-form .primary-btn {
  background-color: var(--primary-main-color);
  color: var(--white);
  font-family: var(--Afacad-Regular);
  font-size: clamp(14px, 4vw, 16px);
  padding: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}

/* NOMAN STYLE CLOSE */
.our-simple-main .counting-circle-main .circle-number {
  transition: 0.7s ease all;
}
.our-simple-main .counting-circle-main .circle-number.active {
  background: #DF3E17;
  transition: 0.7s ease all;
}
.our-simple-main .counting-circle-main .circle-number.active span {
  color: #fff;
}
.our-simple-main .counting-circle-main .connecting-line.smooth-dash.active {
  width: 100%;
  background-image: linear-gradient(to right, #DF3E17 50%, transparent 50%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: 0 0;
  transition: width 4.5s ease-in-out;
  z-index: 2;
}

.simple-process-card svg path {
  transition: 0.7s ease all;
}
.simple-process-card.active .svg-main .icon {
  background: #DF3E17;
  transition: 0.7s ease all;
}
.simple-process-card.active .svg-main .icon svg path {
  fill: #fff;
}
.simple-process-card.active .simple-card-main {
  border: 1px solid #DF3E17;
  transition: 0.7s ease all;
}

.bread-crumbs {
  display: flex;
  align-items: center;
}
.bread-crumbs .bread-crumb-content a {
  margin-left: 5px;
  color: rgba(34, 34, 60, 0.5);
}
.bread-crumbs span {
  color: rgb(34, 34, 60);
  margin-left: 5px;
}
.bread-crumbs .bread-crumb-icon {
  margin-right: 5px;
}

.product-detail {
  padding: 50px;
}

.product-detail-images img {
  border-radius: 4px;
}

.product-detail-img-small {
  margin-top: 10px;
}
.product-detail-img-small img {
  border-radius: 4px;
}

.product-detail-content h2 {
  color: rgb(34, 34, 60);
  font-weight: 400;
  size: 40px;
  line-height: 1.2;
}
.product-detail-content p {
  font-weight: 400;
  size: 16px;
  color: rgba(34, 34, 60, 0.5);
  line-height: 1.2;
}
.product-detail-content .num input {
  border: none;
  text-align: center;
  width: 30px;
  font-weight: 400;
  size: 20px;
  line-height: 1.2;
  color: rgb(34, 34, 60);
}
.product-detail-content .product-components {
  display: flex;
}
.product-detail-content .product-components .watsapp-link {
  margin-left: 50px;
}
.product-detail-content .product-components .watsapp-link a {
  color: rgb(34, 34, 60);
  font-weight: 600;
  size: 15px;
  line-height: 1.2;
  align-items: center;
  display: inline-flex;
  gap: 10px;
}
.product-detail-content .product-detail-desc {
  margin-top: 40px;
}
.product-detail-content h4 {
  size: 22px;
  line-height: 1.2;
}
.product-detail-content p {
  font-weight: 400;
  size: 16px;
  line-height: 1.2;
}
.product-detail-content .tags-button {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-detail-content .buttons span {
  color: rgb(223, 62, 23);
  border: 1px solid rgb(223, 62, 23);
  border-radius: 40px;
  padding: 10px 16px;
  display: inline-block;
}

.you-may-also-like-heading h2 {
  color: rgb(34, 34, 60);
  size: 40px;
  line-height: 1.2;
}
.you-may-also-like-heading span {
  font-weight: 400;
  size: 12px;
  color: rgba(34, 34, 60, 0.5);
  line-height: 1.2;
}

.view-all-button a {
  border: 1px solid rgb(223, 62, 23);
  border-radius: 40px;
  background-color: rgb(223, 62, 23);
  color: rgb(255, 255, 255);
  padding: 10px 16px;
}

.title-link h4 {
  size: 24px;
  line-height: 1.2;
  color: rgb(34, 34, 60);
  text-align: left;
}
.title-link a {
  color: #DF3E17;
  text-decoration: underline;
}

.product-card-main {
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 20px;
  border-radius: 4px;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  margin-top: 30px;
}

.swiper-slide-thumb-active {
  border: 1px solid rgb(223, 62, 23);
}

body.open-shopping-cart .shopping-cart-main {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.shopping-cart-main {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 450px;
  background-color: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
  z-index: 99999;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.shopping-cart-main-sec {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #E5E7EB;
  padding: 20px 0;
}

.shopping-cart-main-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(0);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 100;
}

.shopping-cart-main-sec {
  position: relative;
}

.shopping-cart-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  border-bottom: solid 1px #D1D5DB;
  background-color: #F3F4F6;
  padding: 18px 20px;
}

.shopping-cart-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.shopping-cart-title {
  font-size: 24px;
  color: #000;
  text-transform: capitalize;
}

.shopping-cart-price-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}

.summary-checkout .primary-black-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  background-color: #df3e17;
  font-family: ArchivoMedium, sans-serif;
  color: rgb(255, 255, 255) !important;
  gap: 5px;
  padding: 10px 25px;
  border-radius: 40px;
  border-width: 1px;
  border-style: solid;
  border-image: initial;
}

.continue-shopping {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  background-color: transparent;
  color: rgb(0, 0, 0);
  font-family: ArchivoBold, sans-serif;
  gap: 5px;
  padding: 10px 0px;
  border-radius: 40px;
}

.cart-main-button {
  text-align: center;
}

.shopping-cart-one-main {
  display: flex;
  gap: 10px;
}

.product-code {
  font-family: "ArchivoBold";
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5019607843);
  display: block;
}

.shopping-cart-body {
  padding: 0 20px;
  height: calc(100% - 81px);
  overflow: auto;
}

.quentity-input {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quentity-input input {
  font-family: "ArchivoBold", sans-serif;
  text-align: center;
  width: 50px;
  height: 50px;
  outline: 0;
  border: 0;
  font-size: 18px;
  background-color: transparent;
}

.title-lg {
  font-size: 38px;
  font-family: "ArchivoBold", sans-serif;
  text-transform: capitalize;
  color: rgb(34, 34, 60);
}

.custom-return-button {
  font-family: "ArchivoBold";
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-main-basket {
  background: #F6F6F6;
  padding: 20px;
  border-radius: 12px;
}

.basket-table-text {
  font-family: "ArchivoBold";
  color: #111827;
  font-size: 20px;
  font-weight: 500;
}

.product-cart-main {
  border: 1px solid #D1D5DB;
  border-radius: 20px;
  margin-top: 30px;
}

.clear-update-basket-main {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.cart-basket-summary {
  border: solid 1px #D1D5DB;
  border-radius: 20px;
}

.order-summary-heading {
  background-color: #F6F6F6;
  padding: 20px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom: none;
}
.order-summary-heading h6 {
  font-weight: 600;
  font-size: 20px;
}

.summary-text-main {
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 0 20px;
}

.basket-summary-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: solid 1px #E5E7EB;
}

.basket-table-text {
  font-family: "ArchivoBold";
  color: #111827;
  font-size: 18px;
  font-weight: 600;
}

.summary-price h6 {
  font-family: "ArchivoBold";
  font-size: 18px;
  color: #000000;
}

.summary-text span {
  font-size: 23px;
  color: rgba(34, 34, 60, 0.5);
}

.discount-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.product-cart-one {
  padding: 20px;
}

.cart-product-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-title-main span {
  font-family: ArchivoBold;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-title-main h6 {
  font-family: ArchivoBold;
  font-size: 20px;
  color: rgb(0, 0, 0);
}

.product-title-main p {
  font-family: ArchivoMedium;
  font-size: 14px;
  color: rgb(75, 85, 99);
  margin-top: 25px;
  margin-bottom: 0px;
}

.basket-price-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.price-number {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  width: 40%;
}

.price-number h6 {
  font-family: ArchivoBold;
  font-size: 20px;
  color: rgb(0, 0, 0);
}

.basket-price-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quentity-input span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: rgb(240, 240, 240);
  cursor: pointer;
  user-select: none;
}

.red-basket-btn {
  display: inline-flex;
  text-transform: capitalize;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: transparent;
  border: solid 1px #D1D5DB;
  border-radius: 40px;
  color: #FFF;
  font-family: "ArchivoBold";
  padding: 10px 25px;
  background-color: #df3e17;
}

.primary-outline-black-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px 25px;
  border: 1px solid #000;
  color: #000 !important;
  text-transform: capitalize;
  font-family: "ArchivoMedium", sans-serif;
  border-radius: 40px;
}

.input input,
.input textarea {
  width: 100%;
  padding: 12px 20px;
  border: 0;
  outline: 0;
  background-color: #F6F6F6;
  font-family: "ArchivoRegular", sans-serif;
  border-radius: 5px;
  text-align: left;
}

.summary-checkout {
  padding: 15px 0;
}

.input {
  position: relative;
  margin-bottom: 15px;
}

.breadcrumbs-light-parent {
  padding: 15px 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background-color: rgb(255, 255, 255);
  z-index: 10;
  text-transform: capitalize;
}

.breadcrumbs-light {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  font-family: ArchivoMedium, sans-serif;
}

.breadcrumbs-light a {
  color: rgb(156, 163, 175);
}

.place-order-main {
  border: 1px solid #D1D5DB;
  border-radius: 20px;
  padding: 20px;
}

.collapse-header {
  padding: 20px;
  background-color: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
}

.place-order-main-collapse {
  border: solid 1px #D1D5DB;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.title-sm {
  font-size: 32px;
  font-family: "ArchivoBold", sans-serif;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 20px;
}

.form label {
  font-size: 16px;
  color: #111827;
  font-family: "ArchivoMedium", sans-serif;
  margin-bottom: 6px;
}

.form label span {
  color: red;
}

.place-order-text-main {
  background-color: rgb(255, 255, 255);
  padding: 20px;
}

.cart-product-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-img-main img {
  width: 100px;
  min-width: 100px;
  border-radius: 5px;
}

.product-title-main span {
  font-family: "ArchivoBold";
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5019607843);
  display: flex;
  align-items: center;
  gap: 5px;
}

.place-order-text-main .price-number {
  word-break: unset;
  flex-wrap: unset;
  width: 100%;
}

.price-number {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  width: 40%;
}

.apply-discount:last-child {
  border-bottom: none;
}

.apply-discount {
  padding-bottom: 15px;
  border-bottom: solid 1px #E5E7EB;
}

.apply-discount .primary-black-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  text-transform: capitalize;
  background-color: #df3e17;
  color: #fff !important;
  border-radius: 40px;
  font-family: "ArchivoMedium", sans-serif;
  border: none;
}

.form label.checkbox input[type=checkbox]:checked {
  border-color: #df3e17;
  background-color: #df3e17;
  background-image: url(../images/white-tick.svg);
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.order-thank-main {
  border-bottom: solid 1px #D1D5DB;
  padding-bottom: 15px;
}

.track-order-main {
  text-align: center;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thanks-for-order-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.image-main img {
  width: 90px;
  min-width: 90px;
}

.title-lg {
  font-size: 38px;
  font-family: "ArchivoBold", sans-serif;
  text-transform: capitalize;
  color: #000;
}

.thank-heading-main p {
  font-family: "ArchivoMedium";
  color: #6B7280;
  font-size: 20px;
  margin-bottom: 0;
}

.thanks-for-order-main .primary-outline-black-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px 25px;
  border: 1px solid #000;
  color: #000 !important;
  text-transform: capitalize;
  font-family: "ArchivoMedium", sans-serif;
  border-radius: 40px;
}

.order-num span {
  color: #000;
  font-family: "ArchivoBold";
  font-size: 20px;
  padding-bottom: 5px;
  display: block;
  text-transform: capitalize;
}

.order-num p {
  color: #4B5563;
  font-family: "ArchivoMedium";
  font-size: 20px;
  margin-bottom: 0;
  text-align: end;
}

.thanks-for-order-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.thanks-for-order-main .primary-black-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  text-transform: capitalize;
  background-color: #df3e17;
  color: #fff;
  border-radius: 40px;
  font-family: "ArchivoMedium", sans-serif;
  border: none;
}

.form.form-borderless {
  border: 0;
  padding: 0;
}

.form a {
  color: #df3e17;
  font-family: "ArchivoBold", sans-serif;
}

.primary-black-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  text-transform: capitalize;
  background-color: #df3e17;
  color: #fff;
  border-radius: 40px;
  font-family: "ArchivoMedium", sans-serif;
  border: none;
}

.form .sign-in-width a {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  border: 1px solid #D1D5DB;
  color: #111827;
  padding: 12px;
  border-radius: 50px;
}

.form .sign-in-width {
  display: flex;
  gap: 10px;
}

.form .have-an-account {
  text-align: center;
  font-family: "ArchivoMedium", sans-serif;
  margin-top: 20px;
  color: #111827;
}

.input.icon-right .icon {
  position: absolute;
  top: 11px;
  right: 10px;
  cursor: pointer;
}

.form .breadcrumbs {
  justify-content: center;
  margin-top: 20px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-family: "ArchivoMedium", sans-serif;
}

.payment-option-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  padding-top: 10px;
}

.custom-radio-place {
  padding: 5px 0 15px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: solid 1px #E5E7EB;
}

label.radio {
  margin: 0;
  color: #111827;
  font-family: "ArchivoMedium", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.place-order-main {
  margin-top: 30px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(209, 213, 219);
  border-image: initial;
  border-radius: 20px;
  padding: 20px;
}

.account-tab-main {
  background-color: #F3F4F6;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-main-circle {
  box-shadow: 0 0 0 1px #9CA3AF;
  padding: 10px;
  border-radius: 100%;
  display: inline-flex;
  position: relative;
}

.profile-name-email {
  padding: 10px 0;
  text-align: center;
}

.profile-name-email span {
  font-family: "ArchivoBold";
  font-size: 22px;
  color: #000;
}

.account-tab {
  width: 100%;
  padding-top: 20px;
}

.custom-tab-main .nav-link.active {
  color: #fff;
  fill: #fff;
  background: #df3e17;
  border-radius: 35px;
  padding: 12px 20px;
}

.tab-font-text {
  font-family: "ArchivoSemiBold";
  text-transform: capitalize;
  padding-inline-start: 10px;
}

.custom-tab-main .nav-link {
  color: #000;
  fill: #000;
  background: transparent;
  position: relative;
  padding: 12px 20px;
  cursor: pointer;
}

.tab-font-text {
  font-family: "ArchivoSemiBold";
  text-transform: capitalize;
  padding-inline-start: 10px;
}

.tab-font-text {
  font-family: "ArchivoSemiBold";
  text-transform: capitalize;
  padding-inline-start: 10px;
}

.dashboard-cart-flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.dashboard-cart-text span {
  font-family: "ArchivoBold";
  font-size: 22px;
  color: #000;
  margin-bottom: 10px;
}

.dashboard-cart-main {
  border: solid 1px #D1D5DB;
  padding: 10px 15px;
  border-radius: 16px;
  margin-top: 20px;
}

.dashboard-cart-main.full-height {
  height: calc(100% - 20px);
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.dasboard-cart-img-main-one {
  margin-bottom: 15px;
}

.dashboard-cart-text p {
  font-family: "ArchivoMedium";
  font-size: 16px;
  color: #374151;
}

.error-txt {
  color: red;
}

.view-order-main a {
  font-family: "ArchivoMedium";
  font-size: 16px;
  color: #000000;
  text-decoration-line: underline;
}

.dashboard-cart-text-one span {
  font-family: "ArchivoBold";
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

.view-order-main p {
  font-family: "ArchivoMedium";
  font-size: 16px;
  color: #000000;
  margin-bottom: 3px !important;
}

.slider-arrows-line {
  flex: 1;
  border-top: 1px solid #000;
}

.slider-arrows a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  border-radius: 35px;
  border: 1px solid #000;
  transition: 0.3s;
}

.slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card .img .product-card-img {
  width: 100%;
  border-radius: 20px;
}

.product-card .img {
  position: relative;
}
.product-card .discount {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-block;
  background-color: #D8B271;
  border-radius: 20px;
  padding: 2px 5px;
  color: #fff;
  font-size: 12px;
  direction: ltr;
  font-family: "ArchivoBold", sans-serif;
}

.product-card .product-card-content {
  padding: 10px 0;
  display: block;
}

.product-card .product-card-content .product-card-colors {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.product-card .product-card-content .product-card-category {
  font-size: 14px;
  font-family: "ArchivoBold", sans-serif;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-bottom: 4px;
}

.product-card .img .wishlist-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-block;
}

.product-card .product-card-content .product-card-category {
  font-size: 20px;
  font-family: "ArchivoBold", sans-serif;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-bottom: 4px;
}

.product-card .product-card-content .product-card-price {
  display: flex;
  gap: 5px;
  font-size: 16px;
  color: #111827;
}

.product-card .product-card-content .product-card-colors span {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: 1px solid #eee;
}

.swiper-backface-hidden .swiper-slide {
  height: initial;
}

.product-count-badge {
  font-family: "ArchivoMedium";
  background-color: #fff;
  color: #111827;
  padding: 8px 16px;
  border-radius: 24px;
  white-space: nowrap;
}

.shopping-cart-price-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}

.add-to-cart {
  margin-top: 10px;
}
.add-to-cart .primary-black-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  text-transform: capitalize;
  background-color: #df3e17;
  color: #fff;
  border-radius: 40px;
  font-family: "ArchivoMedium", sans-serif;
  border: none;
}

.modal-content-main {
  padding: 0 30px;
}

.custom-modal-title-main {
  border-bottom: solid 1px #E5E7EB;
  padding: 20px 0 !important;
}

.custom-modal-title {
  font-family: "ArchivoBold";
  font-size: 30px !important;
  color: #000;
}

form.form-borderless {
  border: 0;
  padding: 0;
}

.input .select2-container .select2-selection--single {
  height: unset;
  background-color: #F6F6F6;
  padding-block: 12px;
  border-radius: 5px;
  border: 0;
  font-size: 14px;
  font-family: "ArchivoRegular", sans-serif;
}

.nav-underline .nav-link.active {
  color: #111827 !important;
}

.edit-my-account-tab .nav-link {
  font-family: "ArchivoMedium";
  font-weight: 500 !important;
  color: #6B7280 !important;
}

.edit-my-account-tab {
  margin: 25px 0;
  border-bottom: solid 1px #D1D5DB;
}

.edit-profile-main {
  position: absolute;
  right: 0;
  top: 55px;
}

.sign-out-main {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 100%;
  padding: 12px 20px;
}

.account-flex-order {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.header-search-box {
  position: relative;
  flex: 1;
}

.header-search-box input {
  padding-inline-start: 40px;
}

.header-search-box input {
  width: 100%;
  background-color: #F3F4F6;
  border-radius: 70px;
  border: 0;
  outline: 0;
  height: 45px;
  padding: 15px;
}

.sort-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "ArchivoBold", sans-serif;
  color: rgba(0, 0, 0, 0.7490196078);
  background-color: #F2F2F2;
  padding: 9px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.sort-dropdown .dropdown-menu {
  width: 230px;
  border: 0;
  padding: 0;
  border: 1px solid #eee;
}

.sort-dropdown .dropdown-menu a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #000;
  font-family: "ArchivoMedium", sans-serif;
}

.my-order-main {
  overflow: auto;
}

.table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F6F6F6;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  min-width: 800px;
}

.table-body {
  border: solid 1px #D1D5DB;
  border-radius: 20px;
  min-width: 800px;
}

.table-heading {
  font-family: "ArchivoBold";
  color: #111827;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .services .card strong.price {
    font-size: 20px;
    line-height: 26px;
  }
}
.table-text-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #E5E7EB;
  padding: 20px;
}

.table-badge-pending {
  font-family: "ArchivoMedium";
  font-size: 16px;
  background-color: rgba(255, 214, 1, 0.0784313725);
  color: #FFD601;
  border-radius: 40px;
  padding: 8px 16px;
}

.table-badge-trasit {
  font-family: "ArchivoMedium";
  font-size: 16px;
  background-color: rgba(255, 153, 0, 0.0784313725);
  color: #FF9900;
  border-radius: 40px;
  padding: 8px 16px;
}

.table-badge-delivered {
  font-family: "ArchivoMedium";
  font-size: 16px;
  background-color: rgba(75, 181, 67, 0.0784313725);
  color: #4BB543;
  border-radius: 40px;
  padding: 8px 16px;
}

.table-text {
  font-family: "ArchivoMedium";
  font-size: 18px;
  color: #000;
}

.header-search-box .search-icon {
  position: absolute;
  top: 10px;
  left: 10px;
}

.header-search-box input {
  padding-inline-start: 40px;
}

.main-address-heading-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-size: 34px;
  font-family: "ArchivoBold", sans-serif;
  color: #000;
}

.product-card .product-card-content .product-card-title {
  font-family: "ArchivoBold", sans-serif;
  font-size: 18px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 6px;
}

.product-card .product-card-content .product-card-price span {
  font-family: "ArchivoBold", sans-serif;
}

.custom-tab-main .nav-link.active path {
  stroke: #fff;
}

.search-list.show {
  display: block;
}

.search-list {
  position: absolute;
  top: calc(100% + 10px);
  background-color: #fff;
  border-radius: 12px;
  z-index: 10;
  width: 100%;
  min-width: 600px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.0784313725);
  display: none;
  z-index: 100;
}

.search-list .search-list-count {
  padding: 10px;
  font-size: 14px;
  font-family: "ArchivoMedium", sans-serif;
  color: #9CA3AF;
  border-bottom: 1px solid #E5E7EB;
  line-height: 14px;
}

.search-list .search-list-count span {
  color: #000;
}

.search-list .search-list-items .search-list-item {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  border-bottom: 1px solid #E5E7EB;
}

.header-search a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
  font-family: "ArchivoMedium", sans-serif;
}

.search-list .search-list-items .search-list-item .search-item-price {
  text-align: end;
  white-space: nowrap;
}

.header-search-box {
  max-width: 600px;
  margin: auto;
}

.search-list .search-list-items .search-list-item .search-item-text {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-search a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
  font-family: "ArchivoMedium", sans-serif;
}

.search-list-item .search-item-text .search-item-info > span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5019607843);
  font-family: "ArchivoBold", sans-serif;
}

.search-list .search-list-items .search-list-item .search-item-text .search-item-info h5 {
  font-family: "ArchivoBold", sans-serif;
  color: #000;
  font-size: 14px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.search-list .search-link a {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #df3e17;
  font-family: "ArchivoMedium", sans-serif;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-search-box-bg.show {
  display: block;
}

.header-search-box-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 100;
}

.checkbox {
  font-size: 15px;
  margin-bottom: 6px;
  align-items: center;
}
.checkbox a {
  color: #df3e17;
  font-size: 15px;
}

.condition p {
  color: #666666 !important;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
}
.condition span {
  color: black;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
}

.services .card {
  position: relative;
}

.services .card {
  min-height: 100%;
}

.text-red {
  color: #f00 !important;
}

@media screen and (min-width: 768px) {
  .services .card strong.price {
    font-size: 20px;
    line-height: 26px;
  }
}
.services .card .card-body p {
  border-bottom: 1px solid #e0dcd3;
}

.price {
  text-align: left;
}

.product-card-main {
  background-color: rgb(255, 255, 255);
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 20px;
  border-radius: 4px;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.product-card-main:hover .product-img-main .img-main .eye-img {
  transform: translateY(50px);
  visibility: visible;
  opacity: 1;
}
.product-card-main .product-img-main .img-main {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  position: relative;
}
.product-card-main .product-img-main .img-main .land-img {
  border: solid 1px rgba(34, 34, 60, 0.2);
  background: rgb(255, 255, 255);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-main .product-img-main .img-main .eye-img {
  border: solid 1px var(--primary-main-color);
  background: var(--primary-main-color);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  transition: 0.3s all;
  transform: translateY(0);
  visibility: hidden;
  cursor: pointer;
  opacity: 0;
}
.product-card-main .product-img-main .custom-card-slider {
  position: relative;
  z-index: 0;
}
.product-card-main .product-img-main .title-link h4 {
  font-family: var(--Afacad-Regular);
  font-size: 24px;
  font-weight: 400;
}
.product-card-main .product-img-main .title-link a {
  font-family: var(--Afacad-Medium);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-main-color);
  text-decoration: underline;
}

.heart-img {
  transform: translateY(50px);
  visibility: visible;
  opacity: 1;
}

.wishlist-icon {
  position: absolute;
  top: 0;
  left: 0;
  border: solid 1px rgba(34, 34, 60, 0.2);
  background: rgb(255, 255, 255);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter {
  position: relative;
}
.counter .count span {
  position: absolute;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #df3e17;
  font-size: 10px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.law-container {
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  max-width: 1140px;
}

.law-sub-container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.law-collpase-box {
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

.collapsible {
  padding: 18px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  color: #df3e17;
  font-weight: 700;
  background-color: #e3e1e1;
}

.law-collapse-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: transparent;
  font-size: 16px;
}

.faq-heading {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.collapsible {
  position: relative;
  padding: 15px 40px 15px 15px;
  font-size: 16px;
  width: 100%;
  text-align: left;
  background-color: #e8e6e6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #c0392b;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/* Horizontal bar (always shown) */
.collapsible::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 12px;
  height: 2px;
  background-color: #df3e17;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

/* Vertical bar (shown when not active = plus sign) */
.collapsible::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 2px;
  height: 12px;
  background-color: #df3e17;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

/* Hide vertical bar when active = minus sign */
.collapsible.active::after {
  opacity: 0;
}

.sign-in {
  display: flex;
  align-items: center;
}
.sign-in a:nth-child(1) {
  border-right: 1px solid grey;
  padding-inline-end: 5px;
  margin-inline-end: 5px;
}
.sign-in a {
  color: #df3e17;
}

.main-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
}

.user-img-main {
  box-shadow: 0 0 0 1px #9CA3AF;
  padding: 2px;
  border-radius: 25px;
}

.user-img-main span {
  background-color: #01C6E2;
  color: #fff;
  padding: 7px 12px;
  border-radius: 25px;
  display: block;
}

.user-text-main span {
  font-family: "ArchivoBold";
  font-size: 18px;
  color: #000;
}

.user-text-main p {
  font-family: "ArchivoMedium";
  font-size: 12px;
  color: #4B5563;
}

.header-inner .header-icons a {
  position: relative;
  display: inline-block;
}

.user-area {
  font-family: "ArchivoMedium";
  color: #000000;
  font-size: 14px;
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: solid 1px #E5E7EB;
  cursor: pointer;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.order-detail-main-card {
  border: solid 1px #D1D5DB;
  padding: 0 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.order-detail-head {
  padding: 20px 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1019607843);
}

.order-detail-head span {
  font-size: 16px;
  color: #000000;
}

.shipping-address-main {
  padding: 20px 0;
}

.shipping-address-main span {
  font-size: 20px;
  font-weight: 500;
  color: #374151;
  text-transform: capitalize;
  margin-bottom: 15px;
  display: block;
}

.order-heading-name {
  font-size: 18px;
  color: #000000;
  margin-bottom: 10px;
}

.view-order-main p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 3px !important;
}

.order-detail-main-card-one {
  border: solid 1px #D1D5DB;
  border-radius: 20px;
}

.order-detail-summary span {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
}

.product-order-view:not(:last-child) {
  border-bottom: solid 1px #E5E7EB;
}

.cart-product-main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-img-main img {
  width: 100px;
}

.product-title-main h6 {
  font-size: 20px;
  color: #000000;
}

.product-title-main span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5019607843);
  display: flex;
  align-items: center;
  gap: 5px;
}

.order-price-view span {
  font-family: "ArchivoMedium";
  color: #6B7280;
  font-size: 18px;
}

.quentity-lable p {
  font-size: 14px;
}

.order-detail-summary {
  padding: 15px;
}

.order-detail-main-card-one:not(:last-child) {
  margin-bottom: 20px;
}

.view-order-summary-price {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dot::before {
  width: 5px;
  height: 5px;
  background: #df3e17;
  content: "";
  padding: 5px;
  display: block;
  border-radius: 15px;
}

.view-order-summary-price h6 {
  font-size: 18px;
  color: #000000;
}

.view-order-summary-price h6 {
  font-size: 18px;
  color: #000000;
}

.summary-text-main-two {
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 0 20px;
}

.total-price-order-view {
  background-color: #F6F6F6;
  padding: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.product-order-view {
  padding: 15px;
}

.size-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.sizes {
  border: 1px solid rgb(226, 226, 226);
  padding: 5px 20px;
  height: 100%;
}

.sizes:hover {
  border-color: red;
}

.size-box {
  display: inline-flex;
}

.size p {
  margin-bottom: 0;
}

.header-search-box-a {
  position: relative;
  flex: 1;
}

.header-search-box-a input {
  padding-inline-start: 40px !important;
}

.header-search-box-a .search-icon {
  position: absolute;
  top: 10px;
  left: 10px;
}

.header-search-box-a input {
  width: 100%;
  background-color: #F3F4F6;
  border-radius: 70px;
  border: 0;
  outline: 0;
  height: 45px;
  padding: 15px;
}

.dot-success::before {
  width: 5px;
  height: 5px;
  background: rgb(0, 255, 0);
  content: "";
  padding: 5px;
  display: block;
  border-radius: 15px;
}

.profile-circle-img img {
  border-radius: 100%;
}

.profile-main-circle span img {
  border-radius: 100%;
}

/*# sourceMappingURL=style.css.map */
