@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-family: "Inter", sans-serif;
  font-family: "Roboto", sans-serif;
  list-style: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

/* utils */
.main-heading {
  font-size: 1.75rem;
  font-weight: 400;
}

.small-heading {
  font-size: 1.05rem;
  font-weight: 400;
}

/* main color */
:root {
  --main-color: #cb8161;
}

/* .content {
  display: none;
}
.preloader-svg {
  display: none;
} */

/* Header */
.main-header {
  /* position: absolute; */
  width: 100%;
  /* z-index: 9999; */
}

.mynav {
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  top: 0;
  transition: 0.4s;
  animation: slide-top 1s linear;
}
@keyframes slide-top {
  0% {
    top: -50%;
  }
  100% {
    top: 0%;
  }
}
.nav-item .nav-link.myactive {
  color: black !important;
}
.navbar .navbar-brand.mylogo {
  color: black !important;
}
/* .header-logo svg {
  color: #fff;
} */
.active-svg svg {
  color: black;
}

.top-header {
  background-color: black;
}

@media screen and (max-width: 768px) {
  .navbar-collapse {
    position: absolute;
    background: #fff;
    width: 90%;
    top: 87px;
    padding: 10px;
  }
  .nav-item {
    border-bottom: 2px solid #000;
  }
  .nav-item .nav-link {
    color: #000 !important;
  }
}

/* Base styling for individual dropdowns */
.nav-item.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 100%;
  transform: translateX(-50%);
  min-width: 950px;
  max-width: 1200px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #ffffff;
  z-index: 1000;
  width: auto;
  white-space: nowrap;
}

/* Show dropdown only on hover over the specific top-level nav item */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Styling for content columns inside the mega menu */
.mydrop .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mydrop .col {
  padding: 0 15px;
}

.mydrop h6 {
  margin-bottom: 17px !important;
  border-bottom: 1px solid #ddd !important;
  padding-bottom: 8px !important;
}

.mydrop h6 a {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: #6c6c6c;
  text-decoration: none;
}

.mydrop h6 a:hover {
  color: #444;
}

.mydrop ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mydrop li {
  margin-bottom: 5px;
}

.mydrop a {
  text-decoration: none;
  color: #919191;
  font-size: 0.9rem;
  font-weight: 400;
}

.mydrop a:hover {
  color: rgb(66, 66, 66);
  text-decoration: underline;
}

.nav-big .category-menu ul {
  padding-left: 0rem !important;
  padding-right: 20px;
}

.nav-big .mydrop ul li {
  list-style: none;
  margin-bottom: 16px;
}

.nav-big .category-menu .category-img {
  width: 300px;
  height: 300px;
  position: relative;
}

