@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");

body {
  scroll-behavior: smooth;
}

/* Add animation to "page content" */

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

#myDiv {
  display: none;
  text-align: center;
}

.socialbtns-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.socialbtns-wrapper div {
  width: 100%;
  margin-left: 30%;
}

.socialbtns-wrapper div ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 80%;
}

.socialbtns-wrapper div ul li {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 3px;
  cursor: pointer;
  list-style: none outside none;
}

.socialbtns-wrapper div ul li a {
  margin-right: 10px;
}

.socialbtns .fa {
  /*width: 40px;*/
  /*height: 36px;*/
  font-size: 10px;
  color: black;
  background-color: #fff;
  border: 1px solid #000;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
}

.socialbtns .fa:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  font-size: 13px;
  color: #555;
}

p {
  color: #555;
}

.container {
  width: 100%;
  height: auto;
  margin: auto;
  padding: 0;
  margin: 0;
}

.row {
  display: flex;
  /* border: 2px solid blue; */
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}
.row .heading {
  color: rgb(255, 255, 255) !important;
}

/*----------------------------------Carousel Start------------------------------*/

.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide:first-child {
  height: 100%;
  background: url("/img/p1.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slide:nth-child(2) {
  background: url("/img/p2.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slide:nth-child(3) {
  background: url("/img/p3.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slide:nth-child(4) {
  background: url("/img/p4.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.slide:nth-child(5) {
  background: url("/img/p5.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.slide:nth-child(6) {
  background: url("/img/p6.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.buttons button#prev {
  position: absolute;
  top: 50%;
  left: 1rem;
}

.buttons button#next {
  position: absolute;
  top: 50%;
  right: 1rem;
}

.buttons button {
  border: 2px solid #e5ebf3;
  background-color: transparent;
  color: #e5ebf3;
  cursor: pointer;
  padding: 13px 15px;
  border-radius: 50%;
  outline: none;
}

.buttons button:hover {
  background-color: #e5ebf3;
  color: #362a2b;
}

@media (min-width: 640px) and (min-height: 640px) {
  .slide .content {
    bottom: 70px;
    left: -600px;
    width: 600px;
    padding: 2rem;
    line-height: 1.6;
  }

  .slide .content h1 {
    font-size: 2rem;
  }

  .slide.current .content {
    transform: translateX(600px);
  }
}

/*----------------------------Carousel End-----------------------*/

/*------------scroll-up button starts----------------------*/

#btnScrollToTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #232323;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 1;
  transition: all 400ms ease;
}

#btnScrollToTop:hover {
  width: 55px;
  height: 55px;
  margin: 2px;
  background: #636363;
}

#btnScrollToTop:active {
  background: rgb(141, 141, 141);
}

/* scroll-up button ends */

.col-2 {
  flex-basis: 50%;
  min-width: 280px;
}

.col-2 img {
  max-width: 76%;
  padding: 50px 0;
}

.col-2 h1 {
  font-size: 30px;
  line-height: 60px;
  margin: 25px 0;
  font-weight: lighter;
  color: #ffffff;
}

.btn {
  display: inline-block;
  background-color: #818181;
  color: #fff;
  padding: 8px 30px;
  margin: 30px 60px;
  border-radius: 5px;
  transition: background 0.5s;
  border: #7f7f7f;
  cursor: pointer;
  /* border:2px solid black; */
}

.btn:hover {
  background: #8d8d8d;
}

.categories {
  margin: 70px 0;
}
.row .col-2 h1 {
  width: auto;
  color: #1a1a1a;
  font-family: "Alegreya SC";
  font-size: 40px;
  word-spacing: 19px;
  margin-top: 20%;
}
.col-3 {
  flex-basis: 30%;
  min-width: 250px;
  margin-bottom: 30px;
}

.col-3 img {
  width: 100%;
  border-radius: 35px;
}

.small-container {
  position: relative;
  max-width: 1080px;
  height: auto;
  margin: auto;
  padding-top: 5%;
  padding-left: 25px;
  padding-right: 25px;
}

.col-4 {
  flex-basis: 25%;
  padding: 10px;
  min-width: 200px;
  margin-bottom: 50px;
  transition: transform 0.5s;
  cursor: pointer;
}

.col-4 img {
  width: 100%;
}

.title {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  line-height: 60px;
  color: #555;
}

.title::after {
  content: "";
  background: #a9a9a9;
  width: 80px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

h4 {
  color: #555;
  font-weight: normal;
}

.col-4 p {
  font-size: 14px;
}

.rating .fa {
  color: #080808;
}

.col-4:hover {
  transform: translateY(20px);
}

/*------ Customizable Shirt------ */

.new-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 1.3rem;
  align-items: center;
  margin: 60px;
  margin-top: 4rem;
  text-align: center;
}
.center-text {
  padding-top: 5%;
}
.new-content #img1 {
  background-color: #a5a5a5;
}
.new-content #img2 {
  background-color: #66816a;
}
.new-content #img3 {
  background-color: #d8d8d8;
}
.new-content #img4 {
  background-color: #999999;
}
.new-content #img5 {
  background-color: #846c8b;
}
.box {
  position: relative;
  transition: all 0.4s ease;
}
.box img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}
.box h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.box h6 {
  font-size: 16px;
  font-weight: 700;
}
.sale {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 30px;
  background: var(--main-color);
  color: var(--bg-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.box:hover {
  transform: scale(0.9) translateY(-5px);
  cursor: pointer;
}

.brand {
  padding: 50px 14%;
}
.brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, auto));
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.main img {
  width: 50%;
  height: auto;
  opacity: 0.6;
  transition: all 0.35s ease;
  cursor: pointer;
}
.main img:hover {
  opacity: 1;
}

