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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  color: rgb(37, 37, 37);
}

p {
  opacity: 0.8;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge add Firefox */
.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Firefox */
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(165, 163, 163);
}

::-webkit-scrollbar-thumb {
  background: black;
}

button {
  outline: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}

h4 {
  font-size: 45px;
  font-weight: 700;
}

.round-arrow {
  width: 40px;
  height: 40px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(5px);
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-30deg);
}
.round-arrow i {
  position: relative;
}
@media (max-width: 768px) {
  .round-arrow {
    width: 30px;
    height: 30px;
  }
  .round-arrow ion-icon {
    top: 0 !important;
    right: 0 !important;
    position: unset !important;
  }
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px !important;
}
.section-title h2 {
  margin-bottom: 0px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 20px;
  }
}

body {
  font-family: "Inter", sans-serif;
  -webkit-tap-highlight-color: none;
  color: rgb(27, 27, 27);
}

.container {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .container {
    padding: 0px 10px;
  }
}

.btn-filled {
  background: black;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  font-size: 16px;
}
.btn-filled:hover {
  background: rgb(62, 62, 62);
}

.add-to-cart {
  border: 1px solid black !important;
  background: none !important;
  color: black;
}

.outline-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  border: 1px solid black00;
  background: white;
  padding: 6px 12px;
}

.hamburger {
  width: 20px;
  display: none;
  top: 30px;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: black;
  margin-bottom: 3px;
  border-radius: 10px;
}
.hamburger span:last-child {
  margin: 0;
}

.sidemenu {
  width: 100%;
  position: fixed;
  top: -100%;
  z-index: 90;
  background: white;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
  overflow-y: scroll;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.sidemenu .close {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  padding: 10px 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sidemenu .close ion-icon {
  font-size: 30px;
  padding: 8px;
}
.sidemenu .logo {
  width: 50%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.sidemenu .logo img {
  width: 100%;
}
.sidemenu ul {
  width: 100%;
  padding: 25px;
}
.sidemenu ul li {
  list-style: none;
  position: relative;
  margin-top: 6px;
}
.sidemenu ul li .drop-down {
  padding-left: 5px;
  text-decoration: none;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: none;
}
.sidemenu ul li .drop-down ul {
  display: flex;
  flex-direction: column;
}
.sidemenu ul li .drop-down ul li {
  width: 100%;
}
.sidemenu ul li .drop-down ul li a {
  border-bottom: 1px solid rgba(54, 54, 54, 0.1764705882);
  padding: 0px;
  display: block;
  padding: 15px;
  font-size: 16px;
  text-transform: uppercase;
}
.sidemenu ul li .drop-down ul li:last-child a {
  border: none;
}
.sidemenu ul li .drop-down-active {
  display: block;
}
.sidemenu ul li a {
  text-decoration: none;
  display: block;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.2509803922);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 15px 0px 5px 0px;
}
.sidemenu ul li a #drop-icon {
  margin-left: 10px;
}
.sidemenu ul li:last-child a {
  border: none;
}
.sidemenu ul li .active {
  font-weight: 700;
  color: black;
}

.sidemenu-active {
  top: 80px;
  opacity: 1;
  transition: 0.3s;
}

header {
  width: 100%;
  height: 85px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid rgba(72, 25, 25, 0.1647058824);
}
@media (max-width: 768px) {
  header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.225);
  }
}
@media (max-width: 525px) {
  header {
    height: 80px;
  }
}
header .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container .header-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
header .container .header-wrap .logo {
  width: 180px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .container .header-wrap .logo {
    margin-left: 10px;
  }
}
header .container .header-wrap .logo a {
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 23px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}
@media (max-width: 768px) {
  header .container .header-wrap .logo a {
    width: 180px;
  }
}
header .container .header-wrap .logo a img {
  width: 100%;
}
header .container nav {
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
header .container nav ul {
  display: flex;
  border-radius: 10px;
}
@media (max-width: 768px) {
  header .container nav ul {
    display: none;
  }
}
header .container nav ul li {
  list-style: none;
  margin-right: 20px;
  position: relative;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
header .container nav ul li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: black;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
header .container nav ul li a #drop-icon {
  margin-left: 5px !important;
}
header .container nav ul li .active {
  color: black;
  font-weight: bold;
}
header .container nav .header-search-trigger {
  width: 35px;
  height: 35px;
  margin-right: 14px;
  border: none;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
header .container nav .header-search-trigger ion-icon {
  font-size: 18px;
  color: #111;
}
header .container nav .header-search-trigger:hover {
  background: #ddd;
}
@media (max-width: 768px) {
  header .container nav .header-search-trigger {
    margin-right: 10px;
  }
}
header .container nav .cart {
  position: relative;
  margin-right: 20px;
  float: right;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}
header .container nav .cart ion-icon {
  font-size: 20px;
  color: black;
}
header .container nav .cart .cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  background: black;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
header .container nav .cart .cart-count span {
  font-weight: 500;
  font-size: 12px;
}

.search-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 16px 24px;
}
.search-popup.is-open {
  display: flex;
}
.search-popup .search-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.search-popup .search-popup-panel {
  position: relative;
  width: min(720px, 100%);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
}
.search-popup .search-popup-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}
.search-popup .search-popup-form .search-popup-icon {
  font-size: 22px;
  color: #666;
  flex-shrink: 0;
}
.search-popup .search-popup-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #111;
  min-width: 0;
}
.search-popup .search-popup-form input::placeholder {
  color: #999;
}
.search-popup .search-popup-form .search-popup-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.search-popup .search-popup-form .search-popup-close ion-icon {
  font-size: 20px;
  color: #111;
}
.search-popup .search-popup-body {
  overflow-y: auto;
  padding: 12px 0 18px;
  max-height: min(60vh, 520px);
}
.search-popup .search-empty,
.search-popup .search-loading {
  padding: 28px 20px;
  text-align: center;
  color: #888;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.search-popup .search-group {
  padding: 8px 0 4px;
}
.search-popup .search-group .search-group-title {
  padding: 6px 20px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #888;
  font-family: "Inter", sans-serif;
}
.search-popup .search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  text-decoration: none;
  color: #111;
  transition: background 0.15s ease;
}
.search-popup .search-item:hover {
  background: #f6f6f6;
}
.search-popup .search-item .thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-popup .search-item .thumb.round {
  border-radius: 50%;
}
.search-popup .search-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-popup .search-item .thumb ion-icon {
  font-size: 20px;
  color: #777;
}
.search-popup .search-item .meta {
  min-width: 0;
  flex: 1;
}
.search-popup .search-item .meta .name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-popup .search-item .meta .sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #888;
  font-family: "Inter", sans-serif;
}
.search-popup .search-item .price {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.search-popup .search-view-all {
  display: block;
  margin: 10px 20px 0;
  padding: 12px 16px;
  text-align: center;
  text-decoration: none;
  background: #111;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

#banner {
  width: 100%;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 100px;
  border-radius: 25px;
}
@media (max-width: 768px) {
  #banner {
    flex-direction: column;
  }
}
#banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#collections {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  #collections {
    flex-direction: column;
  }
}
#collections .box {
  width: calc(50% - 30px);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 50px 0px;
}
@media (max-width: 768px) {
  #collections .box {
    width: 100%;
    margin-bottom: 30px;
    flex-direction: column;
    padding: 20px;
  }
  #collections .box:last-child {
    margin-bottom: 0px;
  }
}
#collections .box .box-left {
  width: calc(50% - 10px);
}
@media (max-width: 768px) {
  #collections .box .box-left {
    width: 100%;
  }
}
#collections .box .box-left img {
  width: 100%;
  margin-top: -80px;
}
@media (max-width: 768px) {
  #collections .box .box-left img {
    width: 100px;
  }
}
@media (max-width: 425px) {
  #collections .box .box-left img {
    margin-top: -60px;
  }
}
#collections .box .box-right {
  width: calc(50% - 10px);
}
@media (max-width: 768px) {
  #collections .box .box-right {
    width: 100%;
  }
}
#collections .box .box-right h3 {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  #collections .box .box-right h3 {
    font-size: 20px;
  }
}
#collections .box .box-right p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  #collections .box .box-right p {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  #collections .box .box-right p {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  #collections .box .box-right a {
    font-size: 12px;
  }
}
#collections .cyan {
  background: #e8ffed;
}
#collections .pink {
  background: #ffe5e2;
}
@media (max-width: 425px) {
  #collections .pink {
    padding: 30px 0px 50px 30px;
  }
}

