:root {
  --primary-color: #e18e96;
  --secondary-color: #ff66ac;
  --text-color: #474344;
  --light-bg: #F8E1E7;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --transition: all 0.3s ease;
  --border-radius: 5px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --font-family: "Roboto", sans-serif;
}

/* Global fix for horizontal scroll */
body {
  overflow-x: hidden;
}

/* Brand-specific CSS variable overrides */
[data-brand="river-rosy"] {
  --primary-color: #e18e96;
  --secondary-color: #ff77b5;
  --text-color: #474344;
  --light-bg: #F8E1E7;
}

[data-brand="treevallei"] {
  --primary-color: #08154A;
  --secondary-color: #3e3a3c;
  --text-color: #333;
  --light-bg: #f0f2f5;
}

/* Utility Classes */
.transition-all {
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

/* Mobile Site Title - Moved to menu.css */

.table-light> :not(caption)>*>* {
  background-color: var(--bs-table-bg);
}

.table-light> :not(caption)>tr:nth-of-type(odd)>* {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-light> :not(caption)>tr:hover>* {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

/* Orders Table Styles */
#user-order-table {
  width: 100% !important;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

#user-order-table tbody td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
}

#user-order-table tbody tr:hover td {
  background-color: #f9f9f9;
}

#user-order-table .product-item {
  padding: 5px 0;
  border-bottom: 1px dashed #eee;
}

#user-order-table .product-item:last-child {
  border-bottom: none;
}

#user-order-table .badge {
  font-weight: 500;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 4px;
  text-transform: capitalize;
}

/*======================
	COMMON CSS START
========================*/
/* Common Buttons */
.common_btn {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  color: #333;
  background: #F8E1E7;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  will-change: transform, background-color;
}

.common_btn:hover {
  color: #fff;
  background: #ff66ac;
  transform: translateY(-1px);
}

/* See Button */
.see_btn {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  color: #e18e96;
  border: 1px solid #eee;
  padding: 5px 23px 5px 10px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
  will-change: color, border-color;
}

.see_btn i {
  font-size: 14px;
  position: absolute;
  top: 11px;
  right: 12px;
}

.see_btn:hover {
  color: #333;
  border: 1px solid #333;
}

.shop_btn {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #fff;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.shop_btn:hover {
  color: #fff;
  background: #e18e96;
  background: #e18e96;
}

/* Add to Cart Button */
.add_cart {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  background: #e18e96;
  border-radius: 3px;
  transition: all 0.3s ease;
  will-change: background-color, transform;
  display: inline-block;
  text-align: center;
}

.add_cart:hover {
  color: #fff;
  background: rgb(255, 102, 172);
}

/*======================
	COMMON CSS END
========================*/

/*======================
	TOPBAR STYLES
========================*/
#wsus__topbar {
  width: 100%;
  height: 45px;
  background: #e18e96;
  will-change: transform;
  position: relative;
  z-index: 1000;
}

.wsus__topbar_left {
  display: flex;
  line-height: 45px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wsus__topbar_left li {
  margin-right: 30px;
  position: relative;
}

.wsus__topbar_left li:last-child {
  margin-right: 0;
}

.wsus__topbar_left a {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.wsus__topbar_left a i {
  font-size: 13px;
  margin-right: 5px;
  transition: inherit;
}

.wsus__topbar_left a img {
  width: 15px;
  height: auto;
  margin-top: -3px;
  display: block;
}

.wsus__topbar_left li:hover a {
  color: #ff66ac;
}

.wsus__topbar_dropdown {
  background: #fff;
  line-height: 35px;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease, opacity 0.2s ease;
  opacity: 0;
  position: absolute;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  will-change: transform, opacity;
  backface-visibility: hidden;
  pointer-events: none;
}

.wsus__topbar_dropdown li {
  border-bottom: 1px solid #f5f5f5;
}

.wsus__topbar_dropdown li:last-child {
  border-bottom: none;
}

.wsus__topbar_dropdown a {
  font-size: 13px;
  color: #333;
  display: block;
  padding: 8px 15px;
  transition: all 0.3s ease;
  background: #fff;
}

.wsus__topbar_dropdown a:hover {
  background: #f9f9f9;
  color: #e18e96;
  padding-left: 20px;
}

.wsus__topbar_left li:hover .wsus__topbar_dropdown {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.wsus__topbar_right {
  display: flex;
  justify-content: end;
  line-height: 45px;
}

.wsus__topbar_right li {
  margin-left: 30px;
}

.wsus__topbar_right li a {
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
  color: #fff;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__topbar_right li a i {
  margin-right: 3px;
}

.wsus__topbar_right a:hover,
.wsus__topbar_right .active {
  color: #ff66ac;
}

/* Hover effects for icons */
.wsus__topbar_right a:hover i {
  transform: translateY(-1px);
}

/*======================
	TOPBAR END
========================*/

/*======================
	HEADER START
========================*/

/* Language selector with accessibility improvements */
.language-selector {
  display: flex;
  align-items: center;
  position: relative;
}

.language-selector .flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  margin-right: 8px;
}

.language-selector select:focus {
  outline: none;
}


.wsus__header_logo {
  width: 75%;
}

.wsus__search form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: none;
}

.wsus__category_search {
  width: 60%;
}

.wsus__category_search .select2-container--default .select2-selection--single {
  border-radius: 0;
  padding: 0;
}

.wsus__category_search .select2-container .select2-selection--single {
  height: 41px;
  border: none;
  border-right: 2px solid #eee;
  padding-left: 20px;
}

.wsus__category_search .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ff66ac;
  line-height: 41px;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 400;
}

.wsus__category_search .select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-top: 5px;
}

.wsus__search input {
  line-height: 0;
  border: none;
  font-size: 15px;
  color: #ff66ac;
  width: 100%;
  padding: 14px 20px;
  font-weight: 400;
}

.wsus__search button {
  line-height: 0;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2px;
  background: #aad8ffab;
  padding: 16px 35px;
  border-radius: 80px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  outline: none;
  color: #333;
}

.wsus__call_icon_area {
  display: flex;
  justify-content: space-between;
  padding-left: 55px;
}

.wsus__call_area {
  display: flex;
  width: auto;
}

.wsus__call {
  /* font-size: 34px; */
  /* color: #333; */
  margin-right: 10px;
  font-size: 40px;
  color: #fff;
}

.wsus__call_text p {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

.wsus__call_text a {
  color: #ff66ac;
  font-size: 17px;
  font-weight: 700;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__call_text a:hover {
  color: #007aff;
}

.wsus__icon_area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
}

.wsus__icon_area li {
  margin-right: 10px;
  margin-left: 10px;
}

.wsus__icon_area li a {
  position: relative;
  text-align: center;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: none;
  color: #fff;
  box-shadow: none;
  font-size: 30px;
  border: 1px solid transparent;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__icon_area li a span {
  position: absolute;
  top: -7px;
  right: -7px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-weight: 400;
  background: #d33;
  font-size: 12px;
  line-height: 22px;
  width: 22px;
  height: 22px;
}

.wsus__mini_cart {
  position: fixed;
  top: 0;
  right: -370px;
  width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  padding: 20px;
  z-index: 9999;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  display: block;
  overflow: hidden;
}

.wsus__mini_cart h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.wsus__mini_cart h4 span {
  text-align: center;
  background: #dc3545;
  color: #fff;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.wsus__mini_cart h4 span:hover {
  background: #e18e96;
}

.wsus__mini_cart ul {
  display: block;
  overflow-y: auto !important;
  scrollbar-width: thin;
  scrollbar-color: #e18e96 #0b172d;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  padding-left: 5px;
  max-height: 500px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.wsus__mini_cart li {
  margin-top: 20px;
  width: 100%;
  float: left;
}

.wsus__mini_cart .wsus__cart_img {
  width: 70px;
  float: left;
  height: 70px;
  position: relative;
  border-radius: 3px;
  border: none;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.wsus__mini_cart .wsus__cart_img img {
  height: 70px;
  object-fit: cover;
}

.wsis__del_icon {
  position: absolute;
  top: -10px;
  left: -5px;
  color: #dc3545;
  font-size: 18px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 50%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsis__del_icon:hover {
  color: #e18e96;
}

.wsus__mini_cart .wsus__cart_text {
  width: 200px;
  float: left;
  margin-left: 20px;
}

.wsus__mini_cart .wsus__cart_text a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__mini_cart .wsus__cart_text a:hover {
  color: #e18e96;
}

.wsus__mini_cart .wsus__cart_text p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 0;
}

.wsus__mini_cart .wsus__cart_text p del {
  color: #dc3545;
  font-weight: 400;
}

.wsus__mini_cart h5 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  padding: 15px 0px 13px 0px;
}

.wsus__mini_cart h5 span {
  color: #353535;
  font-weight: 700;
}

.wsus__minicart_btn_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wsus__mini_cart.\.show_cart {
  right: 0;
}

/*======================
	HEADER END
========================*/

/*======================
	MAIN MENU START
========================*/
.wsus__main_menu {
  width: 100%;
  height: 50px;
  background: #0b2c3d;
  background: #fff;
  box-shadow: rgb(100 100 111 / 20%) 0px 3px 15px 0;
}

.wsus_menu_category_bar {
  color: #fff;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  width: 50px;
  height: 50px;
  padding: 0;
  text-align: center;
  line-height: 48px;
  display: block;
  font-size: 20px;
  background: #e18e96;
  position: relative;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s;
}

.wsus_menu_category_bar p {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.wsus_menu_category_bar p i {
  margin-right: 4px;
}

.wsus_menu_category_bar span {
  color: #fff;
}

.wsus_menu_cat_item {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 570px;
  position: relative;
  z-index: 1;
}

.wsus_menu_cat_item li .wsus__droap_arrow {
  position: relative;
}

.wsus_menu_cat_item li .wsus__droap_arrow::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  position: absolute;
  content: "\f105";
  top: 1px;
  right: 30px;
  color: #575757;
  font-size: 14px;
  border: none;
}

.wsus_menu_cat_item li a {
  padding: 0px 30px;
  border-bottom: 1px solid #eeeeeede;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #575757;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  line-height: 51px;
}

.wsus_menu_cat_item li a i {
  width: 25px;
}

.wsus_menu_cat_item li:last-child a {
  border-bottom: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.wsus_menu_cat_item>li:hover>a {
  color: #007aff;
  background: #ff88bf;
}

.wsus_menu_cat_item>li:hover .wsus__droap_arrow::after {
  color: #007aff;
}

.wsus_menu_cat_droapdown {
  width: 250px;
  background: #fff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 105%;
  padding: 0;
  border: 1px solid #def0ff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  height: 100%;
}

.wsus_menu_cat_droapdown li a {
  padding: 0px 20px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wsus_menu_cat_droapdown li a i {
  width: auto;
}

.wsus_menu_cat_droapdown li a:hover {
  color: #007aff;
}

.wsus_menu_cat_item li:hover .wsus_menu_cat_droapdown {
  opacity: 1;
  visibility: visible;
  left: 100%;
}

.wsus__sub_category {
  width: 250px;
  background: #fff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 105%;
  padding: 0;
  border: 1px solid #def0ff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  height: 570px;
}

.wsus_menu_cat_droapdown li:hover .wsus__sub_category {
  opacity: 1;
  visibility: visible;
  left: 100%;
}

.toggle_menu.\.show_category {
  display: block;
}

.toggle_menu {
  display: none;
}

.wsus__menu_item {
  line-height: 50px;
  /* position: relative; */
  position: static;
}

.wsus__menu_item_right {
  margin-left: auto;
}

.wsus__menu_item li {
  margin-right: 0;
  margin-left: 25px;
  float: left;
}


.wsus__menu_item li a {
  text-transform: capitalize;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  color: #333;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  font-size: 15px;
}

.wsus__menu_item li a i {
  margin-left: 5px;
}

.wsus__menu_item>li:hover>a,
.wsus__menu_item li a.active {
  color: #e18e96;
}

.wsus__menu_item_right li {
  margin-right: 0;
  margin-left: 25px;
}

.menu_fix {
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0;
  z-index: 999;
  animation: menu_animate 1s;
  /* background: #0b2c3d; */
  height: 50px;
}

@keyframes menu_animate {
  from {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}

.wsus__mega_menu {
  position: absolute;
  background: #fff;
  width: 100%;
  padding: 20px;
  z-index: 999;
  top: 50px;
  left: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: scaleY(0);
  opacity: 0;
  transform-origin: top;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}

.wsus__mega_menu_colum {
  position: relative;
}

.wsus__mega_menu_colum_text {
  position: absolute;
  top: 20px;
  left: 20px;
}

.wsus__mega_menu_colum_text h5 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}

.wsus__mega_menu_colum_text h5 span {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #dc3545;
}

.wsus__mega_menu_colum_text h3 {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 700;
}

.wsus__mega_menu_colum_text .common_btn {
  line-height: 0;
  padding: 20px 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.wsus__mega_menu_colum h4,
.wsus_menu_cat_droapdown h5 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 5px;
  border-bottom: 1px solid #cae5fc;
  padding-bottom: 10px;
}

.wsis__mega_menu_item {
  line-height: 35px;
}

.wsis__mega_menu_item li {
  margin: 0;
  width: 100%;
}

.wsis__mega_menu_item li a {
  color: #575757 !important;
  display: block;
  width: 100%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  font-size: 15px;
  font-weight: 400;
}

.wsus__menu_item li:hover .wsus__mega_menu {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}


.wsus__relative_li {
  position: relative;
}

.wsus__menu_droapdown {
  position: absolute;
  top: 50px;
  left: 0;
  background: #fff;
  z-index: 999;
  width: 215px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  line-height: 35px;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__menu_droapdown>li {
  margin: 0;
  width: 100%;
  position: relative;
}

.wsus__menu_droapdown>li>a {
  color: #575757 !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  padding: 0px 20px;
}

.wsus__menu_droapdown>li:last-child a {
  border: none;
}

.wsus__menu_droapdown>li>a>i {
  font-size: 10px;
  margin-right: 5px;
  font-weight: 900;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__menu_droapdown>li:hover i {
  margin-right: 0;
}

.wsus__menu_item li:hover .wsus__menu_droapdown {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.wsus__menu_droapdown2 {
  width: 220px;
  position: absolute;
  top: -20px;
  left: 110%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__menu_droapdown2 li {
  width: 100%;
}

.wsus__menu_droapdown2 li a {
  color: #575757;
  width: 100%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__menu_droapdown2>li>a:hover {
  color: #007aff;
}

.wsus__menu_droapdown>li:hover .wsus__menu_droapdown2 {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

/*=======================
	MAIN MENU END
========================*/

/*=========================
		POP UP START
==========================*/
#wsus__pop_up {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.wsus__pop_up_center {
  width: 800px;
  padding: 80px 40px;
  background: url(../images/popup_img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px 0px;
  border-radius: 10px;
  overflow: hidden;
}

.wsus__pop_up_text {
  width: 50%;
}

.wsus__pop_up_text img {
  width: 150px;
  border-radius: 10px;
}

.wsus__pop_up_text #cross {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  line-height: 36px;
  background: #e18e96;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__pop_up_text h5 {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.wsus__pop_up_text h5 span {
  color: #e18e96;
  font-size: 35px;
  font-weight: 700;
  margin-left: 10px;
}

.wsus__pop_up_text h2 {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 20px;
}

.wsus__pop_up_text p {
  margin-bottom: 20px;
}

.wsus__pop_up_text form {
  position: relative;
  margin-bottom: 15px;
}

.wsus__pop_up_text form .news_input {
  border: 1px solid#e18e96;
  padding: 10px;
  color: #353535;
  border-radius: 30px;
  width: 100%;
}

.wsus__pop_up_text form .common_btn {
  position: absolute;
  top: 2px;
  right: 2px;
  border: 0;
  border-radius: 30px;
  padding: 10.5px 25px;
  outline: none;
}

.wsus__pop_up_text .form-check {
  margin: 0;
}

.wsus__pop_up_text .form-check label {
  color: #797979;
}

.wsus__pop_up_center:hover .pop_up_text #cross {
  color: #ed1b35;
}

.wsus__pop_up_text #cross:hover {
  background: red;
}

/*=========================
		POP UP END
===========================*/

/*=========================
PRODUCT MODAL VIEW START
===========================*/

.product_popup_modal .modal-dialog {
  min-width: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  -webkit-transform: translate(-50%, -50%) !important;
  -moz-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  -o-transform: translate(-50%, -50%) !important;
  margin: 0;
}

.product_popup_modal .modal-body {
  height: 500px;
  overflow-y: scroll;
  scrollbar-width: none;
  padding-left: 25px;
}

.modal_slider_img {
  margin-right: 10px;
}

.product_popup_modal .display {
  margin-top: 0 !important;
}

.product_popup_modal .btn-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 25px;
  height: 25px;
  background: red;
  color: #fff;
  opacity: 1;
  outline: none;
  line-height: 25px;
  z-index: 999;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.product_popup_modal .btn-close:hover {
  background: #e18e96;
}

.report_modal .btn-close {
  top: 14px;
  right: 10px;
  padding: 5px;
}

.product_popup_modal .btn-close:focus {
  box-shadow: none;
}

.wsus__quick_view_img {
  position: relative;
}

.wsus__quick_view_img .modal-body {
  padding: 25px;
}

.modal_slider_img img {
  border-radius: 5px;
  object-fit: cover;
}

.modal_slider .prv_arr,
.modal_slider .nxt_arr {
  position: absolute;
  top: 50%;
  left: 5px;
  background: #e18e96;
  width: 35px;
  height: 35px;
  z-index: 1;
  transform: translateY(-50%);
  line-height: 35px;
  text-align: center;
  padding: 0;
  color: #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-size: 15px;
  cursor: pointer;
}

.modal_slider .nxt_arr {
  left: auto;
  right: 15px;
}

/*=========================
PRODUCT MODAL VIEW END
===========================*/

/*======================
	BANNER PART START
========================*/
.wsus__banner_content {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
}

.wsus__banner_menu_cat_item {
  position: static;
  line-height: 24.6px;
}

.wsus__banner_menu_cat_item li a {
  padding: 13px 30px;
}

.wsus__single_slider {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 160px 100px;
  width: 100%;
}

.wsus__single_slider_text h3 {
  color: #e18e96;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 25px;
}

.wsus__single_slider_text h1 {
  text-transform: capitalize;
  font-weight: 800;
  color: #333;
  margin: 10px 0px;
  font-size: 50px;
}

.wsus__single_slider_text h6 {
  color: #e18e96;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 22px;
}

#wsus__banner .slick-dots {
  position: absolute;
  left: 20px;
  bottom: 30px;
  display: flex;
}

#wsus__banner .slick-dots li button {
  font-size: 0;
  width: 30px;
  height: 8px;
  background: #76c3ff;
  border-radius: 50px;
  margin: 0 5px;
  outline: 0;
  border: none;
}

#wsus__banner .slick-dots li.slick-active button {
  background: #0086ee;
}

/*======================
	BANNER PART END
========================*/

/*======================
	BRAND SLIDER START
========================*/
#wsus__brand_sleder {
  margin-top: 70px;
  border: 1px solid #e5e4e4;
  border-left: 0;
  border-right: 0;
  background: #fff;
  /* box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px; */
}

.wsus__brand_logo {
  margin: 2px 15px;
}

#wsus__brand_sleder .nxt_arr,
#wsus__brand_sleder .prv_arr {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 35px;
  height: 35px;
  background: #e18e96;
  opacity: .5;
  line-height: 35px;
  font-size: 15px;
  text-align: center;
  padding: 0;
  color: #fff;
  z-index: 99;
  border-radius: 50%;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  transform: translateY(-50%);
}

#wsus__brand_sleder .nxt_arr {
  left: auto;
  right: 0;
}

#wsus__brand_sleder .nxt_arr:hover,
#wsus__brand_sleder .prv_arr:hover {
  background: #e18e96;
  opacity: 1;
}

/*======================
	BRAND SLIDER END
========================*/


/*======================
	FLASH SELL START
========================*/
#wsus__flash_sell {
  padding-top: 0px;
}

.wsus__section_header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  align-items: center;
  border-bottom-right-radius: 5px;
}

.wsus__section_header h3 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 25px;
  display: inline;
  padding-bottom: 5px;
}

.wsus__section_header .see_btn {
  margin-bottom: -1px;
}




.wsus__offer_countdown {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.wsus__offer_countdown .end_text {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #e18e96;
  margin-right: 10px;
}

.simply-countdown {
  display: flex;
}

.wsus__section_header .simply-amount {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.wsus__section_header .simply-word {
  color: #fff;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  display: none;
}

.wsus__section_header .simply-days-section,
.wsus__section_header .simply-hours-section,
.wsus__section_header .simply-minutes-section,
.wsus__section_header .simply-seconds-section {
  text-align: center;
  width: 50px;
  height: 30px;
  background: #e18e96;
  margin: 0px 5px;
  border-radius: 3px;
  padding-top: 2px;
}

.wsus__flash_coundown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8e1e77c;
  border-radius: 5px;
  padding: 30px;
}

.wsus__flash_coundown .end_text {
  color: #474344;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 30px;
  margin-right: 30px;
}

.wsus__flash_coundown .common_btn i {
  margin-left: 5px;
}

.wsus__product_item {
  position: relative;
  margin-top: 25px;
  overflow: hidden;
  min-height: 90%;
  border-radius: 12px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
}

.wsus__product_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-color: #d0d0d0;
}