.nav-big .category-menu .category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-big .category-menu .category-img .text-img {
  position: absolute;
  bottom: 34px;
  left: 35%;
  padding: 7px 12px;
  border: 1px solid #000;
  color: white;
  transition: all 200ms linear;
  cursor: pointer;
}
.nav-big .category-menu .category-img .text-img:hover {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.user-menu .dropdown-menu.show {
  display: block !important;
  padding: 10px !important;
}

/* Navbar small */
.offcanvas.offcanvas-start {
  width: 300px;
}

.navbar-small .offcanvas-body {
  padding: 10px 15px;
  padding-bottom: 40px;
}

.navbar-small .navbar-links {
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
}

.navbar-small .navbar-links .category-box {
  color: #868686;
  font-size: 0.9rem;
  text-transform: capitalize;
}

.navbar-small .navbar-links .category-box .small-navbar-img {
  width: 100%;
  height: 200px;
  position: relative;
}

.navbar-small .navbar-links .category-box .small-navbar-img .image-text {
  position: absolute;
  bottom: 34px;
  left: 25%;
  padding: 7px 12px;
  border: 1px solid #000;
  color: white;
  transition: all 200ms linear;
  cursor: pointer;
}

.navbar-small .navbar-links .category-box .small-navbar-img .image-text:hover {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.navbar-small .navbar-links .category-box .small-navbar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

@media (min-width: 990px) {
  .menu-i {
    display: none !important;
  }
}

/* Search Canvas */
.search-canvas .offcanvas-body {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
}

.search-canvas .offcanvas-body .search-form input {
  width: 700px;
  padding: 12px 10px;
  border: none;
  border-bottom: 1px solid #d3d3d3;
}

@media screen and (max-width: 768px) {
  .search-canvas .offcanvas-body .search-form {
    width: 100%;
    padding: 0 20px;
  }
  .search-canvas .offcanvas-body .search-form input {
    width: 100%;
  }
}

.search-canvas .offcanvas-body .search-form .search-input {
  position: relative;
}

.search-canvas .offcanvas-body .search-form svg {
  position: absolute;
  top: 25%;
  right: 2%;
  font-size: 1.2rem;
}

.search-canvas .offcanvas-body .search-form input:focus {
  border-bottom: 1px solid black;
  outline: none;
}

.search-canvas .offcanvas-body .search-form input::placeholder {
  color: #868686;
  font-size: 1.3rem;
  text-transform: capitalize;
}

/* Main Slider */

.carousel-control-prev {
  position: absolute !important;
  /* top: 190px !important; */
}

.carousel-control-next {
  position: absolute !important;
  /* top: 190px !important; */
}

.main-slider {
  background-image: url("../images/cricket-image/MRF_CRICKET_BANNER_DESKTOP.webp");
  width: 100%;
  height: 820px;
  background-position: center;
  background-size: cover;
  color: black;
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* position: relative; */
}

.main-slider-overly {
  width: 100%;
  height: 820px;
  background-color: #00000045;
}
.main-slider-1 {
  background-image: url("../images/cricket-image/Badminton-Banner-for-PC.webp");
  width: 100%;
  height: 820px;
  background-position: center;
  background-size: cover;

  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.main-slider-2 {
  background-image: url("../images/cricket-image/hockyIRL-2048x1024.webp");
  width: 100%;
  height: 820px;
  background-position: top center;
  background-size: cover;

  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.slider-text {
  margin-left: 175px;
  color: #fff;
  margin-top: 250px;
}

.slider-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 30px;
  transition: all 0.3s ease-in-out;
}

.main-slider-1 .slider-text {
  margin-left: 175px !important;
  margin-top: 450px !important;
}

@media (max-width: 768px) {
  .main-slider {
    height: 600px;
  }
  .main-slider-1 {
    height: 600px;
  }
  .main-slider-2 {
    height: 600px;
  }
  .slider-text {
    color: #fff;
    margin-top: 146px;
    margin-left: 69px;
  }
  .slider-heading {
    font-size: 1.5rem !important;
  }
  .carousel-control-prev {
    top: 130px !important;
  }
  .carousel-control-next {
    position: absolute !important;
    top: 130px !important;
  }
}

@media (max-width: 600px) {
  .main-slider {
    height: 500px;
  }
  .main-slider-1 {
    height: 500px;
  }
  .main-slider-2 {
    height: 500px;
  }
  .slider-text {
    margin-left: 45px;
    margin-top: 358px;
  }
}

.menu-btn i {
  font-size: 30px;
}

.slider-heading {
  font-size: 4rem;
}

.slider-btn:hover {
  background-color: #cb8161;
  border-color: #cb8161;
}

/* Main Cards */

.main-cards {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .main-cards {
    padding: 0 1rem !important;
  }
}

.main-cards .main-card {
  cursor: pointer;
}

.main-cards .main-card:hover .main-card-img img {
  transform: scale(1.1);
}

.main-cards .main-card .main-card-img {
  overflow: hidden;
  position: relative;
}

.main-cards .main-card .main-card-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.4s linear;
}

.main-card-heading {
  position: absolute;
  bottom: 30px;
  left: 40px;
}

.main-card-heading h4 {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .main-cards .main-card {
    margin-bottom: 1rem;
  }
}

/* Top Categories */
.top-categories {
  margin-top: 30px;
}

.category-card {
  padding: 20px;
  /* border: 1px solid #ddd; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.category-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.btn-dark {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
}

.btn-dark:hover {
  background-color: #555;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .category-card {
    margin-bottom: 20px;
  }
}

/* All Product */
.all-product {
  margin-top: 60px;
  background-color: #ffeee7;
}
.all-product .right-content {
  padding: 0 100px;
}
.all-product .right-content .all-product-heading {
  letter-spacing: 2px;
  font-weight: 400;
}
.all-product .right-content .all-product-icons {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #ffad76;
  margin-right: 20px;
}

.all-product .all-product-image {
  width: 100%;
  height: 500px;
}

.all-product-btn {
  text-transform: uppercase;
  line-height: 45px;
  letter-spacing: 2px;
  padding: 0 25px;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
}

@media screen and (max-width: 1000px) {
  .all-product {
    padding: 0 3rem !important;
  }
  .all-product .right-content {
    padding: 3rem 0px !important;
  }
}

@media screen and (max-width: 768px) {
  .all-product {
    padding: 0 1rem !important;
  }
}
@media screen and (max-width: 500px) {
  .all-product .right-content .all-product-icons {
    margin-right: 10px;
  }
}

/* Trending Products */
.trending-products {
  margin-top: 60px;
}
.trending-products .trending-products-row {
  width: 100%;
}

.trending-products .trending-products-row .slick-slide > div {
  margin: 0 10px !important;
}

.product-card {
  cursor: pointer;
}

.product-card .product-card-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 300ms linear;
}

.product-card .product-card-img img:hover {
  transform: scale(1.03);
}

.product-card .product-card-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem 0;
}

.product-card .product-card-details .product-card-reviews {
  font-size: 0.8rem;
  font-weight: 400;
  color: #b2afaf;
}

.product-card .product-card-details .product-card-pricing {
  color: var(--main-color);
}

.product-card .product-card-details .product-card-pricing span {
  color: #b2afaf;
  text-decoration: line-through;
}

@media screen and (max-width: 768px) {
  .trending-products {
    padding: 0 1rem !important;
  }
}

/* Collection card */

.collection-cards {
  margin-top: 60px;
}

/* .collection-cards .collection-card {
  cursor: pointer;
} */

@media screen and (max-width: 768px) {
  .collection-cards {
    padding: 0 1rem !important;
  }
  .collection-cards .collection-card {
    margin-bottom: 1rem;
  }
}

.collection-cards .collection-card:hover .collection-card-img img {
  transform: scale(1.1);
}

.collection-cards .collection-card .collection-card-img {
  overflow: hidden;
  position: relative;
}

.collection-cards .collection-card .collection-card-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.4s linear;
  opacity: 0.9;
}