.trending {
  margin-bottom: 0px;
}
.trending .card-wrapper {
  width: 100%;
}
.trending .card-wrapper .card {
  width: 100%;
}

#trending-plants {
  width: 100%;
  margin-top: 70px;
}
@media (max-width: 768px) {
  #trending-plants {
    margin-top: 50px;
  }
}
@media (max-width: 425px) {
  #trending-plants {
    margin-top: 20px;
  }
}
@media (max-width: 390px) {
  #trending-plants {
    margin-top: 10px;
  }
}

#trending-pots {
  width: 100%;
  margin-top: 70px;
}
@media (max-width: 768px) {
  #trending-pots {
    margin-top: 50px;
  }
}
@media (max-width: 425px) {
  #trending-pots {
    margin-top: 20px;
  }
}

.filter-mobile {
  position: fixed;
  z-index: 20;
  width: 100%;
  bottom: 0px;
  left: 0px;
  display: none;
}
@media (max-width: 768px) {
  .filter-mobile {
    display: block;
  }
}
.filter-mobile .filter-btn {
  background: black;
  width: 100%;
  color: white;
  border: none;
  padding: 13px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.filter-mobile .filter-btn ion-icon {
  font-size: 18px;
  margin-left: 10px;
}

#products {
  width: 100%;
  margin-top: 60px;
  position: relative;
}
@media (max-width: 425px) {
  #products {
    margin-top: 30px;
  }
}
#products h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#products h2 .image {
  margin-left: 10px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#products h2 .image img {
  width: 100%;
}
#products .card-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.price-wrap {
  display: flex;
  margin-top: 5px;
  font-family: "Outfit";
}
.price-wrap .price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
}
.price-wrap .price .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
  font-size: 16px;
}
.price-wrap .price .amount {
  display: block;
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: black;
}
.price-wrap .actual-price {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 18px;
  color: red;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .price-wrap .actual-price {
    font-size: 12px;
  }
}

footer {
  background: #eee;
  padding: 60px 0px;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
footer .container .logo {
  width: 250px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
footer .container .logo img {
  width: 100%;
}

#products-listing {
  width: 100%;
  margin-top: 110px;
}
#products-listing .product-search-holder {
  position: relative;
}
#products-listing .product-search-holder .search-icon {
  width: 35px;
  height: 35px;
  background: white;
  position: absolute;
  right: 10px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 7px;
}
#products-listing .product-search-holder .search-icon ion-icon {
  font-size: 25px;
}
#products-listing .product-search-holder .product-search {
  height: 50px;
  width: 100%;
  background: none;
  border: none;
  margin-bottom: 10px;
  border-radius: 4px;
  padding-left: 10px;
  font-size: 16px !important;
  border: 1px solid black;
}
#products-listing .product-search-holder .product-search::placeholder {
  font-weight: 400;
  font-size: 16px !important;
  line-height: 22px;
  color: #666;
}
#products-listing .heading {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  #products-listing .heading {
    flex-wrap: wrap;
    align-items: center;
  }
}
@media (max-width: 768px) {
  #products-listing .heading {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
}
#products-listing .heading .left {
  flex: 0 1 auto;
  min-width: 140px;
}
@media (max-width: 768px) {
  #products-listing .heading .left {
    flex: 1;
    min-width: 0;
  }
}
#products-listing .heading .left h2 {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: left;
  font-family: "Inter", sans-serif;
}
@media (max-width: 650px) {
  #products-listing .heading .left h2 {
    font-size: 22px;
  }
}
@media (max-width: 470px) {
  #products-listing .heading .left h2 {
    font-size: 20px;
  }
}
#products-listing .heading .left .icon {
  display: none;
}
#products-listing .heading .right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 10px;
  min-width: 0;
}
@media (max-width: 768px) {
  #products-listing .heading .right {
    flex: 0 0 auto;
    align-items: center;
    width: auto;
  }
}
#products-listing .heading .right .grid-view {
  width: 36px;
  height: 36px;
  background: #eee;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  position: static;
  top: auto;
  margin: 0;
}
#products-listing .heading .right .grid-view ion-icon {
  font-size: 18px;
}
@media (max-width: 768px) {
  #products-listing .heading .right .grid-view {
    display: none;
  }
}
#products-listing .heading .right .filter-button {
  display: none;
  background: #111;
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}
#products-listing .heading .right .filter-sheet-head {
  display: none !important;
}
#products-listing .heading .right .filter-actions,
#products-listing .heading .right .filter-action-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-right: 0;
  flex-shrink: 0;
  padding-top: 19px;
}
#products-listing .heading .right .trigger-filter,
#products-listing .heading .right .clear-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-height: 36px;
  max-height: 36px;
  padding: 0 14px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  width: auto;
}
#products-listing .heading .right .trigger-filter {
  background: #111;
  color: #fff;
}
#products-listing .heading .right .clear-filter {
  background: #eee;
  color: #111;
}
#products-listing .heading .right .full-width {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  width: auto;
  max-width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}
#products-listing .heading .right .filter-active {
  height: auto !important;
  overflow: auto !important;
  display: block !important;
  position: fixed;
  right: 0;
  top: 50px;
  z-index: 110;
  background: white;
  padding: 20px;
}
#products-listing .heading .right .filter-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-right: 0;
  flex: 0 0 auto;
}
#products-listing .heading .right .filter-holder label {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 7px;
  color: #555;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
#products-listing .heading .right select,
#products-listing .heading .right input {
  width: 140px;
  height: 36px;
  border: none;
  background: #eee;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