.wsus__product_item .wsus__pro_link {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: block;
  margin-bottom: 25px;
  border-radius: 8px;
  background: #f8e1e7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

/* Removed duplicate .wsus__new class - consolidated with the one at line 9376 */

.wsus__minus {
  position: absolute;
  background: #dc3545;
  width: 45px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  top: 10px;
  right: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  z-index: 1;
}

.wsus__product_item .wsus__pro_link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.wsus__product_item:hover .wsus__pro_link img {
  transform: scale(1.03);
}

.wsus__product_item .wsus__pro_link .img_1 {
  transition: all linear 0.5s;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.wsus__product_item .wsus__pro_link .img_2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all linear 1s;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
}

.wsus__product_item:hover .wsus__pro_link .img_1 {
  opacity: 0;
  visibility: hidden;
}

.wsus__product_item:hover .wsus__pro_link .img_2 {
  opacity: 1;
  visibility: visible;
  transform: scale(1.1);
}

.wsus__single_pro_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;

  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__single_pro_icon li a {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 10px;
  border-radius: 2px;
  color: #e18e96 !important;
  font-size: 14px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  background: #fff;
  border: 1px solid #e18e96 !important;
}

.wsus__product_item:hover .wsus__single_pro_icon {
  opacity: 1;
}

.wsus__single_pro_icon li a:hover {
  color: #fff !important;
  background: #e18e96;
  background: #e18e96;
}

.wsus__product_details {
  padding: 20px !important;
  position: relative;
  background: #fff !important;
  min-height: 150px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible !important;
  border-radius: 0 0 12px 12px;
  flex: 1;
  gap: 4px;
}

.wsus__product_details .wsus__category {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  color: #858484;
  width: 100%;
  margin-bottom: 5px;
}

.wsus__product_details .wsus__pro_name {
  color: #2c3e50 !important;
  text-transform: capitalize;
  font-size: 16px !important;
  font-weight: 500 !important;
  width: 100%;
  margin: 0 0 8px 0 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1.4;
  transition: all 0.3s ease;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  min-height: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wsus__product_details .wsus__pro_name:hover {
  color: #e18e96;
}

/* Price Styles */
.wsus__product_details .wsus__price {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #2c3e50 !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  visibility: visible !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.3;
  min-height: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: auto;
}

.wsus__product_details .wsus__price del {
  color: #95a5a6 !important;
  margin-left: 8px;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: line-through;
}

/* Ensure product card hover effects don't hide content */
.wsus__product_item .wsus__product_details .wsus__pro_name,
.wsus__product_item .wsus__product_details .wsus__price,
.wsus__product_item:hover .wsus__product_details .wsus__pro_name,
.wsus__product_item:hover .wsus__product_details .wsus__price {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  height: auto !important;
  width: 100% !important;
  position: relative !important;
  transform: none !important;
  clip: auto !important;
  overflow: visible !important;
}

.wsus__product_details .wsus__price del {
  color: #ff7676;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
}

.wsus__product_details .wsus__pro_rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
  font-size: 12px;
}

.wsus__product_details .wsus__pro_rating span {
  font-size: 13px;
  text-transform: capitalize;
  color: #7f8c8d;
  margin-left: 6px;
}

.wsus__product_details .wsus__pro_rating i {
  color: #f39c12;
  font-size: 14px;
}

.wsus__product_details .add_cart {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 10px;
  width: 100%;
  text-align: center;
  border-radius: 0;
}

#wsus__flash_sell .wsus__product_item {
  margin: 25px 12px 0px 12px;
}

#wsus__flash_sell .nxt_arr,
#wsus__flash_sell .prv_arr,
#wsus__electronic2 .prv_arr,
#wsus__electronic2 .nxt_arr,
#wsus__electronic .prv_arr,
#wsus__electronic .nxt_arr {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 35px;
  height: 35px;
  background: #e18e96;
  opacity: .5;
  line-height: 35px;
  font-size: 15px;
  text-align: center;
  padding: 0;
  color: #fff;
  z-index: 99;
  border-radius: 50%;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  transform: translateY(-50%);
}

#wsus__flash_sell .nxt_arr,
#wsus__electronic2 .nxt_arr,
#wsus__electronic .nxt_arr {
  left: auto;
  right: 15px;
}

#wsus__flash_sell .nxt_arr:hover,
#wsus__flash_sell .prv_arr:hover,
#wsus__electronic2 .nxt_arr:hover,
#wsus__electronic2 .prv_arr:hover,
#wsus__electronic .nxt_arr:hover,
#wsus__electronic .prv_arr:hover {
  background: #e18e96;
  opacity: 1;
}

/*======================
	FLASH SELL END
========================*/

/*======================
MONTHLY TOP PRODUCT START
========================*/
#wsus__monthly_top {
  margin-top: 60px;
  margin-bottom: -5px;
}

#wsus__monthly_top .wsus__section_header {
  border-bottom-right-radius: 0;
}

.monthly_top_filter button,
.monthly_top_filter2 button {
  background: none;
  border: none;
  text-transform: capitalize;
  color: #353535;
  border-bottom: 2px solid transparent;
  outline: none;
  padding: 2px 10px;
  font-size: 14px;
  border-radius: 3px;
  margin: 0px 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.monthly_top_filter button:last-child {
  margin-right: 0px !important;
}

.monthly_top_filter button:first-child {
  margin-left: 0px !important;
}

.monthly_top_filter button:hover,
.monthly_top_filter button.active,
.monthly_top_filter2 button:hover,
.monthly_top_filter2 button.active {
  color: #fff;
  background: #e18e96 !important;
}

.wsus__monthly_top_banner {
  position: relative;
  width: 100%;
  height: 150px;
  margin-bottom: 25px;
}

.wsus__monthly_top_banner_img {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.wsus__monthly_top_banner_img img {
  height: 100%;
  object-fit: cover;
}

.wsus__monthly_top_banner_img span {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.wsus__monthly_top_banner_text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.wsus__monthly_top_banner_text h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.wsus__monthly_top_banner_text h3 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
}

.wsus__monthly_top_banner_text h3 span {
  color: #dc3545;
  font-weight: 900;
  font-size: 30px;
}

.wsus__monthly_top_banner_text h6 {
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}

#wsus__monthly_top .grid {
  margin-top: 5px;
}

.grid .wsus__hot_deals__single_img {
  width: 35%;
  height: 100%;
}

.grid .wsus__hot_deals__single_img img {
  height: 100%;
  object-fit: cover;
}

.grid .wsus__hot_deals__single_text {
  width: 65%;
  padding-left: 20px;
}

#wsus__hot_deals .nxt_arr,
#wsus__hot_deals .prv_arr {
  position: absolute;
  top: -25px;
  right: 42px;
  width: 25px;
  height: 25px;
  background: #e18e96;
  line-height: 24px;
  font-size: 15px;
  text-align: center;
  padding: 0;
  color: #fff;
  z-index: 99;
  border-radius: 3px;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

#wsus__hot_deals .nxt_arr:hover,
#wsus__hot_deals .prv_arr:hover {
  background: #045c9f;
}

/*======================
MONTHLY TOP PRODUCT END
========================*/

/*======================
ELECTRONIC PART START
========================*/
#wsus__electronic {
  margin-top: 60px;
  margin-bottom: 60px;
}

#wsus__electronic2 .wsus__product_item,
#wsus__electronic .wsus__product_item {
  margin: 25px 12px 0px 12px;
}

/* Large screen optimization */
@media (min-width: 1200px) {
  .wsus__product_item .wsus__pro_link {
    height: 320px;
  }
  
  .wsus__product_details {
    min-height: 160px;
  }
  
  .wsus__product_details .wsus__pro_name {
    font-size: 14px !important;
  }
  
  .wsus__product_details .wsus__price {
    font-size: 16px !important;
  }
}

/* Responsive breakpoints matching new arrival card slider */
@media (min-width: 1601px) {
  .wsus__product_item .wsus__pro_link {
    height: 340px;
    padding: 6px;
  }
}

@media (min-width: 1401px) and (max-width: 1600px) {
  .wsus__product_item .wsus__pro_link {
    height: 330px;
    padding: 6px;
  }
}

@media (min-width: 1025px) and (max-width: 1400px) {
  .wsus__product_item .wsus__pro_link {
    height: 325px;
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .wsus__product_item .wsus__pro_link {
    height: 300px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .wsus__product_item .wsus__pro_link {
    height: 280px;
    padding: 12px;
  }
}

/* Tablet optimization */
@media (min-width: 576px) and (max-width: 991px) {
  .wsus__product_item {
    margin-top: 30px;
    border-radius: 12px;
  }
  
  .wsus__product_item .wsus__pro_link {
    height: 270px;
  }
  
  .wsus__product_details {
    padding: 25px 20px !important;
    min-height: 160px;
  }
  
  .wsus__product_details .wsus__pro_name {
    font-size: 14px !important;
    margin: 0 0 8px 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .wsus__product_details .wsus__price {
    font-size: 22px !important;
    margin: 0 0 8px 0 !important;
  }
  
  .wsus__product_details .wsus__category {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .wsus__product_details .wsus__pro_rating {
    margin: 0 0 12px 0;
  }
  
  #wsus__electronic2 .wsus__product_item,
  #wsus__electronic .wsus__product_item {
    margin: 30px 15px 0px 15px;
  }
  
  /* Improve add to cart button for tablets */
  .wsus__product_details .add_cart {
    padding: 15px 25px;
    font-size: 14px;
  }
}

/* Responsive Product Items */
@media (max-width: 767px) {
  .wsus__product_item {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 480px) {
    .wsus__product_item {
      max-width: 340px;
    }
  }
}

/* Mobile optimization for product items */
@media (max-width: 575.98px) {

  /* Center the product items container */
  .row {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  /* Style for product items */
  #wsus__electronic2 .wsus__product_item,
  #wsus__electronic .wsus__product_item,
  .wsus__product_item {
    margin: 20px auto;
    width: 100%;
    max-width: 360px;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
  }

  .wsus__product_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
  }

  
  /* Center align the product link and image */
  .wsus__product_item a.wsus__pro_link {
    margin: 0 auto 20px;
    display: block;
    text-align: center !important;
    padding-bottom: 10px;
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
  }
  
  /* Adjust column padding and centering */
  .col-xl-4,
  .col-sm-6 {
    padding: 0;
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  
  
  /* Make images responsive and centered */
  .wsus__product_item img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
    border-radius: 8px;
  }

  /* Adjust product details for mobile */
  .wsus__product_details {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    gap: 4px;
  }

  /* Product name styling for mobile */
  .wsus__product_details .wsus__pro_name {
    font-size: 16px !important;
    margin: 0 0 4px 0 !important;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #2c3e50 !important;
    font-weight: 500 !important;
  }
  
  .wsus__product_details .wsus__price {
    font-size: 18px !important;
    margin: 0 0 6px 0 !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
  }

  .wsus__product_details .wsus__category {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .wsus__product_details .wsus__pro_rating {
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 2px;
  }
  
  .wsus__product_details .wsus__pro_rating i {
    color: #f39c12;
    font-size: 14px;
  }
  
  .wsus__product_details .wsus__pro_rating span {
    color: #7f8c8d;
    margin-left: 6px;
  }

  /* Adjust sidebar spacing */
  .wsus__product_sidebar {
    margin-bottom: 30px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
    
  /* Improve sidebar accordion for mobile */
  .accordion-button {
    padding: 20px 15px;
    font-size: 17px;
  }
  
  .form-check {
    margin-bottom: 25px;
  }
  
  .form-check label {
    font-size: 16px;
    padding: 8px 0;
  }
  
  .wsus__product_sidebar ul li a {
    font-size: 16px;
    padding: 10px 0;
  }

  /* Optimize transitions */
  .wsus__product_item a.wsus__pro_link,
  .wsus__product_details .wsus__pro_name,
  .wsus__product_details .add_cart {
    transition: var(--transition);
  }

  /* Improve add to cart button */
  .wsus__product_details .add_cart {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 30px;
    width: calc(100% + 40px);
    text-align: center !important;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #e18e96;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin: 0;
    border-radius: 0;
  }
  /* Force flex centering on the button */
  .wsus__product_details .add_cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .wsus__product_details .add_cart:hover {
    background: #ff66ac;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 18px rgba(225, 142, 150, 0.4);
  }
  
  /* Price ranger mobile improvements */
  .price_ranger .price_ranger_tk {
    gap: 10px;
    padding: 15px 0;
    justify-content: space-between;
  }
  
  /* Ensure product name has proper spacing on mobile */
  .wsus__product_details .wsus__pro_name {
    font-size: 16px !important;
    margin: 0 0 4px 0 !important;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #2c3e50 !important;
    font-weight: 500 !important;
  }
  
  .price_ranger .price_ranger_tk button {
    width: auto;
    padding: 8px 12px;
    font-size: 14px;
    min-width: 80px;
  }
  
  .price_ranger .price_ranger_tk output {
    font-size: 16px;
    font-weight: 700;
  }
  
}

/* Variant section styling for all screens */
.variants-section {
  margin: 2px 0 4px 0;
}

.size-tag {
  font-size: 10px;
  color: #7f8c8d;
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  min-width: 20px;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.2;
}

.size-tag:hover {
  border-color: #e18e96;
}

.size-tag.active {
  background: #e18e96 !important;
  border-color: #e18e96 !important;
  color: white !important;
}

.color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
  flex-shrink: 0;
  display: inline-block;
  background-color: #ddd; /* Fallback color */
}

.color-swatch:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.color-swatch.active {
  border-color: #e18e96 !important;
  box-shadow: 0 0 0 2px #f8e1e7 !important;
}

/* White color border fix */
.color-swatch[data-bg-color="white"] {
  box-shadow: 0 0 0 1px #ccc;
}

/* Ensure size and color options are displayed side by side */
.variants-section .d-flex.align-items-center {
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.size-options,
.color-options {
  display: flex;
  align-items: center;
}


/* Profile Section */
.profile-section {
  padding: 30px 20px;
  background-color: #f8f9fa;
  margin-left: 280px;
  /* Match sidebar width */
  min-height: 100vh;
  transition: all 0.3s ease;
  width: calc(100% - 280px);
  /* Calculate width based on sidebar */
}

/* Adjust for when sidebar is toggled */
body.sidebar-toggled .profile-section {
  margin-left: 0;
  width: 100%;
}

/* Adjust container width */
.profile-section .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

/* Dashboard Sidebar Styling */
.dashboard-sidebar .sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-sidebar .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-sidebar .menu-item {
  margin-bottom: 5px;
  position: relative;
}

.dashboard-sidebar .menu-link {
  display: flex;
  align-items: center;
  padding: 12px 25px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  font-size: 15px;
  border-left: 3px solid transparent;
}

.dashboard-sidebar .menu-link:hover,
.dashboard-sidebar .menu-item.active .menu-link {
  background-color: var(--light-bg);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

.dashboard-sidebar .menu-link i {
  width: 20px;
  text-align: center;
  margin-right: 10px;
  font-size: 16px;
  color: var(--primary-color);
}

/* Sidebar Toggle Button */
.sidebar-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-color);
  cursor: pointer;
  padding: 5px;
  display: none;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
  }

  .dashboard-sidebar.show {
    transform: translateX(0);
  }

  .sidebar-toggle {
    display: block;
  }

  .close-sidebar {
    display: block;
  }

  .profile-section {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .profile-section {
    margin-left: 0;
    width: 100%;
    padding: 20px 15px;
  }

  .profile-card {
    margin-bottom: 20px;
  }

  .profile-form .form-group {
    margin-bottom: 1.25rem;
  }
}

/* Make sure content doesn't get hidden behind fixed elements */
.dashboard_content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-top: 20px;
}

/* Adjust header spacing */
.profile-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

/* Ensure form elements are properly spaced */
.profile-form .form-group {
  margin-bottom: 1.5rem;
}

/* Adjust card layout for better mobile display */
.profile-card {
  margin-bottom: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Make sure buttons are properly sized on mobile */
.btn {
  padding: 5px 10px;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Adjust image container for mobile */
.profile-image-container {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

/* Ensure form controls are properly sized */
.form-control {
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

/* Adjust input group text */
.input-group-text {
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #495057;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.profile-header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.profile-header h3 {
  color: #2c3e50;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile-header p {
  color: #6c757d;
  margin-bottom: 0;
}

.profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.profile-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-section-title {
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.profile-section-title i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Profile Image */
.profile-image-wrapper {
  text-align: center;
  margin: 0 auto;
  max-width: 200px;
}

.profile-image-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-image-container:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.image-upload-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}

.profile-image-container:hover .image-upload-overlay {
  opacity: 1;
}

.image-upload-overlay i {
  font-size: 24px;
  margin-bottom: 5px;
}

/* Form Styles */
.profile-form .form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
}

.profile-form .input-group-text {
  background-color: #f8f9fa;
  border-right: none;
  color: var(--primary-color);
}

.profile-form .form-control {
  border-left: none;
  padding: 12px 15px;
  height: auto;
  border-color: #e9ecef;
  transition: all 0.3s ease;
}

.profile-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 142, 150, 0.25);
  border-color: var(--primary-color);
}

.profile-form .form-control:focus+.input-group-text {
  border-color: var(--primary-color);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #d47d85;
  border-color: #d47d85;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(225, 142, 150, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .profile-card {
    margin-bottom: 20px;
  }

  .profile-image-container {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }

  .profile-form .form-group {
    margin-bottom: 1.25rem;
  }

}

/* Error Messages */
.text-danger {
  color: #e74c3c !important;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

/* Password Strength Indicator */
.password-strength {
  height: 4px;
  background: #eee;
  margin-top: 5px;
  border-radius: 2px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  background: #e74c3c;
  transition: width 0.3s ease;
}

/* Form Validation */
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #e74c3c;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e74c3c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e74c3c' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Success Message */
.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
}

.alert-success:before {
  content: '✓';
  margin-right: 10px;
  font-weight: bold;
}

.copyright p {
  margin: 0;
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.8;
}

/* RTL Support for Arabic */
[dir="rtl"] .copyright {
  text-align: center !important;
}

/*======================
ELECTRONIC PART  END
========================*/

/*======================
HOME BLOGS START
========================*/
.home_blogs {
  margin-top: 20px;
}

/*======================
HOME BLOGS END
========================*/

/*======================
	SINGLE BANNER START
========================*/
#wsus__single_banner {
  padding-top: 70px;
}

.wsus__single_banner_content {
  position: relative;
}

.wsus__single_banner_img {
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.wsus__single_banner_text {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
}

.wsus__single_banner_text h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.wsus__single_banner_text h6 span {
  color: #e18e96;
  font-weight: 900;
  font-size: 30px;
  margin-left: 10px;
}

.wsus__single_banner_text h3 {
  text-transform: capitalize;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  margin: 7px 0px 15px 0px;
}

.single_banner_2 h6,
.single_banner_2 h3,
.single_banner_2 .shop_btn {
  color: #353535;
  border-color: #353535;
}

.single_banner_2 .shop_btn:hover {
  color: #fff;
  background: #e18e96;
  background: #e18e96;
}

/*======================
	SINGLE BANNER END
========================*/

/*======================
	HOT DEALS START
========================*/
#wsus__hot_deals {
  padding-top: 0px;
}

.wsus__hot_deals_offer {
  overflow: hidden;
  border-radius: 5px;
  margin: 25px 12px 0px 12px;
  margin-bottom: 5px;
  position: relative;
  height: 400px;
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__hot_deals_img {
  width: 50%;
  float: left;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 100%;
}

.wsus__hot_deals_offer .simply-days-section,
.wsus__hot_deals_offer .simply-hours-section,
.wsus__hot_deals_offer .simply-minutes-section,
.wsus__hot_deals_offer .simply-seconds-section {
  text-align: center;
  padding: 0px 10px;
}

.wsus__hot_deals_offer .simply-amount {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: -8px;
}

.wsus__hot_deals_offer .simply-word {
  color: #fff;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
}

.wsus__hot_deals_img .simply-countdown {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 3px;
  width: 100%;
  justify-content: space-around;
}

.wsus__hot_deals_text {
  width: 50%;
  float: left;
  padding-left: 20px;
}

.wsus__hot_deals_text .wsus__hot_title {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  display: block;
  font-weight: 500;
}

.wsus__hot_title:hover {
  color: #e18e96;
}

.wsus__hot_deals_text .wsus__rating {
  color: #ff9933;
  font-size: 13px;
}

.wsus__hot_deals_text .wsus__rating span {
  font-size: 13px;
  text-transform: capitalize;
}

.wsus__hot_deals_proce {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0px 10px 0px;
}

.wsus__hot_deals_proce del {
  color: #ff0000b5;
}

.wsus__hot_deals_text .wsus__details {
  font-size: 15px;
}

.wsus__hot_deals_text ul {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.wsus__hot_deals_text ul li:nth-child(2) a,
.wsus__hot_deals_text ul li:nth-child(3) a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  margin-left: 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__hot_deals_text ul li:nth-child(2) a:hover,
.wsus__hot_deals_text ul li:nth-child(3) a:hover {
  color: #fff;
  background: #e18e96;
  background: #e18e96;
}

.wsus__hot_deals__single {
  /* border: 1px solid #eee; */
  overflow: hidden;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  /* margin: 25px 12px 0px 12px; */
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__hot_deals__single_img {
  width: 25%;
  float: left;
  border-right: 1px solid #eee;
}

.wsus__hot_deals__single_text {
  width: 75%;
  float: left;
  margin-top: 5px;
  padding-left: 25px;
}

.wsus__hot_deals__single_text h5 {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__hot_deals__single_text .wsus__rating {
  font-size: 13px;
  color: #ff9933;
  margin: 2px 0px 0px 0px;
}

.wsus__hot_deals__single_text .wsus__tk {
  color: #353535;
  font-weight: 600;
}

.wsus__hot_deals__single_text .wsus__tk del {
  color: #aaa;
  font-weight: 400;
  margin-left: 10px;
}

.wsus__hot_deals__single:hover h5 {
  color: #e18e96;
}

.wsus__hot_large_item {
  margin-top: 55px;
}

.wsus__hot_large_item .wsus__section_header {
  border-radius: 0;
}

.wsus__hot_small_item {
  margin-top: 50px;
}

/*======================
	HOT DEALS END
========================*/

/*======================
	LARGE BANNER START
========================*/
#wsus__large_banner {
  padding-top: 65px;
}

.wsus__large_banner_content {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border-radius: 5px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.wsus__large_banner_content_overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 50px;
}

.wsus__large_banner_text h3 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 800;
  font-size: 40px;
}

.wsus__large_banner_text h5 {
  color: #dc3545;
  font-size: 30px;
  font-weight: 900;
  text-transform: capitalize;
}

.wsus__large_banner_text p {
  color: #fff;
  margin: 10px 0px 15px 0px;
}

.wsus__large_banner_text_right {
  text-align: right;
}

.wsus__large_banner_text_right h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 25px;
}

/*======================
	LARGE BANNER  END
========================*/

/*======================
WEEKLY BEST ITEM START
========================*/
#wsus__weekly_best {
  margin-top: 67px;
}

#wsus__weekly_best .wsus__section_header h3 {
  font-size: 20px;
}

.wsus__weekly_best .weekly_best {
  position: relative;
}

#wsus__weekly_best .nxt_arr,
#wsus__weekly_best .prv_arr {
  position: absolute;
  top: -30px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: #e18e96;
  line-height: 32px;
  font-size: 15px;
  text-align: center;
  padding: 0;
  color: #fff;
  z-index: 99;
  border-radius: 50%;
  opacity: .5;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  /* -webkit-border-radius: 3px; */
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

#wsus__weekly_best .prv_arr {
  right: 45px;
}

#wsus__weekly_best .nxt_arr:hover,
#wsus__weekly_best .prv_arr:hover,
.home_blogs .nxt_arr:hover,
.home_blogs .prv_arr:hover {
  background: #045c9f;
  opacity: 1;
}

.weekly_best .wsus__hot_deals__single {
  margin: 20px 12px 0px 12px;
}

/*======================
WEEKLY BEST ITEM END
========================*/

/*======================
HOME SERVOCES START
========================*/
#wsus__home_services {
  margin-top: 65px;
}