.collection-cards .collection-card .collection-card-heading {
  position: absolute;
  bottom: 32%;
  left: 30%;
  text-align: center;
}

@media screen and (max-width: 1269px) {
  .collection-cards .collection-card .collection-card-heading {
    position: absolute;
    bottom: 30%;
    left: 25%;
    text-align: center;
  }
}

@media screen and (max-width: 1000px) {
  .collection-cards .collection-card .collection-card-heading {
    position: absolute;
    bottom: 30%;
    left: 15%;
    text-align: center;
  }
}
@media screen and (max-width: 769px) {
  .collection-cards .collection-card .collection-card-heading {
    position: absolute;
    bottom: 30%;
    left: 26%;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .collection-cards .collection-card .collection-card-heading {
    position: absolute;
    bottom: 33%;
    left: 14%;
    text-align: center;
  }
}
@media screen and (max-width: 410px) {
  .collection-cards .collection-card .collection-card-heading {
    position: absolute;
    bottom: 33%;
    left: 7%;
    text-align: center;
  }
  .collection-cards .collection-card .collection-card-heading h3 {
    font-size: 1.4rem;
  }
}

.collection-cards .collection-card .collection-card-heading h3 {
  color: #fff;
}

.collection-cards .collection-card .collection-card-heading h4 {
  color: #fff;
}

.collection-btn {
  border: 2px solid #fff;
  background-color: transparent;
  padding: 7px 25px;
  color: #fff;
  margin-top: 7px;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* testimnonails */
.testimnonails {
  margin-top: 60px;
}

/* Brands */

.brands {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .brands {
    padding: 0 1rem !important;
  }
}

.brands .brand-slider {
  width: 230px !important;
  height: 230px !important;
  text-align: center;
}

.brands .brand-slider img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.brands .brand-slider .slick-prev {
  display: none !important;
}
.brands .brand-slider .slick-next {
  display: none !important;
}

/* Footer */
.footer-container {
  background: #f5f5f5;
}
.footer {
  padding: 60px 0;
  padding-bottom: 0;
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 0 1rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .footer-col {
    margin-top: 2.5rem !important;
  }
}

.footer p {
  color: #868686;
  margin-bottom: 7px;
  font-size: 0.9rem;
}

.footer p a {
  color: #868686;
  text-decoration: none;
  transition: all 300ms linear;
}

.footer p a:hover {
  color: var(--main-color);
}

.footer span {
  color: #000;
  font-size: 0.9rem;
}

.footer .footer-links {
  color: #868686;
  margin-bottom: 7px;
  font-size: 0.9rem;
}

.footer .link a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
  border: 0;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 36px;
  border: 1px solid #d3d3d3;
  transition: all 300ms linear;
}

.footer .link a:hover {
  background: var(--main-color);
  color: #fff;
}

.footer .link a svg {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    padding: 1rem !important;
  }
}

