* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins Bold";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins Semi Bold";
  src: url("/fonts/Poppins-SemiBold.ttf") format("truetype");
}
/* @view-transition {
  navigation: auto;
} */
html {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  color: #232323;
  position: relative;
}
img {
  display: block;
}
button {
  cursor: pointer;
}
.whatsapp-link {
  position: fixed;
  right: 15px;
  bottom: 10px;
  z-index: 1000;
  will-change: transform;
  transform: translateY(0);
  animation: bounce 3s infinite ease-in-out;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(-10px);
  }

  20% {
    transform: translateY(0px);
  }

  30% {
    transform: translateY(-10px);
  }

  40% {
    transform: translateY(0);
  }
  40%,
  100% {
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
#dynamic-component {
  position: relative;
}
header {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-inline: 6.7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  width: 175px;
}
.left-side-one {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 35px;
  margin-bottom: 18px;
}
.left-side-two {
  display: flex;
  gap: 25px;
}
.left-side-two div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.spinning-loader {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: radial-gradient(white 54%, transparent 41%), conic-gradient(rgb(251, 201, 1) 0deg 90deg, rgb(72, 189, 176) 90deg 180deg, rgb(255, 0, 0) 180deg 270deg, rgb(234, 234, 234) 270deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent 54%, black 55%);
  mask: radial-gradient(circle, transparent 54%, black 55%);
  animation: spin 1s linear infinite;
  display: none;
  margin: 0 auto;
}
.small-svg {
  width: 18px;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.small-svg:hover {
  transform: scale(1.2);
}
.home-inp {
  padding-top: 7px;
  padding-right: 40px;
  padding-bottom: 7.5px;
  padding-left: 10px;
  width: 160px;
  border-radius: 0px;
  border: none;
  background-color: #232323;
  color: white;
}
.home-inp::placeholder {
  color: white;
  font-size: 12px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.home-inp:focus {
  outline: none;
}
.search-icon {
  width: 13px;
  position: absolute;
  top: 8px;
  right: 7px;
}
.home-links {
  text-decoration: none;
  color: rgb(63, 63, 63);
  font-size: 12.5px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
#shopping-cart-count,
#shopping-cart-count2 {
  background: #ffe5e8;
  font-size: 12px;
  padding: 3px;
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 50%;
}
#shopping-cart-count2 {
  position: absolute;
  font-family: "Poppins", sans-serif;
  left: 12px;
  bottom: 10px;
}
.nav,
.second-nav > ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  list-style: none;
  background-color: #000000;
  padding: 9px;
}
.second-nav div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}
.nav > li,
.second-nav > li {
  position: relative;
}
.nav a,
.second-nav a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-family: "Poppins Bold", sans-serif;
}
.nav li a::after,
.second-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  background: rgb(255, 255, 255);
}
.nav li a:hover::after,
.second-nav li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav li a:not(:hover)::after,
.second-nav li a:not(:hover)::after {
  transform-origin: right;
}
.embed-link,
.embed-link2 {
  position: absolute;
  list-style: none;
  background-color: white;
  width: 220px;
  padding: 10px 20px 10px 20px;
  box-shadow: 0px 0px 3px black;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.4s ease,
    visibility 0.3s ease;
  z-index: 1;
}
.embed-link svg {
  width: 10px;
}
.embed-link a {
  color: #232323;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
}
.embed-link li {
  display: flex;
  justify-content: space-between;
}
.embed-link a::after {
  background-color: #000000;
}
.embed-link-li {
  position: relative;
}
.embed-link2 {
  width: 200px;
  list-style: none;
  position: absolute;
  top: -20px;
  right: -210px;
}
.nav > li:hover .embed-link,
.embed-link-li:hover .embed-link2,
.second-nav li:hover .embed-link {
  transform: translateY(10px);
  visibility: visible;
  opacity: 1;
}
.second-nav {
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  gap: 6.7vw;
  position: fixed;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.3s ease;
  top: 0;
  pointer-events: none;
}
.second-nav img {
  width: 200px;
  padding: 5px;
}
.second-nav div svg {
  width: 23px;
  fill: #ffffff;
}
.second-nav ul {
  row-gap: 0px;
}
.second-nav button {
  border: none;
  background-color: transparent;
}
.hr {
  width: 100%;
  height: 1px;
  background: #e9e9e9;
  margin-top: 7px;
  margin-bottom: 7px;
}
.cover-image {
  width: 100%;
  position: relative;
}
#cover-image-slide {
  width: 100%;
  aspect-ratio: 22 / 9;
  position: relative;
}
#cover-image-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
  z-index: 0;
}
#cover-image-slide img.active {
  opacity: 1;
}
.move-button {
  width: 35px;
  height: 35px;
  border: 1px solid gray;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  z-index: 5;
  top: 50%;
}
.move-button svg {
  width: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#cover-image-slide:hover ~ .move-button,
.move-button:hover {
  opacity: 1;
}
.move-button:hover {
  background-color: rgb(255, 247, 247);
  border-color: rgb(255, 247, 247);
}
#cover-buttons {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  display: flex;
  gap: 13px;
}
#cover-buttons button {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgb(71, 71, 71);
  background-color: transparent;
}
.showcase-product {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  padding: 10px;
}
.showcase-product img {
  width: 100%;
  display: block;
}
.showcase-product div {
  position: relative;
}
.showcase-product a.sh {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-decoration: none;
  text-underline-offset: 5px;
  font-weight: 600;
  font-size: 17px;
}
.showcase-product a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: white;
}
.new-arrival {
  margin-top: 50px;
  margin-bottom: 25px;
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.new-arrival h4 {
  font-family: "Poppins Bold", sans-serif;
  margin-inline: 20px;
  white-space: nowrap;
}
.new-arrival,
.new-arrival > div {
  width: 100%;
}
.new-arrival > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.x-bars {
  width: 32%;
  height: 2px;
  background: #000;
}
.new-arrival a {
  color: black;
  font-size: 12px;
  text-underline-offset: 7px;
}
.showcase-product {
  margin-inline: 80px; /* Default large desktop */
}
.home-products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  box-sizing: border-box;
  gap: 30px;
  padding: 10px;
  padding-inline: 6.7vw;
  row-gap: 50px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.product-card > div {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.product-card img {
  width: 100%;
  height: inherit;
  transform: scale(1);
  object-fit: cover;
  aspect-ratio: 1/1;
}
.product-card a.sh {
  font-size: 12px;
  text-decoration: none;
  color: black;
  text-underline-offset: 3px;
  text-align: center;
  margin-top: 20px;
}
.product-card a.sh:hover {
  text-decoration: underline;
}
.product-card p {
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
}
.product-card .ab {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 10px;
  border: none;
  background: white;
  border-radius: 20px;
  font-size: 12px;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  width: auto;
}
.product-card .ab svg {
  width: 18px;
}
.product-card .ab div {
  display: none;
}
.product-card .b1 {
  right: 0;
  top: 10px;
}
.product-card .b2 {
  right: 0;
  top: 60px;
}
.product-showing-button-small-screen {
  display: none;
  padding-inline: 10px;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 60px;
}
.product-showing-button-small-screen p {
  font-size: 12px;
}
.product-showing-button-small-screen button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: white;
  border: 1px solid black;
  position: relative;
}
.product-showing-button-small-screen svg {
  width: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-size {
  position: absolute;
  bottom: 60px;
  opacity: 0;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.home-size a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  background-color: white;
  padding: 4px 8px 4px 8px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}
.home-size a:hover {
  color: white;
  background: #000;
}
.home-add-btn {
  width: 100%;
  border-radius: 0;
  border: 1px solid black;
  padding: 10px;
  font-size: 15px;
  font-family: "Poppins Bold", sans-serif;
  background: white;
  position: absolute;
  bottom: -50px;
  z-index: 4;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
}
.product-card:hover .ab {
  opacity: 1;
  transform: translateX(-10px);
}
.product-card:hover .home-size {
  opacity: 1;
}
.product-card:hover .home-add-btn {
  opacity: 1;
  transform: translateY(-50px);
}
.product-card > div:hover img {
  transition: transform 3s cubic-bezier(0.1, 0.9, 0.2, 1.7);
  transform: scale(1.83);
}
.ab:hover div {
  display: block;
}
.show-more {
  width: 270px;
  border-radius: 0;
  border: none;
  color: white;
  padding: 13px;
  font-size: 14px;
  font-family: "Poppins Semi Bold", sans-serif;
  background: #232323;
  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
  display: block;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 50px;
}
.prod-banner {
  width: 100%;
}
.dorjibari-insta {
  margin-top: 40px;
  background-color: #fafafa;
  padding-inline: 6.7vw;
  padding-bottom: 60px;
  position: relative;
}
.dorjibari-insta h3 {
  text-align: center;
  padding-top: 50px;
  font-family: "Poppins Bold", sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
}
.insta-button {
  width: 35px;
  height: 35px;
  border: 1px solid gray;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
  position: absolute;
}
.insta-button:hover {
  background-color: rgb(255, 247, 247);
  border-color: rgb(255, 247, 247);
}
.insta-button svg {
  width: 8px;
  position: absolute;
  top: 17%;
  left: 37%;
}
.insta-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% / 5);
  scroll-behavior: smooth;
  overflow-x: hidden;
  gap: 5px;
}
.insta-slider:hover button {
  opacity: 1;
}
.insta-slider div {
  overflow: hidden;
}
.insta-slider img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  object-fit: cover;
}
.insta-slider img:hover {
  transition: transform 3s cubic-bezier(0.1, 0.9, 0.2, 1.7);
  transform: scale(1.08);
}
.insta-view-btn {
  width: 230px;
  border-radius: 0;
  border: none;
  color: white;
  padding: 13px;
  font-size: 14px;
  font-family: "Poppins Semi Bold", sans-serif;
  background: #232323;
  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  text-decoration: none;
}
footer {
  background-color: #232323;
  color: white;
  padding-top: 35px;
  padding-inline: 6.7vw;
  margin-top: 50px;
}
footer h4 {
  font-size: 15px;
  margin-bottom: 15px;
}
footer p {
  font-size: 12px;
  line-height: 23px;
}
footer a {
  text-decoration: none;
  font-size: 12px;
  text-underline-offset: 3px;
}
footer a:hover {
  text-decoration: underline;
}
footer details {
  display: none;
}
footer p,
footer a,
footer h6 {
  color: #c0c0c0;
}
.footer-first {
  display: grid;
  grid-auto-columns: calc(100% / 4);
  grid-auto-flow: column;
  gap: 30px;
}
.footer-image {
  margin: 0 auto;
  width: 70%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-links .ab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  will-change: transform;
}
.footer-links .hr,
.footer-links .bc {
  display: none;
  visibility: hidden;
}
.footer-links .bc {
  position: relative;
  width: 14px;
  height: 14px;
}
.footer-links .one {
  height: 14px;
  width: 2px;
  background-color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
.footer-links .two {
  width: 14px;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}
.footer-links .ab h4 {
  margin: 0;
}
.footer-links svg {
  width: 15px;
  display: block;
}
.footer-links-place {
  transform: translateY(-20px);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  margin-top: 10px;
}
.footer-links-place-primary {
  margin-top: 10px;
}
.footer-copyright {
  text-align: center;
  padding: 15px;
  font-weight: 500;
  font-size: 12px;
  color: #c0c0c0;
  border-top: 1px solid #474747;
  margin-left: -6.7vw;
  margin-right: -6.7vw;
}
.social-links {
  background-color: white;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  padding: 20px;
  border-radius: 50%;
  transition:
    outline-width 0.2s ease,
    outline-offset 0.2s ease;
}
.social-links svg {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.social-links:hover {
  outline-offset: 6px;
  outline: 2px solid white;
}

/* Category Page */
.category {
  display: flex;
  gap: 30px;
  padding-inline: 6.7vw;
  box-sizing: border-box;
  margin-bottom: 80px;
  position: relative;
}
.category-path {
  color: #aaaaaa;
  font-size: 12px;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-inline: 6.7vw;
}
.filter {
  min-width: 210px;
}
.filter h4 {
  font-size: 14px;
  font-family: "Poppins Bold";
  margin-bottom: 7px;
}
.filter hr {
  margin-bottom: 15px;
}
.filter label {
  font-size: 12px;
  margin-left: 5px;
}
.filter input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: all 0.2s ease;
}
.filter input[type="checkbox"]:hover {
  border-color: #000000;
}
.filter input[type="checkbox"]:checked {
  background-color: #000000;
  border-color: #000000;
}
.filter input[type="checkbox"]:checked::before {
  content: "✔";
  color: white;
  font-size: 11px;
  font-weight: bold;
}
.filter input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4);
}
.products-place img {
  max-width: 100%;
  height: auto;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
}
.slider-track {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 5px;
  background: #ddd;
  border-radius: 50px;
  transform: translateY(-50%);
}
.slider-range {
  position: absolute;
  top: 50%;
  height: 5px;
  background: #000;
  border-radius: 50px;
  transform: translateY(-50%);
}
.slider-container input[type="range"] {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}
.slider-container input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: inset 0 0 0 5px black;
  cursor: pointer;
  pointer-events: auto;
}
.slider-container input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: black;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}
#min-slider {
  z-index: 2;
}
#max-slider {
  z-index: 3;
}
.price-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-range > div {
  border: 1px solid #c4c4c4;
  padding: 7px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.price-range input {
  width: 43px;
  border: none;
}
.price-range input:focus {
  outline: none;
}
.price-range input::-webkit-inner-spin-button,
.price-range input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price-range input {
  appearance: textfield;
  -moz-appearance: textfield;
  font-size: 12px;
  text-align: right;
}
.filter-apply {
  width: 100%;
  background-color: #232323;
  border: 1px solid #ffffff;
  color: white;
  padding: 13px;
  font-family: "Poppins Bold", sans-serif;
  margin-top: 20px;
  transition: 0.3s ease;
}
.filter-apply:hover {
  background: white;
  border-color: #232323;
}
.products-place h1 {
  font-size: 23px;
  font-family: "Poppins Bold", sans-serif;
  margin-top: 30px;
}
.products-place-text {
  font-size: 12px;
  color: rgb(78, 78, 78);
  margin-top: 10px;
  margin-bottom: 30px;
  line-height: 23px;
}
.three-image-sign {
  border: 1px solid black;
  width: 27.5px;
  height: 27.5px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.three-image-sign div {
  width: 100%;
  height: 4px;
  background-color: #000;
}
.two-image-sign {
  height: 27.5px;
  padding: 3px;
  border: 1px solid black;
  display: flex;
  justify-content: space-between;
}
.two-image-sign div {
  height: 100%;
  width: 4px;
  background-color: #000;
}
.view-as-filter {
  display: flex;
  gap: 5px;
  align-items: center;
}
.view-as-filter span {
  margin-right: 10px;
}
.product-filter {
  margin-top: 40px;
  display: flex;
  font-size: 12px;
  margin-bottom: 20px;
}
.items-per-page {
  display: flex;
  align-items: center;
  gap: 20px;
}
.items-per-page div {
  border: 1px solid #c4c4c4;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 90px;
}
.items-per-page button {
  border: none;
  background: none;
  padding: 0px;
  cursor: pointer;
}
.items-per-page svg {
  width: 12px;
}
.items-per-page ul {
  list-style: none;
  position: absolute;
  z-index: 10;
  top: 22px;
  background-color: rgb(255, 255, 255);
  min-width: 100%;
  width: auto;
  right: 0;
  padding: 10px;
  box-shadow: 0px 1px 6px black;
  line-height: 30px;
  opacity: 0;
  transition: 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.product-page {
  padding-inline: 0;
}
.show-more-products {
  font-size: 13px;
  color: #6e6e6e;
  text-align: center;
  margin-bottom: 10px;
}
.show-more-tracker {
  width: 210px;
  height: 3px;
  background-color: #e6e6e6;
  margin: 0 auto;
  margin-bottom: 20px;
}
.show-more-slider {
  width: 100px;
  height: 3px;
  background-color: #4b6cc0;
}
.show-more-products-button {
  background-color: white;
  width: 300px;
  border: 1px solid #232323;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: "Poppins Bold", sans-serif;
  transition: 0.3s ease;
  display: block;
  margin: 0 auto;
}
.show-more-products-button:hover {
  background-color: #232323;
  color: white;
}
.banner-clip {
  overflow: hidden;
}
.banner-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.banner-clip:hover img {
  transform: scale(1.07);
}
.category-products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  box-sizing: border-box;
  gap: 30px;
  padding: 10px;
  row-gap: 50px;
}

/* About Us Page */
.about-us {
  padding-inline: 6.7vw;
}
.about-us h1 {
  font-size: 20px;
  font-family: "Poppins Bold", sans-serif;
  margin-top: 20px;
}
.about-us b {
  font-size: 13px;
  font-family: "Poppins Bold", sans-serif;
}
.about-us p {
  font-size: 12px;
  line-height: 22px;
}

/* Sidebars */
.common-sidebar {
  background-color: white;
  height: 100vh;
  padding: 20px;
  z-index: 30;
  transition: transform 0.5s ease;
}
.common-sidebar .title {
  font-family: "Poppins Semi Bold", sans-serif;
}
.common-sidebar .bold {
  font-family: "Poppins Bold", sans-serif;
  font-size: 13px;
}
.sidebar-overlay {
  width: 100%;
  position: absolute;
  position: fixed;
  inset: 0;
  background-color: #000;
  opacity: 0.65;
  display: none;
  z-index: 20;
  right: 0;
  top: 0;
}
.sidebar-cross {
  width: 20px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  will-change: transform;
  margin-bottom: auto;
}
.sidebar-cross:hover {
  transform: rotate(180deg);
}
.icon-input {
  position: relative;
}
.icon-input input {
  width: 100%;
  background-color: #fafafa;
  border: none;
  border-bottom: 1px solid #b9b9b9;
  padding: 11px;
  padding-right: 50px;
  font-size: 14px;
  color: #232323;
}
.icon-input input:focus {
  outline: none;
}
.icon-input button {
  padding: 0;
  background-color: transparent;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 10px;
}
.icon-input svg {
  width: 17px;
}
.left-sidebar {
  width: 420px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
}
.left-sidebar .items {
  font-size: 12px;
  color: #847f7f;
  margin-top: 10px;
}
.left-sidebar .top-content {
  display: flex;
  justify-content: space-between;
}
.left-sidebar .cart-empty {
  text-align: center;
  color: #847f7f;
  font-size: 13px;
  margin-top: 25px;
}
.left-sidebar .continue-shopping {
  border: 1px solid #232323;
  background-color: white;
  padding: 10px;
  border-radius: 0;
  width: 100%;
  font-size: 15px;
  font-family: "Poppins Bold", sans-serif;
  margin-top: 20px;
  transition: 0.3s ease;
  display: block;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: #232323;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.left-sidebar .continue-shopping:hover {
  color: white;
  background-color: #232323;
}
.left-sidebar .forgot-password {
  font-size: 13px;
  color: #5a5a5a;
  text-align: center;
  display: block;
  margin-top: 20px;
  text-underline-offset: 4px;
}
.login-button {
  border: 1px solid #232323;
  background-color: #232323;
  padding: 10px;
  border-radius: 0;
  width: 100%;
  font-size: 15px;
  font-family: "Poppins Bold", sans-serif;
  margin-top: 20px;
  transition: 0.3s ease;
  color: white;
}
.login-button:hover {
  color: #232323;
  background-color: #ffffff;
}
.input-label {
  font-size: 13px;
  font-family: "Poppins Semi Bold", sans-serif;
}
.input {
  border-radius: 0;
  border: 1px solid #cecece;
  padding: 12px 13px 12px 13px;
  width: 100%;
  color: #232323;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 10px;
}
.input:focus {
  outline: none;
}

/* Right Sidebars */
.hamburger-sign {
  min-width: 25px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-sign div {
  width: 100%;
  height: 2px;
  background-color: #232323;
}
.second-header {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(0, 0);
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 6px;
  padding-inline: 13px;
  box-sizing: border-box;
  display: none;
  z-index: 18;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
}
.second-header .top-content {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 35px;
}
.second-header svg {
  min-width: 22px;
}
.second-header img {
  width: 130px;
}
.second-header button {
  background-color: transparent;
  border: none;
}
.search-suggestions {
  display: flex;
  align-items: center;
  color: #868891;
  font-size: 13px;
  gap: 7px;
  width: fit-content;
  padding: 4px;
  padding-inline: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #f7f7f7;
}
.search-suggestions:hover {
  background-color: #dfdfdf;
}
.search-suggestions svg {
  width: 15px;
}
.search-suggestions-place {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-products {
  display: flex;
  gap: 25px;
}
.search-products .product-card {
  --webkit-linedisplay: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-products img {
  height: 100px;
}
.header-search-options {
  width: 570px;
  height: 350px;
  position: absolute;
  overflow-y: auto;
  top: calc(100% + 5px);
  right: 0;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 10px 20px rgba(0, 0, 0, 0.03),
    0 20px 40px rgba(0, 0, 0, 0.04);
  z-index: 13;
  padding: 30px;
  padding-top: 20px;
  background-color: white;
  display: none;
}
.header-search-options .product-card {
  flex: 0 0 105px;
}
.header-search-options a,
.scroll-header-input a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.search-options {
  width: 370px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  flex-direction: column;
  transform: translateX(-100%);
  padding-bottom: 20px;
}
.search-options .top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-options .top-content svg {
  margin-bottom: 0;
}
.search-options .search-products {
  overflow-x: auto;
  height: auto;
  padding-bottom: 20px;
}
.search-options .search-products::-webkit-scrollbar,
.scroll-header-input::-webkit-scrollbar {
  height: 4px;
}
.search-options .search-products::-webkit-scrollbar-track,
.scroll-header-input::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.search-options .search-products::-webkit-scrollbar-thumb,
.scroll-header-input::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 0;
}
.search-options .search-products::-webkit-scrollbar-thumb:hover,
.scroll-header-input::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.search-options .search-products,
.scroll-header-input {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
.search-options .scroll-area {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.search-options .product-card {
  flex: 0 0 200px;
}
.search-options img {
  height: auto;
}
.search-options .sh {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
#scroll-header-input-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 40;
}
#scroll-header-input-box input {
  width: 100%;
  border: none;
  padding: 10px 12px 10px 12px;
  margin-bottom: 5px;
}
#scroll-header-input-box .abc {
  position: relative;
  margin-top: 10px;
}
#scroll-header-input-box .abc svg {
  position: absolute;
  right: 10px;
  top: 20%;
  z-index: 30;
  width: 20px;
  cursor: pointer;
}
#scroll-header-input-box input:focus {
  outline: none;
}
.scroll-header-input {
  width: 555px;
  height: 220px;
  overflow-y: auto;
  transform: translateX(0);
  position: relative;
  background-color: white;
  padding: 20px;
  padding-top: 20px;
}
.scroll-header-input .search-products {
  overflow-x: hidden;
  overflow-y: hidden;
  flex-shrink: 0;
}
.scroll-header-input .product-card {
  flex: 0 0 105px;
}
/* #second-header-input {
  left: 50%;
  top: 50%;
} */
.small-screen-menubar {
  width: 355px;
  height: 100vh;
  background-color: white;
  padding: 12px 0px 0px 0px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  display: none;
}
.small-screen-menubar .abc {
  height: 100%;
  overflow-y: scroll;
}
.small-screen-menubar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
}
.small-screen-menubar .top svg {
  margin-bottom: 0;
}
.small-screen-menubar a,
.small-screen-menubar .flex {
  font-size: 14px;
  font-family: "Poppins Bold", sans-serif;
  padding-inline: 20px;
}
.small-screen-menubar a {
  text-decoration: none;
  color: black;
}
.small-screen-menubar .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.small-screen-menubar .flex-1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding-inline: 20px;
}
.small-screen-menubar .hr {
  margin-top: 15px;
  margin-bottom: 15px;
}
.small-screen-menubar .flex svg {
  width: 15px;
}
.small-screen-menubar .flex-1 svg {
  width: 20px;
}
.small-screen-menubar-sub {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  z-index: 30;
  background-color: white;
  overflow-y: auto;
}
.small-screen-menubar-sub a,
.small-screen-menubar-sub .flex {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  color: rgb(35, 35, 35);
}
.sub-menubar-header {
  background-color: rgb(248, 248, 248);
  padding: 10px 20px 10px 20px;
  font-size: 14px;
  font-family: "Poppins Bold", sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.sub-menubar-header svg {
  width: 25px;
}
.sub-menubar-header p {
  margin-left: auto;
  margin-right: auto;
}

/* Media Queries */

@media (max-width: 1200px) {
  .showcase-product {
    margin-inline: 0px;
  }
  .home-products {
    padding-inline: 10px;
  }
  .category,
  .category-path,
  .about-us,
  header {
    padding-inline: 15px;
  }
  footer {
    padding-inline: 20px;
  }
  .footer-copyright {
    margin-left: -20px;
    margin-right: -20px;
  }
  .insta-slider {
    padding-inline: 10px;
    grid-auto-columns: calc(100% / 4);
  }
  .move-button {
    display: none;
  }
}
@media (max-width: 1050px) {
  header,
  .nav,
  .second-nav {
    display: none;
  }
  .cover-image {
    margin-top: 50.125px;
  }
  .category-path {
    margin-top: 50.125px;
    background: #f6f6f6;
    margin-bottom: 10px;
    padding: 10px;
  }
  #scroll-header-input-box {
    display: none !important;
  }
  .second-header {
    display: flex;
  }
  .search-options {
    display: flex;
  }
  .small-screen-menubar {
    display: block;
  }
  .showcase-product {
    gap: 15px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr auto;
  }
  .new-arrival {
    grid-row: 3 / 4;
  }
  .new-arrival .x-bars {
    width: 37%;
  }
  .home-products {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .rand-products {
    display: flex;
    overflow-x: hidden;
    gap: 20px;
    scroll-behavior: smooth;
  }
  .rand-products > div {
    flex: 0 0 calc((100% - 40px) / 3);
  }
  .product-showing-button-small-screen {
    display: flex;
  }
  .home-products .ab {
    opacity: 1;
    transform: translateX(-10px);
  }
  .home-add-btn {
    position: relative;
    opacity: 1;
    bottom: 0%;
  }
  .home-products > div:hover .home-add-btn {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .home-products .ab div {
    display: none;
  }
  .home-size {
    display: none;
  }
  .insta-slider {
    grid-auto-columns: calc(100% / 3);
  }
  .footer-first {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
  }
  .footer-image {
    margin-top: 40px;
  }
}
@media (max-width: 850px) {
  .home-products {
    grid-template-columns: 1fr 1fr;
  }
  .home-products > div:nth-child(n + 9) {
    display: none;
  }
  .rand-products > div {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .show-more {
    display: none;
  }
  .filter {
    position: absolute;
    transform: translateX(-230px);
  }
  .footer-links .hr,
  .footer-links .bc {
    display: block;
    visibility: visible;
  }
  .footer-links-place-primary {
    display: none;
  }
}
@media (max-width: 730px) {
  .insta-slider {
    grid-auto-columns: calc(100% / 2);
  }
  .footer-first {
    grid-template-columns: 1fr;
    grid-auto-rows: auto auto auto auto;
  }
  footer details {
    display: block;
  }
}
@media (max-width: 590px) {
  .common-sidebar {
    width: 100% !important;
  }
}