.wsus__home_services_single i {
  color: #e18e96;
  font-size: 30px;
  margin-bottom: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__home_services_single h5 {
  font-size: 17px;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.wsus__home_services_single p {
  font-size: 14px;
}

.wsus__home_services_single:hover h5 {
  color: #e18e96;
}

.wsus__home_services_single:hover i {
  color: #353535;
}

/*======================
	HOME SERVOCES  END
========================*/

/*======================
	HOME BLOGS START
========================*/
#home_blogs {
  padding-top: 65px;
}

.home_blog_slider .wsus__single_blog {
  margin: 25px 12px 0px 12px;
  width: auto;
}

.home_blogs .nxt_arr,
.home_blogs .prv_arr {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 35px;
  height: 35px;
  background: #2a9df5;
  opacity: .5;
  line-height: 35px;
  font-size: 15px;
  text-align: center;
  padding: 0;
  color: #fff;
  z-index: 99;
  border-radius: 50%;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  transform: translateY(-50%);
}

.home_blogs .prv_arr {
  right: 15px;
  left: auto;
}

/*======================
	HOME BLOGS END
========================*/

/*======================
	SUBSCRIBE PART START
========================*/
#wsus__subscribe {
  margin-top: 70px;
  background: #0b2c3d;
  padding: 70px 0px;
}

.wsus__subd_text h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.wsus__subd_text p {
  color: #fff;
}

.wsus__subs_form {
  position: relative;
  width: 100%;
  height: 100%;
}

.wsus__subs_form form {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.wsus__subs_form form input {
  width: 100%;
  padding: 17px 20px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  font-weight: 400;
}

.wsus__subs_form form button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  width: auto;
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/*======================
	SUBSCRIBE PART END
========================*/

/*======================
SCROLL BUTTON START
========================*/
.wsus__scroll_btn {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  right: 25px;
  bottom: 10px;
  font-size: 16px;
  position: fixed;
  cursor: pointer;
  z-index: 99;
  display: none;
  background: #353535;
  border-radius: 50%;
  animation: move linear 0.8s infinite alternate;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__scroll_btn:hover {
  color: #fff;
  background: rgb(255, 102, 172);
}

/*======================
SCROLL BUTTON  END
========================*/


/*======================
BREADCRUMB START
========================*/
#wsus__breadcrumb {
  background: url(../images/breadcrumb_bg.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.wsus_breadcrumb_overlay {
  background: #f8e1e794;
  padding: 50px 0px;
}

#wsus__breadcrumb h4 {
  text-transform: capitalize;
  color: #474344;
  font-size: 30px;
  font-weight: 500;
}

#wsus__breadcrumb ul {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

#wsus__breadcrumb ul li a {
  position: relative;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 400;
  color: #e4007c;
  margin-right: 40px;
}

#wsus__breadcrumb ul li:last-child a {
  margin: 0;
  color: #e4007c;
}

#wsus__breadcrumb ul li:last-child a::after {
  display: none;
}

#wsus__breadcrumb ul li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  position: absolute;
  content: "\f138";
  top: 1px;
  right: -25px;
  color: #cc3366;
  font-size: 14px;
  border: none;
}

/*======================
BREADCRUMB END
========================*/

/*======================
PPRODUCT PAGE START
========================*/
#wsus__product_page {
  padding-top: 70px;
}

.wsus__pro_page_bammer {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 70px;
}

.wsus__pro_page_bammer img {
  object-fit: cover;
  height: 100%;
}

.wsus__pro_page_bammer_text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.wsus__pro_page_bammer_text_center {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  border-radius: 5px;
}

.wsus__pro_page_bammer_text_center p {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  background: #ffffff3d;
  padding: 15px 15px 20px 15px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 15px;
}

.wsus__pro_page_bammer_text_center p span {
  font-size: 40px;
  color: #ff0018;
  font-weight: 700;
}

.wsus__pro_page_bammer_text_center h5 {
  color: #fff;
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 600;
}

.wsus__pro_page_bammer_text_center h3 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 35px;
  width: 100%;
  margin: 10px 0px 15px 0px;
}
.wsus__pro_page_bammer_text_center .add_cart {
  padding: 15px 20px;
  font-size: 15px;
}
.wsus__sidebar_filter {
  background: #e18e96;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 15px;
}
.wsus__sidebar_filter p {
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0;
}
.wsus__sidebar_filter .wsus__filter_icon {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  text-align: center;
  line-height: 30px;
  position: relative;
}
.wsus__sidebar_filter .wsus__filter_icon #minus,
.wsus__sidebar_filter .wsus__filter_icon #plus {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 20px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.wsus__sidebar_filter .wsus__filter_icon #plus {
  opacity: 1;
}
.wsus__product_sidebar.show_filter {
  height: auto;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  opacity: 1;
}
.show_plus {
  opacity: 0 !important;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}
.wsus__product_sidebar .accordion-item {
  /* margin-top: 0; */
  /* margin-bottom: 20px; */
  margin: 0;
}
.wsus__product_sidebar {
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 20px;
  margin-bottom: 30px;
  min-width: 280px;
}
.wsus__product_sidebar .accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  margin-top: 15px;
}
.accordion-button:not(.collapsed) {
  color: #353535;
  background: none;
}
.accordion-button.collapsed {
  border-top: 1px solid #fff;
}
.accordion-button {
  padding: 18px 15px;
  font-size: 16px;
  color: #353535 !important;
  border: none;
  background: #F8E1E7 !important;
  text-transform: capitalize;
  font-weight: 600;
}
.accordion-button::after {
  content: '+';
  background-image: none;
  width: auto;
  height: auto;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-button:not(.collapsed)::after {
  content: '-';
  background-image: none;
  transform: none;
}
.form-check {
  margin-bottom: 20px;
}
.form-check input {
  border-radius: 0 !important;
}
.form-check-input:checked {
  background-color: #e18e96;
  background: #e18e96;
}
.form-check label {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  width: 100%;
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  padding: 5px 0;
}
.form-check label:hover {
  color: #e18e96;
}
.form-check-input:focus {
  box-shadow: none;
}
.wsus__product_sidebar ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #353535;
  width: 100%;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  padding: 8px 0;
  display: block;
}
.wsus__product_sidebar ul li:last-child a {
  margin-bottom: 0px;
}
.wsus__product_sidebar ul li a:hover {
  color: #e18e96;
}
.price_ranger label {
  width: 100%;
}
.price_ranger label input {
  width: 100%;
}
.price_ranger .price_ranger_tk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.price_ranger .price_ranger_tk button {
  padding: 8px 15px;
  text-transform: capitalize;
  font-weight: 500;
  border: none;
  outline: none;
  background: #e18e96;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 80px;
  text-align: center;
  margin-right: 10px;
}
.price_ranger .price_ranger_tk button:hover {
  background: #ff66ac;
  transform: translateY(-2px);
}
.price_ranger .price_ranger_tk button.reset {
  background: #6c757d;
}
.price_ranger .price_ranger_tk button.reset:hover {
  background: #5a6268;
}
.price_ranger .price_ranger_tk output {
  color: #353535;
  font-weight: 600;
  font-size: 16px;
}
.wsus__coustom_price .add_cart {
  border: none;
  outline: none;
  font-size: 16px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}
.accordion-body .form-check:last-child {
  margin-bottom: 0;
}
.wsus__product_topbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  border-radius: 5px;
}
.wsus__product_topbar_left {
  display: flex;
}
.wsus__product_topbar_left #v-pills-tab button {
  margin-right: 10px;
  background: #fff;
  border: 1px solid #eee;
  color: #e18e96;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  outline: none;
  border-radius: 50%;
  /* Changed from 540% to 50% for perfect circle */
  width: 52px;
  height: 52px;
  display: flex;
  /* Added */
  align-items: center;
  /* Added */
  justify-content: center;
  /* Added */
  padding: 0;
  /* Already present */
  line-height: normal;
  /* Changed from 52px */
}
.wsus__product_topbar_left #v-pills-tab button.active {
  background: #e18e96;
  color: #fff;
  background: #e18e96;
}
.wsus__product_topbar .select2-container--default .select2-selection--single {
  border-radius: 30px;
  width: 200px;
}
.wsus__topbar_select {
  display: flex;
}
#pagination,
#pagination2 {
  margin-top: 30px;
}