/* --------all products page------- */

.row.row-2 {
  justify-content: space-between;
  margin: 100px auto 50px;
}

select {
  border: 1px solid #868686;
  padding: 5px;
  cursor: pointer;
}

select:focus {
  outline: none;
}

.page-btn {
  margin: 0 auto 80px;
}

.page-btn span {
  display: inline-block;
  border: 1px solid #7d7d7d;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 20%;
}

.page-btn span:hover {
  background: #9e9e9e;
  color: #fff;
}

/* ------single product details-------- */

.single-product {
  margin-top: 80px;
  /* border: 1px solid #3bffbe; */
}

.single-product .col-2 img {
  /* border: 1px solid #131111; */
  padding: 0;
}

.single-product .col-2 {
  padding: 20px;
  /* border: 1px solid #ff3bc4; */
}

.single-product h4 {
  /* border: 1px solid #131111; */
  margin: 20px 0;
  /* ankit */
  font-weight: bold;
  font-size: 20px;
  /* ankit */
}

.single-product select {
  display: block;
  margin-top: 20px;
  padding: 10px;
}

.single-product input {
  width: 50px;
  height: 40px;
  padding-left: 10px;
  margin-right: 10px;
  font-size: 20px;
  border: 1px solid #868686;
}

input:focus {
  outline: none;
  /* same color after click ff523b  */
}

.single-product h3 i {
  color: #8e8e8e;
  margin-left: 10px;
}

.small-img-row {
  /* width: 70px; */
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  /* flex-direction: row; */
  /* border: 1px solid #1915e4; */
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}

.viewMore--btn {
  transition: border 150ms ease-in-out;
}

.viewMore--btn:hover {
  /* text-decoration: underline; */
  border-width: 0 0 1.5px 0;
  border-style: solid;
}

/* ---------cart item details---------- */

.cart-page {
  margin: 80px auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  /*all border in one border*/
}

.cartinfo {
  display: flex;
  flex-wrap: wrap;
}

th {
  text-align: left;
  padding: 5px;
  color: #fff;
  background-color: #737373;
  font-weight: normal;
}

td {
  padding: 10px 5px;
}

td input {
  width: 45px;
  height: 30px;
  padding: 5px;
}