@media (max-width: 1100px) and (min-width: 769px) {
  #products-listing .heading .right {
    width: 100%;
    flex: 1 1 100%;
  }
  #products-listing .heading .right .full-width {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  #products-listing .heading .right .trigger-filter,
  #products-listing .heading .right .clear-filter {
    height: auto;
    min-height: 0;
    max-height: none;
    line-height: 1.2;
    padding: 14px 0;
    width: 100%;
    border-radius: 12px;
  }
  #products-listing .heading .right .filter-actions,
  #products-listing .heading .right .filter-action-holder {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-bottom: 0 !important;
    padding-top: 0;
  }
  #products-listing .heading .right .full-width {
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 0;
    overflow: hidden;
    display: none;
    width: 100%;
  }
  #products-listing .heading .right .filter-button {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: 54px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
  }
  #products-listing .heading .right .filter-button ion-icon {
    margin-right: 8px;
    font-size: 18px;
  }
  #products-listing .heading .right .filter-button span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  #products-listing .heading .right .filter-sheet-head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  #products-listing .heading .right .filter-sheet-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
  }
  #products-listing .heading .right .filter-sheet-head .filter-sheet-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  #products-listing .heading .right .filter-sheet-head .filter-sheet-close ion-icon {
    font-size: 22px;
    color: #111;
  }
  #products-listing .heading .right .filter-active {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-height: min(88vh, 640px);
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto !important;
  }
  #products-listing .heading .right .filter-holder {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  #products-listing .heading .right .filter-holder select {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
  }
  #products-listing .heading .right .filter-holder input {
    width: 100%;
    height: 40px;
  }
}
@media (max-width: 768px) {
  #products-listing {
    padding-bottom: 72px;
  }
}
#products-listing .box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  #products-listing .box {
    flex-direction: column;
  }
}
#products-listing .box .box-right {
  width: 100%;
}
@media (max-width: 800px) {
  #products-listing .box .box-right {
    width: 66%;
  }
}
@media (max-width: 768px) {
  #products-listing .box .box-right {
    width: 100%;
  }
}
@media (max-width: 425px) {
  #products-listing .box .box-right {
    width: 100%;
  }
}
#products-listing .box .box-right .card-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  gap: 10px;
}
#products-listing .box .box-right .card-wrapper .card {
  width: calc(16.6666666667% - 10px);
  margin-bottom: 10px;
}
@media (max-width: 999px) {
  #products-listing .box .box-right .card-wrapper .card {
    width: calc(33.3333333333% - 10px);
  }
}
@media (max-width: 768px) {
  #products-listing .box .box-right .card-wrapper .card {
    width: calc(50% - 5px);
  }
}
#products-listing .box .box-right .product-pagination-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 20px 0 80px;
}
#products-listing .box .box-right .product-pagination-wrap .pagination-info {
  color: #666;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
#products-listing .box .box-right .product-pagination-wrap .product-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#products-listing .box .box-right .product-pagination-wrap .product-pagination li {
  margin: 0;
}
#products-listing .box .box-right .product-pagination-wrap .product-pagination button {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: none;
  background: #eee;
  color: #111;
  cursor: pointer;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 42px;
}
#products-listing .box .box-right .product-pagination-wrap .product-pagination button:hover:not(:disabled):not(.ellipsis) {
  background: #ddd;
}
#products-listing .box .box-right .product-pagination-wrap .product-pagination button.active {
  background: #111;
  color: #fff;
}
#products-listing .box .box-right .product-pagination-wrap .product-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
#products-listing .box .box-right .product-pagination-wrap .product-pagination button.ellipsis {
  background: transparent;
  min-width: 24px;
  padding: 0;
}

#product-details {
  margin-top: 150px;
}
@media (max-width: 768px) {
  #product-details {
    margin-top: 90px;
    padding-bottom: 90px;
  }
}
#product-details .box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #product-details .box {
    flex-direction: column;
  }
}
#product-details .box .box-left {
  width: 48%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #product-details .box .box-left {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 525px) {
  #product-details .box .box-left {
    flex-direction: column;
  }
}
#product-details .box .box-left .image-box-left {
  width: calc(100% - 120px);
  margin-bottom: 5px;
}
@media (max-width: 525px) {
  #product-details .box .box-left .image-box-left {
    width: 100%;
  }
}
#product-details .box .box-left .image-box-left .image {
  width: 100%;
}
@media (max-width: 1000px) {
  #product-details .box .box-left .image-box-left .image {
    width: 100% !important;
  }
}
#product-details .box .box-left .image-box-left .image img {
  width: 100%;
  object-fit: cover;
  border-radius: none;
  border-radius: 15px;
}
#product-details .box .box-left .image-box-right {
  width: 110px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 525px) {
  #product-details .box .box-left .image-box-right {
    width: 100%;
    flex-direction: row;
  }
}
#product-details .box .box-left .image-box-right .image {
  width: 100%;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (max-width: 525px) {
  #product-details .box .box-left .image-box-right .image {
    width: calc(33.3333333333% - 5px);
    margin-right: 10px;
  }
}
#product-details .box .box-left .image-box-right .image:hover {
  opacity: 0.5;
}
#product-details .box .box-left .image-box-right .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}
#product-details .box .box-right {
  width: calc(100% - 500px);
  padding-left: 40px;
}
@media (max-width: 768px) {
  #product-details .box .box-right {
    width: 100%;
    padding-left: 0px;
  }
}
#product-details .box .box-right h2 {
  font-weight: 500;
  font-size: 35px;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  #product-details .box .box-right h2 {
    font-size: 25px;
  }
}
#product-details .box .box-right .stock {
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 30px;
  font-size: 15px;
}
#product-details .box .box-right .stock.in {
  background: rgb(211, 255, 211);
  color: green;
}
#product-details .box .box-right .stock.out {
  background: rgb(255, 211, 211);
  color: red;
}
#product-details .box .box-right .stock.limited {
  background: rgb(255, 251, 211);
  color: rgb(167, 109, 0);
}
#product-details .box .box-right .price-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 5px;
  margin: 30px 0px;
  width: 150px;
}
#product-details .box .box-right .price-wrap .price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-weight: 600;
  line-height: 23px;
}
#product-details .box .box-right .price-wrap .price .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}
#product-details .box .box-right .price-wrap .price .icon img {
  width: 100%;
}
#product-details .box .box-right .price-wrap .price .amount {
  display: block;
  font-weight: 500;
  font-size: 30px;
  line-height: 22px;
  color: black;
}
#product-details .box .box-right .price-wrap .actual-price {
  text-decoration: line-through;
  font-size: 30px;
}
#product-details .box .box-right .quantity {
  display: flex;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
  row-gap: 14px;
}
#product-details .box .box-right .quantity p {
  margin-right: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
}
#product-details .box .box-right .quantity .add-item {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  margin-right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #eee;
  color: black;
}
#product-details .box .box-right .quantity .add-item:hover {
  background: rgb(33, 33, 33);
  color: white;
}
#product-details .box .box-right .quantity input {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  border: none;
  padding: 5px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: #eee;
}
#product-details .box .box-right .quantity .btn-filled,
#product-details .box .box-right .quantity .buy-now {
  padding: 10px 22px;
  border: none;
  background: #111 !important;
  color: #fff !important;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}
#product-details .box .box-right .quantity .btn-filled:hover,
#product-details .box .box-right .quantity .buy-now:hover {
  background: #222 !important;
}
#product-details .box .box-right .quantity .btn-cart,
#product-details .box .box-right .quantity .add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #111 !important;
  background: #fff !important;
  color: #111 !important;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}
#product-details .box .box-right .quantity .btn-cart .cart-btn-icon,
#product-details .box .box-right .quantity .add-to-cart .cart-btn-icon {
  font-size: 20px;
}
#product-details .box .box-right .quantity .btn-cart:hover,
#product-details .box .box-right .quantity .add-to-cart:hover {
  background: #f5f5f5 !important;
}
#product-details .box .box-right .quantity .btn-outline {
  padding: 10px 22px;
  border: 1px solid #111;
  background: #fff !important;
  color: #111 !important;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}
