@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
  --primary-color: #FEE8BC;
  --secondary-color: #000000;
  --third-color: #005049;
  --red-color: #ff0000;
  --yellow-color: #FCBF2E;
  --dark-color: #200055;
  --white-color: #FFFFFF;
  --text-color: #4D4D4D;
  --text-color-2: #7B7B7B;
  --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  font-family: "Onest", sans-serif;
  letter-spacing: 0.25px;
  color: #121212;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin-bottom: 0;
}

ul {
  list-style: none;
}

.pointer {
  cursor: pointer;
}

.red-color {
  color: var(--red-color) !important;
}

/*.container-fluid {*/
/*    max-width: 1528px;*/
/*}*/
.container-fluid {
  width: calc(100% - 200px);
}

.section-padding {
  padding: 50px 0;
}

.slick-prev {
  left: 5px;
}

.slick-next {
  right: 5px;
}

.btn1 {
  display: inline-block;
  padding: 10px 18px;
  background-color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
  /*min-width: 110px;*/
  transition: all 0.25s ease-in-out;
  color: #121212;
  border-radius: 5px;
  letter-spacing: 1px;
}

.btn1:hover {
  background-color: var(--primary-color);
}

.add-to-cart {
  display: inline-block;
  padding: 7px 18px;
  background-color: var(--primary-color);
  border-radius: 10px;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  min-width: 250px;
  text-align: center;
  transition: all 0.25s ease-in-out;
}

.add-to-cart:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.title {
  font-size: 32px;
  font-weight: 500;
  position: relative;
  color: var(--secondary-color);
  margin-bottom: 50px;
  display: inline-block;
}

.title::after {
  content: '';
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: -12px;
  left: 0;
  background: var(--secondary-color);
}


.tag-btn {
  font-size: 12px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.quantity {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  border: 1px solid #cacaca;
  margin-top: 10px;
}

.quantity .minus,
.quantity .plus {
  display: block;
  width: 22px;
  height: 23px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  line-height: 23px;
}

.quantity .quantity__input {
  width: 32px;
  height: 20px;
  margin: 0 4px;
  padding: 0;
  text-align: center;
  color: #000000;
  border: none;
  display: inline-block;
  font-size: 14px;
  outline: navajowhite;
}

.quantity .minus:link,
.quantity .plus:link {
  color: #000000;
  font-size: 20px;
}

.breadcrumb {
  padding: 0 !important;
  margin: 0 !important;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}
.whatsapp{
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 999;
    animation: animate 2s linear infinite;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .4);
    border-radius: 100%;
}
.whatsapp img{
    width: 70px;
}
@keyframes animate { 
    0% { 
        transform: scale(1.05); 
    } 
    50% { 
        transform: scale(0.9); 
    } 
    0% { 
        transform: scale(1.05); 
    } 
} 
/* ================================ 
Header Section 
=================================== */
header {
  height: 80px;
  align-content: center;
}

header nav .navigation li a {
  display: inline-block;
  padding: 0 20px;
  font-size: 14px;
  transition: all 0.25s ease-in-out;
}

header nav .navigation li a:hover {
  color: #cccccc;
}

header nav .navigation li .product-menu-contain .profile-links {
  font-size: 15px;
  display: block;
  padding: 7px 10px;
  margin: 0 12px;
  border-radius: 5px;
  transition: all 0.25s ease-in-out;
  background-color: var(--white-color);
  min-width: 12rem;
}

header nav .navigation li .product-menu-contain .profile-links:hover {
  background-color: hsl(240, 100%, 95%);
  color: #1f00a7;
}

header nav .navigation .dropdown-menu {
  top: 15px !important;
}

header nav .search-input {
  width: 415px;
  height: 38px;
  border: none;
  border-bottom: 1px solid #000;
  padding-right: 2.5rem;
  outline: none;
}

header nav .search-btn {
  display: inline-block;
  background-color: transparent;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: none;
  outline: none;
  height: 100%;
  font-size: 20px;
}

header nav .quick-link {
  margin-left: 50px;
}

header nav .quick-link li:nth-child(2) {
  margin: 0 16px;
}

header nav .quick-link li .profile-contain {
  padding: 4px 0;
  padding-bottom: 0;
}

header nav .quick-link li .profile-contain .profile-links {
  font-size: 15px;
  display: block;
  padding: 7px 10px;
  margin: 0 12px;
  border-radius: 5px;
  transition: all 0.25s ease-in-out;
  background-color: var(--white-color);
}