td .remove-btn {
  color: #6d6d6d;
  font-size: 12px;
  cursor: pointer;
  transition: color 250ms ease-in-out;
}

td .remove-btn:hover {
  color: #818181;
}

td img {
  width: 80px;
  height: 80px;
  /* margin-left: 10px; */
  margin: 0px 10px 0px 10px;
}

.total-price {
  display: flex;
  justify-content: flex-end;
}

.total-price table {
  border-top: 3px solid #797979;
  width: 100%;
  max-width: 400px;
}

td:last-child {
  text-align: right;
}

th:last-child {
  text-align: right;
}

/* ----------------Contact-Page ---------- */

.contact-form-container {
  width: 60%;
  margin: 20px auto;
}

.contact-form-container h1 {
  text-align: center;
}

.contact-form input {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  padding: 20px 10px;
}

.contact-form {
  margin-top: 20px;
}

.textarea-container textarea {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  margin: 10px 0;
  width: 100%;
  height: 150px;
  padding: 10px 10px;
}

.textarea-container textarea:focus {
  outline: none;
}

.submit-btn {
  text-align: center;
}

.submit-btn button {
  padding: 10px 8px;
  font-size: 16px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  width: 70%;
  color: white;
  background-color: #727272;
  border: none;
  border-radius: 10px;
}

.submit-btn button:hover {
  background-color: #94cb8e;
}

/* ----------------Account-Page ---------- */

.account-page {
  width: 100%;
  height: 100vh !important;
  padding: 50px 0;
  background-image: url("/assets/img/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-container {
  background: #fff;
  width: 300px;
  height: 650px;
  margin: auto;
  padding: 20px 30px;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 10%;
}

.form-container span {
  font-weight: bold;
  padding: 0 10px;
  color: #000000;
  cursor: pointer;
  width: 100px;
  display: inline-block;
}

.form-btn {
  display: inline-block !important;
}
#conbtn {
  background-color: rgb(117, 172, 117) !important;
  color: rgb(255, 255, 255);
}
#conbtn a {

  color: rgb(255, 255, 255);
}

#conbtn:hover {
  background-color: rgb(94 139 94) !important;
  color: rgb(255, 255, 255);
}

.form-container form {
  max-width: 300px;
  padding: 0 20px;
  position: absolute;
  top: 100px;
  transition: transform 1s;
}

form input {
  width: 100%;
  height: 45px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #999;
}

form .btn {
  width: 100%;
  height: auto;
  border: none;
  cursor: pointer;
  margin: 10px 0;
}

form .btn:focus {
  outline: none;
  /*focus use when when click on button then border show but outline ::none hide the borderoutlint  */
}

#LoginForm {
  left: -300px;
}
#LoginForm a:hover {
  color: #74997a;
}
#LoginForm.btn {
  font-size: 2px;
}

#RegForm {
  left: 0;
}

#LoginForm .input-field,
#RegForm .input-field {
  padding: 10px 5px;
  margin: 15px 0;
  border: none;
  border-bottom: 1px solid #b3b3b3;
  font-size: 16px;
}

#ForgotForm {
  left: 0;
}
#ForgotForm a:hover {
  color: #74997a;
}
#ForgotForm.btn {
  font-size: 2px;
}

#ForgotForm .input-field,
{
  padding: 10px 5px;
  margin: 15px 0;
  border: none;
  border-bottom: 1px solid #b3b3b3;
  font-size: 16px;
}
form a {
  font-size: 12px;
}

#Indicator {
  width: 100px;
  border: none;
  background: #b5cbaf;
  height: 3px;
  margin: 9px;
  transform: translateX(100px);
  transition: transform 1s;
}

/* --------media query for less than 600 screen size----- */

@media only screen and (max-width: 600px) {
  .search_bar {
    display: none;
  }

  .row {
    text-align: center;
  }
  .col-2,
  .col-3,
  .col-4 {
    flex-basis: 100%;
  }
  .col-2 p {
    margin: auto;
  }
  .single-product .row {
    text-align: left;
  }
  .single-product .col-2 {
    padding: 20px 0;
    /* border: 2px solid #2113e4; */
  }
  .single-product h1 {
    font-size: 26px;
    line-height: 32px;
  }
  .cartinfo p {
    /* display: none; */
    font-size: 0.9rem;
  }
}