#product-details .box .box-right .quantity .product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  flex-basis: 100%;
  margin-left: 0;
  margin-top: 4px;
}
@media (max-width: 768px) {
  #product-details .box .box-right .quantity .product-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 96;
    margin: 0;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }
  #product-details .box .box-right .quantity .product-actions .add-to-cart,
  #product-details .box .box-right .quantity .product-actions .btn-cart {
    width: 52px;
    height: 52px;
    min-width: 52px;
    padding: 0;
    border-radius: 14px;
    flex: 0 0 52px;
  }
  #product-details .box .box-right .quantity .product-actions .add-to-cart .cart-btn-label,
  #product-details .box .box-right .quantity .product-actions .btn-cart .cart-btn-label {
    display: none;
  }
  #product-details .box .box-right .quantity .product-actions .add-to-cart .cart-btn-icon,
  #product-details .box .box-right .quantity .product-actions .btn-cart .cart-btn-icon {
    font-size: 24px;
    margin: 0;
  }
  #product-details .box .box-right .quantity .product-actions .buy-now,
  #product-details .box .box-right .quantity .product-actions .btn-filled.buy-now {
    flex: 1 1 auto;
    height: 52px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
}
#product-details .box .box-right .description {
  margin-top: 20px;
}
#product-details .box .box-right .description h1,
#product-details .box .box-right .description h2,
#product-details .box .box-right .description h3,
#product-details .box .box-right .description h4,
#product-details .box .box-right .description h5,
#product-details .box .box-right .description h6 {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: normal;
  margin: 10px 0px;
}
#product-details .box .box-right .description ul li {
  padding: 5px 0px;
  font-size: 16px;
}
#product-details .box .box-right .description p {
  font-weight: normal;
}
#product-details .box .box-right .description .desc-head {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding: 6px 0px;
  margin-bottom: 20px;
}
#product-details .box .box-right .description .desc-head h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  font-family: "Outfit";
}
@media (max-width: 768px) {
  #product-details .box .box-right .description .desc-head h5 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #product-details .box .box-right .description .desc-content {
    font-size: 12px;
  }
}
#product-details .box .box-right .description .desc-content p {
  margin-bottom: 20px;
}

#related {
  width: 100%;
  margin-top: 20px;
}
#related h5 {
  font-weight: 500;
  font-size: 22px;
  line-height: 71px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
  #related h5 {
    font-size: 18px;
  }
}
#related .card-wrapper {
  width: 100%;
}
#related .card-wrapper .card {
  width: 100%;
}

.cart-menu {
  top: 0;
  right: -100%;
  position: fixed;
  width: min(420px, 100%);
  height: 100%;
  z-index: 110;
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .cart-menu {
    width: 100%;
  }
}
.cart-menu .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #eee;
}
.cart-menu .head .head-text {
  min-width: 0;
}
.cart-menu .head .eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 2px;
  font-family: "Inter", sans-serif;
}
.cart-menu .head h6 {
  margin: 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
  color: #111;
  letter-spacing: -0.02em;
}
.cart-menu .head .cart-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.cart-menu .head .cart-close ion-icon {
  font-size: 22px;
  color: #111;
  padding: 0;
}
.cart-menu .head .cart-close:hover {
  background: #e8e8e8;
}
.cart-menu .head ion-icon {
  font-size: 22px;
  padding: 0;
  cursor: pointer;
}
.cart-menu .scroll-y {
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px 20px 20px;
  -webkit-overflow-scrolling: touch;
}
.cart-menu .items-on-cart {
  margin-top: 0;
  transition: 0.5s;
}
.cart-menu .items-on-cart .cart-empty {
  padding: 48px 12px;
  text-align: center;
  color: #888;
}
.cart-menu .items-on-cart .cart-empty ion-icon {
  font-size: 40px;
  color: #ccc;
  margin-bottom: 12px;
}
.cart-menu .items-on-cart .cart-empty p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  font-family: "Inter", sans-serif;
}
.cart-menu .items-on-cart .cart-empty span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #999;
  font-family: "Inter", sans-serif;
}
.cart-menu .items-on-cart .item-details {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
  transition: 0.5s;
}
.cart-menu .items-on-cart .item-details:last-child {
  border-bottom: none;
}
.cart-menu .items-on-cart .item-details .left {
  width: 78px;
  flex-shrink: 0;
}
.cart-menu .items-on-cart .item-details .left .image {
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #eee;
}
.cart-menu .items-on-cart .item-details .left .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-menu .items-on-cart .item-details .right {
  flex: 1;
  min-width: 0;
}
.cart-menu .items-on-cart .item-details .right .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.cart-menu .items-on-cart .item-details .right .row h5 {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}
.cart-menu .items-on-cart .item-details .right .row .removetrigger,
.cart-menu .items-on-cart .item-details .right .row button.removetrigger {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #f7f7f7;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  padding: 0;
  color: #666;
}
.cart-menu .items-on-cart .item-details .right .row .removetrigger ion-icon,
.cart-menu .items-on-cart .item-details .right .row button.removetrigger ion-icon {
  font-size: 16px;
  color: #666;
}
.cart-menu .items-on-cart .item-details .right .row .removetrigger:hover,
.cart-menu .items-on-cart .item-details .right .row button.removetrigger:hover {
  background: #fee;
  color: #c0392b;
}
.cart-menu .items-on-cart .item-details .right .row .removetrigger:hover ion-icon,
.cart-menu .items-on-cart .item-details .right .row button.removetrigger:hover ion-icon {
  color: #c0392b;
}
.cart-menu .items-on-cart .item-details .right .quantity {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cart-menu .items-on-cart .item-details .right .quantity p {
  margin: 0 10px 0 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Inter", sans-serif;
}
.cart-menu .items-on-cart .item-details .right .quantity button {
  width: 28px;
  height: 28px;
  background: #f3f3f3;
  border: none;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  color: #111;
  font-family: "Inter", sans-serif;
}
.cart-menu .items-on-cart .item-details .right .quantity button:hover {
  background: #e8e8e8;
}
.cart-menu .items-on-cart .item-details .right .quantity input {
  width: 36px;
  height: 28px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  margin: 0 6px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #111;
  padding: 0;
}
.cart-menu .items-on-cart .item-details .right .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 0;
}
.cart-menu .items-on-cart .item-details .right .price-wrap .icon {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  font-family: "Inter", sans-serif;
}
.cart-menu .items-on-cart .item-details .right .price-wrap .price {
  display: block;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: #111;
  font-family: "Inter", sans-serif;
}
.cart-menu .cart-footer {
  flex-shrink: 0;
  padding: 16px 20px 20px;
  border-top: 1px solid #eee;
  background: #fafafa;
}
.cart-menu .shipping-details {
  margin-top: 0;
  padding: 0 0 10px;
  border-bottom: none;
}
.cart-menu .shipping-details .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cart-menu .shipping-details .row span {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 0;
  color: #666;
  font-family: "Inter", sans-serif;
}
.cart-menu .shipping-details .row .amount {
  font-weight: 500;
  color: #111;
}
.cart-menu .total-amount .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 14px;
}
.cart-menu .total-amount .row span {
  display: block;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: #111;
  font-family: "Inter", sans-serif;
}
.cart-menu .total-amount .row .amount {
  font-size: 16px;
}
.cart-menu .btn-filled {
  width: 100%;
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  border-radius: 10px;
  background: #111;
  color: #fff;
}
@media (max-width: 768px) {
  .cart-menu .btn-filled {
    padding: 14px 16px;
  }
}
.cart-menu .btn-filled:hover {
  background: #222;
}