header nav .quick-link li .profile-contain .profile-links:hover {
  background-color: hsl(240, 100%, 95%);
  color: #1f00a7;
}

header nav .quick-link li .profile-contain .profile-links:last-child {
  color: var(--red-color);
  margin-top: 7px;
}

header nav .quick-link li .profile-contain .profile-links:last-child:hover {
  background-color: rgb(255, 243, 243);
}

header nav .quick-link li a {
  font-size: 20px;
  transition: all 0.25s ease-in-out;
}

header nav .quick-link li a:hover {
  color: #cccccc;
}

header nav .quick-link li .noti {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #f00;
  position: absolute;
  top: 2px;
  right: -10px;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  text-align: center;
  line-height: 16px;
  font-weight: 600;
}


.profileMenu {
  width: 13rem;
  margin-left: -5.5rem !important;
}

header.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* padding: 12px 0; */
  background: var(--white-color);
  box-shadow: 0 -2px 20px 5px #00000028;
  animation: fadeInDown 0.5s ease-in-out
}

@keyframes fadeInDown {
  0% {
    top: -30%
  }

  50% {
    top: -15%
  }

  100% {
    top: 0
  }
}

.cart .modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.cart .modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.cart .modal-content {
  border-radius: 0;
  border: none;
}

.cart .modal-header {
  border-bottom-color: #eeeeee;
  background-color: #fafafa;
  text-align: center;
  display: block;
  font-size: 18px;
  padding: 10px;
  background: #fff;
  border: 0;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: fixed;
  top: 0;
  width: 100%;
}

.cart .modal.right .modal-body {
  padding: 50px 0 70px;
  background-color: #fff;
}

.cart .modal-header .close {
  padding: 18px 0 12px 20px;
  margin: -1rem -1rem -1rem;
  font-size: 16px;
  float: left;
  color: #ff0000;
  outline: 0;
  border: 0;
  background: transparent;
}

.cart .modal.right.fade .modal-dialog {
  right: -380px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.cart .modal.right.fade.show .modal-dialog {
  right: 0;
}

.cart-payment {
  background: #fff;
}

.cart-payment .heading {
  font-size: 16px;
  background: #f5f5f5;
  padding: 10px 15px;
}

.cart-payment .table td {
  border: 0;
  padding: 7px 25px;
}

.cart-payment p {
  padding: 10px 25px;
  border-top: 1px solid #f5f5f5;
  font-size: 13px;
}

.cart-payment p span {
  color: #000;
}

.cart .modal-footer {
  position: fixed;
  width: 100%;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 0;
  border: 0;
  background: #fff;
  bottom: 0;
  left: 0;
}

.cart .modal-footer .item {
  flex: 1;
  margin: 0;
}

.cart .modal-footer .item:first-child {
  padding: 0 15px;
}

.cart .modal-footer .item a {
  display: block;
  background: #000;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
}

.cart .modal-footer .item span {
  display: block;
  font-size: 16px;
  color: #ff0000;
}

.cart-contain {
  padding-bottom: 5px;
}

.cart-contain .cart-img {
  width: 100px;
}

.cart-contain h4 {
  font-size: 16px;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-contain .cart-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--red-color);
  display: block;
}

.cart-contain .quantity {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  border: 1px solid #cacaca;
  margin-top: 10px;
}

.cart-contain .quantity .minus,
.cart-contain .quantity .plus {
  display: block;
  width: 22px;
  height: 23px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  line-height: 23px;
}

.cart-contain .quantity .quantity__input {
  width: 32px;
  height: 20px;
  margin: 0 4px;
  padding: 0;
  text-align: center;
  color: #000000;
  border: none;
  display: inline-block;
  font-size: 14px;
  outline: navajowhite;
}

.cart-contain .quantity .minus:link,
.cart-contain .quantity .plus:link {
  color: #000000;
  font-size: 20px;
}

.cart-contain .delete-cart {
  font-size: 14px;
  font-weight: 300;
  color: var(--red-color);
  background-color: rgb(255, 236, 236);
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}


/* ================================ 
Banner Section 
=================================== */
.banner {
  height: 75vh;
  width: 100%;
}

.banner-img {
  height: 75vh;
  width: 100%;
  object-fit: cover;
}

.banner-slider .slick-prev {
  left: 45px;
}

.banner-slider .slick-next {
  right: 45px;
}


/* ================================ 
category Section 
=================================== */
.category .inner-contain {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}

.category .inner-contain:hover span {
  bottom: 40px;
  background-color: var(--primary-color);
}