/* --------- Scroll Bar ---------- */

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

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(102, 102, 102);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: #ff634e;
  border-radius: 9px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff624d;
}
*/

::-webkit-scrollbar {
  width: 12px;
  height: 18px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(102, 102, 102);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, #c8c8c8);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #717171);
}

/* --------Feature Categories Hover Zoom----- */

.zoom {
  padding: 30px;
  transition: transform 150ms ease-out;
  margin: 0 auto;
  cursor: pointer;
}

.zoom:hover {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* --------Testimonial Heading----- */

.testimoinial-heading {
  text-align: center;
  padding-bottom: 10px;
}

.effects {
  position: relative;
  color: #000;
}

.effects::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #18272f;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.effects:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* HOVER ANIMATION */

/* #box:hover {
  transform: scale(1.3);
  z-index: 2;
} */

/* .glassBox {
    width: 100%;
    height: 400px;
    max-width: 300px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .glassBox, .glassBox * {
    box-sizing: border-box;
    transition: 400ms;
  }
  .glassBox__imgBox img {
    display: block;
    width: 100%;
    height: auto;
  }
  .glassBox__title {
    text-align: center;
    margin-top: 15px;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    font-family: "Lato";
  }
  .glassBox__content {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-family: "Lato";
    letter-spacing: 0.1em;
    opacity: 0;
  } */

.glassBox__imgBox:hover {
  transform: scale(1.3);
  z-index: 2;
}

/* HOVER EFFECT */

#box:hover {
  /* transform: scale(1.025); */
  border-radius: 5px;
  box-shadow: 0 10px 10px 1px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 250ms;
}

.zoomForImage {
  border-radius: 3px;
}

/* THEME BUTTON */

.toggle {
  width: 40px;
  height: 22px;
  margin-left: 25px;
  background-color: whitesmoke;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}

.toggle-icon {
  color: goldenrod;
}

.toggle-ball {
  width: 18px;
  height: 18px;
  background-color: black;
  position: absolute;
  right: 2px;
  border-radius: 50%;
  cursor: pointer;
}

.container.active {
  background-color: #000;
}

.menu-icon.active {
  color: white;
}

.row.active {
  background-color: #000;
  color: white;
}

body.active {
  background-color: #000;
}

.toggle.active {
  background-color: #000;
}

.toggle-ball.active {
  background-color: white;
  transform: translateX(-20px);
}

/* change color of contact page heading to white on toggle */

.form-title.active {
  color: white;
}

/* cart image in dark mode */

.cart-image.bgm-change {
  background-color: white;
  filter: invert(100%);
}

/*footer image mouse style to pointer*/

.footer-img {
  cursor: pointer;
}

/* usefull links */

.useful-links:hover {
  border-bottom: #fff 1px solid;
}

/* toast style */

#toast {
  visibility: hidden;
  min-width: 240px;
  position: fixed;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 5%;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
}

#toast.showToast {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the toast in and out */

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 5%;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 5%;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 5%;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 5%;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

.useful-links,
.socialbtns {
  color: #d3d3d3;
  transition: all 400ms ease;
}

.btn-quantity {
  padding: 2px 12px;
  font-size: 24px;
  border-radius: 5%;
  cursor: pointer;
  background-color: #838383;
  color: #fff;
  margin-left: -10px;
  border: 1px solid black;
}

.white {
  color: #6b6b6b;
}

.hidden {
  display: none;
}

#empty-cart {
  font-size: 1.6em;
  text-align: center;
  margin: 10rem 0;
}

.btn-add {
  font-size: 1.2rem;
  background-color: #838383;
  color: #fff;
  padding: 0.8rem;
  border-radius: 1.6em;
  margin-top: 20px;
  display: inline-block;
}