.cart-menu-active {
  right: 0;
  opacity: 1;
  transition: 0.3s;
}

.free {
  color: rgb(21, 156, 21);
  font-weight: 600 !important;
}

.purchase-details {
  margin-top: 10px;
  padding: 10px;
  background: #eee;
  border-radius: 5px;
}
.purchase-details p {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.purchase-details ul {
  margin-bottom: 10px;
}
.purchase-details .checkbox-holder {
  color: black;
  display: flex;
  align-items: center;
}
.purchase-details .checkbox-holder input {
  margin-right: 5px;
  margin-top: 3px;
}
.purchase-details .checkbox-holder a {
  color: black;
}

#map {
  width: 100%;
  margin-top: 80px;
}

#contact {
  width: 100%;
  position: relative;
  margin: 110px auto 60px;
  font-family: "Inter", sans-serif;
}
#contact .container {
  max-width: 1100px;
}
#contact .page-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
#contact .contact-hero {
  max-width: 640px;
  margin-bottom: 36px;
}
#contact .contact-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111;
  font-family: "Inter", sans-serif;
}
#contact .contact-hero p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}
#contact .contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  #contact .contact-layout {
    grid-template-columns: 1fr;
  }
}
#contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#contact .contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
}
#contact .contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#contact .contact-icon ion-icon {
  font-size: 20px;
}
#contact .contact-copy {
  min-width: 0;
}
#contact .contact-copy h6 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
}
#contact .contact-copy a,
#contact .contact-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #111;
  text-decoration: none;
  word-break: break-word;
}
#contact .contact-copy a:hover {
  text-decoration: underline;
}
#contact .contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
#contact .contact-whatsapp ion-icon {
  font-size: 20px;
}
#contact .contact-whatsapp:hover {
  filter: brightness(0.95);
}
#contact .contact-form-panel {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  background: #fafafa;
  padding: 24px;
}
@media (max-width: 768px) {
  #contact .contact-form-panel {
    padding: 18px;
  }
}
#contact .contact-form-panel h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  font-family: "Inter", sans-serif;
}
#contact .contact-form-panel .contact-form-lead {
  margin: 0 0 20px;
  font-size: 14px;
  color: #666;
}
#contact .contact-form-panel form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
@media (max-width: 600px) {
  #contact .contact-form-panel form {
    grid-template-columns: 1fr;
  }
}
#contact .contact-form-panel .input-holder,
#contact .contact-form-panel .textarea-holder,
#contact .contact-form-panel .btn-holder {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin: 0;
}
#contact .contact-form-panel .textarea-holder,
#contact .contact-form-panel .btn-holder {
  grid-column: 1/-1;
}
#contact .contact-form-panel label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}
#contact .contact-form-panel input,
#contact .contact-form-panel textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #111;
  outline: none;
}
#contact .contact-form-panel input:focus,
#contact .contact-form-panel textarea:focus {
  border-color: #111;
}
#contact .contact-form-panel input {
  height: 46px;
}
#contact .contact-form-panel textarea {
  min-height: 120px;
  resize: vertical;
}
#contact .contact-form-panel .btn-filled {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
#contact .contact-form-panel .btn-filled:hover {
  background: #222;
}

.popup-menu {
  position: fixed;
  width: 831px;
  background: #ffffff;
  padding: 30px;
  left: 300px;
  top: 136px;
  display: none;
}
.popup-menu .image {
  position: absolute;
  top: 0px;
  right: -120px;
  width: 300px;
}
.popup-menu .image img {
  width: 100%;
}
.popup-menu .close {
  position: absolute;
  width: 30px;
  height: 30px;
  background: white;
  top: -15px;
  right: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}
.popup-menu .close ion-icon {
  font-size: 25px;
}
.popup-menu .box {
  border: 1px solid black00;
  padding: 30px;
  width: 100%;
}
.popup-menu .box h6 {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  font-family: "Playfair Display";
  margin-bottom: 30px;
  text-align: center;
}
.popup-menu .box form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.popup-menu .box form .input-holder {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .popup-menu .box form .input-holder {
    width: calc(50% - 10px);
  }
}
@media (max-width: 390px) {
  .popup-menu .box form .input-holder {
    width: 100%;
  }
}
.popup-menu .box form .input-holder label {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.56);
}
.popup-menu .box form .input-holder input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.24);
}
.popup-menu .box form .btn-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.popup-menu .box form .btn-holder .btn-filled {
  padding: 10px 60px;
}

.card {
  width: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden !important;
  background: white;
}
.card .round-arrow {
  bottom: 10px;
  right: 10px;
  top: unset;
}
.card:hover .image img {
  transform: scale(1.1);
  transition: 0.3s;
  opacity: 0.5;
}
.card .image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.card .image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: 0.3s;
}
.card .image ion-icon {
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.card .price-holder {
  background: white;
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px;
  font-size: 14px;
}
.card .price-holder span {
  opacity: 0.5;
  text-decoration: line-through;
}
.card .content {
  padding: 10px 0px;
}
.card .content .price-holder {
  display: none;
}
.card .content .brand-name {
  text-transform: capitalize;
  font-size: 11px;
  display: block;
  margin-bottom: 6px;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .card .content .brand-name {
    font-size: 10px;
    margin-bottom: 4px;
  }
}
.card .content h6 {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .card .content h6 {
    font-size: 12px;
  }
}
.card .content .description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.6;
  font-size: 16px !important;
}
.card .content .description span {
  font-family: "Inter", sans-serif;
}

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 50;
  background: white;
  top: 0;
  right: 0;
}
.wrap .image {
  width: 200px;
}
.wrap .image img {
  width: 100%;
  filter: invert(100%);
}

p {
  font-weight: 500;
}

.base {
  position: relative;
  display: block;
  width: 110px;
  transform: scale(0.5);
}

#about {
  margin-top: 100px;
  font-family: "Inter", sans-serif;
}
#about .page-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
#about .about-hero {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  padding: 0 16px;
}
#about .about-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111;
  font-family: "Inter", sans-serif;
}
#about .about-hero p {
  margin: 0 auto;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: #666;
}
#about .about-cover {
  width: 100%;
  margin-bottom: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
#about .about-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}
#about .about-story {
  display: block;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 16px;
  text-align: center;
}
#about .about-story-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  color: #111;
  font-family: "Inter", sans-serif;
}
#about .about-story-copy p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #666;
}
#about .about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
#about .about-cta:hover {
  background: #222;
}

.about-strip {
  background: #111;
  color: #fff;
  margin-top: 20px;
}
.about-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 56px 20px;
}
@media (max-width: 900px) {
  .about-strip .container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 20px;
  }
}
.about-strip .about-feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-strip .about-feature .icon {
  width: 56px;
  margin-bottom: 14px;
}
.about-strip .about-feature .icon img {
  width: 100%;
  display: block;
  filter: brightness(0) invert(1);
}
.about-strip .about-feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.about-strip .about-feature p {
  margin: 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.8;
  font-weight: 400;
}