@media screen and (max-width: 500px) {
  .footer-bottom img {
    width: 300px;
    object-fit: cover;
  }
}

/* Collection Pages */

.collection-banner {
  background-image: url(../images/cricket-image/cricket-collection-banner.webp);
  background-size: cover;
  background-position: center center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .collection-banner {
    padding: 0 1rem !important;
  }
}

.collection-banner .main-h h1 {
  font-size: 3rem;
}

.collection-banner .main-h span svg {
  margin: 0 7px;
  font-size: 0.7rem;
  font-weight: 300;
}

.collection-slider-one {
  padding: 0 200px;
}

@media screen and (max-width: 1300px) {
  .collection-slider-one {
    padding: 0 150px;
  }
}
@media screen and (max-width: 1000px) {
  .collection-slider-one {
    padding: 0 70px;
  }
}

@media screen and (max-width: 750px) {
  .collection-slider-one {
    padding: 0 40px;
  }
}

.collection-slider {
  cursor: pointer;
}

/* Active */
.collection-slider.active img {
  border: 1px solid var(--main-color);
  padding: 4px;
}

.collection-slider.active h3 {
  color: var(--main-color);
  text-decoration: underline;
}

.collection-slider:hover img {
  border: 1px solid var(--main-color);
  padding: 4px;
}

.collection-slider img {
  width: 100%;
  border-radius: 50%;
  transition: all 50ms linear;
}

.collection-slider h3 {
  padding-top: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
}

.collection-slider:hover h3 {
  color: var(--main-color);
  text-decoration: underline;
}

.myslider2 .slick-slide > div {
  margin: 0 50px;
}

@media screen and (max-width: 1400px) {
  .myslider2 .slick-slide > div {
    margin: 0 30px;
  }
}

@media screen and (max-width: 1000px) {
  .myslider2 .slick-slide > div {
    margin: 0 20px;
  }
}

.myslider2 .slick-prev,
.myslider2 .slick-next {
  visibility: hidden;
  top: 41%;
}

.myslider2:hover .slick-next {
  border: none;
  background: var(--main-color) !important;
  display: inline-block;
  width: 40px;
  height: 40px;
  z-index: 9;
  visibility: visible;
  border-radius: 50%;
}
.myslider2:hover .slick-prev {
  border: none;
  background: var(--main-color) !important;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 9;
  visibility: visible;
}

.myslider2 .slick-dots {
  display: none !important;
}

/* collection products */
.collection-products {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .collection-products {
    padding: 0 1rem !important;
  }
}

.collection-products .sidebar .accordion-item {
  border: none;
  margin-bottom: 12px;
}

.collection-products .sidebar .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #212529; /* Adjust text color as needed */
  box-shadow: none;
}

