@import url('https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700&family=Poppins:wght@300;400;500&display=swap');

body {
  /* height: 3000px; */
  font-family: var(--sm-font);

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'League Spartan', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f7f7;
}

.general-color {
  color: var(--main-color)
}

/* CSS Variables */
:root {

  /* --main-color: hsl(148, 45%, 58%); */
  /* --second-color: hsl(176, 35%, 63%);  */
  --main-color: hsl(176, 35%, 63%);


  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;

  --lg-font: 'Kaisei Tokumin', serif;
  --sm-font: 'Poppins', sans-serif;
  --pink: #e5345b;
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgb(250, 244, 244);
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

::selection {
  background-color: var(--main-color);
  color: white;
}

a {
  text-decoration: none;
}

.scrolling-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--main-color);
  color: black;
  border-radius: 50%;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  transition: all .3s ease;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.scrolling-up.show {
  opacity: 1;
}

@media only screen and (min-width: 300px) and (max-width: 1100px) {
  .buy-section {
    overflow-x: scroll;

  }
}

.general-btn {
  --color: var(--main-color);
  font-family: inherit;
  display: inline-block;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  /* margin: 20px; */
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: color .5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 26px;
  font-weight: 500;
  color: var(--color);
}

.general-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.general-btn:hover {
  color: #fff;
}

.general-btn:before {
  top: 100%;
  left: 100%;
  transition: all .7s;
}

.general-btn:hover:before {
  top: -30px;
  left: -30px;
}

.general-btn:active:before {
  background: #3a0ca3;
  transition: background 0s;
  -webkit-transition: background 0s;
  -moz-transition: background 0s;
  -ms-transition: background 0s;
  -o-transition: background 0s;
}

.general-header {
  margin: auto;
  margin-top: 50px;
  border-left: 4px solid var(--main-color);
  width: fit-content;
  padding-left: 10px;
  font-weight: 600;

}

.navbar .nav-link {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.navbar .nav-link:hover {
  color: var(--main-color);
}

.navbar .nav-link.active {
  color: var(--main-color);
}

.btn-outline-success {
  color: var(--main-color);
  border-color: var(--main-color);
}

.btn-outline-success:hover,
.btn-outline-success:active {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
  color: white;
}

.featured {
  margin: 100px 0;
}

.featured .row {
  /* display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; */
  border: .1rem solid rgba(0, 0, 0, .1);
  border-radius: .5rem;
  background: #f9f9f9;
  padding: 30px;
  align-items: flex-start;
  margin: 20px 0;
  -webkit-border-radius: .5rem;
  -moz-border-radius: .5rem;
  -ms-border-radius: .5rem;
  -o-border-radius: .5rem;

}

.featured .row .content {
  /* flex: 1 1 40rem; */
}

.featured .row .image-container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1 1 50rem;
}

.featured .row .image-container .small-image {
  width: 20%;
}

.featured .row .image-container .big-image {
  width: 80%;
  padding: 1rem;
}

.featured .row .image-container .small-image img {
  width: 100%;
  padding: 10px;
  border: .1rem solid rgba(0, 0, 0, .1);
  cursor: pointer;
}

.featured .row .image-container .small-image img:hover {
  background: #ccc;
}

.featured .row .image-container .big-image img {
  width: 100%;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.featured .row .content {
  /* border: 2px solid green; */
  padding-top: 15px;

}

.featured .row .content h3 {
  font-size: 30px;
  color: #000;
  text-transform: capitalize;
  font-weight: bold;
}

.start {
  color: #f6a355;
}

.featured .row .content p {
  font-size: 16px;
  color: #666;
  padding: 1rem 0;
}

.featured .row .content .price {
  font-size: 28px;
  color: #000;
  font-weight: bolder;
}

.colors {
  /* border: 2px solid green; */
}

.colors ul {
  margin-top:20px;

  list-style: none;
  display: flex;
  align-items: center;
  /* border:2px solid green; */
  width: fit-content;
  font-weight: bold;
  padding-left: 0;
}

.colors ul li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-left: 5px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  cursor: pointer;
}

.colors ul li:first-child {
  background-color: #776750;
  margin-left: 15px;
}

.colors ul li:nth-child(2) {
  background-color: #E07575;
}

.colors ul li:nth-child(3) {
  background-color: #992735;
}

.colors ul li:nth-child(4) {
  background-color: #2e331b;
}

.colors ul li:nth-child(5) {
  background-color: #cfb159;
}

.colors ul li:hover,
.colors ul li:focus,
.colors ul li:active {
  border: 3px solid var(--main-color);
}

.sizes ul {
  margin-top:30px;

  list-style: none;
  display: flex;
  align-items: center;
  /* border:2px solid green; */
  width: fit-content;
  font-weight: bold;
  padding-left: 0;
}

.sizes ul li {
  width: 30px;
  height: 30px;
  border: 2px solid gray;
  color: gray;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-left: 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sizes ul li:first-child {
  background-color: var(--main-color);
  color: gray;
  border-color: var(--main-color);
  margin-left: 15px;
}

.sizes ul li:hover {
  background-color: var(--main-color);
  color: gray;
  border-color: var(--main-color);
}


.inc-dec ul {
  /* border: 2px solid red; */
  display: flex;
  list-style: none;
  /* width: 150px */
  padding-left: 0;
  margin-top:30px;
}

.inc-dec ul li {
  border: 1px solid gray;
  padding: 5px 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.inc-dec ul li:first-child {
  border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
cursor: pointer;
}
.inc-dec ul li:nth-child(2) {
  border: 1px solid gray;
  padding: 5px 30px;
}
.inc-dec ul li:nth-child(3) {
background-color: var(--main-color);
border-color: var(--main-color);
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
cursor: pointer;
}

.inc-dec ul li:first-child:hover {
 background-color: var(--main-color);
}

.product {
  /* border: 1px solid gray; */
  width: 100%;
  text-align: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 8px;
  background-color: white;

  position: relative;
}

.product-img {
  width: 100%;
  overflow: hidden;
}

.product-img img {
  height: 300px;
  width: 95%;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.start {
  color: #f6a355;
}


.product-icons {
  list-style: none;
  position: absolute;
  right: 0px;
  top: 20px;
  opacity: 0;
  transition: all .5s ease;
}

.product-icons li {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: white;
  color: black;
  border: 1px solid gray;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-left: auto;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.product-icons li:hover {
  background-color: var(--main-color);
  color: white;
  border-color: var(--main-color);
}


.product:hover .product-icons {
  opacity: 1;
  right: 20px;

}

.product:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.discount {
  position: absolute;
  padding: 5px 10px;
  top: 20px;
  left: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: var(--main-color);
  /* color: white; */
}