.strip {
  background: black;
}
.strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 100px 0px;
  color: white;
}
.strip .container .box {
  width: calc(33.3333333333% - 20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 60px;
}
@media (max-width: 768px) {
  .strip .container .box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.strip .container .box .icon {
  width: 60px;
  margin-bottom: 10px;
}
.strip .container .box .icon img {
  width: 100%;
}
.strip .container .box h2 {
  margin-bottom: 5px;
}
.strip .container .box p {
  opacity: 0.8;
  font-weight: normal;
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-float {
  margin-top: 16px;
}

ul {
  padding-left: 20px;
}

.accordion {
  width: 100%;
  margin-bottom: 100px;
}
.accordion ul {
  padding-left: 0px !important;
}
.accordion .accordion-list .accordion-item {
  list-style: none;
  position: relative;
  height: max-content;
  border-radius: 10px;
}
.accordion .accordion-list .accordion-item input[type=checkbox] {
  display: none;
}
.accordion .accordion-list .accordion-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: white;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.accordion .accordion-list .accordion-item label .opened {
  display: none;
}
.accordion .accordion-list .accordion-item label .closed {
  display: block;
}
.accordion .accordion-list .accordion-item .content {
  width: 100%;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  padding: 8px 16px;
  position: relative;
  z-index: 1;
  padding-left: 20px;
  max-height: 0;
  margin-top: -12px;
}
.accordion .accordion-list .accordion-item .content.show {
  margin-top: 0;
  max-height: 200px;
  opacity: 1;
  pointer-events: all;
}
.accordion .accordion-list .accordion-item .content p {
  margin-bottom: 8px;
  color: rgb(64, 64, 64);
}
.accordion .accordion-list .accordion-item input[type=checkbox]:checked ~ label .opened {
  display: block;
}
.accordion .accordion-list .accordion-item input[type=checkbox]:checked ~ label .closed {
  display: none;
}

.shipping-info {
  background: #fdffb6;
  margin-bottom: 60px;
}
.shipping-info .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shipping-info .container .icon {
  width: 80px;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .shipping-info .container .icon {
    width: 55px;
  }
}
@media (max-width: 525px) {
  .shipping-info .container .icon {
    width: 90px;
    margin-right: 20px;
  }
}
.shipping-info .container .icon img {
  width: 100%;
}
.shipping-info .container .content {
  font-size: 35px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .shipping-info .container .content {
    font-size: 28px;
  }
}
@media (max-width: 525px) {
  .shipping-info .container .content {
    font-size: 30px;
  }
}
.shipping-info .container .india-flag {
  width: 40px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .shipping-info .container .india-flag {
    width: 30px;
  }
}
@media (max-width: 525px) {
  .shipping-info .container .india-flag {
    width: 35px;
  }
}

.shimmer {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.461);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: none;
}

.fixed-whatsapp-button {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  font-size: 0;
  line-height: 0;
}
.fixed-whatsapp-button ion-icon {
  font-size: 30px;
  margin: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .fixed-whatsapp-button {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 16px;
  }
  .fixed-whatsapp-button ion-icon {
    font-size: 28px;
  }
  main[data-barba-namespace=products] ~ .fixed-whatsapp-button, body:has(main[data-barba-namespace=products]) .fixed-whatsapp-button, main[data-barba-namespace=product-details] ~ .fixed-whatsapp-button, body:has(main[data-barba-namespace=product-details]) .fixed-whatsapp-button {
    bottom: 84px;
  }
}

body.products-filter-open {
  overflow: hidden;
}
body.products-filter-open #products-listing .filter-button {
  display: none !important;
}

.caption {
  font-weight: 600;
  font-size: 20px;
  color: #001dff;
}

.scroll-wrapper {
  position: relative;
  width: 100%;
}

.scroll-wrapper .scroll-left {
  position: absolute;
  background: white;
  left: 0px;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 30;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  cursor: pointer;
}

.scroll-wrapper .scroll-left:hover {
  background: black;
  color: white;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .scroll-wrapper .scroll-left {
    left: 0px;
    display: none;
  }
}
@media (max-width: 425px) {
  .scroll-wrapper .scroll-left {
    width: 40px;
    height: 40px;
    left: -8px;
  }
}
.scroll-wrapper .scroll-right {
  position: absolute;
  background: white;
  right: 0px;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 30;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.scroll-wrapper .scroll-right:hover {
  background: black;
  color: white;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .scroll-wrapper .scroll-right {
    right: 0px;
    display: none;
  }
}
@media (max-width: 425px) {
  .scroll-wrapper .scroll-right {
    width: 40px;
    height: 40px;
    right: -8px;
  }
}
.upload {
  margin-bottom: 20px;
  width: 100%;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 525px) {
  .upload {
    flex-direction: column;
    align-items: flex-start;
  }
  .upload label {
    margin-bottom: 10px;
  }
  .upload input {
    width: 100%;
  }
}
.upload label {
  margin-right: 20px;
  font-size: 18px;
  font-weight: 600;
}
.upload input {
  border: 1px solid rgba(0, 0, 0, 0.185);
  padding: 5px;
  background: white;
  border-radius: 1px;
}

.size p {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  margin-top: 10px;
}

.line {
  position: relative;
  display: inline-block;
}

.size-selectBtns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 64%;
}
@media (max-width: 525px) {
  .size-selectBtns {
    width: 100%;
  }
}
.size-selectBtns .sizeBtn {
  width: calc(33.3333333333% - 5px);
  margin-bottom: 10px;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin-right: 5px;
}
.size-selectBtns .picked-size {
  background: #424040;
  color: white;
}

#terms-conditions {
  margin-top: 120px;
  margin-bottom: 60px;
}
#terms-conditions h2 {
  margin-bottom: 6px;
  margin-top: 20px;
  font-size: 25px;
}
#terms-conditions h2::after {
  display: none !important;
}

.colorsAvailable {
  width: 60%;
}
.colorsAvailable p {
  margin-bottom: 10px;
}
.colorsAvailable .color-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.colorsAvailable .color {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 100%;
  margin-right: 10px;
}
.colorsAvailable .color1 {
  background: black;
}
.colorsAvailable .color2 {
  background: #005198;
}
.colorsAvailable .color3 {
  background: #ca213c;
}
.colorsAvailable .picked-color {
  border: 4px solid #fcb413;
}

.buyNow-btn {
  margin-top: 20px !important;
  width: 30%;
}
@media (max-width: 525px) {
  .buyNow-btn {
    width: 100%;
  }
}