.collection-products .sidebar .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.collection-products .sidebar .accordion-button {
  padding: 7px 10px;
  margin-bottom: 25px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.collection-products .sidebar .accordion-body {
  padding: 7px 10px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #868686;
  cursor: pointer;
}

.collection-products .sidebar .accordion-body .form-check .form-check-input {
  cursor: pointer;
}

.collection-products
  .sidebar
  .accordion-body
  .form-check
  .form-check-input:checked {
  background-color: #cb8161;
  border-color: #cb8161;
}

.collection-products
  .sidebar
  .accordion-body
  .form-check
  .form-check-input:focus {
  box-shadow: none;
}

.collection-products .load-more {
  line-height: 40px;
  border: 2px solid black;
  font-weight: 600;
  padding: 0 35px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 1;
  background-color: #fff;
}

.collection-products .load-more:hover {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.collection-filter-btn {
  width: 100%;
  background-color: black;
  color: #fff;
  border: none;
  transition: all 200ms linear;
  padding: 12px 0;
  font-size: 1rem;
}
.collection-filter-btn:hover {
  background-color: var(--main-color);
}

/* Chip */
.chip {
  display: inline-block;
  padding: 0 14px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  border-radius: 25px;
  background-color: #ffffff;
  border: 1px solid #dadada;
}

/* .chip img {
  float: left;
  margin: 0 10px 0 -25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
} */

.closebtn {
  padding-left: 10px;
  color: #888;
  font-weight: bold;
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.closebtn:hover {
  color: #000;
}

/* Products display */

.product-display {
  /* margin-top: 60px; */
}
@media screen and (max-width: 768px) {
  .product-display {
    padding: 3rem 2rem 0 2rem !important;
  }
}

.wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding-left: 120px;
}

.img-selection {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
}

.img-thumbnail:first-of-type {
  margin-top: 0;
}

.img-thumbnail {
  margin-top: 10px;
  width: 140px;
  height: 140px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s ease;
  opacity: 0.5;
}

.img-thumbnail:hover {
  opacity: 1;
}

.img-thumbnail.selected {
  opacity: 1;
}

.big-img {
  position: relative;
  width: 100%;
  height: 650px;
  border: 1px solid #ddd;
  cursor: zoom-in;
  overflow: hidden;
}

.big-img img.zoom {
  position: absolute;
  transition: width 0.2s ease-out, opacity 0.2s ease-out 0.2s;
}

.display-img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .img-selection {
    position: unset;
    display: inline-flex;
    width: 100%;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
  }
  .img-thumbnail {
    margin: 0;
    height: auto;
  }
  .wrapper {
    padding: 0;
  }
  .big-img {
    height: 100%;
  }
}

/* A */
.product-display .product-details {
  width: 100%;
}

.product-display .product-details .product-review {
  font-size: 0.9rem;
  font-weight: 400;
  color: #868686;
}

.product-display .product-details .product-heading {
  font-size: 2.3rem;
  font-weight: 400;
}

.product-display .product-details .product-price {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--main-color);
}
.product-display .product-details .product-price span {
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: line-through;
  color: #b2afaf;
}

.product-display .product-details .vendor-name span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--main-color);
  text-decoration: underline;
}

.product-display .product-details .product-stock {
  color: #108043;
  font-size: 0.9rem;
}

.product-display .product-details .product-sold img {
  height: 54px;
  position: relative;
  bottom: 14px;
  right: 14px;
}

.product-display .product-details .product-sold div {
  color: red;
  font-weight: 500;
}

.product-display .product-details .left-stock span {
  color: red;
}

.product-display .product-details .product-goto-cart {
  width: 100%;
}

.product-display .product-details .product-goto-cart .quantity {
  width: 30%;
  border: 1px solid #868686;
  padding: 16px 16px;
  font-size: 0.9rem;
  cursor: pointer;
}

.product-display .product-details .product-goto-cart .add-to-cart {
  width: 60%;
  background-color: black;
  color: #fff;
  border: none;
  transition: all 200ms linear;
  padding: 16px 0;
  font-size: 1.2rem;
}