.category .inner-contain .img-fluid {
  transition: all 0.25s ease-in-out;
}

.category .inner-contain:hover .img-fluid {
  transform: scale(1.05);
}

.category .inner-contain span {
  display: inline-block;
  padding: 7px 18px;
  background-color: var(--white-color);
  border-radius: 10px;
  color: var(--secondary-color);
  position: absolute;
  bottom: 30px;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  text-align: center;
  transition: all 0.25s ease-in-out;
}

/* ================================ 
Product Section 
=================================== */

.product-list .product-contain {
  margin: 0 1rem;
}

.product-list .image-contain {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.35s ease-in-out;
}

.product-list .image-contain:hover .add-to-cart {
  bottom: 30px;
}

.product-list .image-contain:hover .star {
  right: 20px;
}

.product-list .image-contain .product-thumb-img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
}

.product-list .image-contain .add-to-cart {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.35s ease-in-out;
}

.product-list .image-contain .star {
  position: absolute;
  top: 20px;
  right: -50px;
  padding: 6px;
  border-radius: 5px;
  color: #E4BB69;
  background-color: var(--white-color);
  line-height: 1;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.35s ease-in-out;
}

.product-list .product-short-dets {
  margin-top: 14px;
}

.product-list .product-short-dets h3 {
  font-size: 14px;
  line-height: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #191919;
  font-weight: 400;
  margin-bottom: 12px;
  min-height: 40px;
}

.product-list .product-short-dets .price {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}

.product-list .product-short-dets .review {
  font-size: 14px;
  font-weight: 500;
}

/* ================================ 
Deals Section 
=================================== */
.deals {
  background-color: #FFFAEF;
}

.deals .deal-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
}

.deals .dealImg{
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

/*.deals .deal-dets {*/
/*  width: 395px;*/
/*}*/

.deals .deal-dets h2 {
  font-size: 18px;
  line-height: 26px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #191919;
  font-weight: 400;
  margin-bottom: 12px;
}

.deals .deal-dets .price {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}

.deals .deal-dets .counter {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  margin-bottom: 18px;
}

.deals .deal-dets .counter .timer {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.deals .deal-dets p {
  font-size: 16px;
  color: #474747;
  line-height: 28px;
  font-weight: 400;
  /*text-overflow: ellipsis;*/
  /*overflow: hidden;*/
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 3;*/
  /*-webkit-box-orient: vertical;*/
}

.deals .deal-dets .add-to-cart {
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 16px;
  padding: 9px 18px;
  transition: all 0.25s ease-in-out;
}

.deals .deal-dets .add-to-cart:hover {
  background-color: #252525;
  color: var(--white-color);
}


/* ================================ 
Instagram Section 
=================================== */
.insta {
  background-color: #F4FAF9;
}

.insta .inner-contain {
  position: relative;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.insta .inner-contain img {
  transition: all 0.25s ease-in-out;
}

.insta .inner-contain:hover img {
  filter: brightness(0.5);
  transform: scale(1.05);
}

.insta .inner-contain::before {
  content: '\EE66';
  font-family: 'remixicon';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 50px;
  z-index: 2;
  line-height: 1;
  transition: all 0.25s ease-in-out;
  opacity: 0;
}

.insta .inner-contain:hover::before {
  opacity: 1;
}


/* ================================ 
Blogs Section 
=================================== */
.blogs .blog-cont {
  margin-top: 24px;
  padding: 0 16px;
}

.blogs .blog-cont h3 {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 0.75px;
  font-weight: 400;
  margin-bottom: 10px;
}




/* ================================ 
Footer Section 
=================================== */
footer {
  background-color: #EFEFEF;
  padding-top: 3rem;
}

footer .foot-desc {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

footer .foot-contain h5 {
  font-size: 20px;
  font-weight: 600;
}

footer .foot-contain ul {
  padding-left: 16px;
}

footer .foot-contain ul li {
  list-style: disc;
  transition: 0.15s ease-in-out;
}

footer .foot-contain ul li:hover {
  color: #8a8a8a;
}

footer .foot-contain ul li .foot-links {
  margin-top: 10px;
  display: block;
  font-size: 14px;
}


/* ================================ 
Inner Banner section 
=================================== */
.inner-banner {
  width: 100%;
  height: 200px;
  background: url(../images/banner/inner-bg.jpg) no-repeat center;
  align-content: center;
}

.inner-banner h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--third-color);
  margin-bottom: 6px;
}

.inner-banner h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--third-color);
  margin-bottom: 6px;
}