.productCheckout-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 15px;
  border-radius: 10px;
  z-index: 180;
  width: 40%;
  height: 650px;
  display: none;
}
@media (max-width: 768px) {
  .productCheckout-popup {
    width: 80%;
  }
}
@media (max-width: 525px) {
  .productCheckout-popup {
    width: 100%;
    height: 100vh;
    border-radius: 0px;
    padding: 10px;
  }
}
.productCheckout-popup .popup-head {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.productCheckout-popup .popup-head h2 {
  margin-bottom: 0px;
}
.productCheckout-popup .popup-head .close {
  display: flex;
  align-items: center;
  justify-content: center;
}
.productCheckout-popup .popup-head .close ion-icon {
  font-size: 30px;
}
.productCheckout-popup form {
  width: 100%;
  height: 100%;
}
.productCheckout-popup form .popup-body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: calc(100% - 120px);
  overflow-y: scroll;
  padding-right: 10px;
}
.productCheckout-popup form .popup-body .input-holder {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 525px) {
  .productCheckout-popup form .popup-body .input-holder {
    width: 100%;
  }
}
.productCheckout-popup form .popup-body .input-holder {
  margin-bottom: 10px;
}
.productCheckout-popup form .popup-body .input-holder label {
  width: 100%;
}
.productCheckout-popup form .popup-body .input-holder input {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(189, 183, 183, 0.631372549);
  border-radius: 5px;
  text-indent: 5px;
}
.productCheckout-popup form .popup-body .wrapper {
  width: 100%;
  margin-top: 10px;
}
.productCheckout-popup form .popup-body .wrapper h5 {
  margin-bottom: 10px;
}
.productCheckout-popup form .popup-body .wrapper .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.productCheckout-popup form .popup-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  padding-bottom: 0px;
}
.productCheckout-popup form .popup-footer .btn-filled {
  width: 100%;
}
@media (max-width: 525px) {
  .productCheckout-popup form .popup-footer .btn-filled {
    width: 100%;
  }
}

.view-all {
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  border: 1px solid black;
  font-size: 16px;
  padding: 7px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.view-all:hover {
  background: black;
  color: white;
  transition: 0.3s;
}
@media (max-width: 525px) {
  .view-all {
    font-size: 14px !important;
  }
}

.order-placed {
  width: 500px;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  padding: 30px;
  background: black;
  text-align: center;
  color: white;
  display: none;
  z-index: 150;
  border-radius: 20px;
}

.order-placed p {
  margin: 10px 0px;
  opacity: 0.8;
}

.order-placed-active {
  display: block;
}

.order-placed h2 {
  font-size: 20px;
}

.order-placed .button-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-placed .button-holder button {
  background: white;
  color: black;
  padding: 8px 15px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
}

.order-placed .button-holder button:nth-child(1) {
  margin-right: 10px;
}

.order-placed .button-holder button:nth-child(2) {
  background: #075e54;
  color: white;
}

@media (max-width: 768px) {
  .order-placed {
    width: 90%;
    padding: 15px;
  }
  .order-placed .button-holder {
    flex-direction: column;
  }
  .order-placed .button-holder button {
    width: 100%;
  }
  .order-placed .button-holder button:nth-child(1) {
    margin: 5px;
    order: 2;
  }
  .order-placed .button-holder button:nth-child(2) {
    margin: 5px;
    order: 1;
  }
  #testimonials {
    width: 100%;
    margin-top: 60px;
  }
}
@media (max-width: 768px) and (max-width: 525px) {
  #testimonials {
    padding: 40px 10px;
  }
}
@media (max-width: 768px) {
  #testimonials h2 {
    margin-bottom: 30px;
    text-align: center;
  }
  #testimonials p {
    margin-bottom: 40px;
    text-align: center;
  }
  #testimonials .card-wrapper .card {
    padding: 20px;
    border-radius: 25px;
    background: #fff;
    width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 525px) {
  #testimonials .card-wrapper .card {
    padding: 14px;
  }
}
@media (max-width: 768px) {
  #testimonials .card-wrapper .card .icon {
    width: 100px;
    margin-bottom: 10px;
  }
  #testimonials .card-wrapper .card .icon img {
    width: 100%;
  }
  #testimonials .card-wrapper .card p {
    margin-bottom: 10px;
    text-align: left;
  }
  #testimonials .card-wrapper .card .profile {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #testimonials .card-wrapper .card .profile .profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
  }
  #testimonials .card-wrapper .card .profile .profile-icon img {
    width: 70%;
    border-radius: 100%;
  }
  #testimonials .card-wrapper .card .profile .profile-icon .country-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    overflow: hidden;
    bottom: -2px;
    right: 0px;
  }
  #testimonials .card-wrapper .card .profile .profile-icon .country-icon img {
    width: 100%;
    border-radius: 0px !important;
  }
}
@media (max-width: 768px) and (max-width: 525px) {
  #testimonials .card-wrapper .card .profile .profile-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  #testimonials .card-wrapper .card .profile .profile-details {
    width: calc(100% - 55px);
  }
}
@media (max-width: 768px) and (max-width: 525px) {
  #testimonials .card-wrapper .card .profile .profile-details {
    width: calc(100% - 50px);
  }
}
@media (max-width: 768px) {
  #testimonials .card-wrapper .card .profile .profile-details .name {
    font-weight: 500;
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) and (max-width: 525px) {
  #testimonials .card-wrapper .card .profile .profile-details .name {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  #testimonials .card-wrapper .card .profile .profile-details .sub {
    font-size: 14px;
    font-weight: 400;
  }
  #benifits {
    width: 100%;
    padding: 30px;
    background: white;
    border-radius: 10px;
  }
}
@media (max-width: 768px) and (max-width: 525px) {
  #benifits {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  #benifits ul li {
    line-height: 27px;
  }
}
.explore-brands {
  margin-top: 50px;
  margin-bottom: 10px;
}
.explore-brands.home-brands {
  margin-top: 40px;
  margin-bottom: 20px;
}
.explore-brands.products-brands,
.explore-brands .brand-panel {
  margin-top: 8px;
  margin-bottom: 18px;
  display: block !important;
  visibility: visible !important;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px 16px 8px;
  background: #fff;
}
.explore-brands.products-brands .section-heading,
.explore-brands .brand-panel .section-heading {
  margin-bottom: 14px;
  padding: 0 4px;
  width: auto;
  margin-left: 0;
  margin-right: 0;
}
.explore-brands.products-brands .section-heading h2,
.explore-brands .brand-panel .section-heading h2 {
  font-size: 18px;
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.explore-brands.products-brands .section-heading p,
.explore-brands .brand-panel .section-heading p {
  font-size: 13px;
  text-align: left;
}
.explore-brands.products-brands .brand-snap-scroll,
.explore-brands .brand-panel .brand-snap-scroll {
  display: flex !important;
  min-height: 110px;
  position: relative;
  padding: 8px 4px 16px;
  gap: 12px;
  scroll-snap-type: x proximity;
}
@media (max-width: 768px) {
  .explore-brands.products-brands .brand-snap-scroll,
  .explore-brands .brand-panel .brand-snap-scroll {
    gap: 10px;
    padding-left: 0;
  }
}
.explore-brands.products-brands .brand-snap-item,
.explore-brands .brand-panel .brand-snap-item {
  width: 108px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 10px 8px 8px;
  background: #fff;
  box-sizing: border-box;
}
.explore-brands.products-brands .brand-snap-item:hover,
.explore-brands .brand-panel .brand-snap-item:hover {
  transform: translateY(-2px);
  border-color: #ccc;
}
.explore-brands.products-brands .brand-snap-item:hover .brand-circle,
.explore-brands .brand-panel .brand-snap-item:hover .brand-circle {
  box-shadow: none;
  border-color: #ddd;
}
.explore-brands.products-brands .brand-snap-item .brand-circle,
.explore-brands .brand-panel .brand-snap-item .brand-circle {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid #ececec;
}
.explore-brands.products-brands .brand-snap-item .brand-label,
.explore-brands .brand-panel .brand-snap-item .brand-label {
  max-width: 100%;
  font-size: 12px;
}
@media (max-width: 768px) {
  .explore-brands.products-brands .brand-snap-item,
  .explore-brands .brand-panel .brand-snap-item {
    width: 88px;
    padding: 8px 6px 6px;
    border-radius: 8px;
  }
  .explore-brands.products-brands .brand-snap-item .brand-circle,
  .explore-brands .brand-panel .brand-snap-item .brand-circle {
    width: 58px;
    height: 58px;
    border-radius: 6px;
  }
}
.explore-brands.products-brands .brand-snap-all,
.explore-brands .brand-panel .brand-snap-all {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #fff;
  scroll-snap-align: none;
  box-shadow: 10px 0 14px -10px rgba(0, 0, 0, 0.16);
}
.explore-brands.products-brands .brand-snap-all .brand-circle,
.explore-brands .brand-panel .brand-snap-all .brand-circle {
  border-radius: 8px;
  background: #111;
}
.explore-brands.products-brands .brand-snap-all .brand-circle ion-icon,
.explore-brands .brand-panel .brand-snap-all .brand-circle ion-icon {
  color: #fff;
  font-size: 28px;
}
.explore-brands.products-brands {
  margin-top: 8px;
}
.explore-brands .section-heading {
  margin-bottom: 28px;
}
.explore-brands .brand-snap-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px;
  scrollbar-width: thin;
}
.explore-brands .brand-snap-scroll::-webkit-scrollbar {
  height: 4px;
}
.explore-brands .brand-snap-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.explore-brands .brand-snap-item {
  flex: 0 0 auto;
  width: 110px;
  scroll-snap-align: start;
  text-decoration: none;
  color: #111;
  text-align: center;
  transition: transform 0.25s ease;
}
.explore-brands .brand-snap-item:hover {
  transform: translateY(-4px);
}
.explore-brands .brand-snap-item:hover .brand-circle {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #111;
}
.explore-brands .brand-snap-item .brand-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f3f3;
  border: 2px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}