.product-display .product-details .product-goto-cart .add-to-cart:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.product-display .product-details .product-goto-cart .add-wishlist {
  width: 10%;
  border: 1px solid #868686;
  padding: 16px 0;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 200ms linear;
}
.product-display .product-details .product-goto-cart .add-wishlist:hover {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.product-display .product-details .share {
  line-height: 30px;
  font-weight: 700;
}

.product-display .product-details .tac-btn {
  color: 0.8rem;
  font-weight: 300;
  color: #868686;
}
.product-display .product-details .tac-btn .tac-link {
  text-decoration: underline;
  cursor: pointer;
}

.product-display .product-details .product-buy-now-btn button {
  width: 100%;
  background-color: var(--main-color);
  color: #fff;
  border: none;
  padding: 16px 0;
}

.product-display .product-details .ask-share .compare {
  font-size: 1rem;
  font-weight: 400;
  color: #868686;
  transition: all 200ms linear;
  cursor: pointer;
}

.product-display .product-details .ask-share .compare:hover {
  color: var(--main-color);
  text-decoration: underline;
}

/* Product Details */

.product-details-bottom {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .product-details-bottom {
    padding: 0 1rem !important;
  }
}

.product-details-bottom .nav-item {
  border-bottom: none !important;
}

.nav-pills .nav-link {
  color: black !important;
  background-color: #fff !important;
  transition: all 200ms linear;
  cursor: pointer;
  font-size: 1.5rem !important;
  font-weight: 400;
}

.nav-pills .nav-link.active {
  border-bottom: 2px solid var(--main-color);
  color: var(--main-color) !important;
}

.product-details-bottom .tab-container {
  margin: 0 150px;
}

.product-details-bottom .tab-container p {
  color: #868686;
  font-weight: 400;
  font-size: 0.9rem;
}

.product-details-bottom .tab-container ul li {
  color: #868686;
  font-weight: 400;
  font-size: 0.9rem;
}

@media screen and (max-width: 1000px) {
  .product-details-bottom .tab-container {
    margin: 0 0px;
  }
}

/* Related Products List */

.related-products {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .related-products {
    padding: 0 1rem !important;
  }
}

.related-products .related-products-row {
  width: 100%;
}

.related-product-card {
  cursor: pointer;
}

.related-product-card .related-product-card-img img {
  width: 95%;
  height: 350px;
  object-fit: cover;
  transition: all 300ms linear;
}

.related-product-card .related-product-card-img img:hover {
  transform: scale(1.03);
}

.related-product-card .related-product-card-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem 0;
}

.related-product-card
  .related-product-card-details
  .related-product-card-reviews {
  font-size: 0.8rem;
  font-weight: 400;
  color: #b2afaf;
}

.related-product-card
  .related-product-card-details
  .related-product-card-reviews {
  color: var(--main-color);
}

.related-product-card
  .related-product-card-details
  .related-product-card-pricing
  span {
  color: #b2afaf;
  text-decoration: line-through;
}

.related-products .slick-prev,
.related-products .slick-next {
  border: 2px solid #ccc;
  background: #ccc !important;
  display: inline-block;
  width: 40px;
  height: 40px;
  z-index: 9999;
}
.related-products .slick-prev {
  left: -19px !important;
}
.related-products .slick-next {
  right: 0 !important;
}

/* Cart */
.cart {
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  .cart {
    padding: 0 1rem !important;
  }
}

.cart .progress-bar {
  background-color: var(--main-color);
}

.cart .truck-icon {
  color: var(--main-color);
  font-size: 1.3rem;
}

.cart .small-head {
  font-size: 0.9rem;
  color: #868686;
}

.cart-table {
  margin-top: 3rem !important;
  width: 100%;
  padding: 0 200px;
}

@media screen and (max-width: 1300px) {
  .cart-table {
    padding: 0 100px;
  }
}

@media screen and (max-width: 1000px) {
  .cart-table {
    padding: 0rem !important;
  }
}

.cart-table .cart-table-header {
  width: 100%;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 800px) {
  .cart-table .cart-table-header .quantity-th {
    display: none;
  }
}

.cart-table .cart-table-header li {
  list-style: none;
}

.cart-table .cart-table-row {
  width: 100%;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 800px) {
  .cart-table .cart-table-row {
    display: block !important;
    position: relative;
  }
}

.cart-table .cart-table-row li {
  list-style: none;
}