/* ================================ 
Product List section 
=================================== */

.filter-contain {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 99;
  border: 1px solid #cacaca;
  padding: 20px;
  border-radius: 10px;
}

.filter-contain h6 {
  font-size: 16px;
  margin-bottom: 14px;
}

.filter-contain .form-check {
  line-height: 1;
  display: flex !important;
  padding-left: 1.5em;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 8px;
}

.filter-contain .form-check .form-check-label {
  cursor: pointer;
  font-size: 14px;
  margin-left: 5px !important;
}

.filter-contain .form-check input[type="checkbox"] {
  transform: scale(1.1);
}

/* Custom scrollbar for category-scroll-div */
.filter-contain .category-scroll-div::-webkit-scrollbar,
.filter-contain .category-scroll-div::-webkit-scrollbar-thumb {
  width: 3px;
  border-radius: 50px;
  background-clip: padding-box;
  cursor: grabbing;
}

.filter-contain .category-scroll-div::-webkit-scrollbar-thumb {
  background-color: #c8c8c8;
}

/* ================================ 
Product Details section 
=================================== */
.pro-details .product-main {
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 99;
}

.pro-details .product-main .pro-dets-img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}

.pro-details .product-main .gallery__hero {
  overflow: hidden;
  position: relative;
  background: #fff;
  cursor: zoom-in;
}

.pro-details .product-main .is-zoomed .gallery__hero img {
  max-width: none;
  position: absolute;
  z-index: 0;
  top: -50%;
  left: -50%;
  cursor: move;
}

.pro-details .product-main .is-zoomed .gallery__hero-enlarge {
  background-image: url(data:image/svg+xml;base64,...);
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 1;
  width: 30px;
  height: 30px;
  opacity: 0.7;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease-in-out;
}

.pro-details .product-main .is-zoomed .gallery__hero-enlarge:hover {
  opacity: 1;
}

.pro-details .product-main .pro-thumbs {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  background: #fff;
}

.pro-details .product-main .pro-thumbs a {
  display: inline-block;
  width: 80px;
  height: 80px;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.pro-details .product-main .pro-thumbs a:hover {
  opacity: 0.8;
}

.pro-details .product-main .pro-thumbs a img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 14px;
}

.pro-details .product-main .pro-thumbs a.is-active {
  opacity: 1;
}

.pro-details .product-main .zoomImg {
  width: 140% !important;
  height: 140% !important;
  object-fit: cover;
}

.pro-details .full-dets h1 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
}

.pro-details .full-dets h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.pro-details .full-dets h5 {
  font-size: 18px;
  text-decoration: underline;
  margin-bottom: 14px;
  font-weight: 600;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #c3c3c3;
}

.pro-details .full-dets h6 {
  font-size: 18px;
  text-decoration: underline;
  margin-bottom: 14px;
  font-weight: 600;
  padding-top: 10px;
}

.pro-details .full-dets ul {
  list-style: disc;
  margin-bottom: 20px;
}

.pro-details .full-dets ul li {
  margin-bottom: 8px;
}

.pro-details .full-dets .ratings {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.pro-details .full-dets .ratings .review {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 5px;
  background-color: #1d8a1d;
  color: #f6fa15;
  font-size: 13px;
  align-content: center;
  font-weight: 600;
}

.pro-details .full-dets .main-price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.pro-details .full-dets .main-price h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.pro-details .full-dets .quantity {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  margin-top: 0;
}

.pro-details .full-dets .quantity .quantity__input {
  width: 72px;
  height: 30px;
  font-size: 20px;
  font-weight: 600;
}

.pro-details .full-dets .quantity .minus span,
.pro-details .full-dets .quantity .plus span {
  font-size: 30px;
}

.pro-details .full-dets .add-btn,
.pro-details .full-dets .buy-btn {
  display: inline-block;
  padding: 14px 30px;
  width: 40%;
  border: 1px solid var(--secondary-color);
  font-size: 20px;
  align-content: center;
  text-align: center;
  transition: all 0.35s ease-in-out;
}

.pro-details .full-dets .buy-btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.pro-details .full-dets .buy-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.pro-details .full-dets .rating {
  display: inline-block;
}

.pro-details .full-dets .rating input {
  display: none;
}

.pro-details .full-dets .rating label {
  float: right;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
}

.pro-details .full-dets .rating label:before {
  content: '\2605';
  font-size: 30px;
}

.pro-details .full-dets .rating input:checked~label,
.pro-details .full-dets .rating label:hover,
.pro-details .full-dets .rating label:hover~label {
  color: #faca22;
  transition: color 0.3s;
}

.pro-details .full-dets .customer-review {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

.pro-details .full-dets .write-review input,
.pro-details .full-dets .write-review textarea,
.pro-details .full-dets .write-review select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}

.pro-details .full-dets .write-review button {
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.pro-details .full-dets .write-review button:hover {
  background-color: #555;
}


/* ===========================
Testimonial Details
================================ */
.testimonial img {
  height: 74px;
  width: 74px;
  border-radius: 50%;
  object-fit: cover;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  display: inline-block;
}

/* .testimonailMain .slick-track{
    margin: inherit;
} */
.testimonailMain .slick-center img {
  object-fit: cover;
  transform: scale(1.36);
  box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.3);
}

.testimonailMain-shape {
  position: relative;
}

.testimonailMain-shape .shape-1 {
  position: absolute;
  top: -20px;
  left: 0px;
  z-index: -1;
}

.testimonailMain-shape .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: -1;
}