#pagination nav ul {
  justify-content: center;
}
#pagination nav ul li a,
#pagination2 nav ul li a {
  width: 35px;
  height: 35px;
  padding: 0;
  text-align: center;
  line-height: 35px;
  font-size: 13px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-radius: 50%;
  border: 1px solid#e18e96;
  margin-right: 10px;
}
#pagination nav ul li a i,
#pagination2 nav ul li a i {
  font-size: 12px;
}
#pagination nav ul li a.page_active,
#pagination nav ul li a:hover,
#pagination2 nav ul li a.page_active,
#pagination2 nav ul li a:hover {
  background: #e18e96;
  color: #fff;
}
#pagination .page-link:focus,
#pagination2 .page-link:focus {
  box-shadow: none;
}
.wsus__list_view .wsus__pro_link {
  width: 40%;
  height: 343px;
  float: left;
  border-right: 1px solid #eee;
  border-bottom: none;
}
.wsus__list_view .wsus__product_details {
  width: 60%;
  float: left;
  height: 100%;
}
.wsus__list_view:hover .wsus__product_details .wsus__price {
  opacity: 1;
  visibility: visible;
}
.wsus__list_view .wsus__single_pro_icon {
  opacity: 1;
  visibility: visible;
  position: static;
  display: flex;
}
.wsus__list_view:hover .wsus__single_pro_icon {
  right: 0;
  opacity: 1;
}
.wsus__list_view .wsus__product_details .add_cart {
  position: static;
  padding: 0px 19px;
  font-size: 16px;
  width: auto;
  height: 40px;
}
.wsus__list_view .wsus__single_pro_icon li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 0px;
  border-radius: 3px;
  font-size: 16px;
  margin-right: 10px;
  text-align: center;
}
.wsus__list_view .wsus__product_details .wsus__pro_rating {
  font-size: 16px;
  color: #aaa;
}
.wsus__list_view .wsus__product_details .wsus__pro_name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 5px;
}
.wsus__list_view .wsus__product_details .wsus__price {
  font-size: 16px;
}
.wsus__list_view .wsus__product_details .wsus__price del {
  font-size: 16px;
  font-weight: 500;
}
.list_description {
  margin: 15px 0px 15px 0px;
}
.wsus__list_view .wsus__new {
  left: auto;
  right: 10px;
  top: 45px;
}
.preloader {
  width: 100%;
  height: 80vh;
  background: #fff;
  position: relative;
  z-index: 99;
  border: 1px solid #eee;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.preloader img {
  width: 350px !important;
  height: 350px !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
/*======================
PPRODUCT PAGE END
========================*/

/*======================
PRODUCT DETAILS START
========================*/
#wsus__product_details {
  padding-top: 70px;
}
.wsus__details_bg {
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  padding: 20px;
  border-radius: 5px;
}
.wsus__pro_det_video {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
  width: 30px !important;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #e18e96;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}
.wsus__pro_det_video:hover {
  background: #2a9df5cb;
  color: #fff;
}
.wsus__pro_details_text .title {
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  color: #333;
  display: block;
  overflow: hidden;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}
.wsus__stock_area {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
}
.wsus__stock_area .in_stock {
  background: #ff55a3;
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  margin-right: 5px;
}
.wsus__pro_details_text .brand_model {
  display: inline-block;
  margin-right: 20px;
}
.wsus__pro_details_text .brand_model span {
  text-transform: capitalize;
  color: #333;
}
.wsus__pro_details_text .review {
  color: #ff9f00;
  margin-bottom: 10px;
}
.wsus__pro_details_text .review span {
  text-transform: capitalize;
  position: relative;
  padding-left: 30px;
}
.wsus__pro_details_text .review span::after {
  position: absolute;
  content: "";
  background: #797979;
  width: 2px;
  height: 70%;
  left: 14px;
  top: 15%;
}
.wsus__pro_details_text .review span::before {
  position: absolute;
  content: "";
  background: #797979;
  width: 2px;
  height: 70%;
  left: 10px;
  top: 15%;
}
.wsus__pro_details_text .description {
  margin: 10px 0px 15px 0px;
  font-size: 15px;
}
.wsus__pro_details_text h4 {
  font-size: 30px;
  font-weight: 700;
  color: #e18e96;
  margin: 10px 0px 5px 0px;
  display: flex;
  align-items: center;
}
.wsus__pro_details_text h4 del {
  color: red;
  font-size: 18px;
  margin-left: 10px;
}
.wsus_pro_hot_deals {
  border-radius: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.wsus_pro_hot_deals h5 {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
}
.wsus_pro_hot_deals .simply-countdown.simply-countdown-one {
  display: flex;
}
.wsus_pro_hot_deals .simply-days-section,
.wsus_pro_hot_deals .simply-hours-section,
.wsus_pro_hot_deals .simply-minutes-section,
.wsus_pro_hot_deals .simply-seconds-section {
  padding: 0;
  margin-left: 10px;
}
.wsus_pro_hot_deals .simply-amount {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: block;
  background: #e18e96;
  width: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px dashed#e18e96;
  border-radius: 2px;
}

.wsus_pro_hot_deals .simply-word {
  display: none;
}
.wsus_pro_det_color,
.wsus_pro__det_size,
.share_link,
.wsus__quentity,
.wsus__button_area,
.wsus__pro_det_share,
.wsus__selectbox {
  display: flex;
  margin: 20px 0px;
  align-items: center;
  flex-wrap: wrap;
}
.wsus_pro_det_color h5,
.wsus_pro__det_size h5,
.share_link h5,
.wsus__quentity h5,
.wsus__button_area h5,
.wsus__pro_det_share h5,
.wsus__quentity h5,
.wsus__selectbox h5 {
  text-transform: capitalize;
  font-weight: 400;
  width: 90px;
  font-size: 16px;
}
.wsus_pro_det_color ul,
.wsus_pro__det_size ul,
.share_link ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.wsus__selectbox {
  display: block;
}
.report_modal .modal-body {
  height: auto !important;
}
.wsus_pro_det_color ul li a {
  margin-right: 7px;
  display: block;
  color: #fff;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
}
.wsus_pro_det_color ul li a i {
  opacity: 0;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.wsus_pro_det_color ul li a:hover i {
  opacity: 1;
}

.wsus_pro_det_color .blue {
  background: #1c93cb;
}

.wsus_pro_det_color .orange {
  background: #ca6d00;
}

.wsus_pro_det_color .yellow {
  background: #ffcc01;
}

.wsus_pro_det_color .black {
  background: #333333;
}

.wsus_pro_det_color .red {
  background: red;
}

.wsus_pro_det_color ul li:last-child a {
  margin-right: 0;
}
.wsus_pro__det_size ul li a {
  text-transform: capitalize;
  font-size: 13px;
  border: 1px solid #aaa;
  margin-right: 10px;
  font-weight: 600;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  height: 30px;
  line-height: 29px;
  width: 30px;
  text-align: center;
  border-radius: 50%;
}
.wsus_pro__det_size ul li a:hover {
  color: #fff;
  background: #e18e96;
  background: #e18e96;
}
.wsus_pro__det_size ul li:last-child a {
  margin-right: 0;
}
.wsus__pro_details_text .title:hover {
  color: #e18e96;
}
.wsus__quentity h3 {
  font-size: 22px;
  font-weight: 600;
  margin-left: 20px;
  color: #e18e96;
}
.wsus__selectbox .select2-container--default .select2-selection--single {
  padding: 17px 20px;
  border-radius: 30px;
}
.wsus__selectbox .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: -7px;
}

.wsus__button_area li .add_cart {
  padding: 10px 20px;
  font-size: 14px;
  margin-right: 10px;
  border: none;
  border-radius: 30px;
}
.wsus__button_area li:nth-child(3) a,
.wsus__button_area li:nth-child(4) a {
  border: 1px solid #ddd;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}
.wsus__button_area li:nth-child(3) a:hover,
.wsus__button_area li:nth-child(4) a:hover {
  color: #fff;
  background: #e18e96;
  background: #e18e96;
}
.wsus__pro_det_share ul li a {
  width: 30px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  background: #ff77b5 !important;
  font-size: 14px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__pro_report {
  text-transform: capitalize;
  font-size: 14px;
  color: #e18e96;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  margin-top: -5px;
  display: block;
}
.wsus__pro_report i {
  margin-right: 5px;
}

.wsus__pro_report:hover {
  color: #045c9f;
}
.report_modal .modal-dialog {
  min-width: 600px;
}

.report_modal label {
  display: block;
  text-transform: capitalize;
  font-size: 15px;
  margin-bottom: 5px;
}
.report_modal input,
.report_modal textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  margin-bottom: 25px;
  resize: none;
  border: 1px solid #eee;
}

.wsus_pro_det_wholesell {
  border-radius: 4px;
  background: #e9f1f7;
}

.wsus_pro_det_wholesell h3 {
  text-align: center;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 15px 0px;
}

.wsus_pro_det_wholesell ul li {
  display: flex;
  align-items: center;
  border-top: 1px solid #fff;
  border-bottom: none;
  padding: 7px 13px;
}

.wsus_pro_det_wholesell ul li:first-child span {
  color: #353535;
  font-weight: 600;
}

.wsus_pro_det_wholesell ul li span {
  width: 50%;
  text-transform: capitalize;
  color: #525252;
}

.wsus_pro_det_sidebar {
  border: 1px dashed #ddd;
  padding: 15px;
  border-radius: 5px;
}

.wsus_pro_det_sidebar ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.wsus_pro_det_sidebar ul li:last-child {
  /* margin-bottom: 0; */
  border-bottom: 0;
}
.wsus_pro_det_sidebar ul li span {
  display: block;
  width: 40px;
  height: 40px;
  background: rgb(0, 136, 204);
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  color: rgb(255, 255, 255);
  font-size: 20px;
}
.wsus_pro_det_sidebar ul li .text {
  width: 82%;
}

.wsus_pro_det_sidebar ul li .text h4 {
  font-size: 16px;
}

.wsus_pro_det_sidebar ul li .text p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 5px;
}

.wsus__det_sidebar_banner {
  height: 250px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.wsus__det_sidebar_banner img {
  height: 100%;
  object-fit: cover;
}

.wsus__det_sidebar_banner_text_overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.541);
  position: absolute;
  top: 0;
  left: 0;
}

.wsus__det_sidebar_banner_text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  text-align: center;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.wsus__det_sidebar_banner_text p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__det_sidebar_banner_text h4 {
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  margin: 13px 0px 18px 0px;
}

.wsus__pro_det_description {
  padding-top: 70px;
}

.wsus__pro_det_description .nav {
  border-bottom: 1px solid transparent;
  /* border-radius: 3px; */
  overflow: hidden;
  margin-bottom: 35px !important;
}

.wsus__pro_det_description .nav .nav-item {
  width: 16.66%;
}

.wsus__pro_det_description .nav .nav-item button {
  width: 100%;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  background: #fff;
  outline: none;
}

.wsus__pro_det_description .nav-pills .nav-link.active,
.wsus__pro_det_description .nav-pills .nav-link:hover {
  color: #e18e96 !important;
  background: #F8E1E7 !important;
}

.wsus__description_area h2,
.wsus__description_area h3,
.wsus__description_area h4,
.wsus__description_area h5,
.wsus__description_area h6 {
  margin-top: 20px !important;
}

.wsus__description_area p {
  font-size: 15px !important;
  margin-top: 20px !important;
}

.wsus__description_area ul {
  margin-top: 20px !important;
  list-style: disc !important;
  padding-left: 16px !important;
}

.wsus__description_area ul li {
  color: #5c5b5b !important;
  font-size: 15px !important;
  margin-top: 15px !important;
}

.wsus__vebdor_img {
  height: 50%;
}

.wsus__pro_det_description img {
  border: 1px solid #ddd !important;
  border-radius: 5px !important;
  height: 100% !important;
  object-fit: cover !important;
  width: 100% !important;
  margin-top: 25px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}

.description_single {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 3px;
  margin-top: 30px;
}

.description_single h6 {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.description_single h6 span {
  color: #333;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  display: inline-block;
  background: #d0e7fd;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 5px;
}

.description_single p {
  font-size: 15px;
}

.wsus__pro_det_info {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 3px;
  padding-bottom: 10px;
}

.wsus__pro_det_info h4 {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 2px solid #eee;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 5px;
}

.wsus__pro_det_info p {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 10px 0px;
  font-size: 15px;
}

.wsus__pro_det_info p:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.wsus__pro_det_info p span {
  width: 55%;
}

.wsus__pro_det_review .wsus__main_comment {
  overflow: hidden;
  padding: 20px 20px 15px 20px;
  border: 1px solid #eee;
  margin-top: 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.wsus__pro_det_review .wsus__comment_img {
  width: 10%;
  float: left;
}

.wsus__pro_det_review .wsus__comment_img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 70px !important;
  height: 70px;
  border: none;
}

.wsus__pro_det_review .wsus__comment_text {
  width: 90%;
  float: left;
}

.wsus__pro_det_review .wsus__comment_text h6 span {
  border: 1px solid #eee;
  padding: 0px 10px;
  border-radius: 3px;
  font-weight: 600;
}

.wsus__pro_det_review .wsus__comment_text h6 span i {
  color: #ff9f00;
  margin-left: 5px;
}

.wsus__pro_det_review .wsus__comment_text span {
  display: block;
  color: #353535;
  font-size: 13px;
}

.wsus__pro_det_review .wsus__comment_text ul {
  overflow: hidden;
  margin-top: 10px;
}

.wsus__pro_det_review .wsus__comment_text ul li {
  width: 70px !important;
  height: 70px !important;
  margin-right: 10px;
  float: left;
}

.wsus__pro_det_review .wsus__comment_text ul li img {
  height: 100%;
  object-fit: cover;
}

.wsus__pro_det_review h4 {
  color: #ff66ac;
  margin-top: 0 !important;
}

.wsus__comment_area h4 span {
  display: inline-block;
  background: #e18e96;
  color: #fff;
  padding: 0px 10px;
  font-size: 16px;
  text-align: center;
  margin-left: 10px;
  border-radius: 3px;
  font-weight: 600;
}

.wsus__post_comment .rating,
.vendor_review_modal .rating {
  font-size: 16px;
  color: #ff9f00;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.wsus__post_comment .rating i,
.vendor_review_modal .rating i {
  cursor: pointer;
}

.wsus__post_comment .rating span {
  text-transform: capitalize;
  color: #333;
  margin-right: 10px;
  font-size: 15px;
}

.wsus__single_com input,
.wsus__single_com textarea {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 25px;
  resize: none;
}

.wsus__vendor_text h4 {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 600;
}

.wsus__pro_det_vendor_text .rating {
  color: #ff9f00;
  margin: 5px 0px 25px 0px;
}

.wsus__pro_det_vendor_text .see_btn {
  padding: 5px 10px 5px 10px;
}

.wsus__pro_det_vendor_text .rating span {
  font-size: 15px;
  margin-left: 5px;
  color: #797979;
  text-transform: capitalize;
}

.wsus__pro_det_vendor_text p {
  margin-bottom: 15px;
}

.wsus__pro_det_vendor_text p span {
  width: 25%;
  display: inline-block;
  color: #333;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 15px;
}

.wsus__vendor_details {
  margin-top: 30px;
}

.wsus__vendor_details p {
  font-size: 15px;
}

.wsus__vendor_details p span {
  display: block;
  margin-top: 25px;
}

.wsus__pro_det_comment .wsus__post_comment h4 {
  margin-top: 0 !important;
}

/*======================
PRODUCT DETAILS  END
========================*/

/*======================
CART VIEW PAGE START
========================*/
#wsus__cart_view {
  padding: 40px 0 80px;
  background-color: #f8f9fa;
}

.wsus__cart_list {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.wsus__cart_list:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.wsus__cart_list table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.wsus__cart_list table tbody tr {
  border-top: 1px solid #e18e96;
  padding: 15px 0;
  transition: all 0.2s ease;
}

.wsus__cart_list table tbody tr:hover {
  background-color: #f9f9f9;
}

.wsus__cart_list table tbody tr:first-child {
  border-top: 0;
  padding: 0;
  background-color: #F8E1E7;
}

.wsus__cart_list table tbody tr td {
  display: flex;
  justify-content: center;
  border: 0;
  overflow: hidden;
  align-items: center;
  transition: all 0.3s ease;
}

.wsus__cart_list .wsus__pro_img img {
  max-width: 80px;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.wsus__cart_list .wsus__pro_img img:hover {
  transform: scale(1.05);
}

.wsus__cart_list .wsus__pro_name {
  padding: 0 10px;
  font-size: 12px;
  text-transform: capitalize;
}

.wsus__cart_list .wsus__pro_status {
  width: 170px;
  font-size: 0.9rem;
}

/* Cart Quantity Controls */
.wsus__cart_list .product_qty_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.wsus__cart_list .product_qty_wrapper .btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.wsus__cart_list .product-qty {
  width: 50px;
  text-align: center;
  padding: 5px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.wsus__pro_status p {
  text-transform: capitalize;
  color: #e18e96 !important;
}

.wsus__pro_status span {
  text-transform: capitalize;
  color: #dc3545 !important;
  display: inline-block;
}

.wsus__cart_list .wsus__pro_select {
  width: 150px;
  font-size: 12px;
  text-transform: capitalize;
}

.wsus__cart_list .wsus__pro_tk h6 {
  color: #353535;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__cart_list .wsus__pro_tk h6 del {
  color: #888;
  margin-right: 15px;
}

.wsus__cart_list .wsus__pro_icon {
  width: 121px;
  border-right: none !important;
}

.wsus__pro_icon .common_btn {
  font-size: 12px;
  text-transform: capitalize;
  color: #474344 !important;
  padding: 7px 10px 5px 10px;
  font-weight: 400;
}

.wsus__pro_icon .common_btn:hover {
  color: #fff;
}

.wsus__pro_icon a {
  color: #ff66ac;
  font-size: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.wsus__pro_icon:hover a {
  color: #ed1b35;
}

.wsus__cart_list table tr th {
  background: #F8E1E7;
  border: none;
  color: #353535;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart Details Table  Data formart*/
.wsus__cart_list table tbody tr td p {
  font-family: "Roboto", sans-serif;
  color: #2e2d2d;
  text-transform: capitalize;
  font-size: 15px;
  text-align: center;
}

.wsus__pro_name span {
  text-transform: capitalize;
  color: #474344;
  font-size: 14px;
}

.cart_summery {
  padding: 0 !important;
  border: 1px solid #ddd !important;
  margin-top: 0 !important;
}

.cart_summery_text {
  padding: 10px;
}

.cart_summery h5 {
  background: #def0ff;
  text-align: center;
  padding: 15px 0px 15px 0px !important;
  border-bottom: 1px solid #ddd !important;
}

.cart_summery .wsus__sub_total {
  font-weight: 400 !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.cart_summery .common_btn {
  width: 100%;
  text-align: center;
  border-radius: 0;
}

.cart_summery .wsus_total_area {
  margin: 20px 0px 7px 0px;
  border-top: 1px solid #ddd;
  padding-top: 18px;
}

.cart_summery .wsus_total_area .wsus__sub_total {
  font-weight: 600 !important;
}

.cart_summery .wsus_total_area .wsus__sub_total span {
  font-weight: 600 !important;
}

.cart_summery .form-check label {
  display: flex;
  justify-content: space-between;
}

.cart_summery .form-check label span {
  color: #ff66ac;
}

.cart_page_rel_product {
  margin-top: 67px !important;
}

.wsus__cart_list_footer {
  border-radius: 5px;
  background: #def0ff;
}

.wsus__cart_list_footer_top {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.wsus__cart_list_footer_button form {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.wsus__cart_list_footer_button input {
  width: 100%;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 30px;
  resize: none;
  border: 1px solid#e18e96;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.wsus__cart_list_footer_button button {
  text-transform: capitalize;
  font-size: 14px;
  margin-left: 10px;
}

.wsus__cart_list_footer_button .common_btn i {
  margin-right: 5px;
}

.wsus__cart_list_footer_button {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__cart_list_footer_button h6 {
  border-bottom: 2px solid #fff;
  text-transform: capitalize;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.wsus__cart_list_footer_button p {
  text-transform: capitalize;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  color: #353535;
  font-size: 15px;
}

.wsus__cart_list_footer_button p span {
  color: #353535;
  font-size: 15px;
}

.wsus__cart_list_footer_button .total {
  border-top: 2px solid #fff;
  padding-top: 15px;
  color: #353535;
}

.wsus__cart_list_footer_button .total span {
  font-weight: 600;
}

.cart_empty p {
  text-transform: capitalize;
  font-size: 25px;
  color: #353535;
}

/*======================
CART VIEW PAGE END
========================*/

/*======================
CHECKOUT PAGE START
========================*/
.wsus__check_form {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}


.wsus__checkout_form h5 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: #ff66ac;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wsus__checkout_form h5 a {
  color: #e18e96;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid #e18e96;
  padding: 5px 10px 3px 10px;
  border-radius: 3px;
  transition: all linear .3s;
}

.wsus__checkout_form h5 a:hover {
  background: #e18e96;
  color: #fff;
}

.wsus__popup_address .modal-dialog {
  max-width: 800px;
}

.wsus__check_single_form .form-check {
  margin: 0;
}

.wsus__check_single_form .form-check-input {
  width: 15px;
  padding: 0;
  background: #e18e96;
  border-radius: 3px !important;
}

.checkout_accordian .accordion-button::after {
  display: none;
}

.checkout_accordian .accordion-button {
  padding: 0;
  border: none !important;
  background: none !important;
}

.wsus__check_single_form .select2-container {
  margin-bottom: 25px;
}

.wsus__check_single_form input,
.wsus__check_single_form textarea {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #eee;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 400;
  color: #ff66ac;
  resize: none;
  border-radius: 5px;
  background: #fff;
}

.wsus__check_single_form textarea {
  margin-bottom: 0;
}

.wsus__check_single_form h5 {
  margin-top: 5px;
}

.wsus__order_details {
  background: #f3faffc2;
  overflow: hidden;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__order_details_summery {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 17px;
}

.wsus__order_details_summery p {
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
  color: #474344;
  margin: 15px 0px;
}

.wsus__order_details_summery p span {
  color: #474344;
}

.wsus__order_details .wsus__product {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: #e18e96;
  /* padding-top: 15px; */
  /* border-top: 1px solid #eee; */
}

.wsus__order_details .form-check {
  margin: 15px 0px;
}

.wsus__order_details .form-check label {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.wsus__order_details .form-check label span {
  display: block;
  font-size: 12px;
}

.wsus__order_details .terms_area {
  margin-bottom: 15px;
}

.wsus__order_details .form-check label a {
  color: #474344;
}

.wsus__checkout_form .select2-container--default .select2-selection--single {
  border-radius: 5px;
}

.wsus__order_details .form-check-input[type="radio"] {
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
}

.wsus__order_details .common_btn {
  width: 100%;
  text-align: center;
}

.wsus__checkout_single_address {
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 15px 20px 15px 20px;
  margin-top: 20px;
}

.wsus__checkout_single_address ul li {
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-size: 15px;
  text-transform: capitalize;
  flex-wrap: wrap;
  width: 100%;
  color: #686868;
}

.wsus__checkout_single_address ul li span {
  color: #ff66ac;
  text-transform: capitalize;
  width: 30%;
  font-size: 15px;
}

.wsus__checkout_single_address .form-check {
  background: #f2f2f2db;
  border-radius: 3px;
  width: 100%;
  padding: 5px;
  padding-left: 35px;
}

.wsus__checkout_single_address .form-check-input {
  border-radius: 50% !important;
}


/*======================
CHECKOUT PAGE END
========================*/

/*======================
INVOICE PAGE START
========================*/

.wsus__invoice_top {
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(142, 68, 173, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f8f0ff 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  margin: 0 auto 45px;
  border: 1px solid rgba(142, 68, 173, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wsus__invoice_top:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(142, 68, 173, 0.15);
}

.wsus__invoice_top i {
  font-size: 50px;
  color: var(--invoice-primary);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.wsus__invoice_top:hover i {
  transform: scale(1.1);
}

.wsus__invoice_top_text {
  text-align: center;
}

.wsus__invoice_top_text h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--invoice-primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.wsus__invoice_top_text p {
  font-size: 15px;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

.wsus__invoice_area {
  background: #fff;
  padding: 30px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--invoice-border);
}

.wsus__invoice_single {
  margin-bottom: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--invoice-border);
  transition: all 0.3s ease;
}

.wsus__invoice_single:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.wsus__invoice_single h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--invoice-primary);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.wsus__invoice_single h5:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--invoice-primary);
}

.wsus__invoice_single h6 {
  color: #444;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

/* Align content for text-md-center and text-md-end on wider screens */
@media (min-width: 768px) {

  /* Center alignment */
  .wsus__invoice_single.text-md-center {
    text-align: center;
  }

  .wsus__invoice_single.text-md-center h6 {
    justify-content: center;
    text-align: center;
  }

  .wsus__invoice_single.text-md-center p {
    text-align: center;
  }

  /* Right alignment */
  .wsus__invoice_single.text-md-end {
    text-align: right;
  }

  .wsus__invoice_single.text-md-end h5,
  .wsus__invoice_single.text-md-end h6,
  .wsus__invoice_single.text-md-end p {
    justify-content: flex-end;
    text-align: right;
  }
}

.wsus__invoice_single h6 i {
  margin-right: 8px;
  color: var(--invoice-primary);
}

.wsus__invoice_single p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
}

.wsus__invoice_description {
  margin: 50px 0 30px;
  border: 1px solid var(--invoice-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.wsus__invoice_description .table {
  margin-bottom: 0;
}

.wsus__invoice_description .table tr {
  display: flex;
  transition: background-color 0.2s ease;
}

.wsus__invoice_description .table tr:not(:last-child) {
  border-bottom: 1px solid var(--invoice-border);
}

.wsus__invoice_description .table tr:hover {
  background-color: var(--invoice-hover);
}

.wsus__invoice_description th {
  background: #F8E1E7 !important;
  color: #474344 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 15px 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  border: none !important;
  text-align: center;
  border-bottom: 1px solid #e0d0d5 !important;
}

/* Ensure text color and alignment for table headers */
.wsus__invoice_description th.name,
.wsus__invoice_description th.amount,
.wsus__invoice_description th.quentity,
.wsus__invoice_description th.total {
  color: #474344 !important;
  text-align: center !important;
  justify-content: center !important;
}

.wsus__invoice_description td {
  padding: 18px 10px !important;
  color: #555 !important;
  font-size: 14px !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.wsus__invoice_description .images {
  width: 120px;
  justify-content: flex-start;
}

.wsus__invoice_description .images img {
  max-width: 80px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wsus__invoice_description .name {
  width: 40%;
  justify-content: flex-start !important;
  text-align: left !important;
  padding-left: 20px !important;
  display: flex !important;
  align-items: center;
}

/* Ensure left alignment for all table cells */
.wsus__invoice_description td.amount,
.wsus__invoice_description td.quentity,
.wsus__invoice_description td.total {
  text-align: left !important;
  justify-content: flex-start !important;
  padding-left: 20px !important;
}

.wsus__invoice_description .name p {
  color: var(--invoice-primary) !important;
  font-weight: 600;
  margin: 0;
}

.wsus__invoice_description .name span {
  color: #6c757d !important;
  font-size: 13px !important;
  display: block;
  margin-top: 5px;
}

.wsus__invoice_description .amount,
.wsus__invoice_description .quentity,
.wsus__invoice_description .total {
  width: 20%;
}

.wsus__invoice_footer {
  padding: 25px 30px;
  border-radius: 8px;
  background: #F8E1E7;
  margin-top: 30px;
  border: 1px solid var(--invoice-border);
}

.wsus__invoice_footer p {
  font-size: 15px;
  color: var(--invoice-text);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wsus__invoice_footer p:last-child {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--invoice-primary);
}

.wsus__invoice_footer p span:first-child {
  color: #6c757d;
  font-weight: 500;
  width: auto;
  margin-right: 15px;
}

/* Invoice Page Mobile Styles */
@media (max-width: 767.98px) {

  /* Ensure left alignment for columns on mobile */
  .col-xl-4,
  .col-md-4 {
    text-align: left !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin-bottom: 15px;
  }

  .col-xl-4 *,
  .col-md-4 * {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  .wsus__single_pro_icon .add_to_wishlist {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Improve table layout for mobile */
  .wsus__invoice_description .table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wsus__invoice_description table {
    min-width: 600px;
    /* Ensure table has minimum width for better readability */
  }

  .wsus__invoice_description th {
    white-space: nowrap;
    padding: 12px 8px !important;
    font-size: 13px !important;
  }

  .wsus__invoice_description td {
    padding: 10px 8px !important;
    font-size: 14px !important;
  }

  /* Make table header sticky on mobile */
  .wsus__invoice_description thead {
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .wsus__invoice_description th {
    position: sticky;
    top: 0;
    background: #F8E1E7 !important;
    z-index: 11;
  }

  /* Force left alignment for text-md-end on mobile */
  .wsus__invoice_single.text-md-end {
    text-align: left !important;
  }

  .wsus__invoice_single.text-md-end h5,
  .wsus__invoice_single.text-md-end h6,
  .wsus__invoice_single.text-md-end p {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .wsus__invoice_area {
    padding: 15px !important;
  }

  .wsus__invoice_header .row>[class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
    text-align: left;
  }

  .wsus__invoice_header .row>[class*="col-"]:last-child {
    margin-bottom: 0;
  }

  .wsus__invoice_footer {
    padding: 20px 15px !important;
  }

  .wsus__invoice_footer p {
    text-align: left;
    justify-content: space-between;
    display: flex;
    margin-bottom: 10px;
  }

  .wsus__invoice_footer p:last-child {
    margin-bottom: 0;
    font-weight: 600;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .wsus__invoice_description .table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wsus__invoice_description .table tr {
    flex-wrap: wrap;
    padding: 15px;
    position: relative;
  }

  .wsus__invoice_description th {
    display: none;
  }

  .wsus__invoice_description td {
    width: 100% !important;
    padding: 8px 0 !important;
    justify-content: flex-start;
    border-bottom: 1px dashed #eee !important;
  }

  .wsus__invoice_description td:before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--invoice-primary);
    min-width: 120px;
    display: inline-block;
    margin-right: 15px;
  }

  .wsus__invoice_description .images {
    justify-content: center;
    margin-bottom: 15px;
  }

  .wsus__invoice_description .images img {
    max-width: 120px;
  }

  .wsus__invoice_description .images {
    justify-content: center;
    margin-bottom: 15px;
  }

  .wsus__invoice_description .images img {
    max-width: 120px;
  }

  .wsus__invoice_description .name {
    padding-left: 0 !important;
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .wsus__invoice_area {
    padding: 20px 15px;
  }

  .wsus__invoice_top {
    padding: 20px;
  }

  .wsus__invoice_footer {
    padding: 20px;
  }

  .wsus__invoice_footer p {
    flex-direction: column;
    align-items: flex-start;
  }

  .wsus__invoice_footer p span:first-child {
    margin-bottom: 5px;
    width: 100%;
  }
}

/*======================
INVOICE PAGE END
========================*/

/*======================
WISHLIST PAGE START
========================*/
.wishlist .wsus__pro_img {
  position: relative;
  width: 180px;
}

.wishlist .wsus__pro_img a {
  position: absolute;
  background: #e18e96;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
  top: 5px;
  right: 5px;
  color: #fff;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.wishlist .wsus__pro_img a:hover {
  background: #e18e96;
}

.wishlist .wsus__pro_name {
  width: 220px;
}

.wishlist .wsus__pro_tk {
  width: 220px;
}

.wishlist .wsus__pro_select {
  width: 230px !important;
}

.wishlist .wsus__pro_icon {
  width: 230px;
}

.wishlist .common_btn {
  font-size: 16px;
  padding: 10px;
  color: #333;
  width: auto;
}

.wishlist .wsus__pro_icon:hover .common_btn {
  color: #333;
}

/*======================
	WISHLIST PAGE END
========================*/

/*========================
	COMPARE START
=========================*/
#wsus__compare {
  padding-top: 70px;
}

.wsus__compare_list {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__compare_list table {
  margin: 0;
}

.wsus__compare_list table tbody tr td {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  padding: 15px;
  border: 1px solid #eee;
}

.wsus__compare_list .wsus__compare_img {
  padding: 0;
  text-align: center;
}

.wsus__compare_list .wsus__compare_img img {
  width: 120px !important;
}

.wsus__compare_img p {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  color: #ff66ac;
}

.wsus__compare_text p {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  color: #093b55;
  text-align: center;
  width: 100%;
}

.wsus__compare_text .wsus__compare_price {
  color: #093b55;
  font-weight: 400;
}

.wsus__compare_text i {
  color: #f6bc3e;
  margin-right: 5px;
  text-transform: capitalize;
}

.wsus__compare_stock {
  color: #e18e96;
  font-weight: 400;
  text-transform: capitalize;
}

.wsus__compare_stock_out {
  color: red;
  font-weight: 400;
  text-transform: capitalize;
}

.wsus__compare_size {
  text-transform: capitalize;
  font-weight: 400;
  color: #093b55;
}

.wsus__compare_text .wsus__n_a {
  text-transform: uppercase;
  font-weight: 400;
  color: #093b55;
}

.wsus__compare_des {
  flex-direction: column;
  padding: 0px !important;
}

.wsus__compare_des p {
  color: #797979;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  border-bottom: 1px solid #eee;
  padding: 7px 10px;
  font-weight: 400;
}

.wsus__compare_des p:last-child {
  border: none;
}

.wsus__compare_des p span {
  text-transform: capitalize;
  color: #093b55;
  width: 45%;
}

#wsus__compare table tbody .del_area {
  padding: 0;
}

.wsus__compare_text .wsus__compare_del {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: center;
}

.wsus__compare_text .wsus__compare_del i {
  color: #ff66ac;
  transition: all linear 0.3s;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.wsus__compare_text .wsus__compare_del:hover i {
  color: red;
}

/*========================
		COMPARE END
=========================*/

/*========================
	CONTACT START
=========================*/
#wsus__contact {
  padding-top: 70px;
}

.wsus__contact_area {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__contact_single {
  margin-bottom: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  border: 1px solid #eee;
  position: relative;
}

.wsus__contact_single span {
  position: absolute;
  content: "";
  background: #fff;
  width: 70px;
  height: 70px;
  line-height: 80px;
  text-align: center;
  top: -1px;
  right: -1px;
}

.wsus__contact_single span i {
  opacity: .1;
  font-size: 60px;
}

.wsus__contact_single i {
  color: #e18e96;
  font-size: 25px;
}

.wsus__contact_single h5 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  margin: 20px 0px 5px 0px;
}

.wsus__contact_single a {
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__contact_single a:hover {
  color: #e18e96;
}

.wsus__contact_question h5 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.wsus__contact_question .accordion-body {
  border: 1px solid #eee;
}

.wsus__contact_question .accordion-button:focus {
  box-shadow: none;
}

.wsus__contact_question .accordion-item:first-of-type .accordion-button {
  border-radius: 0 !important;
}

.wsus__contact_question #accordionExample {
  border-radius: 5px;
  overflow: hidden;
}

.wsus__con_form_single input,
.wsus__con_form_single textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  margin-bottom: 20px;
  resize: none;
  border: 1px solid #eee;
}

.wsus__con_map {
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 5px;
  height: 400px;
  margin-top: 63px;
}

.wsus__con_map iframe {
  width: 100%;
  height: 100%;
}

/*========================
	CONTACT END
=========================*/

/*========================
	LOGIN/REGISTER START
=========================*/
#wsus__login_register {
  padding-top: 70px;
  position: relative;
}

.wsus__login_reg_area {
  padding: 40px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: #fff;
}

.wsus__login_reg_area ul.nav-pills {
  display: flex !important;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: nowrap;
}

.wsus__login_reg_area .nav-item {
  width: 50%;
  flex: 1;
  display: flex;
}

/* Login/Register Tab Buttons - Override general nav-link styles */
.wsus__login_reg_area .nav-pills .nav-link {
  width: 100% !important;
  font-size: 14px !important;
  text-transform: capitalize !important;
  font-weight: 600 !important;
  color: #333 !important;
  background: #F8E1E7 !important;
  padding: 12px 25px !important;
  border: none !important;
  border-radius: 30px !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  text-decoration: none !important;
  will-change: transform, background-color !important;
  display: block !important;
  position: relative !important;
  letter-spacing: normal !important;
}

/* Remove general nav-link pseudo-elements for login area */
.wsus__login_reg_area .nav-pills .nav-link::after {
  display: none !important;
}

.wsus__login_reg_area .nav-pills .nav-link:hover {
  color: #fff !important;
  background: #ff66ac !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

.wsus__login_reg_area .nav-pills .nav-link.active,
.wsus__login_reg_area .nav-pills .show>.nav-link {
  color: #fff !important;
  background: #e18e96 !important;
  border: none !important;
  transform: none !important;
}

.wsus__login_input {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.wsus__login_input i {
  width: 57px;
  height: 47px;
  background: #e18e96;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsus__login_input input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  border: 1px solid #e18e96;
}

.wsus__login_save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0px;
}

.wsus__login_save .form-check {
  margin-bottom: 0;
}

.wsus__login_save .form-check input {
  border-radius: 20px !important;
}

.wsus__login .forget_p {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: red;
}

.wsus__login button {
  width: 100%;
  border-radius: 30px;
}

.wsus__login .social_text {
  text-align: center;
  text-transform: capitalize;
  margin: 20px 0px 15px 0px;
}

.wsus__login_link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wsus__login_link li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin: 0px 5px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

.wsus__login_link li:nth-child(1) a {
  background: #e14032;
}

.wsus__login_link li:nth-child(2) a {
  background: #1873eb;
}

.wsus__login_link li:nth-child(3) a {
  background: #1c9cea;
}

.wsus__login_link li:nth-child(4) a {
  background: #2464ad;
}

.wsus__login_text_position {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}

.wsus__login_text_position h6 {
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.wsus__login_text_position h6 span {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  display: block;
  margin: 10px 0px 10px 0px;
}

.wsus__login_text_position p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

/*========================
	LOGIN/REGISTER END
=========================*/

/*========================
	ABOUT US START
=========================*/
.wsus__about_accordian {
  margin-top: 70px;
}

.wsus__about_accordian h4,
.wsus__about_client_boost h4,
.wsus__about_award h4,
.wsus__about_team h4,
.wsus__faq_heading h4,
.wsus__why_shop h3 {
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.accordion-button:focus {
  box-shadow: none;
}

.wsus__about_accordian .accordion-item:first-of-type .accordion-button {
  border-radius: 0 !important;
}

.wsus__about_accordian .accordion-body {
  padding: 1rem 1.25rem;
  border: 1px solid #def0ff;
}

.wsus__about_accordian .accordion-body p {
  font-size: 14px;
}

.wsus__about_accordian img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.wsus__about_accordian .accordion {
  border-radius: 5px;
  overflow: hidden;
}

.wsus__about_counter_area {
  margin-top: 70px;
}

.wsus__about_award {
  margin-top: 70px;
  background: #fff;
  padding: 70px 0px;
}

.wsus__about_counter_single {
  border-radius: 5px;
  padding: 55px 40px 40px 40px;
  text-align: center;
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__about_counter_single span {
  font-size: 40px;
  font-weight: 600;
  color: #e18e96;
}

.wsus__about_counter_single h2 {
  text-transform: capitalize;
  font-size: 16px;
  /* font-weight: 600; */
  margin-top: 20px;
}

.wsus__why_shop {
  margin-top: 65px;
}

.wsus__why_shop h3 {
  text-align: center;
}

.wsus__why_shop_single {
  border: 1px solid #eee;
  margin-top: 30px;
  border-radius: 5px;
  padding: 30px 15px;
  text-align: center;
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__why_shop_single i {
  font-size: 60px;
  color: #e18e96;
  margin-bottom: 20px;
}

.wsus__why_shop_single p {
  color: #353535;
  font-weight: 500;
  font-size: 14px;
}

.wsus__about_award_single {
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #fff;
  margin-top: 30px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__about_award h4,
.wsus__about_team h4 {
  text-align: center;
}

.wsus__about_award_single img {
  border-radius: 50%;
  width: 100px !important;
  height: 100px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.wsus__about_award_single p {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  color: #353535;
  margin-top: 20px;
}

.wsus__about_team {
  padding-top: 65px;
}

.wsus__team_single {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin-top: 30px;
  background: #fff;
  padding: 15px;
}

.wsus__team_img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.wsus__team_single_overlay {
  position: absolute;
  width: 96%;
  height: 96%;
  background: #e18e96;
  top: 2%;
  left: 2%;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  border: 5px solid#e18e96;
  border-radius: 10px;
}

.wsus__team_img ul {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__team_img ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin: 0px 3px;
  border-radius: 50%;
  color: #e18e96;
  background: #fff;
  font-size: 18px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__team_img ul li a:hover {
  background: #e18e96;
  color: #fff;
}

.wsus__team_text {
  padding: 20px;
  position: relative;
  padding-bottom: 0;
}

.wsus__team_text h5 {
  text-transform: capitalize;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.wsus__team_text p {
  text-align: center;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
}

.wsus__team_single:hover .wsus__team_single_overlay {
  opacity: .5;
}

.wsus__team_single:hover .wsus__team_img ul {
  bottom: 20px;
}

/*========================
	ABOUT US END
=========================*/

/*========================
	TEAM DETAILS START
=========================*/
.wsus__team_details {
  margin-top: 70px;
}

.wsus__team_details_top {
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__team_details_img {
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
}

.wsus__team_details_text {
  position: relative;
  width: 100%;
  height: 100%;
  /* background: #fff; */
  /* border-radius: 10px; */
}

.wsus__team_det_text_center {
  position: absolute;
  width: 100%;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.wsus__team_details_text h4 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 35px;
}

.wsus__team_details_text h6 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 5px;
}

.wsus__team_address {
  margin: 30px 0px;
}

.wsus__team_address a,
.wsus__team_address p {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #797979;
  margin-top: 10px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__team_address a i,
.wsus__team_address p i {
  width: 20px;
}

.wsus__team_address a:hover {
  color: #e18e96;
}

.wsus__team_details_text ul li a {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 32px;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 14px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  background: #ddd;
}

.wsus__team_det_service {
  margin-top: 70px;
}

.wsus__team_det_service h3 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 25px;
  text-align: center;
}

.wsus__team_service_single {
  background: #0b2c3d;
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__team_service_single i {
  color: #fff;
  width: 70px;
  height: 70px;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: #e18e96;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__team_service_single h4 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  margin: 25px 0px;
}

.wsus__team_service_single p {
  color: #fff;
}

.wsus__team_service_single:hover {
  background: #e18e96;
}

.wsus__team_service_single:hover i {
  background: #0b2c3d;
}

.wsus__team_service_single.hover {
  background: #e18e96;
}

.wsus__team_service_single.hover i {
  background: #0b2c3d;
}

.wsus__team_det_review {
  margin-top: 70px;
}

.wsus__team_det_review h3 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 25px;
  text-align: center;
}

.wsus__team_det_rev_single {
  text-align: center;
  margin: 90px 15px 3px 15px;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__team_det_rev_single img {
  width: 100px !important;
  height: 100px;
  /* border: 1px solid #e18e96; */
  margin: -65px auto 0 auto;
  border-radius: 50%;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__team_det_rev_single h3 {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
}

.wsus__team_det_rev_single h6 {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}

.wsus__team_det_rev_single p {
  font-size: 14px;
  color: #353535;
}

.wsus__team_det_rev_single span {
  position: relative;
  margin: 25px 0px;
  display: block;
  z-index: 1;
}

.wsus__team_det_rev_single span i {
  width: 60px;
  height: 60px;
  font-size: 25px;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  background: #e18e96;
  color: #fff;
  box-shadow: rgb(0 0 0 / 14%) 0px 3px 6px, rgb(0 0 0 / 16%) 0px 0px 7px;
}

.wsus__team_det_rev_single span::after {
  position: absolute;
  content: "";
  background: #eee;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: -1;
}

/*========================
	TEAM DETAILS END
=========================*/

/*========================
	404  START
=========================*/
#wsus__404 {
  margin-bottom: 125px;
  margin-top: 40px;
}

.wsus__404_text {
  text-align: center;
  margin-top: 60px;
}

.wsus__404_text h2 {
  font-size: 130px;
  font-weight: 700;
  color: #ff66ac;
  margin-bottom: 10px;
}

.wsus__404_text h4 {
  text-transform: capitalize;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}

.wsus__404_text h4 span {
  color: #e18e96;
  font-size: 35px;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__404_text p {
  margin: 10px 0px 45px 0px;
}

/*========================
	404  END
=========================*/



/*========================
	BLOGS PAGE START
=========================*/
#wsus__blogs {
  padding-top: 45px;
}

.wsus__single_blog {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(50, 50, 93, 0.15) 0px 0px 5px 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 25px;
  width: 100%;
  /* height: 203px; */
}

.wsus__single_blog img {
  height: 100%;
  object-fit: cover;
}

.wsus__blog_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgb(11, 44, 61); */
  /* background: linear-gradient(0deg,
      rgba(11, 44, 61, 0.68) 20%,
      transparent 100%); */
}

.wsus__blog_text_center {
  width: 100%;
  position: static;
  background: #fff;
  padding: 17px 20px 10px 20px;
}

.wsus__blog_text_center a {
  display: block;
  color: #353535;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__blog_text_center .date {
  color: #818181;
  text-transform: capitalize;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.wsus__blog_text_center .date span {
  color: #e18e96;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 400;
  margin-right: 10px;
}

.wsus__single_blog .blog_top {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 3px;
  z-index: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__single_blog .red {
  background: red;
}

.wsus__single_blog .blue {
  background: #e18e96;
}

.wsus__single_blog .orange {
  background: orange;
}

.wsus__single_blog .blog_top:hover {
  transform: scale(1.05);
}

.wsus__blog_text_center a:hover {
  color: #e18e96;
}

/*========================
	BLOGS PAGE END
=========================*/

/*========================
	BLOGS DETAILS START
=========================*/
#wsus__blog_details {
  padding-top: 70px;
}

.wsus__main_blog_img {
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
  padding: 15px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
}

.wsus__main_blog_img img {
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.wsus__main_blog_header {
  text-transform: capitalize;
  margin: 25px 0px 15px 0px;
}

.wsus__main_blog_header span {
  margin-right: 10px;
  font-size: 14px;
  color: #353535;
}

.wsus__main_blog_header span i {
  color: #e18e96;
  margin-right: 5px;
}

.wsus__blog_description span {
  display: block;
  margin-top: 25px;
}

.wsus__blog_quot_area {
  padding: 40px;
  border-radius: 5px;
  margin: 35px 0px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
}

.wsus__blog_quot_area i {
  font-size: 40px;
  font-weight: 900;
  color: #e18e96;
}

.wsus__blog_quot_area p {
  text-transform: capitalize;
  font-size: 25px;
  color: #353535;
  font-weight: 600;
  margin: 15px 0px 13px 0px;
}

.wsus__blog_quot_area span {
  color: #353535;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
}

.wsus__main_blog h5,
.wsus__related_post h5,
.wsus__comment_area h4,
.wsus__post_comment h4,
.wsus__blog_search h4,
.wsus__blog_category h4,
.wsus__blog_post h4,
.wsus__popular_tag h4,
.wsus_blog_calender h4,
#wsus__faq h4,
.wsus__forget_area h4,
.wsus__change_password h4,
.wsus__pro_det_vendor_text h4 {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.wsus__blog_list_text ul {
  padding-left: 35px;
  margin: 20px 0px;
}

.wsus__blog_list_text ul li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: normal;
  position: absolute;
  content: "\f0a4";
  top: 1px;
  left: -24px;
  color: #e18e96;
  font-size: 14px;
  border: none;
}

.wsus__share_blog {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  margin: 30px 0px;
  justify-content: center;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
}

.wsus__share_blog p {
  text-transform: capitalize;
  color: #353535;
  font-size: 20px;
  font-weight: 400;
  margin-right: 10px;
}

.wsus__share_blog ul {
  display: flex;
}

.wsus__share_blog ul li a {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 32px;
  color: #353535;
  margin-left: 5px;
  font-size: 14px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  background: #eee;
}

.wsus__related_post {
  margin-bottom: 25px;
}

.wsus__related_post .wsus__single_blog {
  margin: 0px 12px;
  width: auto;
}

.wsus__blog_img {
  display: block;
  /* width: 100%; */
  height: 250px;
}

.wsus__related_post .slick-dots {
  display: flex;
  justify-content: center;
}

.wsus__related_post .slick-dots li button {
  font-size: 0;
  width: 30px;
  height: 8px;
  background: #76c3ff;
  border-radius: 50px;
  margin: 0 5px;
  outline: 0;
  border: none;
}

.wsus__related_post .slick-dots li.slick-active button {
  background: #0086ee;
}

.wsus__comment_area {
  border: 1px solid #eee;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.wsus__comment_area h4 {
  display: flex;
  justify-content: space-between;
}

.wsus__main_comment {
  overflow: hidden;
  margin-top: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.wsus__comment_img {
  width: 10%;
  float: left;
}

.wsus__comment_img img {
  border-radius: 50%;
}

.wsus__comment_text {
  width: 90%;
  float: left;
  padding-left: 25px;
}

.wsus__comment_text h6 {
  text-transform: capitalize;
  font-size: 17px;
  color: #ff66ac;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wsus__comment_text h6 span {
  color: #ff66ac;
  font-size: 14px;
}

.wsus__comment_text p {
  font-size: 15px;
}

.wsus__comment_text a {
  text-transform: capitalize;
  background: #e18e96;
  padding: 2px 10px 2px 10px;
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  margin-top: 10px;
  /* font-weight: 400; */
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.wsus__comment_text a:hover {
  background: #0363ae;
}

.replay .accordion-body {
  padding: 0;
  padding-top: 15px;
}

.replay .wsus__riv_edit_single {
  margin-bottom: 15px;
}

.replay .common_btn {
  text-transform: capitalize;
  padding: 5px 10px;
  font-weight: 400;
}

.wsus__com_replay {
  margin-left: 60px;
}

.wsus__post_comment {
  border-radius: 5px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
  margin-top: 25px;
}

.wsus__post_comment input,
.wsus__post_comment textarea {
  font-size: 16px;
  font-weight: 400;
  color: #ff66ac;
}

.wsus__post_comment button {
  border: none;
  font-weight: 600;
  text-transform: capitalize;
}

.wsus__blog_search {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
}

.wsus__blog_search form {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.wsus__blog_search input {
  width: 100%;
  padding: 9px 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #353535;
}

.wsus__blog_search button {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  border: none;
}

.wsus__blog_category {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
}

.wsus__blog_category ul li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #353535;
  width: 100%;
  border-top: 1px solid #eee;
  padding: 10px 10px 10px 0px;
}

.wsus__blog_category ul li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.wsus__blog_post {
  margin-bottom: 30px;
  border-radius: 5px;
  padding: 20px 20px 1px 20px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
}

.wsus__blog_post_single {
  display: flex;
  margin: 20px 0px 20px 0px;
}

.wsus__blog_post_img {
  width: 25%;
  border-radius: 5px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.wsus__blog_post_img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  object-fit: cover;
}

.wsus__blog_post_text {
  width: 75%;
  padding-left: 10px;
  margin-top: -5px;
}

.wsus__blog_post_text a {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__blog_post_text p {
  font-size: 12px;
}

.wsus__blog_post_text p span {
  font-size: 12px;
  margin-right: 15px;
}

.wsus__blog_post_single a:hover {
  color: #e18e96;
}

.wsus__popular_tag {
  overflow: hidden;
  /* margin-bottom: 30px; */
}

.wsus__popular_tag ul li {
  float: left;
}

.wsus__popular_tag ul li a {
  border: 1px solid #ddd;
  padding: 5px 10px;
  margin: 5px 10px 5px 0px;
  border-radius: 3px;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 400;
  color: #353535;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__popular_tag ul li a:hover {
  color: #e18e96;
  background: #e18e96;
}

/*========================
	BLOGS DETAILS END
=========================*/

/*========================
	FAQ START
=========================*/
#wsus__faq {
  padding-top: 65px;
}

#wsus__faq h4 {
  font-size: 30px;
  margin-bottom: 10px;
}

.accordion-item:first-of-type .accordion-button {
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  border-top: 1px solid #e18e96;
}

.accordion-collapse {
  border: none;
}

#wsus__faq .accordion-body {
  padding: 1rem 1.25rem;
  border: none !important;
}

.wsus__faq_text {
  padding: 30px;
  background: rgb(248, 225, 231) !important;
  border-radius: 5px;
  margin-top: 75px;
  text-align: center;
}

.wsus__faq_text h3 {
  text-transform: capitalize;
  font-size: 35px;
  font-weight: 600;
}

.wsus__faq_text .common_btn {
  margin: 25px 0px 20px 0px;
}

.wsus__faq_text .call {
  display: block;
  font-size: 27px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__faq_text .call:hover {
  color: #e18e96;
}

/*========================
	FAQ END
=========================*/

/*========================
	DASHBOARD START
=========================*/
#wsus__dashboard {
  padding: 40px 30px 40px 0px;
}

.wsus__dashboard_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 5px 20px;
  background: #e18e96;
}

.wsusd__dashboard_user {
  display: flex;
  align-items: center;
}

.wsusd__dashboard_user img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.wsusd__dashboard_user p {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  color: #474344;
}

.dashboard_sidebar {
  width: 15%;
  height: 100vh;
  background: #FEFEFE;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.dash_logo {
  width: 100%;
  text-align: center;
  margin-top: 7px;
}

.dash_logo img {
  width: 100px;
  border-radius: 5px;
}

.dashboard_link {
  margin-top: 40px;
  margin-bottom: 50px;
  width: 100%;
  height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #FEFEFE #0b172d;
}

.dashboard_link li a {
  font-size: 15px;
  color: #474344;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid #474344;
  width: 100%;
  padding: 10px 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.dashboard_link li:first-child a {
  border-top: 1px solid #474344;
}

.dashboard_link li a i {
  margin-right: 10px;
}

.dashboard_link li a:hover,
.dashboard_link li a.active {
  background: #F8E1E7;
}

.dashboard_content h3 {
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.dashboard_content h3 i {
  font-size: 25px;
  color: #848383;
  margin-right: 20px;
}

.wsus__dashboard_item {
  padding: 20px;
  margin-bottom: 25px;
  width: 100%;
  border-radius: 5px;
  text-align: center;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__dashboard_item i {
  font-size: 40px;
  color: #474344;
  margin-bottom: 10px;
}

.wsus__dashboard_item p {
  font-size: 16px;
  text-transform: uppercase;
  color: #474344;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dashboard Status Colors */
.wsus__dashboard .red {
  background: linear-gradient(135deg, #ff4d6d 0%, #ff8fa3 100%);
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.2);
}

.wsus__dashboard .green {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.wsus__dashboard .orange {
  background: linear-gradient(135deg, #ff9f43 0%, #ff7f50 100%);
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 159, 67, 0.2);
}

.wsus__dashboard .blue {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.wsus__dashboard .sky {
  background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(72, 219, 251, 0.2);
}

.wsus__dashboard .purple {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.2);
}

.wsus__dashboard .pink {
  background: linear-gradient(135deg, #e18e96 0%, #ff66ac 100%);
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(225, 142, 150, 0.3);
}

/* Modern Dashboard Cards */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.dashboard-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.dashboard-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.card-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-icon i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.card-content {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  font-size: 36px;
  margin: 0 0 5px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
}

.card-content p {
  margin: 0;
  color: #6c757d;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-footer {
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dashboard-card:hover .card-icon i {
  transform: scale(1.1);
}

.card-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.dashboard-card:hover .card-icon::after {
  right: 100%;
}

.dashboard-card:hover .card-footer {
  background: #f1f3f5;
}

.dashboard-card:hover .card-footer span {
  color: var(--primary-color);
}

.dashboard-card:hover .card-footer i {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .card-content h3 {
    font-size: 32px;
  }
}

/* Dashboard Card Styling */
.wsus__dashboard_item {
  border-radius: 12px !important;
  padding: 20px 15px !important;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
  border: none !important;
}

.wsus__dashboard_item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.wsus__dashboard_item .dashboard-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.wsus__dashboard_item:hover .dashboard-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
}

.wsus__dashboard_item p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wsus__dashboard_item h4 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.wsus__dashboard_item .edit-icon {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  margin-top: 8px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.wsus__dashboard_item .edit-icon i {
  margin-right: 5px;
  font-size: 12px;
}

.wsus__dashboard_item:hover .edit-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wsus__dashboard_item {
    padding: 15px 10px !important;
  }

  .wsus__dashboard_item .dashboard-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .wsus__dashboard_item p {
    font-size: 14px;
  }

  .wsus__dashboard_item h4 {
    font-size: 22px !important;
  }
}

.wsus__dashboard_item:hover {
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

.wsus__message {
  padding: 20px;
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
  margin-top: 30px;
  overflow: hidden;
}

.wsus__message h4 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.wsus__message_single {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.wsus__message .wsus__message_single:last-child {
  margin-bottom: 0;
}

.wsus__message_img {
  width: 10%;
  float: left;
  overflow: hidden;
}

.wsus__message_img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #eee;
}

.wsus__message_text {
  width: 85%;
  float: left;
  overflow: hidden;
}

.wsus__message_text h6 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  color: #ff66ac;
  margin-bottom: 13px;
}

.wsus__message_text span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #3e5d6c;
  margin: 7px 0px;
}

.wsus__message_text p {
  font-size: 15px;
  font-weight: 400;
}

.wsus__message_text p i {
  color: #1cb9c8;
  margin-top: 10px;
}

.wsus__message_icon {
  width: 5%;
  float: right;
  text-align: center;
  overflow: hidden;
}

.wsus__message_icon span {
  display: block;
  color: #ff66ac;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  cursor: pointer;
}

.wsus__message_icon span i {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__message_icon span i:hover {
  color: #e18e96;
}

.wsus__message .wsus__single_inout label {
  display: block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  color: #3e5d6c;
  margin-bottom: 5px;
}

.wsus__message .wsus__single_inout input,
.wsus__message .wsus__single_inout textarea {
  width: 100%;
  border: 1px solid #eee;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #ff66ac;
  margin-bottom: 25px;
  border-radius: 5px;
  resize: none;
}

.wsus__message button {
  border: none;
}

.wsus__dashboard_order table {
  border: 1px solid #eee;
  margin: 0;
}

.wsus__dashboard_order table tr {
  display: flex;
}

.wsus__dashboard_order .table> :not(:last-child)> :last-child>* {
  border: none;
}

.wsus__dashboard_order .table-hover>tbody>tr:hover {
  background: #cfe8fd;
  color: #353535;
}

.wsus__dashboard_order table thead tr th {
  background: #cfe8fd;
  color: #353535;
  padding: 15px 10px;
  border-right: 1px solid #eee !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.wsus__dashboard_order table tr td {
  padding: 15px 10px;
  border-right: 1px solid #eee;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wsus__dashboard_order .package {
  width: 150px;
}

.wsus__dashboard_order .price {
  width: 150px;
}

.wsus__dashboard_order .p_date {
  width: 150px;
}

.wsus__dashboard_order .e_date {
  width: 150px;
}

.wsus__dashboard_order .method {
  width: 166px;
}

.wsus__dashboard_order .tr_id {
  width: 330px;
}

.wsus__dashboard_order .status {
  width: 120px;
  text-align: center;
}

.wsus__dashboard_order .status a {
  border: 1px solid#e18e96;
  text-align: center;
  color: #e18e96;
  border-radius: 5px;
  padding: 2px 15px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__dashboard_order .status a:hover {
  background: #e18e96;
  color: #fff;
}

.wsus__dashboard_download .common_btn {
  margin-top: 15px;
}

.wsus__dashboard_download .common_btn i {
  margin-left: 10px;
}

.wsus__dashboard_review_item {
  padding: 20px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
  margin-bottom: 30px;
}

.wsus__dashboard_review_item.for_mar {
  margin-bottom: 0px;
}

.wsus__dash_rev_img {
  width: 20%;
  float: left;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}

.wsus__dash_rev_text {
  float: left;
  width: 80%;
  padding-left: 20px;
}

.wsus__dash_rev_text h5 {
  text-transform: capitalize;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.wsus__dash_rev_text h5 span {
  color: #e18e96;
  font-weight: 500;
  font-style: italic;
}

.wsus__dash_review {
  color: #f90;
  font-size: 14px;
}

.wsus__dashboard_review_item ul {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.wsus__dashboard_review_item ul li a {
  text-transform: capitalize;
  margin-right: 10px;
  padding: 4px 10px;
  border-radius: 3px;
  color: #fff;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  background: #e18e96;
  font-size: 13px;
}

.wsus__dashboard_review_item ul li a i {
  margin-right: 5px;
}

.wsus__dashboard_review_item ul li a:hover {
  color: #000;
}

.wsus__riv_edit_single {
  position: relative;
  margin-bottom: 20px;
}

.wsus__riv_edit_single i {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #858d91;
  font-size: 14px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.wsus__dash_rev_text .accordion-body {
  padding: 20px 0px 0px 0px;
}

.wsus__dash_rev_text .select2-container--default .select2-selection--single {
  padding: 25px 20px 20px 50px;
  border-radius: 5px;
}

.text_area i {
  transform: translate(0);
  top: 27px;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
}

.wsus__riv_edit_single textarea {
  width: 100%;
  resize: none;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 20px 20px 20px 50px;
  color: #63696c;
  font-size: 14px;
}

.wsus__dash_pro_area,
.wsus__dashboard_add {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.3) 0px 0px 8px 0px;
}

.wsus__dash_pro_area h4 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.wsus__dash_pro_single {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.wsus__dash_pro_single i {
  width: 57px;
  height: 47px;
  background: #fff;
  line-height: 45px;
  text-align: center;
  border-radius: 3px;
  margin-right: 10px;
  color: #e18e96;
  border: 1px solid #eee;
}

.wsus__dash_pro_single input,
.wsus__dash_pro_single textarea,
.medicine_row_input input {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  resize: none;
  border: 1px solid #eee;
}

.wsus__dash_pro_img {
  border-radius: 5px;
  border: 1px solid #eee;
  overflow: hidden;
  position: relative;
}

.wsus__dash_pro_img input {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #6fbcfb85;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.wsus__dash_add_single {
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}

.wsus__dash_add_single h4 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
  background: #def0ff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.wsus__dash_add_single h4 span {
  color: #e18e96;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid#e18e96;
  background: #fff;
  padding: 0px 10px;
  border-radius: 4px;
}

.wsus__dash_add_single ul {
  padding: 10px 20px 20px 20px;
}

.wsus__dash_add_single ul li {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 16px;
  text-transform: capitalize;
  flex-wrap: wrap;
}

.wsus__dash_add_single ul li span {
  color: #353535;
  text-transform: capitalize;
  font-weight: 500;
  width: 30%;
}

.wsus__address_btn {
  border-top: 1px solid #eee;
  background: #f2f9ff;
  display: flex;
  justify-content: space-between;
}

.wsus__address_btn a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: #fff;
  padding: 5px;
  width: 100%;
  background: #e18e96;
}

.wsus__address_btn a i {
  margin-right: 5px;
}

.add_address_btn {
  margin-top: 15px;
}

.add_address_btn i {
  margin-right: 5px;
}

.wsus__add_address_single {
  margin-bottom: 25px;
}

.wsus__add_address_single label {
  text-transform: capitalize;
  margin-bottom: 5px;
}

.wsus__add_address_single label b {
  color: red;
}

.wsus__add_address_single input,
.wsus__add_address_single textarea {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  resize: none;
  border: 1px solid #eee;
}

.wsus__add_address_single .select2-container--default .select2-selection--single {
  border-radius: 5px;
}

.wsus__add_address button {
  border: none;
}

.close_icon {
  width: 40px;
  height: 40px;
  background: #e18e96;
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: absolute;
  top: 0px;
  right: -40px;
  cursor: pointer;
  display: none;
  font-size: 25px;
  z-index: 99;
}

.close_icon .dash_bar,
.close_icon .dash_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #e18e96;
  font-size: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.close_icon .dash_close {
  background: red;
  opacity: 0;
}

.far.fa-times.dash_close.dash_opasity {
  opacity: 1;
}

#wsus__dashboard .wsus__pro_img {
  width: 170px;
}

#wsus__dashboard .wishlist .wsus__pro_select {
  width: 210px;
}

#wsus__dashboard .wsus__pro_icon {
  width: 160px;
}

/*========================
	DASHBOARD END
=========================*/

/*======================
TERMS & CONDITION START
========================*/
#wsus__terms_condition {
  margin-top: 67px;
}

#wsus__terms_condition h2 {
  font-size: 35px;
  margin-bottom: 35px;
  text-transform: capitalize;
  font-weight: 600;
}

.wsus__terms_text h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.wsus__terms_text ul {
  margin-bottom: 25px;
}


.wsus__terms_text ul li {
  margin: 20px 0px;
  font-size: 15px;
  color: #777;
}

.wsus__terms_text p {
  margin-bottom: 20px;
  font-size: 15px;
}

.wsus__terms_text p:last-child {
  margin-bottom: 0;
}

.wsus__terms_text p a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #e18e96;
}

/*======================
TERMS & CONDITION END
========================*/

/*======================
FORGET PASSWORD START
========================*/
.wsus__forget_area {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  background: #fff;
}

.wsus__forget_area .qiestion_icon {
  display: block;
  text-align: center;
}

.wsus__forget_area .qiestion_icon i {
  font-size: 40px;
  color: #e18e96;
  margin-bottom: 15px;
}

.wsus__forget_area h4 {
  color: red;
  margin-bottom: 20px;
  text-align: center;
}

.wsus__forget_area p {
  text-transform: capitalize;
  text-align: center;
}

.wsus__forget_area p span {
  text-transform: uppercase;
  color: #e18e96;
  font-weight: 700;
  display: block;
}

.wsus__forget_area .wsus__login_input {
  margin-bottom: 25px;
}

.wsus__forget_area .see_btn {
  padding: 8px 10px;
  display: block;
  text-align: center;
}

/*======================
FORGET PASSWORD END
========================*/

/*======================
CHANGE PASSWORD START
========================*/
.wsus__change_password {
  padding: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__change_password h4 {
  margin-bottom: 35px;
}

.wsus__single_pass {
  margin-bottom: 25px;
}

.wsus__single_pass label {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.wsus__single_pass input {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
  resize: none;
  border: 1px solid #eee;
}

.wsus__change_password button {
  width: 100%;
}

/*======================
CHANGE PASSWORD END
========================*/

/*======================
PAYMENT PAGE  START
========================*/
/* Default LTR styles */
.wsus__pay_info_area .nav-pills .nav-link {
  margin-bottom: 10px;
  padding: 15px 0px;
  background: #e18e96;
  border-radius: 30px;
}

/* RTL styles for Arabic */
[dir="rtl"] .wsus__pay_info_area .nav-pills .nav-link {
  text-align: center;
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
}

.wsus__payment_menu {
  padding: 15px;
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  border-radius: 5px;
}

/* RTL adjustments for payment menu */
[dir="rtl"] .wsus__payment_menu {
  text-align: right;
}

[dir="rtl"] .wsus__payment_menu .nav-pills {
  padding-right: 0;
}

.wsus__payment_menu .nav-pills button:last-child {
  margin-bottom: 0;
}

.wsus__pay_info_area .nav-pills .nav-link.active,
.wsus__pay_info_area .nav-pills .nav-link:hover {
  background: rgb(255, 102, 172);
}

.wsus__pay_info_area .tab-pane {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 20px;
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__pay_caed_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.wsus__pay_caed_header h5 {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
}

.wsus__pay_caed_header img {
  width: 80px;
  border-radius: 5px;
}

.wsus__payment_area .input {
  color: #353535;
  background: none;
  width: 100%;
  padding: 5px 0px;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
  resize: none;
  border: none;
  border-bottom: 1px solid #eee;
}

.wsus__payment_area .input::placeholder {
  color: #000;
  opacity: .3;
}

.wsus__save_payment {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.wsus__save_payment h6 {
  font-size: 14px;
  font-weight: 500;
}

.wsus__save_payment h6 i {
  margin-right: 5px;
}

.wsus__save_payment img {
  width: 50px;
  margin-left: 10px;
  border-radius: 3px;
}

.wsus__save_card {
  display: flex;
  align-items: center;
}

.wsus__save_card label {
  font-weight: 400;
  font-size: 14px;
}

.wsus__payment_area button {
  font-weight: 600;
  width: 100%;
  border-radius: 30px;
}

.wsus__payment_area .form-check input {
  border-radius: 10px !important;
}

.wsus__pay_info_area p {
  font-size: 15px;
  margin-bottom: 20px;
}

.wsus__pay_info_area ul {
  margin-bottom: 25px;
}

.wsus__pay_info_area ul li {
  color: #797979;
  font-size: 15px;
  margin: 10px 0px;
  padding-left: 30px;
  position: relative;
}

.wsus__pay_info_area ul li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: normal;
  position: absolute;
  content: "\f00c";
  top: 1px;
  left: 0;
  color: #e18e96;
  font-size: 14px;
  border: none;
}

.wsus__pay_info_area .wsus__input_area input,
.wsus__pay_info_area .wsus__input_area textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  resize: none;
  border: 1px solid #ddd;
}

.wsus__pay_info_area .select2-container--default .select2-selection--single {
  border-radius: 5px;
  border: 1px solid #ddd;
}

.wsus__pay_booking_summary {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__pay_booking_summary h5 {
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.wsus__pay_booking_summary p {
  color: #353535;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.wsus__pay_booking_summary p span {
  color: #353535;
}

.wsus__pay_booking_summary h6 {
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  border-top: 2px solid #fff;
  padding-top: 15px;
  margin-top: 15px;
}

.wsus__pay_booking_summary h6 span {
  color: #353535;
  font-weight: 700;
}

/*======================
PAYMENT PAGE  END
========================*/

/*======================
TRACKING ORDER START
========================*/
.tack_form {
  background: #fff;
  padding: 40px;
  text-align: center;
  margin-bottom: 62px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.tack_form h4 {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 600;
}

.tack_form p {
  text-transform: capitalize;
  margin-bottom: 50px;
}

.wsus__track_input label {
  text-transform: capitalize;
  text-align: left;
  color: #353535;
}

.wsus__track_input input {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 25px;
  resize: none;
  border-radius: 5px;
  border: 1px solid #eee;
}

.tack_form button {
  width: 100%;
  margin: 0 !important;
}

.wsus__track_header_text {
  /* border: 1px solid #eee; */
  /* padding: 20px; */
  border-radius: 5px;
  margin-top: 10px;
}

.wsus__track_header_single {
  border-right: 1px solid #eee;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.wsus__track_header_single.border_none {
  border: none;
}

.wsus__track_header_single h5 {
  text-transform: capitalize;
  font-size: 18px;
}

.wsus__track_header_single p {
  text-transform: capitalize;
  font-size: 15px;
  color: #353535;
}

.progtrckr {
  margin: 50px 0px 57px 0px;
}

.progtrckr li {
  display: inline-block;
  text-align: center;
  width: 24.75%;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 30px;
  position: relative;
}

.progtrckr li::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  left: 50%;
  content: "\f00c";
  color: silver;
  background: #fff;
  font-size: 23px;
  bottom: -23px;
  width: 45px;
  height: 45px;
  line-height: 43px;
  border-radius: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  border: 2px solid silver;
  z-index: 1;
}

.progtrckr li::after {
  position: absolute;
  content: "";
  width: 102%;
  height: 4px;
  background: silver;
  bottom: -4px;
  left: 0;
}

.progtrckr li:nth-child(1)::before {
  content: "\f061";
}

.progtrckr li:nth-child(1)::after {
  background: #e18e96;
}

.progtrckr li:nth-child(2)::before {
  content: "\f2f1";
}

.progtrckr li:nth-child(3)::before {
  content: "\f0d1";
}

.check_mark::before {
  background: #e18e96 !important;
  color: #fff !important;
  border-color: #e18e96 !important;
}

.check_mark::after {
  background: #e18e96 !important;
}

.red_mark::before {
  content: "\f00d" !important;
  background: #dc3545 !important;
  border-color: #dc3545 !important;
  color: #fff !important;
}

.red_mark::after {
  background: #dc3545 !important;
}












/* .progtrckr li:last-child::after {
  width: 100%;
}

.progtrckr li:nth-child(1)::before {
  content: "\f058";
}

.progtrckr li:nth-child(2)::before {
  content: "\f013";
}

.progtrckr li:nth-child(3)::before {
  content: "\f0d1";
}

.progtrckr li:nth-child(4)::before {
  content: "\f06b";
}

.progtrckr li.progtrckr_done::before {
  content: "\f00c";
  background:#e18e96;
  color: #fff;
  border-color:#e18e96;
}

.progtrckr li.progtrckr_done::after {
  background:#e18e96;
} */

.wsus__track_area .common_btn {
  margin-top: 25px;
}

/*======================
TRACKING ORDER END
========================*/

/*======================
VENDORS PAGE START
========================*/
.wsus__vendor_sidebar {
  padding: 20px;
}

.wsus__vendor_sidebar form {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
}

.wsus__vendor_sidebar form input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  border: 1px solid #eee;
  border-radius: 5px;
}

.wsus__vendor_sidebar form button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.wsus__vendor_sidebar_select {
  margin-top: 15px;
}

.wsus__vendor_sidebar_select h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.wsus__vendor_sidebar .select2-container--default .select2-selection--single {
  border-radius: 5px;
}

.wsus__vendor_sidebar_select form {
  margin-bottom: 15px;
}

.wsus__vendor_single {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 30px;
  width: 100%;
  height: 302px;
}

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

.wsus__vendor_text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0000004a;
}

.wsus__vendor_text_center {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.wsus__vendor_text_center h4 {
  color: #fff;
  text-transform: capitalize;
}

.wsus__vendor_text_center .wsus__vendor_rating {
  color: #ff9f00;
  margin: 15px 0px 0px 0px;
}

.wsus__vendor_text_center a {
  color: #fff;
  display: block;
  margin: 5px 0px;
}

.wsus__vendor_text_center a i {
  width: 25px;
}

.wsus__vendor_text_center .common_btn {
  display: inline-block;
  margin: 14px 0px 0px 0px;
}

/*======================
VENDORS PAGE END
========================*/

/*======================
VENDORS DETAILA START
========================*/
.wsus__vendor_det_banner_text {
  background: linear-gradient(90deg,
      rgba(11, 44, 61, 1) 0%,
      rgba(6, 120, 148, 0) 50%,
      rgba(11, 44, 61, 0) 100%);
}

.wsus__vendor_det_banner_text .wsus__vendor_location,
.wsus__vendor_det_banner_text .wsus__open_store {
  color: #fff;
  text-transform: capitalize;
}

.wsus__vendor_det_banner_text .wsus__vendor_location i,
.wsus__vendor_det_banner_text .wsus__open_store i {
  width: 25px;
}

.wsus__vendor_det_banner_text .wsus__vendor_text_center {
  width: 40%;
}

.wsus__vendor_det_banner_text ul {
  display: flex;
  margin-top: 10px;
}

.wsus__vendor_det_banner_text ul li a {
  width: 35px;
  height: 35px;
  line-height: 37px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  background: #eee;
  color: #353535;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.modal-title {
  text-transform: capitalize;
}

.vendor_review_modal .rating {
  margin-bottom: 15px;
}

/*======================
VENDORS DETAILA END
========================*/

/*======================
CATEGORY PAGE START
========================*/
.wsus__category_topbar .select2-container--default .select2-selection--single {
  width: 100%;
}

.wsus__category_topbar .wsus__topbar_select {
  border-radius: 5px;
  overflow: hidden;
  width: 32%;
}

.wsus__category_topbar .wsus__topbar_select2 {
  border-right: 1px solid #eee;
}

.wsus__category_topbar button {
  width: 32%;
  border: none;
}

/*======================
CATEGORY PAGE END
========================*/

/*======================
CUSTOM PAGE START
========================*/
.wsus__custom_pages p {
  margin-top: -7px;
}

.wsus__custom_pages p span {
  display: block;
  margin-top: 20px;
}

/*======================
CUSTOM PAGE END
========================*/

/*======================
	DAILY DEALS START
========================*/
#wsus__daily_deals {
  margin-top: 43px;
}

.wsus__daily_deals_single {
  border: 1px solid #eee;
  overflow: hidden;
  background: #def0ff;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  margin-top: 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__daily_deals_single_img {
  overflow: hidden;
  position: relative;
}

.wsus__daily_deals_single_img .link_img {
  width: 100%;
  height: 240px;
}

.wsus__daily_deals_single_img .link_img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.wsus__daily_deals_single_img p {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  text-align: center;
  background: #e18e96;
  padding: 8px 0px 10px 0px;
}

.wsus__daily_deals_single_img .live {
  background: red;
  color: #fff;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
  border-radius: 3px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__daily_deals_single_img .live:hover {
  background: #ae0a0a;
}

.wsus__daily_deals_text {
  padding: 20px;
}

.wsus__daily_deals_text .deals_title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  display: block;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__daily_deals_text p {
  text-transform: capitalize;
  font-size: 14px;
}

.wsus__daily_deals_text .common_btn {
  margin-top: 20px;
  padding: 8px 15px;
  text-transform: capitalize;
  display: inline-block;
}

.wsus__daily_deals_text .deals_title:hover {
  color: #e18e96;
}

/*======================
	DAILY DEALS END
========================*/

/*======================
DAILY DEALS DETAILS START
========================*/
.wsus__offer_details_banner {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 70px;
  position: relative;
  width: 100%;
  height: 230px;
}

.wsus__offer_details_banner img {
  height: 100%;
  object-fit: cover;
}

.wsus__offer_details_banner_text {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 40%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.wsus__offer_details_banner_text p {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 7px;
  font-weight: 600;
}

.wsus__offer_details_banner_text span {
  display: block;
  color: #fff;
  padding: 5px 0px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 25px;
  margin-top: 10px;
}

.wsus__offer_details_area .simply-seconds-section {
  margin-right: 0;
}

.wsus__offer_det_single {
  border: 1px solid #eee;
  border-radius: 5px;
  margin-top: 25px;
  background: #fff;
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
}

.wsus__offer_det_single .wsus__product_item {
  border: none;
  margin-top: 0;
  box-shadow: none;
}

.wsus__offer_progress {
  padding: 0px 15px 15px 15px;
}

.wsus__offer_progress p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.wsus__offer_progress p span {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
}

.wsus__offer_progress .progress {
  height: 15px;
  font-size: 11px;
  border-radius: 30px;
  font-weight: 600;
}

.wsus__offer_progress .progress-bar {
  background-color: #e18e96;
}

/*======================
DAILY DEALS DETAILS END
========================*/

/*======================
	BRANDS PAGE START
========================*/
#wsus__brands {
  margin-top: 40px;
}

.wsus__single_brand {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 5px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 150px;
  position: relative;
  margin-top: 30px;
}

.wsus__single_brand img {
  height: 100%;
  object-fit: cover;
}

.wsus__single_brand::after {
  position: absolute;
  content: "";
  background: #e18e96;
  width: 70%;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__single_brand:hover::after {
  width: 100%;
  height: 100%;
  opacity: .5;
}

.wsus__single_brand .new {
  position: absolute;
  top: 0;
  left: 0;
  background: #08C;
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  padding: 0px 10px;
  border-bottom-right-radius: 5px;
  z-index: 1;
}

.wsus__single_brand .rating {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f6bc3e;
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  padding: 0px 10px;
  border-top-left-radius: 5px;
  z-index: 1;
}

/*======================
	BRANDS PAGE END
========================*/

/*======================
	HOME PAGE 2 START
========================*/
header .dropdown .nav-link {
  width: auto;
  height: 40px;
  padding: 0px 10px;
  border-radius: 30px;
}

header .dropdown-menu {
  padding: 0;
  border: 1px solid#ff88bf;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  min-width: 6rem;
  margin-top: 5px !important;
}

header .dropdown-menu li {
  margin: 0px !important;
}

header .dropdown-menu a {
  width: auto !important;
  height: auto !important;
  box-shadow: none;
  padding: 5px 0px;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid #e69138 !important;
  font-weight: 600;
  border-radius: 0 !important;
  color: #333 !important;
  background: #fff !important;
}

header .dropdown-menu a:hover {
  background: #e69138 !important;
}

header .wsus__search button:hover {
  background: #e18e96 !important;
  color: #fff !important;
}

.wsus__main_menu .cat_icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  float: left;
  background: #5897fb;
  color: #fff;
  font-size: 23px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__main_menu .cat_icon:hover {
  background: #316089 !important;
}

.wsus__menu_item_right li:first-child {
  margin-left: 0px;
}

.wsus__menu_item li:last-child {
  margin-right: 0px;
}

.relative_contect {
  position: relative;
}

header .wsus__call_text a:hover {
  color: #316089 !important;
}


.wsus__menu_item li a:hover {
  color: #e18e96 !important;
}


.wsus__mini_cart h4 span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  margin-top: -5px;
  font-size: 16px;
}

.wsis__del_icon {
  opacity: 0;
}

.wsus__mini_cart ul li:hover .wsis__del_icon {
  opacity: 1;
}

.wsus_menu_cat_item {
  width: 250px;
  height: 575px;
  position: absolute;
  top: 99%;
  left: 0;
  border-radius: 5px;
}

.wsus_menu_cat_item::-webkit-scrollbar {
  scrollbar-width: thin !important;
  background: #353535;
  height: 4px;
  width: 4px;
  border-radius: 30px;
}


.wsus_menu_cat_item>li:hover>a,
.wsus_menu_cat_droapdown>li:hover>a {
  color: #e18e96 !important;
  background: none;
}

/* banner 2 start */
#wsus__banner .slick-dots {
  justify-content: center;
}

.wsus__single_banner_content {
  height: 270px;
  border-radius: 5px;
  overflow: hidden;
}

.wsus__single_banner_content .wsus__single_banner_img {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  width: 100%;
  height: 100%;
}

.wsus__single_banner_content .wsus__single_banner_img img {
  object-fit: cover;
  height: 100%;
}

/* product start */
.wsus__minus {
  width: 50px;
  border-radius: 30px;
  opacity: 0.3;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
}

.wsus__product_item:hover .wsus__new,
.wsus__product_item:hover .wsus__minus {
  opacity: 1;
}

.wsus__product_item:hover .wsus__product_details .wsus__price {
  opacity: 1;
  visibility: visible;
}

.wsus__product_details .wsus__price {
  margin-bottom: 3px;
}

.wsus__single_pro_icon li a {
  background: #fff;
}

.wsus__single_pro_icon li a:hover {
  color: #fff !important;
}

.wsus__monthly_top_2 .grid .wsus__hot_deals__single_img {
  width: 100% !important;
  height: auto;
  border-right: 0;
}

.wsus__monthly_top_2 .grid .wsus__hot_deals__single_text {
  width: 100% !important;
  padding-left: 0 !important;
}

.wsus__monthly_top_2 .wsus__monthly_top_banner_text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.wsus__monthly_top_2 .wsus__monthly_top_banner_text h3 {
  font-size: 40px;
  margin: 0px 25px;
}

.wsus__monthly_top_2 .wsus__monthly_top_banner_text h3 span {
  font-size: 40px;
}

.wsus__monthly_top_2 .wsus__monthly_top_banner_text h6 {
  font-size: 20px;
  margin-bottom: 0;
  margin-right: 25px;
}

.wsus__monthly_top_2 .wsus__monthly_top_banner_text h4 {
  font-size: 20px;
}

.brand_slider_2 .wsus__brand_logo {
  margin: 0px 12px;
  overflow: hidden;
}

.wsus__hot_deals_2 .wsus__hot_deals_img {
  width: 100% !important;
  position: relative;
}

.wsus__hot_deals_2 .wsus__hot_deals_img img {
  object-fit: cover;
}

.wsus__hot_deals_2 .wsus__hot_deals_text {
  width: 100% !important;
  padding-left: 0;
  padding-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: #00000696;
  height: 100%;
  text-align: center;
  display: flex;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all linear .5s;
  -webkit-transition: all linear .5s;
  -moz-transition: all linear .5s;
  -ms-transition: all linear .5s;
  -o-transition: all linear .5s;
}

.wsus__hot_deals_offer:hover .wsus__hot_deals_text {
  opacity: 1;
}

.wsus__hot_deals_2 .wsus__hot_deals_text .wsus__hot_title,
.wsus__hot_deals_2 .wsus__hot_deals_text .wsus__rating span {
  color: #fff;
}

.wsus__hot_deals_2 .wsus__hot_deals_text .wsus__details {
  color: #fff;
  width: 85%;
}

.wsus__hot_deals_2 .wsus__hot_deals_text ul li:nth-child(2) a,
.wsus__hot_deals_2 .wsus__hot_deals_text ul li:nth-child(3) a {
  border-color: #fff;
  color: #fff;
}

.wsus__hot_deals_2 .wsus__hot_deals_text ul li:nth-child(2) a:hover,
.wsus__hot_deals_2 .wsus__hot_deals_text ul li:nth-child(3) a:hover {
  border-color: #e18e96 !important;
}

.wsus__hot_deals_2 .simply-countdown {
  margin-top: 15px;
}

.wsus__hot_deals_2 .wsus__hot_deals_offer .simply-days-section,
.wsus__hot_deals_2 .wsus__hot_deals_offer .simply-hours-section,
.wsus__hot_deals_2 .wsus__hot_deals_offer .simply-minutes-section,
.wsus__hot_deals_2 .wsus__hot_deals_offer .simply-seconds-section {
  border: 1px solid #fff;
  width: 70px;
  height: 47px;
  margin: 0px 5px;
  border-radius: 3px;
}

.wsus__single_banner_2 .wsus__single_banner_content .wsus__single_banner_img {
  border-radius: 5px;
}


.wsus__hot_small_item_2 .wsus__hot_deals__single_img {
  width: 100% !important;
  border-right: 0;
}

.wsus__hot_small_item_2 .wsus__hot_deals__single_text {
  width: 100% !important;
  margin-top: 0;
  padding-left: 0 !important;
  /*! text-align: center; */
}

.wsus__hot_small_item_2 .wsus__hot_deals__single {
  border-color: #eee;
}

.home_2_single_banner .banner_1 {
  height: 565px;
  border-radius: 5px;
  overflow: hidden;
}

.banner_1 .wsus__single_banner_text {
  background: #00000096;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translate(0);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner_1 .wsus__single_banner_text h6 {
  font-size: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner_1 .wsus__single_banner_text h6 span {
  font-size: 67px;
  font-weight: 900;
  color: #e18e96;
  margin-left: 10px;
}

.banner_1 .wsus__single_banner_text h3 {
  font-size: 55px;
}

.banner_1 .shop_btn {
  font-size: 16px;
  padding: 15px 40px;
}

.weekly_best2 .wsus__hot_deals__single_img {
  width: 100% !important;
  border-right: 0;
}

.weekly_best2 .wsus__hot_deals__single_text {
  width: 100% !important;
  margin-top: 0;
  padding-left: 0 !important;
  /*! text-align: center; */
}

.weekly_best2 .wsus__hot_deals__single {
  margin: 25px 12px 0px 12px;
}

.home_service_2 {
  margin-top: 90px !important;
}

.home_service_single_2 {
  border: none;
  background: #fff;
  position: relative;
  padding: 50px 0px 25px 0px;
  border-radius: 5px;
  /* border-left: 1px solid #eee; */
  box-shadow: rgb(50 50 93 / 15%) 0px 0px 5px 0px;
  text-align: center;
}

.home_service_single_2.border_left {
  border: none;
}

.home_service_single_2 p {
  font-size: 15px;
}

.home_service_single_2 i {
  font-size: 25px;
  margin: 0px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  background: #e18e96;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff !important;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.wsus__single_blog_2 .wsus__blog_text {
  position: relative;
}

.wsus__single_blog_2 .wsus__blog_text_center a:hover {
  color: #e18e96;
}

.wsus__single_blog_2 .blog_top {
  top: -20px;
  left: auto;
  right: 20px;
}

.offer_time {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.offer_time::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.wsus__flash_sell_2 .simply-section.simply-days-section,
.wsus__flash_sell_2 .simply-section.simply-hours-section,
.wsus__flash_sell_2 .simply-section.simply-minutes-section,
.wsus__flash_sell_2 .simply-section.simply-seconds-section {
  width: 90px;
  height: 90px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  margin: 0px 5px;
  background: #00000066;
}

.wsus__flash_sell_2 .simply-amount {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  border-bottom: 1px dashed #ddd;
  height: 55px;
  line-height: 55px;
}

.wsus__flash_sell_2 .simply-word {
  color: #fff;
  text-transform: capitalize;
  height: 35px;
  line-height: 35px;
  display: block;
  font-size: 13px;
}

.footer_2 {
  margin-top: 70px;
  background: #0b2c3d;
}

.footer_2 form {
  position: relative;
  width: 100%;
  margin: 15px 0px 25px 0px;
}

.footer_2 form input {
  width: 100%;
  padding: 17px 20px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: none;
}

.footer_2 form button {
  position: absolute;
  top: 2px;
  right: 2px;
  height: 94%;
  border-radius: 30px;
}

.wsus__footer_content_2 h3 {
  font-weight: 900;
  font-size: 25px;
  color: #fff;
}

.wsus__footer_content_2 p {
  padding: 0px;
  margin-top: 22px;
}

.footer_payment p {
  margin: 0px 0px 10px 0px;
  text-transform: capitalize;
}

.footer_payment img {
  width: auto;
}

.footer_2 .wsus__footer_social li a {
  background: #def0ff2e;
  color: #fff;
}

.wsus__footer_2_logo {
  width: 100%;
  border-radius: 5px;
  padding: 0px 10px 10px 10px;
  margin-bottom: 10px;
}

.footer_2 .wsus__footer_content img {
  margin-bottom: 0;
}

.footer_2 .wsus__footer_content h5 {
  border-bottom: 2px solid #eee;
  display: inline-block;
}

.footer_2 .wsus__footer_content h5,
.footer_2 .wsus__footer_content p,
.footer_2 .wsus__footer_menu li a,
.footer_2 .wsus__footer_content .action,
.footer_2 .wsus__footer_content p,
.footer_2 .wsus__footer_bottom p {
  color: #ffffffde;
}

.footer_payment img {
  width: 100%;
}

/*======================
	HOME PAGE 2 END
========================*/


/*======================
DASHBOARD CHAT START
========================*/
.wsus__chatlist,
.wsus__chat_main_area {
  height: 73vh;
  border-radius: 5px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.27) 0px 1px 4px;
  overflow: hidden;
}

.wsus__chatlist_body {
  text-align: center;
  max-height: 645px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e18e96 #0b172d;
  width: 100%;
}

.wsus__chatlist h2,
.wsus__chat_area_header h2 {
  text-transform: capitalize;
  font-size: 18px;
  padding: 10px;
  color: #fff;
  font-weight: 600;
  background: #e18e96;
  text-align: center;
  width: 100%;
}

.wsus__chatlist #v-pills-tab {
  width: 100%;
  margin: 0 !important;
}

.wsus__chatlist button {
  width: 100%;
  border: none;
  border-radius: 0 !important;
  text-align: left;
  outline: none;
  background: none;
  align-items: center;
  display: flex;
  padding: 15px 10px;
}

.wsus__chatlist .nav-pills .nav-link.active {
  background-color: #eeeeeeb3;
}

.wsus__chatlist .wsus_chat_list_img {
  width: 60px;
  height: 60px;
  float: left;
  position: relative;
  margin-right: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 8px;
  border: 5px solid #fff;
}

.wsus__chatlist .wsus_chat_list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.wsus_chat_list_img span {
  background: #e18e96;
  color: #fff;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: 600;
  top: -3px;
  left: -8px;
  position: absolute;
}

.wsus__chatlist .wsus_chat_list_text {
  width: 295px;
}

.wsus__chatlist .wsus_chat_list_text h4 {
  text-transform: capitalize;
  font-size: 16px;
  margin-bottom: 5px;
  color: #5c5c5c;
  font-weight: 500;
}

.wsus__chatlist .wsus_chat_list_text .status {
  color: #999;
  text-transform: capitalize;
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.wsus__chatlist .wsus_chat_list_text .status::after {
  position: absolute;
  content: "";
  background: #b0b0b0;
  width: 13px;
  height: 13px;
  top: 50%;
  left: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.wsus__chatlist .wsus_chat_list_text .status.active {
  color: #ff55a3;
}

.wsus__chatlist .wsus_chat_list_text .status.active::after {
  background: #ff55a3;
}

.wsus__chat_area_body {
  max-height: 591px;
  height: 591px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e18e96 #0b172d;
}

.wsus__chat_single {
  overflow: hidden;
  padding: 15px 15px 0px 15px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.wsus__chat_single_img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 15px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 8px;
  border: 5px solid #fff;
}

.wsus__chat_single_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wsus__chat_single_text {
  width: 80%;
  text-align: left;
}

.wsus__chat_single_text p {
  text-align: left;
  padding: 10px;
  background: #eeeeeeb3;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-block;
  font-size: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.wsus__chat_single_text span {
  display: block;
  text-align: left;
  color: #b8b8b8;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
}

.wsus__chat_single.single_chat_2 {
  flex-direction: row-reverse;
  float: right;
}

.single_chat_2 .wsus__chat_single_text {
  text-align: right;
}

.single_chat_2 .wsus__chat_single_img {
  margin-right: 0;
  margin-left: 15px;
}

.single_chat_2 .wsus__chat_single_text span {
  text-align: right;
}

.single_chat_2 .wsus__chat_single_text p {
  background: #e18e96;
  color: #fff;
}

.wsus__chat_area_footer form {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.wsus__chat_area_footer form input {
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
  border: 1px solid #eee;
}

.wsus__chat_area_footer form button {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #e18e96;
  color: #fff;
  padding-right: 2px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s ease;
  -moz-transition: all linear .3s ease;
  -ms-transition: all linear .3s ease;
  -o-transition: all linear .3s ease;
}

.wsus__chat_area_footer form button:hover {
  background: #ff55a3;
}

/*======================
DASHBOARD CHAT END
========================*/


/* extra css start here */
.modal_btn {
  display: flex;
  width: 150px;
}

.modal_btn input {
  width: 100%;
  margin: 0px 5px;
  text-align: center;
  background: #fff !important;
  border: 1px solid #ddd;
  border-radius: .25rem;
  padding: .375rem .75rem;
}

.modal_btn input:focus {
  border-color: #ddd;
  box-shadow: none;
}

.modal_btn button {
  outline: none;
  padding: 0px 12px;
  font-size: 20px;
}

.modal_btn button:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: none;
}

.modal_btn button:focus {
  box-shadow: none;
}

.modal_btn .btn-danger:focus {
  background-color: #dc3545;
  border-color: #dc3545;
}

.wsus__quentity h3 span {
  margin-left: 5px;
  display: inline-block;
  font-size: 23px;
  color: #e18e96;
  font-weight: 600;
}

.wsus__pro_details_text h4 span {
  margin-left: 5px;
  display: inline-block;
  font-size: 30px;
  color: #e18e96;
  font-weight: 700;
}

.login_link {
  color: #d33;
  text-transform: capitalize;
  font-size: 15px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.login_link:hover {
  color: #e18e96;
}

.invoice_print i {
  margin-right: 5px;
}

.select_number .number_area {
  width: 65px;
  border-radius: 30px;
  margin: 0px 5px;
}

.wsus__brand_logo a {
  margin-top: 5px;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: #e18e96;
}

/* extra css end here */

.wsus__input input {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  resize: none;
  border: 1px solid #eee;
  margin-bottom: 10px;
}

.wsus__input select {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  resize: none;
  border: 1px solid #eee;
  margin-bottom: 10px;
}

.wsus__input textarea {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  color: #353535;
  resize: none;
  border: 1px solid #eee;
  margin-bottom: 10px;
}

.wsus__input label {
  margin-bottom: 5px;
}

.create_button {
  text-align: right;
  margin-bottom: 10px;
}

#flexSwitchCheckDefault {
  height: 20px !important;
  width: 50px !important;
}

.delete-item {
  margin-left: 4px !important;
}

.btn-space-right {
  margin-right: 5px;
  color: #fff;
}


.page-item.disabled>.page-link {
  width: 35px;
  height: 35px;
  padding: 0;
  text-align: center;
  line-height: 35px;
  font-size: 13px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-radius: 50%;
  border: 1px solid #e18e96;
  margin-right: 10px;
}

.page-item.active>.page-link {
  width: 35px;
  height: 35px;
  padding: 0;
  text-align: center;
  line-height: 35px;
  font-size: 13px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-radius: 50%;
  border: 1px solid #e18e96;
  margin-right: 10px;
}

.page-item>.page-link {
  width: 35px;
  height: 35px;
  padding: 0;
  text-align: center;
  line-height: 35px;
  font-size: 13px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-radius: 100% !important;
  ;
  border: 1px solid #e18e96;
  margin-right: 10px;
}


/* New product badge */
.wsus__new:empty {
  display: none;
}

.wsus__new {
  position: absolute;
  top: 10px;
  left: 10px;
  /* Position on the left side in LTR */
  background: #e18e96;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0 12px;
  height: 25px;
  line-height: 25px;
  border-radius: 30px;
  text-transform: capitalize;
  z-index: 1;
  opacity: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  text-align: center;
  min-width: 45px;
  white-space: nowrap;
}

/* Wishlist button styles */
.wsus__single_pro_icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wsus__single_pro_icon li {
  display: inline-block;
  margin-left: 5px;
}

.wsus__single_pro_icon .add_to_wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  color: #555;
  transition: all 0.3s;
}

.wsus__single_pro_icon .add_to_wishlist:hover {
  background: #e18e96;
  color: #fff;
}


/* Hover state for product item */
.wsus__product_item:hover .wsus__new {
  opacity: 1;
  transform: scale(1.05);
}

/* List view specific styles */
.wsus__list_view .wsus__new {
  top: 15px;
  inset-inline-end: 15px;
}

#sticky_pro_zoom {
  z-index: 9999 !important;
}

.product_qty_wrapper {
  display: flex;
}

.product_qty_wrapper>.product-qty {
  width: 43px;
  height: 36px;
  padding-left: 5px;
}

/* Duplicate removed - consolidated with line 602 */

#card-element {
  padding: 18px;
}

.razorpay-payment-button {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  background: #e18e96;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  outline: none;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s ease;
  -moz-transition: all linear 0.3s ease;
  -ms-transition: all linear 0.3s ease;
  -o-transition: all linear 0.3s ease;
  width: 100%;
}

.add_cart_two {
  position: static;
  padding: 0px 19px;
  font-size: 16px;
  width: auto;
  height: 40px;
  color: #fff;
  border: 1px solid #e18e96;
  background: #e18e96;
  margin-right: 10px;
}

.add_cart_two:hover {

  color: #e18e96;
  border: 1px solid #e18e96;
  background: #fff;

}

.wsus__pro_det_review .wsus__comment_text ul li {
  width: 20% !important;
  height: 20% !important;
  margin-right: 10px;
  float: left;
}

.wsus__hot_deals__single_img img {
  width: 200px !important;
  height: 150px !important;
  object-fit: cover;
}

.add_cart {
  border: 0px !important;
}


/* Loader */
.loader {
  width: 16px;
  height: 16px;
  box-shadow: 0 30px, 0 -30px;
  border-radius: 4px;
  background: currentColor;
  display: block;
  margin: -50px auto 0;
  position: relative;
  color: #FFF;
  transform: translateY(30px);
  box-sizing: border-box;
  animation: animloader 2s ease infinite;
}

.loader::after,
.loader::before {
  content: '';
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  box-shadow: 0 30px, 0 -30px;
  border-radius: 4px;
  background: currentColor;
  color: #FFF;
  position: absolute;
  left: 30px;
  top: 0;
  animation: animloader 2s 0.2s ease infinite;
}

.loader::before {
  animation-delay: 0.4s;
  left: 60px;
}

@keyframes animloader {
  0% {
    top: 0;
    color: white;
  }

  50% {
    top: 30px;
    color: rgba(255, 255, 255, 0.2);
  }

  100% {
    top: 0;
    color: white;
  }
}


.msg-notification {
  border: 5px solid #e18e96 !important;
}

.wsus__chat_area_footer {
  width: 100% !important;
  bottom: 0 !important;
  /* position: absolute !important; */
}

@font-face {
  font-family: 'ConneqtRegular';
  src: url('../fonts/ConneqtRegular.ttf') format('truetype');
}

select {
  padding: 1px;
  font-size: 13px;
  border: none;
  background-color: transparent;
  appearance: none;
  line-height: 20px;
  /* Ensure the dropdowns align with the flag icon */
  display: flex;
  /* Ensure proper alignment */
  align-items: center;
  /* Ensure proper alignment */
}


/* Footer  Content Styles */
footer {
  background-color: #F8F8F8;
  /* Changed to light gray as requested */
  padding-top: 50px;
}


.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: #fad1d9;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  border-radius: 4px;
}

.icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.card h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.card p {
  margin-bottom: 20px;
  font-size: 16px;
}

.underline-link {
  display: inline-block;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.custom-footer {
  margin-top: 30px;
  background: linear-gradient(180deg, #ffffff, #e6e3e3);
  /* Creates a soft vertical gradient */
  overflow: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  margin-bottom: 30px;
  min-width: 200px;
}

.signup-column {
  min-width: 300px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.signup-form input {
  padding: 12px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-size: 14px;
}

.signup-form button {
  padding: 12px;
  background-color: #F8E1E7;
  border: 1px solid #ccc;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons i {
  font-size: 20px;
  /* adjust the size as needed */
  line-height: 1;
  /* helps with vertical alignment */
}

.footer-column h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.copyright {
  background-color: #F8E1E7;
  /* Changed to light pink */
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

.currency-icons {
  display: flex;
  gap: 10px;
}

.currency-icon {
  width: 11px;
  height: 12px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

/* Weekly Best Section */
.weekly-best-section {
  direction: var(--direction, ltr);
  text-align: var(--text-align, left);
  font-family: 'Tajawal', sans-serif;
  padding: 80px 15px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.weekly-best-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
}

.weekly-best-card {
  border: 2px solid #e18e96;
  padding: 30px 25px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.weekly-best-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.weekly-best-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weekly-best-icon svg {
  width: 100%;
  height: 100%;
}

.weekly-best-card-title {
  color: #333;
  font-size: 20px;
  margin: 15px 0;
  font-weight: 600;
  text-align: center;
}

.weekly-best-card-text {
  color: #666;
  margin: 15px 0 25px;
  line-height: 1.6;
  text-align: center;
  min-height: 60px;
}

.weekly-best-button-container {
  text-align: center;
  margin-top: 20px;
}

.weekly-best-button {
  display: inline-block;
  padding: 12px 30px;
  background: #e18e96;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.weekly-best-button:hover {
  background: #d17b84;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 142, 150, 0.3);
}

.weekly-best-section .section-title {
  text-align: center;
  margin-bottom: 50px !important;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.weekly-best-section .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e18e96;
}

/* Dashboard Layout */
.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  position: relative;
  background-color: #f8f9fa;
}

.dashboard-content {
  flex: 1;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow-x: hidden;
}

/* Dashboard header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.dashboard-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
}

.dashboard-header h3 i {
  margin-right: 10px;
  color: #e18e96;
}

/* Weekly Best Section Responsive Styles */
@media (max-width: 1024px) {
  .weekly-best-cards {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .weekly-best-section {
    padding: 60px 15px;
  }

  .weekly-best-card {
    min-width: 100%;
    max-width: 100%;
  }

  .weekly-best-section .section-title {
    font-size: 30px;
    margin-bottom: 40px !important;
  }
}

@media (max-width: 480px) {
  .weekly-best-section {
    padding: 50px 10px;
  }

  .weekly-best-section .section-title {
    font-size: 26px;
    margin-bottom: 30px !important;
  }

  .weekly-best-card {
    padding: 25px 20px;
  }

  .weekly-best-card-title {
    font-size: 18px;
  }

  .weekly-best-card-text {
    font-size: 15px;
  }
}

h1 {
  text-align: center;
  font-family: 'Times New Roman', serif;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.main-content {
  display: flex;
  width: 100%;
  margin-bottom: 0px;
  height: 650px;
  /* Set a fixed height for the main content area */
}


/* Bottom 4 Image for Category*/
/* Grid layout for the banners */
.accessories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px; /* Adds space above */
  width: 100%;
}

/* Set up the accessory container */
.accessory {
  position: relative;
  overflow: hidden;
}

/* Ensure the link covers the entire accessory */
.accessory a {
  display: block;
  position: relative;
}

/* Image takes up full container with a smooth transform on hover */
.accessory img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom the image on hover */
.accessory:hover img {
  transform: scale(1.05);
}

/* Overlay that is always visible on the image */
.accessory .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  /* push to bottom */
  font-family: 'Verdana';
  align-items: right;
  text-align: right;
  padding-top: 40px;
}

.accessory .overlay .text-container {
  position: absolute;
  margin-left: 20px;
  /* Add space on left */
  text-align: left;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  color: #000;
  font-family: 'Verdana', sans-serif;
}

.accessory .overlay .headline {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.accessory .overlay .subheadline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.accessory:hover .subheadline {
  background: #f8e1e7;
  color: #fff;
}

/* Responsive Media Queries for accessories */

/* Extra small devices (phones, less than 576px): 1 column */
@media (max-width: 575.98px) {
  .accessories {
    grid-template-columns: repeat(1, 1fr);
  }

  .accessory .overlay .headline {
    font-size: 1.6em;
  }

  .accessory .overlay .subheadline {
    font-size: 0.9em;
  }

  .accessory .overlay {
    padding: 10px 0;
  }
}

/* Small devices (landscape phones, 576px - 767px): 2 columns */
@media (min-width: 576px) and (max-width: 767.98px) {
  .accessories {
    grid-template-columns: repeat(2, 1fr);
  }

  .accessory .overlay .headline {
    font-size: 1.6em;
  }

  .accessory .overlay .subheadline {
    font-size: 0.9em;
  }

  .accessory .overlay {
    padding: 10px 0;
  }

}

/* Medium devices (tablets, 768px - 991px): 3 columns */
@media (min-width: 768px) and (max-width: 991.98px) {
  .accessories {
    grid-template-columns: repeat(3, 1fr);
  }

  .accessory .overlay .headline {
    font-size: 1.6em;
  }

  .accessory .overlay .subheadline {
    font-size: 0.9em;
  }

  .accessory .overlay {
    padding: 10px 0;
  }
}

/* Wider screen (laptop, Desktop, from 991px - 2400px): 4 columns */
@media (max-width: 3400px) and (min-width: 992px) {

  .accessory .overlay .headline {
    font-size: 1.6em;
  }

  .accessory .overlay .subheadline {
    font-size: 0.9em;
  }

  .accessory .overlay {
    padding: 10px 0;
  }
}

/* ===== Category Layout ===== */
.category-container {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base column styles */
.left-column,
.right-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Category base styles */
.category {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Ensure the category link fills the container */
.category a {
  display: flex;
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
}

/* Category overlay */
.category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Category image styles */
.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.category-label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 2;
  max-width: 80%;
  text-align: left;
}

.category-label .headline {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #474344;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.category-label .subheadline {
  display: inline-block;
  background: #474344;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category:hover .subheadline {
  background: #fff;
  color: #474344;
}

.offer-banner-content .offer-shop-now {
  display: inline-block;
  background: #474344;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 10px;
}

.offer-banner-content .offer-shop-now:hover {
  background: #fff;
  color: #474344;
  text-decoration: none;
}

/* Desktop styles (769px and up) */
@media (min-width: 769px) {
  .left-column {
    height: 100%;
  }

  .left-column .category {
    height: 100%;
    min-height: 600px;
  }

  .right-column {
    height: 100%;
  }

  .right-column .category {
    height: 50%;
    min-height: 300px;
  }

  /* Remove spacing between right column categories */
  .right-column .category+.category {
    margin-top: 0;
  }
}

/* Tablet and mobile styles (768px and down) */
@media (max-width: 768px) {
  .category-container {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    width: 100%;
    flex: 1 0 auto;
  }

  .right-column {
    flex-direction: column;
  }

  .category {
    aspect-ratio: 1/1;
    margin-bottom: 0;
  }

  .category img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .category-label {
    font-size: 18px;
    bottom: 15px;
    left: 15px;
  }

  .category-label .headline {
    font-size: 24px;
  }
}

/* Small mobile screens (480px and down) */
@media (max-width: 480px) {
  .category {
    aspect-ratio: 1/1.2;
  }

  .category-label .headline {
    font-size: 20px;
  }

  .category-label .subheadline {
    font-size: 13px;
  }
}

.containerpro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 100%;
}

/* Product Info */
.product-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff6b6b;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.toggle-icon {
  font-size: 16px;
  color: #666;
  line-height: 1;
}

.section-content {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Only hide section-content when it's not using Bootstrap collapse */
.section-content:not(.collapse) {
  display: none;
}

.section-content.activ

/* Modal Gallery */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ff88bf;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1010;
}

.product-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 80%;
  margin: 5% auto;
  background-color: #eee;
}

.gallery-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.slide.active {
  display: flex;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prev-slide,
.next-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-slide {
  left: 20px;
}

.next-slide {
  right: 20px;
}

/* Responsive Design - Consolidated Media Queries */
@media (max-width: 1199.98px) {
  .main-image-container {
    height: 650px;
  }
}

@media (max-width: 992px) {
  .product-container {
    flex-direction: column;
  }

  .product-gallery,
  .product-info {
    max-width: 100%;
    width: 100%;
  }

  .main-image-container {
    height: 550px;
  }
}

@media (max-width: 768px) {
  .main-image-container {
    height: 500px;
  }

  .product-title,
  .product-price {
    font-size: 22px;
  }

  .product-actions {
    flex-direction: column;
    gap: 15px;
  }

  .quantity-selector {
    margin-right: 0;
    width: 100%;
  }

  .add-to-cart {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .main-image-container {
    height: 450px;
  }

  .product-title,
  .product-price {
    font-size: 20px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }
}

/* Header Slider Container */
.header-slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #F8E1E7;
  overflow: hidden;
}

/* Individual Slides */
.header-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.header-slider-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Slide Content */
.header-slider-content {
  width: 40%;
  padding-right: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 0.3s;
  box-sizing: border-box;
}

.header-slider-slide.active .header-slider-content {
  opacity: 1;
  transform: translateY(0);
}

/* Header Slider Tag */
.header-slider-tag {
  display: block;
  margin-bottom: 10px;
  width: 100%;
}

.header-slider-tag h2 {
  display: inline-block;
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #222;
  position: relative;
  padding-bottom: 5px;
}

.header-slider-tag h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff4d4f;
  transform-origin: right;
  transition: transform 0.3s ease;
}

.header-slider-tag:hover h2:after {
  transform: scaleX(0);
  transform-origin: left;
}

/* Header Slider Title */
.header-slider-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 25px 0;
  color: #222;
  position: relative;
  display: block;
  letter-spacing: -0.5px;
  width: 100%;
}

/* Underline effect removed from header slider h3 */

.header-slider-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.header-slider-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.header-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: linear-gradient(45deg, #f7f7f7, #f7f7f7);
  color: #474344;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 77, 79, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  z-index: 1;
}

.header-slider-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #f7f7f7, #f7f7f7);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.header-slider-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 77, 79, 0.4);
  color: #474344;
}

.header-slider-button:hover::before {
  opacity: 1;
}

.header-slider-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 77, 79, 0.3);
}

.header-slider-content h3 {
  margin-bottom: 15px;
}

.header-slider-content h2 {
  margin-bottom: 20px;
}

/* Slide Image */
.header-slider-image {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease-in-out 0.5s, transform 0.8s ease-in-out 0.5s;
  box-sizing: border-box;
}

.header-slider-slide.active .header-slider-image {
  opacity: 1;
  transform: translateX(0);
}

.header-slider-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Slider Navigation */
.header-slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.header-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header-slider-dot.active {
  background-color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-slider-container {
    height: 500px;
  }

  .header-slider-title {
    font-size: 40px;
  }

  .header-slider-description {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .header-slider-container {
    height: 450px;
  }

  .header-slider-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .header-slider-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .header-slider-tag {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .header-slider-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-slider-container {
    height: 400px;
  }

  .header-slider-content {
    width: 40%;
    padding-right: 10px;
  }

  .header-slider-image {
    width: 60%;
  }

  .header-slider-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .header-slider-description {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .header-slider-container {
    height: 350px;
  }

  .header-slider-content {
    width: 40%;
    padding-right: 5px;
  }

  .header-slider-image {
    width: 60%;
  }

  .header-slider-title {
    font-size: 22px;
  }

  .header-slider-description {
    font-size: 12px;
    line-height: 1.3;
  }

  .header-slider-button {
    padding: 8px 20px;
    font-size: 12px;
  }

  .header-slider-tag {
    font-size: 10px;
    margin-bottom: 10px;
  }
}

.product_container {
  width: 100%;
  margin: 50px auto;
  padding: 0;
}


/* Product Container Title - Specific Styling with Bootstrap override */
#product_container .title {
  color: #2c3e50;
  font-size: 2rem;
  /* Reduced from 2.25rem */
  font-weight: 600 !important;
  margin: 2.5rem 0 1.75rem !important;
  /* Slightly reduced margins */
  position: relative;
  padding-bottom: 0.875rem;
  /* Slightly reduced padding */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  /* Slightly reduced letter spacing */
  font-family: 'Poppins', sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2 !important;
}

/* Decorative underline */
#product_container .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hover effects */
#product_container .title:hover {
  color: #ff6b6b;
}

#product_container .title:hover::after {
  width: 120px;
  background: linear-gradient(90deg, #ff8e8e, #ff6b6b);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #product_container .title {
    font-size: 1.75rem;
    /* Slightly reduced from 1.875rem */
    margin: 1.75rem 0 1.25rem;
    /* Slightly reduced margins */
  }
}

@media (max-width: 480px) {
  #product_container .title {
    font-size: 1.5rem;
    /* Slightly reduced from 1.625rem */
    letter-spacing: 1px;
    margin: 1.5rem 0 1rem;
    /* Slightly reduced margins */
  }
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .offer-shop-now {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .offer-shop-now {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* Product Slider has Started */
.slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.slide2 {
  flex: 0 0 auto;
  width: 160px;
  /* Try 160px or use % (e.g., 25% for 4 per row) */
  margin: 0 1px;
  padding: 5px;

  position: relative;
  background-color: #f8e1e7;
  border: 1px solid #fefefe;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slide2 img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin-bottom: 5px;
  background-color: #f8e1e7;
  border-radius: 0;
  padding: 0;
}

/* Button styling to ensure it fits nicely within the slide */
.slide2 .add-to-cart {
  margin-top: auto;
  /* Automatically pushes the button to the bottom */
  padding: 10px 20px;
  /* Adjust padding as necessary */
  background-color: #f8e1e7;
  /* Matches the slide background for a unified look */
  border: none;
  /* Removes any default button border */
  border-radius: 5px;
  /* Gives a slight rounding to button corners */
  cursor: pointer;
  /* Changes the cursor on hover for interactivity */
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.slider-btn {
  background-color: #fff;
  color: #333;
  border: 1px solid #e0e0e0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.slider-btn:hover {
  background-color: #e18e96;
  color: white;
  border-color: #e18e96;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0 10px;
  padding: 8px 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  margin: 0 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
}

.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  background-color: #e18e96;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.dot:hover {
  border-color: #e18e96;
  transform: scale(1.2);
}

.dot.active {
  border-color: #e18e96;
  background-color: transparent;
  transform: scale(1.2);
}

.dot.active::before {
  transform: translate(-50%, -50%) scale(1);
  background-color: #e18e96;
}

/* Add a subtle pulse animation for the active dot */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 142, 150, 0.4);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(225, 142, 150, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 142, 150, 0);
  }
}

.dot.active {
  animation: pulse 2s infinite;
}

.product-info {
  padding: 15px;
  background-color: #F8E1E7;
}

.product-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.product-price {
  color: #666;
  font-size: 14px;
}


.banner-container {
  width: 100%;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0px;
  /* Adjust the space for Model in the Bottom */
  position: relative;
}

.banner-left {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.heart-container {
  flex: 1;
  text-align: right;
  z-index: 2;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.offer-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

/* Banner Text Styles */
.banner-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #474344;
  z-index: 2;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Ensure all direct children of banner-text are centered */
.banner-text>* {
  text-align: center;
  max-width: 100%;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Make sure links maintain proper spacing */
.banner-text>a {
  display: inline-block;
  margin: 5px 0;
  width: auto;
  min-width: 120px;
  text-align: center;
}

.banner-image {
  flex: 1;
  text-align: right;
  z-index: 2;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Hover effect for images */
.banner-image:hover img {
  transform: scale(1.05);
  cursor: pointer;
}


/* Offer  Banner */
.exclusive-tag {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* Banner Text Elements */
.main-offer {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 10px 0;
  line-height: 1.2;
  width: 100%;
}

.sub-offer {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 15px 0;
  width: 100%;
}

.exclusive-tag {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
  width: 100%;
}

.login-text {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 15px 0;
  width: 100%;
}

.offer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 0px;
  flex-wrap: wrap;
}

.offer-banner-image {
  flex: 1;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.offer-banner-image img {
  max-width: 100%;
  height: auto;
}

.offer-banner-content {
  flex: 1;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 20px 0;
  font-weight: 400;
  color: #000000;
}

.offer-banner-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
  margin: 0 0 30px 0;
  color: #333333;
}

.offer-banner-content a {
  font-weight: 600;
  text-decoration: underline;
  color: #000;
}


/* Offer banner Query For small screens: stack image on top, center text */
@media (max-width: 767px) {
  .offer-banner {
    flex-direction: column;
    text-align: center;
    padding: 0;
    width: 100%;
  }

  .heart-container {
    text-align: center;
  }

  .offer-banner-image {
    width: 100%;
    max-width: 100%;
  }

  .offer-banner-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
  }

  .offer-banner-content {
    text-align: center;
    align-items: center;
    padding: 10px 0;
  }

  .slide2 {
    min-width: 100%;
  }

  .slide2 img {
    height: 300px;
  }
}

/* For large screens: center-align text within the right column */
@media (min-width: 1200px) {
  .offer-banner-content {
    align-items: center;
    text-align: center;
  }
}


.login-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Shop and Join Link Styles */
.shop-link,
.join-link {
  display: inline-block;
  background: #F8F8F8;
  color: #474344;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 5px;
  min-width: 120px;
  text-align: center;
  border: 1px solid transparent;
}

.shop-link:hover,
.join-link:hover {
  background: #474344;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Remove extra margin from last button in container */
.banner-text>a:last-child {
  margin-right: 0;
}

.heart-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.15;
}

/* SLIDER2 QUERY START*/

@media (max-width: 479px) {
  .slide2 {
    min-width: 100%;
  }

  .slide2 img {
    height: 300px;
    /* or adjust as needed for a proper look */
  }
}

/* For screens greater than 320px, show 2 slides per row */
@media (min-width: 320px) {
  .slide2 {
    min-width: 50%;
  }

  .slide2 img {
    height: 300px;
  }
}

/* Medium Devices (≥768px) - 4 items */
@media (min-width: 768px) {
  .slide2 {
    min-width: 25%;
  }
}

/* Large Devices (≥992px) - 5 items (optional) */
@media (min-width: 992px) {
  .slide2 {
    min-width: 20%;
  }
}

/* Extra Large Devices (≥1200px) - 6 items */
@media (min-width: 1200px) {
  .slide2 {
    min-width: 13.666%;
  }
}

/* Slide3 styles for "You may like" slider - matching slide2 behavior */
.slide3 {
  flex: 0 0 auto;
  width: 160px;
  /* Try 160px or use % (e.g., 25% for 4 per row) */
  margin: 0 1px;
  padding: 5px;
  position: relative;
  background-color: #f8e1e7;
  border: 1px solid #fefefe;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide3:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slide3 img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin-bottom: 5px;
  background-color: #f8e1e7;
  border-radius: 0;
  padding: 0;
}

/* Button styling to ensure it fits nicely within the slide */
.slide3 .add-to-cart {
  margin-top: auto;
  /* Automatically pushes the button to the bottom */
  padding: 10px 20px;
  /* Adjust padding as necessary */
  background-color: #f8e1e7;
  /* Matches the slide background for a unified look */
  border: none;
  /* Removes any default button border */
  border-radius: 5px;
  /* Gives a slight rounding to button corners */
  cursor: pointer;
  /* Changes the cursor on hover for interactivity */

}

/* Mobile Devices (≤479px) - 1 item */
@media (max-width: 479px) {
  .slide3 {
    min-width: 100%;
  }

  .slide3 img {
    height: 300px;
    /* or adjust as needed for a proper look */
  }
}

/* For screens greater than 320px, show 2 slides per row */
@media (min-width: 320px) {
  .slide3 {
    min-width: 50%;
  }

  .slide3 img {
    height: 300px;
  }
}

/* Medium Devices (≥768px) - 4 items */
@media (min-width: 768px) {
  .slide3 {
    min-width: 25%;
  }
}

/* Large Devices (≥992px) - 5 items (optional) */
@media (min-width: 992px) {
  .slide3 {
    min-width: 20%;
  }
}

/* Extra Large Devices (≥1200px) - 7 items to match slide2 */
@media (min-width: 1200px) {
  .slide3 {
    min-width: 13.666%;
  }
}

/* SLIDER3 QUERY END */

/* BANNER-FOOETR-HEART-SOCIAl-QUERY START*/
@media (max-width: 768px) {
  .title {
    font-size: 24px;
  }

  .banner-content {
    flex-direction: column;
    padding: 30px 20px;
  }

  .banner-left {
    margin-bottom: 30px;
    width: 100%;
  }

  /* Banner text adjustments for tablets */
  .banner-text {
    width: 90%;
    padding: 30px 20px;
  }

  .banner-image {
    text-align: center;
  }

  .banner-image img {
    max-width: 80%;
  }

  .main-offer {
    font-size: 24px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 32px;
  }

  .heart-container {
    max-width: 350px;
  }
}

@media (max-width: 480px) {

  .heart-container {
    max-width: 280px;
  }

  /* Banner text adjustments for mobile */
  .banner-text {
    width: 100%;
    padding: 20px 15px;
  }

  .banner-text .main-offer {
    font-size: 20px;
    line-height: 1.3;
  }

  .banner-text .exclusive-tag,
  .banner-text .sub-offer {
    font-size: 12px;
  }

  .banner-image img {
    max-width: 100%;
  }

  .main-offer {
    font-size: 20px;
  }

  .exclusive-tag,
  .sub-offer {
    font-size: 12px;
  }

  .social-text {
    display: block;
    margin-bottom: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

/* BANNER-FOOETR-HEART-QUERY END */


/* =====================
    Newsletter Form
========================*/
#newsletter {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  max-width: 100%;
}
.newsletter_email {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 30px;
  font-size: 15px;
  color: #4a5568;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.newsletter_email:focus {
  border-color: #f43f5e;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}

/* Slick Slider Spacing */
.slick-slide {
  padding: 0 10px;
}

.slick-list {
  margin: 0 -10px;
}

.flash_sell_slider .slick-slide>div {
  margin: 0 5px;
}

/* Adjust product items in slider */
.slick-slide .wsus__product_item {
  margin: 0 5px;
  box-sizing: border-box;
}

.newsletter_email::placeholder {
  color: #a0aec0;
  opacity: 1;
}

#newsletter .subscribe_btn {
  width: 100%;
  padding: 14px 25px;
  background: #e18e96;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#newsletter .subscribe_btn:hover {
  background: #ff66ac;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2);
}
/* ============================
   New Dashboard Sidebar Styles
   ============================ */
/* Dashboard Sidebar */
.dashboard-sidebar {
  width: 280px !important;
  /* Ensure width is always 280px */
  min-width: 280px !important;
  /* Prevent width from shrinking */
  max-width: 280px !important;
  /* Prevent width from expanding */
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px 0;
  transform: translateX(-100%);
  opacity: 1;
  visibility: visible;
  /* Use will-change for better performance */
  will-change: transform, opacity;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* Smooth scrolling on iOS */
  -webkit-overflow-scrolling: touch;
  /* Smooth transitions */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Prevent width changes during animation */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  display: none;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#dashboard-sidebar {
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}
/* Hide scrollbar for Chrome, Safari and Opera */
.dashboard-sidebar::-webkit-scrollbar {
  display: none;
}

/* Enable transitions only after initial render */
body.js-sidebar-ready .dashboard-sidebar {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Show sidebar when active */
.dashboard-sidebar.show {
  -webkit-transform: translateX(0) translateZ(0);
  -ms-transform: translateX(0);
  transform: translateX(0) translateZ(0);
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
  /* Force hardware acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Sidebar header */
.dashboard-sidebar .sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Close button in sidebar */
.dashboard-sidebar .close-sidebar {
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
  transition: color 0.2s ease;
}
.dashboard-sidebar .close-sidebar:hover {
  color: #e18e96;
}
/* Menu items */
.dashboard-sidebar .menu-item {
  margin-bottom: 5px;
}
.dashboard-sidebar .menu-link {
  display: flex;
  align-items: center;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 500;
}
.dashboard-sidebar .menu-link:hover,
.dashboard-sidebar .menu-item.active .menu-link {
  background: rgba(225, 142, 150, 0.1);
  color: #e18e96;
}
.dashboard-sidebar .menu-link i {
  margin-right: 12px;
  font-size: 18px;
  width: 24px;
  text-align: center;
}
/* Active menu item indicator */
.dashboard-sidebar .menu-item.active .menu-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e18e96;
  border-radius: 0 4px 4px 0;
}
/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  /* Improve performance */
  will-change: opacity, visibility;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

body.sidebar-open .sidebar-overlay {
  opacity: 1;
  visibility: visible;
}
/* Prevent horizontal scrolling when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* Pulsing animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 142, 150, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(225, 142, 150, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 142, 150, 0);
  }
}
/* Show sidebar when active */
.dashboard-sidebar.show {
  transform: translateX(0) !important;
  opacity: 1;
  visibility: visible;
}

.dashboard-sidebar .sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-sidebar .sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-sidebar .menu-item {
  margin-bottom: 5px;
  position: relative;
}

.dashboard-sidebar .menu-link {
  display: flex;
  align-items: center;
  padding: 12px 25px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  font-size: 15px;
  border-left: 3px solid transparent;
}

.dashboard-sidebar .menu-link:hover,
.dashboard-sidebar .menu-item.active .menu-link {
  background-color: var(--light-bg);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

.dashboard-sidebar .menu-link i {
  width: 20px;
  text-align: center;
  margin-right: 10px;
  font-size: 16px;
  color: var(--primary-color);
}

/* Sidebar Toggle Button */
.sidebar-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-color);
  cursor: pointer;
  padding: 5px;
  display: none;
}

body.sidebar-toggled .dashboard-sidebar {
  transform: translateX(0);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}
/* Sidebar Header */
.sidebar-header {
  padding: 20px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-logo {
  max-width: 150px;
  display: block;
}
.sidebar-logo img {
  max-width: 100%;
  height: auto;
}
.sidebar-toggle {
  background: none;
  border: none;
  color: #6c757d;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  display: none;
}
.sidebar-toggle:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}
/* User Profile */
.user-profile {
  padding: 25px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  padding: 3px;
  background: #fff;
}
.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.user-info {
  margin-top: 10px;
}
.user-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 3px;
}
.user-role {
  font-size: 0.8rem;
  background: rgba(225, 142, 150, 0.1);
  color: var(--primary-color);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* Badge */
.badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}
/* Divider */
.nav-divider {
  padding: 15px 25px 5px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #98a6ad;
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* Sidebar Footer */
.sidebar-footer {
  padding: 15px 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}
.sidebar-version {
  font-size: 0.75rem;
  color: #98a6ad;
}
/* Animation for sidebar */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
/* Smooth transitions */
.dashboard-sidebar {
  animation: slideOutLeft 0.3s ease forwards;
}
.dashboard-sidebar.show {
  animation: slideInLeft 0.3s ease forwards;
}/
* Additional horizontal scroll fixes */
.container, .container-fluid {
  overflow-x: hidden;
}

/* Ensure all rows don't cause horizontal overflow */
.row {
  margin-left: 0;
  margin-right: 0;
}

/* Fix for any elements that might extend beyond viewport */
* {
  box-sizing: border-box;
}

/* Prevent horizontal scroll from sliders and carousels */
.slick-track, .carousel-inner {
  overflow-x: hidden;
}