.cart-table .cart-table-row .table-product {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 800px) {
  .cart-table .cart-table-row .table-product {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 400px) {
  .cart-table .cart-table-row .table-product {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .cart-table .cart-table-row .table-product .table-product-img {
    margin-bottom: 12px;
  }
}

.cart-table .cart-table-row .table-product .table-product-img {
  width: 125px;
  height: 125px;
}

.cart-table .cart-table-row .table-product .table-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-table .cart-table-row .table-product .table-product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.cart-table .cart-table-row .table-product .table-product-details div {
  font-size: 0.9rem;
}

.cart-table .cart-table-row .table-quantity {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -9rem;
}

@media screen and (max-width: 800px) {
  .cart-table .cart-table-row .table-quantity {
    align-items: flex-start;
    margin-left: 0rem;
    margin-top: 20px;
  }
}

.cart-table .cart-table-row .table-quantity .quantity {
  border: 1px solid #dee2e6;
  padding: 12px 10px;
}
.cart-table .cart-table-row .table-quantity .quantity span {
  cursor: pointer;
  padding: 0 15px;
}

.cart-table .cart-table-row .table-quantity .product-remove {
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  color: #868686;
}

@media screen and (max-width: 800px) {
  .cart-table .cart-table-row .product-price {
    position: absolute;
    top: 20px;
    right: 0;
  }
}

.cart-table .subtotal {
  text-align: end;
}

.cart-table .subtotal .taxes {
  font-size: 0.9rem;
  color: #868686;
  font-style: italic;
}
.cart-table .subtotal .go-to-checkout {
  padding: 10px;
  background-color: black;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 200ms linear;
}
.cart-table .subtotal .go-to-checkout:hover {
  background-color: var(--main-color);
}

@media screen and (max-width: 500px) {
  .cart-table .subtotal {
    justify-content: center !important;
  }
}

/* login */
.register {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

@media screen and (max-width: 600px) {
  .register {
    width: 100%;
    padding: 60px 1rem !important;
  }
}

.register .register-heading h1 {
  font-size: 50px;
  font-weight: 300;
}

.register .register-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
}

@media screen and (max-width: 600px) {
  .register .register-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.register .register-form .input-group {
  width: 100%;
  margin: 10px 0;
}

.register .register-form .input-group .input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #ced4da;
  color: #868686;
  font-size: 0.9rem;
}

.register .register-form .input-group .input-password {
  position: relative;
}

.register .register-form .input-group .eye-btn {
  position: absolute;
  top: 27.5%;
  right: 3%;
  cursor: pointer;
  color: #868686;
  font-size: 0.9rem;
}

.register .register-form .input-group .input:focus {
  border: 1px solid black;
  outline: none;
}
.register .register-form .input-group .input::placeholder {
  color: #868686;
  font-size: 0.9rem;
}

.register .register-form .register-btn {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 14px 20px;
  border: none;
  font-size: 0.9rem;
  transition: all 200ms linear;
}
.register .register-form .register-btn:hover {
  background-color: var(--main-color);
}
.register .register-form .goto-sign-btn {
  width: 100%;
  background-color: #fff;
  border: 1px solid black;
  color: #000;
  padding: 14px 20px;
  font-size: 0.9rem;
  /* transition: all 200ms linear; */
}
.register .register-form .goto-sign-btn:hover {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

/* login */
.register .login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-text .lost-password {
  text-decoration: underline;
  color: black;
  cursor: pointer;
}

/* WishList */
.wishlist {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .wishlist {
    padding: 40px 1rem !important;
  }
}

.wishlist .wishlist-heading h1 {
  font-size: 50px;
  font-weight: 300;
}

.wishlist .wishlist-card-img {
  position: relative !important;
}

.wishlist .wishlist-card-img .trash-icon {
  position: absolute;
  top: 5%;
  right: 5%;
  color: #000;
  padding: 7px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  background-color: #fff;
  z-index: 999;
  border: none;
}

/* Check out page */

.checkout-nav {
  padding: 15px 125px;
}

.checkout-nav .nav-heading h2 {
  font-size: 1.7rem;
}

@media screen and (max-width: 1200px) {
  .checkout-nav {
    padding: 15px 50px;
  }
}

@media screen and (max-width: 800px) {
  .checkout-nav {
    padding: 15px 1rem !important;
  }
  .checkout-nav .nav-heading h2 {
    font-size: 1.2rem;
  }
}

.checkout-nav .goto-cart {
  color: #1773b0;
  font-size: 1.2rem;
}

.checkout {
  padding: 0px 125px;
  background-color: #f1f3f6;
}

@media screen and (max-width: 1200px) {
  .checkout {
    padding: 0px 50px;
  }
}

@media screen and (max-width: 800px) {
  .checkout {
    padding: 0px 1rem !important;
  }
}

.login-info {
  background: #fff;
  padding: 17px 17px;
  border-radius: 7px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.login-info h4 {
  font-size: 1.1rem;
  color: #868686;
}

.login-info h4 span {
  color: #1773b0;
  font-size: 1rem;
  background-color: #f5f1f1;
  padding: 2px 4px;
}

.login-info h4 svg {
  color: #1773b0;
  font-size: 1rem;
}

.login-info .edit-btn {
  border: 1px solid #d5d5d5;
  padding: 4px 10px;
  color: #1773b0;
  background-color: #fff;
}

.login-info .login-name {
  font-size: 1rem;
  font-weight: 500;
}

.login-info .login-email {
  font-size: 0.9rem;
  font-weight: 400;
  /* color: #868686; */
}

.checkout .delivery-address {
  width: 100%;
  background: #fff;
  padding: 17px 17px;
  border-radius: 7px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.checkout .delivery-address h4 {
  font-size: 1.3rem;
}

.checkout .delivery-address .form-inputs input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #ced4da;
  color: #868686;
  font-size: 0.9rem;
  border-radius: 7px;
}

.checkout .delivery-address .form-inputs input:focus {
  border: 2px solid #1773b0;
  outline: none;
}
.checkout .delivery-address .form-inputs input::placeholder {
  color: #868686;
  font-size: 0.9rem;
}

.checkout .delivery-address .deliver-btn {
  border: none;
  background-color: #000;
  color: #fff;
  padding: 14px 20px;
  width: 100%;
  transition: all 200ms linear;
  border-radius: 7px;
}

.checkout .delivery-address .deliver-btn:hover {
  background-color: #1773b0;
}

.checkout .payment {
  width: 100%;
  background: #fff;
  padding: 17px 17px;
  border-radius: 7px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.checkout .payment h4 {
  font-size: 1.3rem;
}

.checkout .payment img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.checkout .payment .payment-btn {
  border: none;
  background-color: #000;
  color: #fff;
  padding: 14px 20px;
  width: 100%;
  transition: all 200ms linear;
  border-radius: 7px;
}

.checkout .payment .payment-btn:hover {
  background-color: #1773b0;
}

.order-summary {
  background: #fff;
  padding: 17px 17px;
  border-radius: 7px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  position: sticky;
  /* width: 100%; */
}

.order-summary-add {
  position: fixed;
  top: 0;
}

.order-summary .order-title {
  font-size: 1.3rem;
}

.order-summary .order-details {
  width: 100%;
}

.order-summary .order-details .order-img {
  width: 70px;
  height: 70px;
  position: relative;
}

.order-summary .order-details .order-img .product-quantity {
  position: absolute;
  top: -13px;
  right: -13px;
  background-color: #1773b0;
  color: #fff;
  border-radius: 52px;
  padding: 3px 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
}

.order-summary .order-details .order-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.order-summary .order-details .order-title {
  font-size: 0.9rem;
  font-weight: 400;
}

.order-summary .subtotal-details .subtotal,
.order-summary .delivery-total .delivery-charges {
  font-size: 0.9rem;
}

.order-summary .total-pay .total-title {
  font-weight: 500;
  font-size: 1.1rem;
}

.order-summary .subtotal-details .subtotal-price,
.order-summary .delivery-total .delivery-price {
  font-weight: 500;
}

.order-summary .total-pay .total-price {
  font-weight: 500;
  font-size: 1.1rem;
}

/* Update profile */

.user-profile .form-inputs label {
  font-size: 1.03rem;
  font-weight: 500;
  padding-bottom: 10px;
}

.user-profile .form-inputs input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #ced4da;
  color: #868686;
  font-size: 0.9rem;
  border-radius: 7px;
}

.user-profile .update-user {
  border: none;
  background-color: #000;
  color: #fff;
  padding: 14px 20px;
  width: 100%;
  transition: all 200ms linear;
  border-radius: 7px;
}

.user-profile .update-user:hover {
  background-color: var(--main-color);
}