.testimonailMain-shape p {
  margin-bottom: 0;
}

.testimonialPanel .slick-prev {
  left: calc(50% - 50px);
  top: calc(100% + 20px);
}

.testimonialPanel .slick-next {
  right: calc(50% - 50px);
  top: calc(100% + 20px);
}


.section-banner-v6 .banner-box {
  position: relative;
}

.section-banner-v6 .banner-box .banner-info {
  background: rgba(0, 0, 0, 0);
}

.section-banner-v6 .banner-box .banner-info {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
}

.section-banner-v6 .banner-box .banner-info .title2 {
  color: #646464;
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 300;
  text-transform: unset;
}

.section-banner-v6 .banner-box .banner-info .subtitle {
  line-height: 40px;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 800;
  color: #0e0e0e;
}



/* ================================ 
Journal Details section 
=================================== */
.jouranl-dets h1 {
  font-size: 30px;
  margin-bottom: 24px;
  line-height: 40px;
}

.jouranl-dets .blog-main-banner {
  width: 100%;
  height: 600px;
  border-radius: 5px;
  object-fit: cover;
}

.jouranl-dets p {
  text-align: justify;
}

.jouranl-dets .other-heading {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 26px;
}

.jouranl-dets .announcement-list {
  max-height: 620px;
  overflow-y: auto;
  scrollbar-width: thin;
  list-style: disc;
  padding-left: 1.5rem;
  margin: 14px 0;
  margin-bottom: 0;
}

.jouranl-dets .announcement-list li {
  margin-bottom: 10px;
}

.jouranl-dets .announcement-list li::marker {
  color: var(--primary-color);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}


/* My Account */
/* ========================================= */
.profileBox {
  background-color: #eceffa;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
  margin-bottom: 1rem;
  padding: 1rem;
  border: 2px solid #fff;
}

.profileBox img {
  width: 60px;
  margin-right: 15px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #c3c3c3;
}

.profileBox .content {
  width: calc(100% - 65px);
}

.profileBox h5 {
  padding: 10px 14px;
  background: var(--sns-base-color);
}

.profileBox ul {
  margin-bottom: 0;
  padding-left: 0;
}

.profileBox ul li {
  margin: 0 0 5px;
  list-style: none;
}

.profileBox li a {
  display: flex;
  font-size: 18px;
  border: 1px solid #afa9be;
  padding: 12px 15px;
  border-radius: 5px;
  align-items: center;
}

.profileBox ul li a i {
  color: #fff;
  border-radius: 50px;
  background: #202334;
  width: 30px;
  height: 30px;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
}

.profileBox li a:hover,
.profileBox li a.active {
  color: var(--sns-hover-color);
  background: var(--sns-base-color);
}

.profileBox .item {
  position: relative;
  padding-left: 55px;
  margin-bottom: 1.5rem;
}

.profileBox .item img {
  position: absolute;
  left: 0;
  top: 0;
}

.profileBox .item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.profileBox .item p {
  font-size: 15px;
  margin-bottom: 0;
}

.order-history {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}

.order-history h6 {
  font-size: 18px;
  font-weight: 600;
}

.order-history h6 small {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  color: #888;
}

.order-history:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.or-address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-radius: 5px;
  color: #565656;
  border: 1px dotted #ddd;
  margin-bottom: 10px;
}


