@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;
}

main {
  /* border: 2px solid red; */
  height: calc(100vh - 61px);
  margin-top: 61px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-image: url(../images/hero-banner.jpg);
  background-repeat: no-repeat;
  /* background-position: center; */
  background-size: cover;
}

main .txt-main {
  /* border: 2px solid green; */
  width: fit-content;
}

main .txt-main p {
  font-size: 20px;
  font-weight: bold;
}

main .txt-main h2 {
  font-size: 74px;
  font-weight: bold;
}

main .txt-main b {
  font-size: 74px;
  font-weight: bold;
}

@media only screen and (min-width: 300px) and (max-width: 700px) {
  main .txt-main p {
    font-size: 20px;
    font-weight: bold;
  }

  main .txt-main h2 {
    font-size: 50px;
    font-weight: bold;
  }
}

.services {
  /* border: 2px solid green; */
  /* height: 50vh; */
}

.services .service {
  display: flex;
  align-items: center;
}
.txt-services {
  padding:0;
  height:60px!important; 
}
.new-collection {
  padding-bottom: 50px;
}

.new-collection .collection {
  list-style: none;
  display: flex;
  width: 38%;
  justify-content: space-between;
  margin: auto;
  margin-top: 30px;
  font-size: 17px;
  padding-left: 0;
}

.new-collection .collection li {
  border: 1px solid black;
  padding: 6px 15px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  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;
}

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

.new-collection .collection li:first-child {
  background-color: var(--main-color);
  color: white;
  border-color: var(--main-color);
}

@media only screen and (min-width: 300px) and (max-width: 800px) {
  .new-collection .collection {
    width: 80%;

  }

  .new-collection .collection li {
    border: 1px solid black;
    padding: 2px 5px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 801px) and (max-width: 1000px) {
  .new-collection .collection {
    width: 55%;

  }

  .new-collection .collection li {
    border: 1px solid black;
    padding: 2px 5px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1180px) {
  .new-collection .collection  ul {
    width: 60%;

  }

  .new-collection .collection li {
    border: 1px solid black;
    padding: 2px 10px;
    font-size: 16px;
  }
}

.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; */
}

.special-selection {
  /* border: 2px solid green; */
  /* height: 100vh; */
  padding-bottom: 50px;
}

.special-selection .card-special {
  /* border: 2px solid blue; */
  /*height:250px;
  */
  width: 100%;
  /*padding-bottom:80px;
  */
  text-align: center;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  overflow: hidden;
}
.image-card{
  /* border: 2px solid red; */
  overflow: hidden;
}
.special-selection .card-special img {
  transition:all .3s ease ;
  -webkit-transition:all .3s ease ;
  -moz-transition:all .3s ease ;
  -ms-transition:all .3s ease ;
  -o-transition:all .3s ease ;
}

.special-selection .card-special: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);
}

.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: center;
  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%;
}

.featured .row .image-container .big-image img:hover {
  transform: scale(1.05);
}

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

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

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

.featured .row .content .price span {
  font-size: 22px;
  color: var(--main-color);
  text-decoration: line-through;
}

.popular {
  /* height: 100vh; */
  padding-bottom: 50px;
  /* border: 2px solid blue; */
}

.popular .card-popular {
  /* border: 2px solid green; */
  width: 100%;
  display: flex;
  align-items: center;
}