.explore-brands .brand-snap-item .brand-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.explore-brands .brand-snap-item .brand-circle ion-icon {
  font-size: 34px;
  color: #333;
}
.explore-brands .brand-snap-item.brand-snap-all .brand-circle {
  background: #111;
  border-color: #111;
}
.explore-brands .brand-snap-item.brand-snap-all .brand-circle ion-icon {
  color: #fff;
}
.explore-brands .brand-snap-item .brand-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .explore-brands .brand-snap-item {
    width: 88px;
  }
  .explore-brands .brand-snap-item .brand-circle {
    width: 78px;
    height: 78px;
  }
  .explore-brands .brand-snap-item .brand-label {
    font-size: 12px;
    max-width: 88px;
  }
}

.sub-category {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sub-category .category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.sub-category .category-card {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 768px) {
  .sub-category .category-card {
    height: auto;
    margin-bottom: 24px;
  }
  .sub-category .category-card:last-child {
    margin-bottom: 0;
  }
}
.sub-category .category-card:hover .round-arrow {
  background: white;
}
.sub-category .category-card:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}
.sub-category .category-card .image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 25px;
  background: #f3f3f3;
}
@media (max-width: 999px) {
  .sub-category .category-card .image {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .sub-category .category-card .image {
    height: auto;
  }
}
.sub-category .category-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: 0.5s;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .sub-category .category-card .image img {
    height: auto;
    aspect-ratio: 16/10;
  }
}
.sub-category .category-card .title {
  font-weight: normal;
  margin-top: 20px;
  font-weight: 400;
  font-size: 20px;
  color: black;
  z-index: 5;
  position: absolute;
  bottom: 0;
  width: 97%;
  padding: 20px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 7px;
  background: rgba(255, 255, 255, 0.586);
  border-radius: 23px;
  backdrop-filter: blur(5px);
}
.sub-category .category-card .title h3 {
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
}
.sub-category .category-card {
  text-decoration: none;
}

.section-heading h2 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.section-heading {
  width: 500px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}
.section-heading p {
  font-weight: 300;
}
@media (max-width: 768px) {
  .section-heading {
    width: 100%;
    padding: 0px 20px;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .section-heading p {
    font-size: 14px;
  }
}

.big-text {
  font-size: 200px;
  position: absolute;
  z-index: 2;
}

.mini-heading {
  width: 100%;
  font-size: 12px;
}

.order-form {
  width: 100%;
  z-index: 150;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.order-form form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  position: relative;
  padding-top: 60px;
}
.order-form form h2 {
  margin-bottom: 10px;
}
.order-form form p {
  margin-bottom: 20px;
  opacity: 0.8;
}
.order-form form .close-popup {
  width: 30px;
  height: 30px;
  background: #eee;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
}
.order-form form .form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.order-form form .form-wrapper .input-group {
  margin-bottom: 20px;
  display: flex;
  width: calc(50% - 10px);
  flex-direction: column;
}
.order-form form .form-wrapper .input-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.order-form form .form-wrapper .input-group input {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  background: #eee;
  border: none;
  padding-left: 10px;
}
.order-form form .form-wrapper .input-group textarea {
  width: 100%;
  height: 80px;
  border: none;
  background: #eee;
  padding: 10px;
  border-radius: 5px;
  resize: none;
}
.order-form form button {
  width: 100%;
  background: black;
  border-radius: 100px;
  color: white;
  padding: 13px;
  font-size: 16px;
  cursor: pointer;
}
.order-form form button:hover {
  background: rgb(33, 33, 33);
}

.success-popup-overlay {
  width: 100%;
  z-index: 150;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.success-popup-overlay .success-popup {
  width: 350px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.success-popup-overlay .success-popup .icon {
  font-size: 80px;
  color: green;
}
.success-popup-overlay .success-popup h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.success-popup-overlay .success-popup p {
  margin-bottom: 20px;
}

.filter-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-right: 10px;
}
.filter-holder label {
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  color: #444;
  font-family: "Inter", sans-serif;
}

.brandHolder {
  margin-bottom: 30px;
}
.brandHolder h3 {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-size: 14px;
}

.disabled-cart {
  opacity: 0.5;
  cursor: not-allowed;
}

.apply-list-view {
  gap: 0px !important;
}
.apply-list-view .card {
  width: 100% !important;
  flex-direction: row;
  margin-bottom: 0px !important;
  border-bottom: 1px solid #eee;
  padding: 5px 0px;
}
.apply-list-view .card .image {
  width: 80px;
  height: 80px;
}
.apply-list-view .card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apply-list-view .card .image .price-holder {
  display: none;
}
.apply-list-view .card .image .round-arrow {
  display: none;
}
.apply-list-view .card .content {
  padding-left: 10px;
}
.apply-list-view .card .content h3 {
  font-size: 18px;
}
.apply-list-view .card .content .price-holder {
  display: block;
  position: static;
  padding: 0;
  margin-top: 5px;
}

.empty-case {
  width: 100%;
  text-align: center;
  width: 100%;
  padding: 60px 0px;
}
.empty-case ion-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.toaster {
  width: 100%;
  height: 45px;
  text-align: center;
  background: rgb(37, 37, 37);
  position: fixed;
  top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 100;
  font-weight: 500;
  display: none;
}

/*# sourceMappingURL=style.css.map */