.cart-detsss {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

address .form-check-inline {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 5px;
}

address .form-check-input[type=radio] {
  border-radius: 50%;
  padding: 0;
  width: 1em;
}

address .form-check label {
  margin-bottom: 0;
}

.address_type {
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  vertical-align: middle;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #778083;
  font-weight: 600;
  margin: 0 5px;
}

.innerContent ul {
  margin-bottom: 1.5rem;
}

.innerContent ul li {
  list-style: circle;
}






















@media (max-width: 1528px) {
  .container-fluid {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
  }

  .deals .deal-img {
    width: 270px;
    height: 270px;
  }
}



@media (max-width: 1440px) {
  .deals .deal-img {
    width: 220px;
    height: 220px;
  }

  header nav .search-input {
    width: 375px;
  }

  header nav .navigation li a {
    padding: 0 14px;
  }

  .inner-banner h1,
  .inner-banner h2 {
    font-size: 30px;
  }

  .product-list h3 {
    font-size: 24px;
  }

  .jouranl-dets .other-heading {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 1366px) {
  header nav .search-input {
    width: 335px;
  }

  .deals .deal-img {
    width: 190px;
    height: 190px;
  }

  .deals .deal-dets p {
    font-size: 14px;
    line-height: 22px;
    -webkit-line-clamp: 2;
  }

  .deals .deal-dets .add-to-cart {
    font-size: 14px;
    padding: 9px 14px;
    min-width: 190px;
  }

  .deals .deal-dets h2 {
    font-size: 20px;
    -webkit-line-clamp: 1;
  }

  .blogs .blog-cont h3 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.35px;
  }
}



@media (max-width: 991px) {
  .container-fluid {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link {
    padding: 10px 18px !important;
    font-size: 16px;
    display: block;
    margin: 0;
    border-bottom: 1px dashed #a8a8a8;
    border-width: 1px;
    color: #121212;
  }

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

  #offcanvasNavbar,
  #filter-offcanvas {
    width: 300px;
    height: 100vh;
    background-color: #fff;
  }

  #offcanvasNavbar .button {
    display: inline-block;
    margin-top: 10px;
  }

  .offcanvas-title img {
    height: 30px;
  }

  .offcanvas-header {
    background-color: #f4f4f4;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .offcanvas-body {
    padding-left: 0 !important;
    padding-top: 8px;
    padding-right: 0 !important;
  }

  .my-mobile-menu li {
    font-size: 14px;
    padding: 8px 18px 8px 34px;
    position: relative;
    border-bottom: 1px solid #ddd;
  }

  .my-mobile-menu li a {
    white-space: normal;
  }

  .my-mobile-menu li a i {
    font-size: 7px;
    position: absolute;
    top: 13px;
    left: 5%;
    color: var(--secondary-color);
  }

  .title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .banner,
  .banner-img {
    height: 40vh;
    width: 100%;
  }

  .brand-logo {
    height: 40px;
  }

  header nav .search-input {
    width: 100%;
  }

  .category .inner-contain span {
    padding: 7px 14px;
    font-size: 14px;
    min-width: 180px;
  }

  .product-list .product-short-dets h3 {
    font-size: 16px;
    line-height: 24px;
    min-height: 48px;
  }

  .add-to-cart {
    padding: 7px 14px;
    font-size: 14px;
    min-width: 160px;
  }

  .section-banner-v6 .banner-box .banner-info {
    position: absolute;
    left: 2%;
  }

  .section-banner-v6 .banner-box .banner-info .title2 {
    font-size: 16px;
  }

  .section-banner-v6 .banner-box .banner-info .subtitle {
    margin-bottom: 14px;
    font-size: 26px;
  }

  .deals .deal-img {
    width: 150px;
    height: 150px;
  }

  .deals .deal-dets {
    width: 290px;
  }

  .deals .deal-dets h2 {
    font-size: 16px;
  }

  .deals .deal-dets .price {
    font-size: 16px;
    line-height: 14px;
  }

  .deals .deal-dets .add-to-cart {
    font-size: 12px;
    padding: 6px 14px;
    min-width: 150px;
  }

  .blogs .blog-cont h3 {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
  }

  .blogs .blog-cont p {
    font-size: 13px;
  }

  .pro-details .product-main .pro-dets-img {
    width: 100%;
    height: 350px;
  }

  .pro-details .full-dets h1 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
  }

  .pro-details .full-dets .main-price h3 {
    font-size: 24px;
  }

  .pro-details .ratings {
    font-size: 15px;
  }

  .inner-banner {
    height: 80px;
    font-size: 14px;
  }

  .inner-banner h1,
  .inner-banner h2 {
    font-size: 24px;
  }

  .filter-contain-mobile h6 {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .filter-contain-mobile .form-check {
    line-height: 1;
    display: flex !important;
    padding-left: 1.5em;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 8px;
  }

  .filter-contain-mobile .form-check .form-check-label {
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px !important;
  }

  .filter-contain-mobile .form-check input[type="checkbox"] {
    transform: scale(1.1);
  }

  .category-scroll-div::-webkit-scrollbar,
  .category-scroll-div::-webkit-scrollbar-thumb {
    width: 3px;
    border-radius: 50px;
    background-clip: padding-box;
    cursor: grabbing;
  }

  .category-scroll-div::-webkit-scrollbar-thumb {
    background-color: #c8c8c8;
  }

  .main-profile-link {
    padding: 0 !important;
  }

  .product-list .product-short-dets .price {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
  }

  .pro-details .full-dets .quantity {
    display: inline-flex;
    align-items: center;
    padding: 8px;
    margin-top: 0;
  }

  .pro-details .full-dets .add-btn,
  .pro-details .full-dets .buy-btn {
    display: inline-block;
    padding: 8px 30px;
    width: 40%;
    border: 1px solid var(--secondary-color);
    font-size: 20px;
    text-align: center;
    transition: all 0.35s ease-in-out;
  }

  .pro-details .product-main .pro-thumbs a img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 10px;
  }

  .profileBox li a {
    display: flex;
    font-size: 14px;
    border: 1px solid #afa9be;
    padding: 8px 15px;
    border-radius: 5px;
    align-items: center;
  }

  .profileBox h5 {
    font-size: 16px;
  }

  .content h4 {
    font-size: 16px;
  }

  header nav .quick-link li:nth-child(2) {
    margin: 0 6px;
  }

  header nav .quick-link li a {
    margin: 0 5px;
  }
}




@media (max-width: 800px) {
  .category .inner-contain span {
    padding: 7px 14px;
    font-size: 12px;
    min-width: 150px;
  }

  .product-list .product-short-dets .price {
    font-size: 14px;
    line-height: 26px;
  }

  .product-short-dets s {
    font-size: 14px;
  }

  .sale-percent {
    font-size: 13px;
  }

  .product-list .product-short-dets h3 {
    font-size: 15px;
    line-height: 22px;
  }

  .deals .deal-dets {
    width: 210px;
  }

  .deals .deal-dets p {
    display: none;
  }

  .deals .deal-img {
    width: 140px;
    height: 140px;
  }

  .blogs .blog-cont h3 {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .copyright {
    font-size: 13px;
  }

  .pro-details .full-dets .add-btn,
  .pro-details .full-dets .buy-btn {
    display: inline-block;
    padding: 8px 24px;
    width: 50%;
    font-size: 16px;
  }

  .product-list .d-inline-flex {
    font-size: 13px;
    text-decoration: underline;
    white-space: nowrap;
  }

  .product-list .d-inline-flex img {
    display: none;
  }

  .insta .d-inline-flex {
    font-size: 13px;
    text-decoration: underline;
    white-space: nowrap;
  }

  .insta .d-inline-flex img {
    display: none;
  }

  .blogs .d-inline-flex {
    font-size: 13px;
    text-decoration: underline;
    white-space: nowrap;
  }

  .blogs .d-inline-flex img {
    display: none;
  }

  .title {
    font-size: 22px;
    margin-bottom: 36px;
  }

  .add-to-cart {
    padding: 8px 14px;
    font-size: 14px;
    min-width: 150px;
    bottom: 20px;
  }

  .profileBox li a {
    font-size: 13px;
    padding: 8px;
  }
}





@media (max-width: 767px) {
  .profileBox ul {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
  }

  .profileBox ul::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
  }

  .profileBox ul li {
    flex: 1;
  }

  .profileBox ul li a {
    white-space: nowrap;
  }

  .profileBox h5 {
    padding-left: 0;
    margin-bottom: 5px;
  }

  header nav .quick-link li:nth-child(2) {
    margin: 0 6px;
  }

  header nav .quick-link li .dropdown-toggle::after {
    display: none;
  }

  header nav .quick-link li a {
    font-size: 22px;
    transition: all 0.25s ease-in-out;
    margin: 0 6px;
  }

  .category .inner-contain span {
    padding: 7px 14px;
    font-size: 16px;
    min-width: 190px;
  }

  .deals .deal-img {
    width: 100%;
    height: 350px;
    margin-bottom: 1rem;
  }

  .banner,
  .banner-img {
    height: 30vh;
    width: 100%;
  }
  .jouranl-dets .blog-main-banner {
  height: auto;
}
}

@media (max-width: 480px) {
  body {
    font-size: 90%;
  }

  .banner,
  .banner-img {
    height: 19vh;
    width: 100%;
  }

  .category .inner-contain span {
    padding: 6px 14px;
    font-size: 13px;
    min-width: 160px;
  }

  .title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .title::after {
    width: 50px;
  }

  .banner-gift-bg {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .section-banner-v6 .banner-box .banner-info .subtitle {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .section-banner-v6 .banner-box .banner-info .title2 {
    font-size: 14px;
  }

  .deals .deal-img {
    height: 216px;
  }

  .deals .deal-dets h2 {
    font-size: 14px;
    -webkit-line-clamp: 2;
    line-height: 23px;
    min-height: 46px;
  }

  .deals .deal-dets .price {
    font-size: 14px;
  }

  .deals .deal-dets .add-to-cart {
    font-size: 12px;
    min-width: 80px;
    margin-top: 10px;
  }

  .blogs .blog-cont h3 {
    font-size: 14px;
    line-height: 22px;
  }

  .blogs .blog-cont p {
    font-size: 12px;
  }

  .blogs .blog-cont {
    padding: 0 8px;
  }

  footer .foot-contain h5 {
    font-size: 18px;
  }

  .inner-banner h1,
  .inner-banner h2 {
    font-size: 20px;
  }

  .inner-banner {
    height: 100px;
    font-size: 12px;
  }

  .offcanvas-title img {
    height: 35px;
  }

  .section-padding {
    padding: 30px 0;
  }

  .testimonailMain-shape .shape-1,
  .testimonailMain-shape .shape-2 {
    display: none;
  }

  .product-list .image-contain .add-to-cart {
    display: none;
  }

  .product-list .image-contain .star {
    display: none;
  }
  .jouranl-dets h1 {
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 30px;
}
  .jouranl-dets .other-heading {
    font-size: 14px;
    line-height: 22px;
  }
  .side-content {
      padding: 1rem !important;
      padding-bottom: 0 !important;
  }
}

@media (max-width: 430px) {
  .deals .deal-img {
    height: 191px;
  }
  .blogs .blog-cont {
  margin-top: 16px;
}
  .deals .deal-dets {
    width: 100%;
  }
  .category .inner-contain span {
   bottom: 20px;
  }
   .title {
    font-size: 16px;
    margin-bottom: 26px;
  }
  header {
  height: 65px;
}
 .deals .deal-dets .price {
    font-size: 13px;
  }
    .banner, .banner-img {
    height: 17vh;
    width: 100%;
  }
    .pro-details .full-dets .add-btn, .pro-details .full-dets .buy-btn {
    display: inline-block;
    padding: 6px 14px;
    width: 40%;
    font-size: 14px;
  }
   .pro-details .full-dets .quantity {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    margin-top: 0;
  }
  .pro-details .full-dets .quantity .quantity__input {
  width: 44px;
  height: 30px;
  font-size: 18px;
  font-weight: 600;
}
 .pro-details .full-dets .main-price h3 {
    font-size: 20px;
  }
  .pro-details .full-dets .quantity .minus span, .pro-details .full-dets .quantity .plus span {
  font-size: 24px;
}
  .pro-details .full-dets h1 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
  }
  .pro-details .product-main .pro-thumbs {
  margin-bottom: 0.5rem;
  height: auto;
}
.pro-details .product-main .pro-thumbs a {
  width: auto;
  height: auto;
}
 .jouranl-dets h1 {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 26px;
  }
}






@media (max-width: 380px) {
.inner-banner h1, .inner-banner h2 {
    font-size: 18px;
  }
  .inner-banner {
    height: 80px;
  }
    .category .inner-contain span {
    padding: 6px 14px;
    font-size: 12px;
    min-width: 140px;
  }
   .product-short-dets s {
    font-size: 12px;
  }
   .sale-percent {
    font-size: 10px;
  }
  .product-list .product-contain {
  margin: 0 0.5rem;
}
.deals .deal-dets .price {
    font-size: 11px;
  }
  .testimonialPanel  h6 {
      font-size: 14px;
  }
   .product-list .product-short-dets h3 {
    font-size: 14px;
    line-height: 20px;
    min-height: auto;
    margin-bottom: 0;
  }
}