/*Basic theme of the website*/
:root {
  /* Theme Colors */
  --wd-color-white: #fff;
  --wd-color-black: #000;
  --wd-color-primary: #ffc300;
  --wd-color-secondary: #323232;
  --wd-color-dark: #0e0e0e;
  --wd-color-light-gray: #f6f6f6;
  --wd-color-text: #6D6D6D;
  --wd-color-red: #c90000;
  --wd-color-coral-red: #FF5252;
  --wd-color-green-theme: #005C1F;
  --wd-color-petrol-blue: #052536;
  --wd-color-primary-blue: #2D9AFF;
  --wd-color-rich-black: #001B2B;
  --wd-color-coral-orange: #F86B47;
  --wd-color-cherry-red: #E22E36;
  --wd-color-green-theme-button-svg: #EAEAEA;
  /* Theme Font Size */
  --wd-font-size-12: 12px;
  --wd-font-size-14: 14px;
  --wd-font-size-16: 16px;
  --wd-font-size-18: 18px;
  --wd-font-size-20: 20px;
  --wd-font-size-22: 22px;
  --wd-font-size-24: 24px;
  --wd-font-size-26: 26px;
  --wd-font-size-28: 28px;
  --wd-font-size-30: 30px;
  --wd-font-size-32: 32px;
  --wd-font-size-34: 34px;
  --wd-font-size-36: 36px;
  --wd-font-size-38: 38px;
  --wd-font-size-40: 40px;
  --wd-font-size-42: 42px;
  /* Theme Font Weight */
  --wd-font-weight-400: 400;
  --wd-font-weight-500: 500;
  --wd-font-weight-600: 600;
  --wd-font-weight-700: 700;
  /* Theme Radius */
  --wd-radius-1: 1px;
  --wd-radius-2: 2px;
  --wd-radius-4: 4px;
  --wd-radius-25: 25px;
  --wd-radius-50: 50%;
}

body {
  background-color: var(--wd-color-white);
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
}
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.17em; }
h4 { font-size: 1em; }
h5 { font-size: 0.83em; }
h6 { font-size: 0.67em; }
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
p {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
input,textarea {
  height: 50px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  padding: 15px 20px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  color: #555555;
  border: 0;
}
input:focus-visible,textarea:focus-visible {
  outline: none;
}
textarea {
  height: 150px;
}
/*navbar-btn*/
@media (min-width: 1400px) {
  .wd-container {
    max-width: 1420px;
  }
}
.wd-btn-secondary {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 500px;
  background: var(--wd-color-white);
  border: 1px solid var(--wd-color-black);
  padding: 6px 10px 6px 22px;
  color: var(--wd-color-black);
}
.wd-btn-primary {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-radius: 500px;
  background: var(--wd-color-primary);
  border: 1px solid var(--wd-color-primary);
  padding: 6px 10px 6px 22px;
  color: var(--wd-color-black);
  border: 1px solid var(--wd-color-black);
}
.wd-btn-primary span,
.wd-btn-secondary span {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 21px;
  color: var(--wd-color-dark);
}
.wd-coral-orange .wd-btn-primary span,
.wd-cherry-red .wd-btn-primary span {
  color: var(--wd-color-white);
}
.wd-btn-primary .wd-primary-btn-svg,
.wd-btn-secondary .wd-primary-btn-svg {
  background-color: var(--wd-color-black);
  color: var(--wd-color-white);
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: var(--wd-radius-50);
  text-align: center;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-coral-orange .wd-btn-primary .wd-primary-btn-svg,
.wd-coral-red .wd-btn-primary .wd-primary-btn-svg,
.wd-bluish-green .wd-btn-primary .wd-primary-btn-svg,
.wd-cherry-red .wd-btn-primary .wd-primary-btn-svg {
  background-color: var(--wd-color-white);
  color: var(--wd-color-black);
}
/*wd-section-btn*/
/*wd-section-primary-btn*/
.wd-ecom-button {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  padding: 6px 6px 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wd-color-black);
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-4);
  border: 1px solid #D2D2D2;
}
.wd-green-theme .wd-ecom-button,
.wd-coral-orange .wd-primary-ecom-btn,
.wd-coral-red .wd-primary-ecom-btn {
  color: var(--wd-color-white);
}
.wd-ecom-btn-svg {
  background-color: var(--wd-color-light-gray);
  color: var(--wd-color-black);
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: var(--wd-radius-4);
  text-align: center;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-ecom-button.wd-primary-ecom-btn {
  background-color: var(--wd-color-primary);
  border-color: var(--wd-color-primary);
}
.wd-ecom-button.wd-secondary-ecom-btn {
  background-color: var(--wd-color-black);
  border-color: var(--wd-color-black);
  color: var(--wd-color-white);
}
.wd-ecom-button.wd-primary-ecom-btn .wd-ecom-btn-svg,
.wd-ecom-button.wd-secondary-ecom-btn .wd-ecom-btn-svg {
  background-color: var(--wd-color-white);
}
.wd-simple-primary-btn,
.wd-simple-secondary-btn {
  display: inline-block;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 20px;
  padding: 12px 30px;
  color: var(--wd-color-black);
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-25);
}
.wd-simple-secondary-btn {
  color: var(--wd-color-white);
  background-color: var(--wd-color-black);
}
.wd-simple-secondary-btn .wd-primary-btn-svg {
  display: none;
}
.wd-section-title {
  margin-bottom: 60px;
}
.wd-section-title .wd-pro-title {
  color: var(--wd-color-red);
  font-size: var(--wd-font-size-20);
  font-style: normal;
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  margin-bottom: 10px;
}
.wd-section-title .wd-pro-heading {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-36);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
section {
  position: relative;
}
/* section.p-100 {
  padding: 100px 0;
} 
section.p-60 {
  padding: 60px 0;
}
section.p-30 {
  padding: 30px 0;
} 
section.p-20 {
  padding: 20px 0;
} 
section.pb-60 {
  padding-bottom: 60px;
}  */
.wd-load-more-box {
  margin-top: 60px;
  text-align: center;
}
/* google icon css */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.icon-fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.icon-200 {
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}
.icon-300 {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.wd-compare-quick-view {
  position: fixed;
  top: calc(50% - 50px);
  right: 0px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 1;
}
.wd-compare-quick-view-middle {
  width: 46px;
  height: 80px;
  clip-path: circle(50% at 100% 50%);
  background-color: var(--wd-color-primary);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 3px;
}
.wd-compare-quick-view-top {
  position: absolute;
  top: -12px;
  right: 0;
  width: 30px;
  height: 40px;
  clip-path: polygon(71% 44%, 85% 28%, 100% 0, 100% 100%, 16% 81%, 28% 67%, 43% 60%, 59% 53%);
  background-color: var(--wd-color-primary);
  
}
.wd-compare-quick-view-bottom {
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 30px;
  height: 40px;
  clip-path: polygon(71% 56%, 85% 72%, 100% 100%, 100% 0, 16% 19%, 28% 33%, 43% 40%, 59% 47%);
  background-color: var(--wd-color-primary);
}
.wd-compare-quick-view span {
  margin-right: 3px;
  font-size: var(--wd-font-size-20);
}
.wd-green-theme .wd-compare-quick-view span,
.wd-coral-orange .wd-compare-quick-view span,
.wd-coral-red .wd-compare-quick-view span,
.wd-bluish-green .wd-compare-quick-view span,
.wd-cherry-red .wd-compare-quick-view span {
  color: var(--wd-color-white);
}

/* wd-menu-dropdown-toggle-start */
.wd-search-dropdown {
  display: none;
}
.wd-menu-dropdown-toggle::after {
  content: none;
}
.wd-menu-dropdown .wd-menu-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--wd-color-white);
}
.wd-ecom-header .wd-header-nav-actions .wd-wishlist-action.wd-register span.wd-menu-dropdown-toggle {
  color: var(--wd-color-white);
}
.wd-coral-red .wd-menu-dropdown .wd-menu-dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border: 0;
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-14);
}
.wd-menu-dropdown .wd-dropdown-menu {
  transform: translate(0px, 40px) !important;
  padding: 10px 30px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  box-shadow: 0px 12px 30px -2px rgba(0,0,0,0.1);
  min-width: 220px;
}
.wd-menu-dropdown .wd-dropdown-menu li a {
  position: relative;
  font-size: var(--wd-font-size-14);
  color: var(--wd-color-text);
  padding: 10px 0;
  border-radius: var(--wd-radius-4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.wd-menu-dropdown .wd-dropdown-menu li a:hover {
  background-color: var(--wd-color-white);
}
.wd-menu-dropdown .wd-dropdown-menu li:last-child a {
  border-bottom: 0;
} 
.wd-menu-dropdown .wd-dropdown-menu li a::before {
  position: absolute;
  content: "";
  top: 20px;
  left: -15px;
  width: 0;
  height: 1px;
  background: var(--wd-color-text);
  background-color: var(--wd-color-text);
  transition: all 0.2s ease-in-out;
}
.wd-menu-dropdown .wd-dropdown-menu li a:hover::before {
  width: 10px;
}
.wd-search-dropdown .wd-dropdown-menu {
  transform: translate(0, 46px) !important;
}
.wd-search-dropdown .wd-dropdown-menu {
  padding: 10px;
  min-width: 320px;
}
.wd-search-dropdown .wd-dropdown-menu label {
  font-size: var(--wd-font-size-14);
  color: var(--wd-color-black);
}
.wd-search-dropdown .wd-dropdown-menu input {
  height: 40px;
  padding: 6px 20px;
}
.wd-search-dropdown .wd-dropdown-menu input:focus {
  box-shadow: none;
  outline: 0;
}
.wd-nav-container .wd-menu-dropdown .wd-dropdown-menu {
  padding: 10px;
  transform: translate(0px, 44px) !important;
}
/* wd-menu-dropdown-toggle-end */

/*Main-Header*/
/* wd-header-primary-start */
.wd-header-primary.sb-header {
  position: absolute;
  width: 100%;
  padding: 0;
}
.wd-header-primary.wd-transparent-header {
  background-color: transparent;
}
.wd-header-primary .sb-header-container {
  height: 62px;
  height: 62px;
  border-radius: 600px;
  background: var(--wd-color-secondary);
  margin-top: 20px;
}
.wd-header-primary .logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 18px 30px;
}
.wd-header-primary .logo img {
  width: 99px;
  height: 26px;
}
.wd-header-primary .logo span {
  color: var(--wd-color-white);
  font-family: "Lexend Deca";
  font-size: var(--wd-font-size-20);
  font-style: normal;
  font-weight: var(--wd-font-weight-700);
  line-height: 0%;
}
.wd-actions span.wd-action-icon,
.wd-actions a.wd-action-icon {
  position: relative;
  top: 8px;
  background-color: var(--wd-color-black);
  color: var(--wd-color-white);
  border: 1px solid #606060;
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: var(--wd-radius-50);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-header-primary .sb-menu .wd-actions {
  margin-right: 10px;
}
.wd-header-primary.sb-header .wd-navbar ul li a {
  font-size: var(--wd-font-size-14);
}
.wd-header-primary .sb-menu .wd-actions a {
  height: 44px;
  line-height: 44px;
  padding: 0;
}
.wd-header-primary .wd-actions.dropdown_menu .wd-menu-dropdown span:not(.wd-btn-secondary) {
  display: none;
}
.wd-header-primary .wd-actions .wd-menu-dropdown .wd-btn-secondary::before,
.wd-header-primary .wd-actions .wd-menu-dropdown .wd-btn-secondary::after {
  content: none;
}
.wd-header-primary .wd-actions .wd-menu-dropdown ~ .wd-dropdown-menu {
  transform-origin: right top;
  left: unset;
  right: 0px;
  top: calc(100% + 10px);
  padding: 10px 30px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 0;
  box-shadow: 0px 12px 30px -2px rgba(0,0,0,0.1);
  min-width: 220px;
}
.wd-header-primary .wd-actions .wd-menu-dropdown ~ .wd-dropdown-menu li a {
  position: relative;
  font-size: var(--wd-font-size-14);
  color: var(--wd-color-text);
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: auto;
  line-height: 24px;
}
.wd-header-primary .wd-actions .wd-menu-dropdown ~ .wd-dropdown-menu li a::before {
  top: 22px;
}
.wd-header-primary .wd-actions .wd-menu-dropdown ~ .wd-dropdown-menu li:last-child a {
  border-bottom: 0;
}
.wd-header-primary .wd-search-dropdown .wd-menu-dropdown-toggle::after {
  content: none;
}
.wd-header-primary .wd-search-dropdown .wd-dropdown-menu {
  border-radius: 0;
  transform: translate(0, 61px) !important;
}
.wd-header-primary .wd-search-dropdown .wd-dropdown-menu label {
  display: block;
  line-height: 20px;
  margin-bottom: 2px;
  text-transform: capitalize;
}
.wd-header-primary .sb-menu .wd-actions a > span.wd-btn-secondary,
.wd-header-primary .sb-menu .wd-actions a > span.wd-btn-primary {
  text-transform: capitalize;
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 29px;
  display: inline-block;
  text-align: center;
  min-width: 100px;
  border: 0;
  padding: 6px 10px;
}
.wd-header-primary .sb-menu .search-icon {
  margin-left: 66px;
}
.sb-header .wd-navbar ul {
  padding: 10px 0;
}
.wd-primary-header-mobile-menu {
  display: none;
}
/* wd-header-primary-end */
@media (max-width: 575.98px) {
  .wd-header-primary .sb-menu .navbar-items a {
    height: 44px;
    line-height: 44px;
  }
  .wd-actions span.wd-action-icon {
    top: 0;
  }
  .wd-header-primary .sb-menu .wd-actions a > span.wd-btn-primary,
  .wd-header-primary .sb-menu .wd-actions a > span.wd-btn-secondary {
    width: 100%;
  }
  /* .wd-header-primary .sb-menu .wd-actions {
    margin: 10px 25px 10px 25px;
  } */
  .wd-navbar .wd-actions-display {
    display: inline-flex;
  }
  .wd-header-primary .sb-menu .search-icon {
    margin-right: 0px;
  }
}
@media (min-width: 1200px) {
  .sb-header .wd-navbar ul li {
    padding: 0 30px;
  }
  .sb-header .wd-navbar ul li a {
    padding: 2px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .sb-header .wd-navbar ul li:last-child a {
    border-bottom: 0;
  } 
  .sb-header .sb-menu ul ul li > a::before {
    background-color: var(--wd-color-text);
    top: 25px;
    left: -15px;
  }
  .wd-header-primary.sb-header .sb-menu .menu-item a:hover,
  .wd-header-primary.sb-header .sb-menu .menu-item a:focus,
  .wd-header-primary.sb-header .sb-menu .menu-item a:active {
    color: var(--wd-color-white);
  }
  .wd-header-primary .sb-menu .menu-item a {
    color: var(--wd-color-white);
    font-size: var(--wd-font-size-16);
    font-style: normal;
    font-weight: var(--wd-font-weight-400);
    line-height: normal;
    text-transform: capitalize;
    height: 62px;
    line-height: 62px;
    padding: 0 20px;
  }
  .wd-header-primary .sb-menu .menu-item a > span::before,
  .wd-ecom-header .sb-menu .menu-item a > span::before {
    border-color: var(--wd-color-white);
  }
  .sb-header .sb-menu .wd-navbar ul li a:hover,
  .sb-header .sb-menu .wd-navbar ul li a:active {
    color: var(--wd-color-text);
  }
  .wd-header-primary.sb-header .wd-navbar ul li a,
  .wd-brcategory-header.sb-header .wd-navbar ul li a {
    color: var(--wd-color-text);
    height: 50px;
    line-height: 46px;
  }
  .wd-header-primary.sb-header .sb-menu .wd-navbar ul li a:hover,
  .wd-header-primary.sb-header .sb-menu .wd-navbar ul li a:active {
    color: var(--wd-color-text);
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .wd-navbar .wd-actions {
    display: inline-flex;
    gap: 10px;
  }
  .wd-header-primary .sb-menu .search-icon {
    margin-left: 25px;
  }
}
@media (min-width: 320px) and (max-width: 1199.98px) {
  .wd-header-primary .sb-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--wd-color-white);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    border-radius: 15px;
  }
  .wd-header-primary .burger-menu {
    top: 23px;
    right: 18px;
  }
  .wd-header-primary .burger-menu .line-menu {
    background-color: var(--wd-color-white);
  }
  .wd-header-primary .sb-menu > ul > li > a {
    height: 50px;
    line-height: 50px;
  }
  .wd-header-primary .sb-menu .wd-navbar {
    list-style-type: none;
    padding-bottom: 0;
  }
  .wd-header-primary.sb-header .sb-menu .menu-item a {
    height: 50px;
    line-height: 50px;
    padding: 0px 25px;
    color: var(--wd-color-text);
    text-transform: capitalize;
  }
  .wd-header-primary.sb-header .sb-menu .menu-item a:focus,
  .wd-header-primary.sb-header .sb-menu .menu-item a:active,
  .wd-header-primary.sb-header .sb-menu .menu-item a:hover {
    color: var(--wd-color-text);
  }
  .wd-header-primary.sb-header .sb-menu .menu-item a ~ .dropdown-plus::before,
  .wd-header-primary.sb-header .sb-menu .menu-item a ~ .dropdown-plus::after {
    background-color: var(--wd-color-text);
  }
  .wd-header-primary.sb-header .sb-menu .menu-item a:hover {
    color: var(--wd-color-text);
  }
  .wd-header-primary.sb-header .wd-navbar ul {
    padding: 0;
    list-style-type: none;
  }
  .wd-header-primary.sb-header .sb-menu .wd-navbar ul li a {
    padding: 0 25px 0 50px;
  }
  .wd-header-primary.sb-header .sb-menu .wd-navbar ul li a::before,
  .wd-brcategory-header.sb-header .sb-menu .wd-navbar ul li a::before,
  .wd-ecom-header.sb-header .sb-menu .wd-navbar ul li a::before {
    position: absolute;
    content: "";
    top: 25px;
    left: 30px;
    width: 10px;
    height: 1px;
    background: var(--wd-color-text);
    transition: all 0.2s ease-in-out;
  }
  .wd-header-primary.sb-header .sb-menu .wd-navbar ul li a:hover,
  .wd-header-primary.sb-header .sb-menu .wd-navbar ul li a:active {
    color: var(--wd-color-text);
  }
  .wd-header-primary.sb-header .sb-menu .navbar-items a.active::after {
    left: 11px;
    margin: 0;
    top: 19px;
  }
  .wd-header-primary .sb-menu .wd-actions a > span.wd-btn-secondary {
    background-color: var(--wd-color-secondary);
    color: var(--wd-color-white);
  }
  .wd-header-primary .wd-actions span.wd-action-icon {
    border-color: var(--wd-color-black);
  }
  .wd-header-primary.sb-header .sb-menu ul:has(.wd-actions) {
    padding: 0 0 25px 25px;
    list-style-type: none;
  }
  .wd-primary-header-mobile-menu {
    position: absolute;
    top: 2px;
    right: 60px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
  }
  .wd-header-primary .sb-menu .wd-cart-sidebar-button,
  .wd-header-primary .sb-menu li:has(.wd-wishlist-action) {
    display: none;
  }
  .wd-header-primary .wd-search-dropdown .wd-dropdown-menu {
    inset: 0px -44px auto auto !important;
    transform: translate(0, 15px) !important;
  }
  .wd-header-primary .sb-menu .wd-actions a {
    height: 50px;
    line-height: 50px;
  }
  .wd-primary-header-mobile-menu .wd-search-dropdown {
    display: block;
  }
  .wd-header-primary .wd-primary-header-mobile-menu .wd-actions {
    position: relative;
  }
  .wd-header-primary .wd-primary-header-mobile-menu .wd-sale-product-right-col {
    width: 100%;
  }
  .wd-header-primary .sb-menu .wd-actions a.wd-menu-dropdown ~ .dropdown-plus::before,
  .wd-header-primary .sb-menu .wd-actions a.wd-menu-dropdown ~ .dropdown-plus::after {
    background-color: var(--wd-color-text);
  }
  .wd-header-primary .sb-menu .wd-actions a > span.wd-btn-secondary.wd-menu-dropdown-toggle {
    background-color: unset;
    color: var(--wd-color-text);
    font-size: var(--wd-font-size-16);
    padding: 0;
    width: 100%;
    text-align: left;
    color: var(--wd-color-text);
  }
  .wd-header-primary .wd-actions .wd-menu-dropdown ~ .wd-dropdown-menu {
    display: none;
    position: unset;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .wd-header-primary .wd-actions .wd-menu-dropdown ~ .wd-dropdown-menu li a {
    padding: 0 25px 0 25px !important;
    line-height: 50px;
    border-bottom: 0;
  }
  .wd-header-primary .wd-actions .wd-menu-dropdown ~ .wd-dropdown-menu li a::before {
    position: absolute;
    content: "";
    top: 25px;
    left: 5px;
    width: 10px;
    height: 1px;
    background: var(--wd-color-text);
    transition: all 0.2s ease-in-out;
  }
  .wd-header-primary .wd-search-results .wd-right-col-item .wd-right-col-item-inner {
    padding: 0 !important;
  }
  .wd-header-primary .wd-actions .wd-action-icon ~ .wd-add-to-cart {
    z-index: 1;
  }
  .wd-header-primary .wd-result-not-found {
    padding: 0 10px 10px 10px;
  }
}

 

/*Sections Starts from here*/
/*wd-hero-section-start*/
.wd-hero-section {
  background-color: black;
  background-position: center;
  height: auto;
  padding-top: 182px;
  padding-bottom: 90px;
  background-image: url(../images/wd-hero-background.png);
}
.wd-hero-inner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.wd-hero-inner-text .wd-btext-outer {
  padding: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
  border-radius: var(--wd-radius-25);
}
.wd-hero-inner-text .wd-btext {
  display: block;
  color: #c1c1c1 !important;
  font-size: var(--wd-font-size-18);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  border-radius: 500px;
  background-image: url(../images/wd-hero-background.png);
  background-position: center;
  padding: 4px 32px;
}
.wd-hero-inner-text h1 {
  color: var(--wd-color-white);
  text-align: center;
  font-size: var(--wd-font-size-42);
  font-style: normal;
  font-weight: var(--wd-font-weight-600);
  line-height: normal;
}
.wd-hero-inner-text p {
  max-width: 744px;
  text-align: center;
  color: #c1c1c1;
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
/*.wd-hero-carousel*/
.wd-owl-carousel {
  text-align: center;
}
.wd-hero-carousel {
  padding-top: 100px;
  position: relative;
}
/*owl-theme-css-file-edit */
.wd-hero-swiper-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.wd-hero-swiper-navigation .hero-swiper-button-prev,
.wd-hero-swiper-navigation .hero-swiper-button-next {
  position: relative;
  left: -34px;
  border-radius: 500px;
  border: 5px solid var(--wd-color-dark);
  background: var(--wd-color-primary);
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.wd-hero-swiper-navigation .hero-swiper-button-prev span,
.wd-hero-swiper-navigation .hero-swiper-button-next span {
  font-size: var(--wd-font-size-40);
}
.wd-hero-swiper-navigation .hero-swiper-button-next {
  left: unset;
  right: -34px;
}
.wd-hero-swiper-navigation .hero-swiper-button-prev:hover {
  background: var(--wd-color-primary);
  color: var(--wd-color-black);
  text-decoration: none;
}
.wd-hero-swiper-navigation .hero-swiper-button-next:hover {
  background: var(--wd-color-primary);
  color: var(--wd-color-black);
  text-decoration: none;
}
.wd-hero-swiper-navigation .swiper-button-disabled,
.wd-hero-swiper-navigation .swiper-button-disabled:hover {
  background: var(--wd-color-secondary);
  opacity: 1;
}
.wd-hero-swiper-navigation .swiper-button-disabled span {
  color: var(--wd-color-white);
}
.wd-product-hero-grid {
  text-align: center;
}
.wd-product-hero-grid > img {
  width: 100%;
}
.wd-product-hero-grid .wd-plus-icon {
  position: absolute;
  top: 7px;
  right: 2px;
  width: 68px;
  height: 68px;
  border-radius: 500px;
  border: 5px solid var(--wd-color-dark);
  background: #323232;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.wd-product-hero-grid .wd-plus-icon span {
  color: var(--wd-color-white);
}
.wd-product-hero-grid .wd-plus-icon:hover {
  background: var(--wd-color-primary);
}
.wd-product-hero-grid .wd-plus-icon:hover span {
  color: var(--wd-color-black);
}
.wd-product-hero-grid .wd-owl-des {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-18);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wd-product-hero-grid .wd-owl-pric-sec {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wd-product-hero-grid .wd-owl-pric-sec .wd-cut-price {
  color: #c1c1c1;
  font-size: var(--wd-font-size-14);
  font-style: normal;
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  text-decoration: line-through;
}
.wd-product-hero-grid .wd-owl-pric-sec .wd-disc-price {
  color: var(--wd-color-primary);
  font-size: var(--wd-font-size-18);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
/*wd-hero-section-end*/
/*wd-featured-product-section-start*/
.wd-featured-products {
  text-align: center;
}
.wd-product-container {
  width: 100%;
  position: relative;
}
.wd-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}
.wd-product-item {
  position: relative;
  min-width: 0%;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.wd-pro-img-container {
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-light-gray);
  height: 270px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wd-pro-img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.wd-product-item .wd-pro-hover-btn {
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  color: #333;
  font-size: 15px;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border-radius: 1000px;
  background: var(--wd-color-primary);
  padding: 8px 58px;
  border: none;
  text-align: center;
}
.wd-coral-orange .wd-product-item .wd-pro-hover-btn,
.wd-cherry-red .wd-product-item .wd-pro-hover-btn {
  color: var(--wd-color-white);
}
.wd-product-item:hover .wd-pro-hover-btn {
  visibility: visible;
  cursor: pointer;
  opacity: 1;
}
.wd-pro-desc-container .wd-pro-cart-btn {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
}
.wd-pro-desc-container .wd-pro-cart-btn span {
  color: var(--wd-color-primary);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
.wd-pro-desc-container .wd-pro-cart-btn span.material-symbols-outlined {
  font-size: var(--wd-font-size-18);
  color: var(--wd-color-primary);
}
.wd-product-item:hover .wd-pro-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.wd-product-item:hover .wd-fea-pro-price {
  display: none;
}
.wd-card-tags-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-direction: column;
}
.wd-off-tag,
.wd-new-tag,
.wd-hot-tag,
.wd-featured-tag {
  display: inline-block;
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-12);
  font-style: normal;
  font-weight: var(--wd-font-weight-400);
  line-height: 16px; /* 0% */
  border-radius: var(--wd-radius-2);
  background: #245652;
  padding: 2px 10px;
  text-align: center;
}
.wd-new-tag {
  background-color: #2d9aff;
}
.wd-hot-tag {
  background-color: #ff5252;
}
.wd-featured-tag{
  background-color: #fdc400;
}
.wd-pro-wishlist,
.wd-pro-compare,
.wd-pro-mobile-cart,
.wd-pro-quickview {
  visibility: hidden;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  padding: 5px;
  color: #aaaaaa;
  border: 1px solid #aaaaaa;
  border-radius: var(--wd-radius-25);
  transition: all 0.3s ease-in-out;
}
.wd-pro-wishlist span,
.wd-pro-compare span,
.wd-pro-mobile-cart span,
.wd-pro-quickview span {
  font-size: var(--wd-font-size-18);
}
.wd-pro-compare {
  top: 50px;
}
.wd-pro-mobile-cart {
  top: 50px;
}
.wd-pro-quickview {
  top: 50px;
}
.wd-pro-quickview ~ .wd-pro-compare {
  top: 90px;
}
.wd-pro-compare ~ .wd-pro-mobile-cart {
  top: 130px;
}


.wd-pro-wishlist path {
  stroke: #aaaaaa;
}
.wd-product-item:hover .wd-pro-wishlist,
.wd-product-item:hover .wd-pro-compare,
.wd-product-item:hover .wd-pro-mobile-cart,
.wd-product-item:hover .wd-pro-quickview {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}
/* .wd-pro-compare {
  visibility: hidden;
  position: absolute;
  top: 10px;
  left: 10px;
  opacity: 0;
  padding: 5px;
  font-size: var(--wd-font-size-18);
  color: #aaaaaa;
  border: 1px solid #aaaaaa;
  border-radius: var(--wd-radius-25);
  transition: all 0.3s ease-in-out;
} */
.wd-product-item .wd-pro-desc-container {
  text-align: center;
  margin-top: 15px;
  position: relative;
}
.wd-pro-desc-heading {
  color: #333;
  font-size: var(--wd-font-size-14);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wd-product-item .wd-pro-desc-container .wd-pro-item-rating {
  margin: 5px 0;
  justify-content: center;
}
.wd-pro-item-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wd-pro-total-reviews {
  color: #aaa;
  font-size: var(--wd-font-size-12);
  font-style: normal;
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
.wd-pro-item-rating .wd-pro-star-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wd-pro-item-rating .wd-pro-star-rating span {
  font-size: var(--wd-font-size-14);
  color: #d2d2d2;
}
.wd-pro-item-rating .wd-pro-star-rating span.fill {
  color: #EA9A00;
}
.wd-pro-desc-container .wd-fea-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-fea-pro-price .wd-pro-actual-price {
  color: #aaa;
  font-size: var(--wd-font-size-14);
  font-style: normal;
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  text-decoration-line: line-through;
}
.wd-fea-pro-price .wd-pro-discounted-price {
  color: #333;
  font-size: var(--wd-font-size-16);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
/*wd-featured-product-section-end*/
/*wd-collection-section-start*/
/*first-collection*/
.wd-collection-section {
  padding: 60px 0;
}
.wd-advertise-grid-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
.wd-advertise-grid-box {
  border-radius: var(--wd-radius-4);
  background: #f7f3f2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
  position: relative;
  z-index: 1;
}
.wd-advertise-grid-box img {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wd-advertise-grid-box .wd-advertise-desc {
  position: absolute;
  left: 26px;
  top: 24px;
  z-index: 3;
}
.wd-advertise-grid-box .wd-desc-title {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-600);
  line-height: normal;
}
.wd-advertise-grid-box .wd-desc-offer {
  color: var(--wd-color-red);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
.wd-advertise-grid-box .wd-advertise-btns-box {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 4;
}
.wd-advertise-grid-box .wd-advertise-btns-box-center {
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.wd-advertise-grid-box .wd-advertise-desc-center {
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.wd-advertise-grid-box .wd-advertise-rec-svg svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
}
.wd-advertise-grid-box .wd-advertise-rec-svg.wd-advertise-rec-top svg {
  height: auto;
  width: 100%;
}
.wd-advertise-grid-box .wd-advertise-rec-svg.wd-advertise-rec-top-right svg {
  height: auto;
  left: unset;
  width: 100%;
  right: 0;
}
/*wd-deal-section-start*/
.wd-deal-section .wd-deal-countdown-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.wd-deal-countdown-container .wd-deal-countdown-img img {
  width: 100%;
  height: 100%;
}
.wd-deal-section .wd-deal-countdown-container .wd-deal-countdown-desc {
  background: var(--wd-color-light-gray);
  position: relative;
  padding: 110px 0;
}
.wd-deal-section
  .wd-deal-countdown-container
  .wd-deal-countdown-desc
  .wd-deal-coundown-desc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.wd-deal-section
  .wd-deal-countdown-container
  .wd-deal-countdown-desc
  .wd-deal-countdown-desc-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.wd-deal-section .wd-deal-countdown-container .wd-deal-countdown-desc .wd-deal-countdown-desc-title h3 {
  font-size: var(--wd-font-size-36);
  font-weight: var(--wd-font-weight-500);
}
.wd-section-para {
  color: #6d6d6d;
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-400);
  line-height: 35px;
  text-align: center;
}
.wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
.wd-deal-countdown-desc .wd-deal-countdown-desc-clock .wd-countdown-clock-div {
  display: flex;
  padding: 15px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-white);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
  width: 85px;
  height: 70px;
}
.wd-countdown-clock-div .wd-countdown-clock-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wd-countdown-clock-div .wd-countdown-clock-inner .wd-countdown-clock-title {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-20);
  font-weight: var(--wd-font-weight-600);
  line-height: normal;
}
.wd-countdown-clock-div .wd-countdown-clock-inner .wd-countdown-clock-heading {
  color: #6d6d6d;
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
.wd-deal-countdown-desc-clock .wd-coundown-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-direction: column;
  width: 2px;
}
/*wd-video-banner-section-start*/
.wd-video-banner-section .wd-banner-background {
  background: url(../imgs/Group\ 39858.png);
  position: relative;
  height: 371px;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  z-index: 1;
}
.wd-banner-background img {
  position: absolute;
  top: 88px;
  left: 0;
  z-index: 2;
}
.wd-banner-background .wd-banner-rec-svg svg {
  position: absolute;
  left: 0;
  top: 0;
}
.wd-banner-background .wd-banner-btn-svg {
  position: absolute;
  z-index: 3;
  top: 70px;
  left: 245px;
}
.wd-banner-btn-svg .popup-circle {
  position: absolute;
}

.popup-circle .circle {
  position: absolute;
  animation: pulse 3s infinite ease-out;
  transform-origin: center;
}
.popup-circle .pulse1 {
  animation-delay: 0s;
}
.popup-circle .pulse2 {
  animation-delay: 0.5s;
}
.popup-circle .pulse3 {
  animation-delay: 1s;
}
@keyframes pulse {
  0% {
    transform: rotate(0.530267 75.9961 76);
    opacity: 1;
  }
  50% {
    transform: rotate(0.530267 75.9959 75.999);
    opacity: 0.25;
  }
  100% {
    transform: rotate(0.530267 76.0007 76);
    opacity: 0.25;
  }
}
.wd-banner-background .wd-banner-desc-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  right: 40px;
  top: 33%;
  bottom: 50%;
  gap: 20px;
}

.wd-video-banner-section
  .wd-banner-background
  .wd-banner-desc-section
  .wd-banner-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
}
.wd-banner-desc .wd-banner-desc-title {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
.wd-banner-desc .wd-banner-desc-heading {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-32);
  font-weight: var(--wd-font-weight-600);
  line-height: normal;
}
.wd-banner-desc .wd-banner-desc-para {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
/*wd-video-banner-section-end*/
/*wd-products-carousel-start*/
.wd-prod-owl-carousel {
  padding-top: 60px;
}
.wd-prod-owl-carousel .owl-item img {
  width: fit-content;
}
.wd-product-slider-wrapper {
  position: relative;
}
.wd-product-swiper-navigation {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
  gap: 10px;
}
.wd-product-swiper-navigation.pt-70 {
  top: -70px;
}
.wd-product-swiper-navigation.pt-50 {
  top: -50px;
}
.wd-top-trending-section .wd-product-swiper-navigation {
  top: -70px;
}
.wd-product-swiper-navigation .product-swiper-button-next,
.wd-product-swiper-navigation .product-swiper-button-prev {
  color: #333333;
}
.wd-product-swiper-navigation .swiper-button-disabled {
  color: #AAAAAA;
}
/*wd-products-carousel-end*/
/*wd-sale-products-section-start*/
.wd-sale-products-section {
  background: var(--wd-color-light-gray);
}
.wd-sale-products-section .wd-sale-product-container {
  display: flex;
  align-items: center;
  gap: 0 36px;
}
/*left-col*/
.wd-sale-product-container .wd-sale-product-left-col {
  width: 235px;
  position: relative;
  text-align: center;
  height: 358px;
}
.wd-sale-product-left-col .wd-sale-product-left-col-svg svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.wd-sale-product-left-col img {
  width: 100%;
  height: 100%;
  z-index: 3;
  border-radius: 4px 4px 0px 4px;
}
.wd-sale-product-left-col-desc {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}
.wd-sale-product-left-col-desc .wd-sale-product-desc-title {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-600);
  line-height: normal;
}
.wd-sale-product-left-col-desc .wd-sale-product-desc-offer {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  padding-top: 5px;
}
.wd-sale-product-left-col .wd-sale-product-left-col-btn {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}
/*mid-col*/
.wd-sale-product-container .wd-sale-product-mid-col {
  width: calc(100% - 542px);
}
.wd-sale-prod-owl-carousel {
  position: relative;
}
.wd-sale-prod-owl-carousel .wd-pro-hover-btn {
  padding: 8px 50px;
}
.wd-sale-product-slider-wrapper {
  position: relative;
}
.wdSaleProductSlider .wd-pro-img-container {
  background: var(--wd-color-white);
}
.wd-sale-product-swiper-navigation {
  position: absolute;
  top: calc(50% - 20px);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.wd-sale-product-swiper-navigation .sale-product-swiper-button-prev,
.wd-sale-product-swiper-navigation .sale-product-swiper-button-next {
  border-radius: 500px;
  background: var(--wd-color-primary);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.wd-sale-product-swiper-navigation .sale-product-swiper-button-prev {
  position: relative;
  left: -20px;
}
.wd-sale-product-swiper-navigation .sale-product-swiper-button-next {
  position: relative;
  right: -20px;
}
.wd-sale-product-swiper-navigation .sale-product-swiper-button-prev:hover {
  background: var(--wd-color-primary);
  color: var(--wd-color-black);
  text-decoration: none;
}
.wd-sale-product-swiper-navigation .sale-product-swiper-button-next:hover {
  background: var(--wd-color-primary);
  color: var(--wd-color-black);
  text-decoration: none;
}
.wd-sale-product-swiper-navigation .swiper-button-disabled,
.wd-sale-product-swiper-navigation .swiper-button-disabled.sale-product-swiper-button-next,
.wd-sale-product-swiper-navigation .swiper-button-disabled.sale-product-swiper-button-prev,
.wd-sale-product-swiper-navigation .swiper-button-lock.sale-product-swiper-button-prev {
  background: var(--wd-color-secondary);
  color: var(--wd-color-white);
  opacity: 1;
}
.wd-sale-product-swiper-navigation .sale-product-swiper-button-prev svg,
.wd-sale-product-swiper-navigation .sale-product-swiper-button-next svg {
  font-size: var(--wd-font-size-16);
  color: var(--wd-color-black);
  font-weight: var(--wd-font-weight-600);
}
.wd-sale-product-swiper-navigation .swiper-button-disabled svg {
  color: var(--wd-color-white);
}


/*next and prev button position*/
.wd-sale-prod-owl-carousel .owl-nav {
  margin: 0;
}
.wd-sale-prod-owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 34%;
  margin: 0;
  left: -19px;
  border-radius: 500px;
  background: var(--wd-color-primary);
  width: 40px;
  height: 40px;
  z-index: 2;
}
.wd-sale-prod-owl-carousel .owl-nav button.owl-prev:hover {
  background: var(--wd-color-primary);
  color: var(--wd-color-black);
  text-decoration: none;
}
.wd-sale-prod-owl-carousel .owl-nav button.owl-next:hover {
  background: var(--wd-color-primary);
  color: var(--wd-color-black);
  text-decoration: none;
}
/*disabled property*/
.wd-sale-prod-owl-carousel .owl-nav .disabled {
  opacity: 1;
}
.wd-sale-prod-owl-carousel .owl-nav .owl-prev.disabled,
.wd-sale-prod-owl-carousel .owl-nav .owl-prev.disabled:hover {
  background: #323232;
}
.wd-sale-prod-owl-carousel .owl-nav .owl-next.disabled,
.wd-sale-prod-owl-carousel .owl-nav .owl-next.disabled:hover {
  background: #323232;
}
.wd-sale-prod-owl-carousel .owl-nav .disabled svg path {
  stroke: white;
}
.wd-sale-prod-owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 34%;
  margin: 0;
  right: -21px;
  border-radius: 500px;
  background: var(--wd-color-primary);
  width: 40px;
  height: 40px;
}
/*right-col*/
.wd-sale-product-right-col,
.wd-sale-product-cart-right-col {
  /* width: 235px; */
  display: flex;
  flex-direction: column;
  gap: 17px;
  /* height: 358px; */
}
.wd-sale-product-right-col .wd-right-col-item-inner-img,
.wd-sale-product-cart-right-col .wd-right-col-item-inner-img {
  width: 55px;
  height: 55px;
}
.wd-sale-product-right-col .wd-right-col-item-inner-img img,
.wd-sale-product-cart-right-col .wd-right-col-item-inner-img img {
  border-radius: var(--wd-radius-4);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wd-sale-product-right-col .wd-right-col-item,
.wd-sale-product-cart-right-col .wd-right-col-item {
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-white);
}
.wd-right-col-item .wd-right-col-item-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
}
.wd-right-col-item-inner .wd-right-col-item-inner-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 65px);
}
.wd-right-col-item .wd-pro-desc-heading {
  width: 100%;
}
/*wd-sale-products-section-end*/
/*wd-story-section-start*/
.wd-story-section {
  background: url("../imgs/story-background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding: 209px 0;
}
.wd-story-section .wd-story-section-inner {
  border-radius: 0px 4px 4px 4px;
  background: var(--wd-color-white);
  max-width: 868px;
  margin: 0 auto;
  padding: 57px 62px;
  position: relative;
}
.wd-story-section-inner .story-inner-svg {
  position: absolute;
  top: 0;
  left: 0;
}
.wd-story-section-inner .wd-story-inner-content {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
.wd-story-section-inner .wd-story-inner-content .wd-section-title {
  margin-bottom: 0;
}
/*wd-story-section-end*/
/*wd-instagram-section-start*/
.wd-insta-section .wd-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.wd-insta-section .wd-section-title .wd-pro-title {
  margin-bottom: 0;
}
.wd-insta-section .wd-section-title p {
  max-width: 744px;
  text-align: center;
}
/*wd-insta-carousel-items*/
.wdBestSaleSlider .swiper-slide:nth-child(even) {
  margin-top: 76px;
}
.wd-insta-item-container {
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.wd-insta-item-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wd-insta-item-container .overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wd-color-black);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
.wd-insta-item-container:hover .overlay {
  visibility: visible;
  opacity: 0.5;
}
.wd-insta-item-container .wd-line-vector {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--wd-color-primary);
  transition: all 0.3s ease-in-out;
  clip-path: polygon(0 96%, 0% 100%, 100% 100%);
}
.wd-coral-red .wd-insta-item-container .wd-line-vector {
  background-color: var(--wd-color-primary);
}
.wd-insta-item-container:hover .wd-line-vector {
  visibility: visible;
  opacity: 1;
}
.wd-insta-item-container .wd-insta-img-rec {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.wd-insta-item-container .wd-insta-icon {
  visibility: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  color: var(--wd-color-white);
  z-index: 3;
}
.wd-insta-item-container:hover {
  cursor: pointer;
}
.wd-insta-item-container:hover .wd-insta-img-rec {
  visibility: visible;
  opacity: 1;
  width: auto;
}
.wd-insta-item-container:hover .wd-insta-icon {
  visibility: visible;
  opacity: 1;
}
/*wd-instagram-section-end*/
/*wd-company-info-section-start*/
.wd-company-info-section {
  background: var(--wd-color-light-gray);
  padding: 60px 0 100px 0;
}
.wd-coral-red .wd-company-info-section {
  background-color: #F4F1EC;
}
.wd-company-info-section .wd-company-info-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.wd-company-info-desc-title .wd-owl-des {
  margin-top: 0;
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-500);
}
.wd-company-info-desc .wd-company-info-desc-list ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  padding-left: 0;
  list-style-type: none;
}
.wd-company-info-desc-list .wd-desc-item a,
.wd-company-info-desc-list .menu-item a {
  color: #6d6d6d;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
}

/*wd-company-info-section-end*/
/*wd-footer-section-start*/
.wd-footer-section {
  background: var(--wd-color-black);
  padding-top: 80px;
  padding-bottom: 60px;
}
.wd-footer-desc-section .wd-footer-contact-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.wd-footer-contact-section .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 99px;
  height: 26px;
}
.wd-footer-contact-section .logo img {
  width: fit-content;
  height: 100%;
}
.wd-footer-contact-section span {
  color: var(--wd-color-white);
  font-family: "Lexend Deca";
  font-size: var(--wd-font-size-20);
  font-weight: var(--wd-font-weight-700);
  line-height: 0%;
}
.wd-footer-contact-section .wd-footer-contact-detail-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.wd-footer-contact-section .wd-footer-contact-detail-section svg {
  color: var(--wd-color-primary);
}
.wd-footer-contact-para {
  color: #c1c1c1;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
}
.wd-footer-contact-section h4 {
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-500);
  line-height: 28px;
  color: var(--wd-color-white);
}
.wd-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.wd-social-links li a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.wd-social-links li a:hover {
  background-color: var(--wd-color-primary);
}
.wd-coral-red .wd-social-links li a:hover {
  background-color: var(--wd-color-coral-red);
}
.wd-social-links li a svg {
  color: var(--wd-color-white);
}
.wd-footer-contact-detail .wd-footer-contact-detail-name {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  word-break: break-word;
}
.wd-footer-desc-section .wd-company-info-desc-list .wd-desc-item a {
  color: #c1c1c1;
}
.wd-footer-desc-section .wd-company-info-desc-list .wd-desc-item a svg {
  color: var(--wd-color-primary);
}
.wd-desc-item a {
  display: flex;
  gap: 5px;
  align-items: center;
}
.wd-footer-desc-section .wd-company-info-desc-title .wd-owl-des {
  color: #ffffff;
  margin-top: 0;
}
.wd-footer-desc-section .wd-company-info-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wd-company-info-desc-icon-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.wd-company-info-desc-icon-item a {
  text-decoration: none;
  color: #c1c1c1;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
}
/*wd-footer-sub-section-start*/
.wd-footer-sub-section {
  position: relative;
  padding: 60px 0;
}
.wd-footer-sub-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #191816;
  z-index: -1;
}
.wd-footer-app-img-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.wd-footer-app-section .wd-company-info-desc-title .wd-owl-des {
  color: var(--wd-color-white);
  margin-top: 0;
}
.wd-footer-app-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.wd-footer-newsletter-section-outer {
  padding-left: 30px;
}
.wd-footer-newsletter-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.wd-footer-newsletter-section .wd-footer-newsletter-heading {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-28);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
.wd-footer-newsletter-section .wd-footer-newsletter-para {
  color: #6d6d6d;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
.wd-footer-input-mail-section {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wd-footer-section-newsletter-form {
  width: 100%;
}
.wd-footer-section-newsletter-form input[type="email"] {
  flex: 1;
  border-radius: 100px;
  border: 1px solid var(--wd-color-black);
  background: var(--wd-color-white);
  padding: 15px 0 15px 30px;
  height: 50px;
}
.wd-footer-section-newsletter-form input::placeholder {
  color: #6d6d6d;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
}
.wd-footer-section-newsletter-form input:focus {
  box-shadow: none;
  outline: none;
}
.wd-footer-section-newsletter-form .wd-btn-primary {
  padding: 9px 10px 9px 22px;
}
.wd-input-svg {
  display: none;
}

.wd-footer-checkbox-section {
  display: flex;
  gap: 10px;
}
.wd-footer-checkbox-section {
  padding-top: 20px;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: var(--wd-radius-4);
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--wd-color-light-gray);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 2px;
}

input[type="checkbox"]:checked {
  background-color: var(--wd-color-light-gray);
  border-color: rgba(0, 0, 0, 0.1);
}

input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236d6d6d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m2.75 8.75l3.5 3.5l7-7.5'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
  transform: translate(-50%, -50%);
  display: none;
}
input[type="checkbox"]:checked::after {
  display: block;
}
.wd-footer-checkbox-section .checkbox-label {
  color: #6d6d6d;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  width: calc(100% - 142px);
}
.wd-footer-checkbox-section .checkbox-label a {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
/*wd-footer-sub-section-end*/
/*wd-copywrite-section-start*/
.wd-footer-copywrite-section {
  background: var(--wd-color-black);
}
.wd-bluish-green .wd-footer-copywrite-section {
  background: var(--wd-color-petrol-blue);
}
.wd-copywrite-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 10px;
  flex-wrap: wrap;
}
.wd-copywrite-section .wd-copywrite-text {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
}
.wd-copywrite-tag {
  color: var(--wd-color-primary);
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 20px;
}
.wd-bluish-green .wd-copywrite-tag {
  color: var(--wd-color-white);
}
.wd-coral-red .wd-copywrite-tag {
  color: var(--wd-color-coral-red);
}
.wd-payment-acceptence-imgs {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
}
.wd-payment-acceptence-imgs:has(> img) {
  display: block;
}
.wd-payment-method-img img {
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-white);
}
/*wd-copywrite-section-end*/
/*wd-footer-section-end*/

/*===========Home Page2 Start==============*/
/*wd-top-bar-start*/
.wd-top-bar-section {
  background: var(--wd-color-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.wd-electro-top-bar.wd-top-bar-section {
  background-color: var(--wd-color-petrol-blue);
  border-color: #2F4956;
}
.wd-coral-red .wd-top-bar-section {
  background-color: #F9EAE1;
  border: 0;
}
.wd-top-bar-section .wd-top-bar-content {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 10px;
  align-items: flex-start;
}
.wd-top-bar-section .wd-top-bar-content .wd-top-bar-text {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: var(--wd-color-white);
  line-height: normal;
}
.wd-coral-red .wd-top-bar-section .wd-top-bar-content .wd-top-bar-text {
  color: var(--wd-color-black);
}
.wd-coral-red .wd-top-bar-section .wd-top-bar-content .wd-top-bar-text span {
  color: var(--wd-color-coral-red);
  font-weight: var(--wd-font-weight-500);
}
.wd-bar-dropdown::after {
  content: none;
}
.wd-bar-dropdown .btn-primary {
  background: transparent;
  outline: none;
  display: flex;
  align-items: center;
  gap: 9px;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: var(--wd-font-size-14);
}
.btn-primary::before {
  content: "";
  width: 1px;
  height: 14px;
  background: var(--wd-color-white);
}
.wd-top-bar-section .btn-primary:hover,
.wd-top-bar-section .btn-primary:active,
.wd-top-bar-section .btn-primary:focus {
  box-shadow: none;
  background: transparent;
  outline: none;
}
.wd-dropdown-section {
  display: flex;
  align-items: center;
  gap: 9px;
}
.wd-dropdown-section .wd-help-text {
  text-decoration: none;
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-14);
}
.wd-coral-red .wd-dropdown-section .wd-help-text {
  color: var(--wd-color-black);
}
.wd-top-bar-section .wd-top-bar-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 10px;
}
.wd-top-bar-section .wd-top-bar-links::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0px;
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.20);
}
.wd-top-bar-section .wd-top-bar-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--wd-font-size-14);
  color: var(--wd-color-black);
}
.wd-top-bar-section .wd-top-bar-links a::before {
  content: "/";
  position: absolute;
  top: 1px;
  left: -14px;
}
.wd-top-bar-section .wd-top-bar-links a:first-child:before {
  content: none;
}
/*wd-top-bar-end*/
/*wd-header-nav-start*/
.wd-header-nav-section {
  background: var(--wd-color-dark);
  padding: 15px 0;
  display: flex;
  align-items: center;
}
.wd-nav-container {
  display: flex;
  align-items: center;
  position: relative;
}
.wd-nav-container .logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.wd-nav-container .logo img {
  width: 99px;
  height: 26px;
}
.wd-nav-container .logo span {
  color: var(--wd-color-white);
  font-family: "Lexend Deca";
  font-size: var(--wd-font-size-20);
  font-style: normal;
  font-weight: var(--wd-font-weight-700);
  line-height: 0%;
}
.wd-header-section-form {
  width: 100%;
}
.wd-mobile-search-btn {
  display: none;
}
.wd-nav-margins {
  margin-left: 88px;
}
.wd-header-input-mail-section input {
  flex: 1;
  border-radius: 100px;
  border: 1px solid var(--wd-color-black);
  background: var(--wd-color-white);
  padding: 8px 0 8px 30px;
  height: 44px;
  width: 100%;
}
.wd-nav-container .wd-header-input-mail-section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-nav-container .wd-header-input-mail-section input::placeholder {
  color: #555;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
.wd-nav-container .wd-header-input-mail-section input:focus {
  box-shadow: none;
  outline: none;
}
.wd-nav-container .wd-header-input-mail-section .wd-btn-primary {
  padding-right: 11px;
}
.wd-nav-container .wd-header-input-mail-section .wd-search-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--wd-color-primary);
  color: var(--wd-color-dark);
  border: 0;
  border-radius: 50%;
}
.wd-nav-container .wd-header-nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.wd-header-nav-actions .wd-cart-action {
  position: relative;
}
.wd-header-nav-actions .wd-cart-action .wd-cart-icon {
  position: relative;
  top: 2px;
}
.wd-add-to-cart {
  color: var(--wd-color-white);
  font-size: 10px;
  font-weight: var(--wd-font-weight-600);
  line-height: normal;
  letter-spacing: 0.3px;
  background: #e71c1c;
  padding: 3px 8px;
  border-radius: var(--wd-radius-50);
  position: absolute;
  top: -8px;
  right: -9px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-actions .wd-action-icon ~ .wd-add-to-cart {
  top: 3px;
  right: -6px;
}
.wd-header-nav-actions {
  padding-left: 29px;
}
.wd-header-nav-actions .wd-wishlist-action,
.wd-header-nav-actions .wd-logged-in {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wd-header-nav-actions a {
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
.wd-header-nav-actions .wd-logged-in button {
  background-color: transparent;
  border: 0;
  padding: 0;
}
.wd-nav-container .wd-menu-dropdown.wd-logged-in .wd-dropdown-menu {
  padding: 10px 30px;
}
/*wd-header-nav-end*/

/*wd-brcategory-header-start*/
.wd-brcategory-header {
  background: var(--wd-color-white);
  height: 60px;
  position: relative;
}
.wd-electro-brcategory-header.wd-brcategory-header {
  background: var(--wd-color-petrol-blue);
  border-top: 1px solid #2F4956;
  height: 61px;
}
.wd-brcategory-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: var(--wd-color-primary);
  z-index: -1;
}
.wd-electro-brcategory-header.wd-brcategory-header::before {
  content: none;
}
.wd-brcategory-header .sb-header-container .wd-bc-sb-menu {
  display: flex;
}
.wd-electro-brcategory-header.wd-brcategory-header .sb-header-container .wd-bc-sb-menu {
  width: calc(100% - 272px);
  margin-left: 20px;
  justify-content: space-between;
}
.wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form {
  display: flex;
  align-items: center;
  height: 100%;
  width: 600px;
}
.wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form input {
  font-size: var(--wd-font-size-14);
  width: 100%;
  height: 40px;
  background-color: transparent;
  border: 0;
  color: var(--wd-color-white);
}
.wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form input:focus {
  outline: none;
}
.wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form input::placeholder {
  color: var(--wd-color-white);
  opacity: 1;
}
.wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form > button {
  display: flex;
  padding: 0;
  background-color: transparent;
  border: 0;
}
.wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form > button > .wd-primary-btn-svg,
.wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form .wd-view-all-btn span {
  color: var(--wd-color-white);
}
.wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form .wd-view-all-btn .wd-primary-btn-svg { 
  color: var(--wd-color-black);
}
.wd-brcategory-header .sb-menu .navbar-items.wd-mobile-sign-in,
.wd-brcategory-header .sb-menu .navbar-items.wd-mobile-register {
  display: none;
}
.wd-brcategory-header .sb-menu .navbar-items a {
  color: #555;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  text-transform: capitalize;
  height: 60px;
  line-height: 60px;
  padding-left: 25px !important;
  padding-right: 0;
}
.wd-brcategory-header .sb-menu .navbar-items a:hover,
.wd-brcategory-header .sb-menu .navbar-items a:focus,
.wd-brcategory-header .sb-menu .navbar-items a:active {
  color: var(--wd-color-text) !important;
}
.wd-brcategory-header .sb-menu > ul {
  padding-right: 29px;
}
.wd-brcategory-header.sb-header .wd-navbar ul li a {
  font-size: var(--wd-font-size-14);
  padding-left: 0 !important;
}
.wd-brcategory-header .wd-brcategory-container {
  border-radius: 0;
  background: none;
  margin-top: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
}
.wd-brcategory-container .wd-customer-service {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 28px;
  background-color: var(--wd-color-primary);
}
.wd-electro-brcategory-header .wd-brcategory-container .wd-customer-service {
  background-color: var(--wd-color-petrol-blue);
}
.wd-customer-service .wd-daily-deal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.wd-customer-service .wd-daily-deal a {
  text-decoration: none;
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  padding-right: 20px;
}
.wd-coral-orange .wd-customer-service .wd-daily-deal,
.wd-coral-orange .wd-customer-service .wd-daily-deal a {
  color: var(--wd-color-white);
}
.wd-coral-orange .wd-customer-service .wd-daily-deal::after {
  background: var(--wd-color-white);
}
.wd-customer-service .wd-daily-deal::after {
  content: "";
  width: 2px;
  height: 14px;
  background: var(--wd-color-black);
}
.wd-electro-brcategory-header .wd-customer-service .wd-daily-deal::after {
  background: rgba(255, 255, 255, 0.10);
}
.wd-customer-service .wd-order-tracking {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.wd-order-tracking a {
  text-decoration: none;
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
.wd-coral-orange .wd-order-tracking span,
.wd-coral-orange .wd-order-tracking a {
  color: var(--wd-color-white);
}
.wd-bc-btn {
  color: #212844;
  cursor: pointer;
  float: left;
  text-align: center;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-bc-btn:after {
  content: "";
  clear: both;
}
.wd-electro-brcategory-header .wd-customer-service .wd-daily-deal span,
.wd-electro-brcategory-header .wd-order-tracking span {
  color: var(--wd-color-primary);
}
.wd-electro-brcategory-header .wd-customer-service .wd-daily-deal a,
.wd-electro-brcategory-header .wd-order-tracking a {
  color: var(--wd-color-white);
}
.wd-bc-btn .wd-br-icon {
  background: var(--wd-color-primary);
  padding: 13px 10px 13px 16px;
  border: none;
  border-radius: 500px 0px 0px 500px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.wd-coral-orange .wd-bc-btn .wd-br-icon {
  color: var(--wd-color-white);
}
.wd-electro-brcategory-header .wd-bc-btn .wd-br-icon {
  background-color: var(--wd-color-primary);
  border-radius: 0;
  padding: 18px 10px 18px 16px;
}
.wd-electro-brcategory-header .wd-bc-btn .wd-br-icon span {
  color: var(--wd-color-white);
}
.wd-bc-btn .wd-br-button {
  padding: 9px 15px 9px 16px;
  border-radius: 0px 500px 500px 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--wd-color-light-gray);
  display: flex;
  align-items: center;
  gap: 15px;
}
.wd-electro-brcategory-header .wd-bc-btn .wd-br-button {
  border: 0;
  border-radius: 0;
  padding: 20px 15px 20px 0px;
  background-color: var(--wd-color-primary-blue);
  color: var(--wd-color-white);
}
.wd-bc-btn .wd-br-button span {
  border-radius: 500px;
  background: var(--wd-color-black);
  color: var(--wd-color-white);
  padding: 3px 0 3px 4px;
  width: 30px;
  height: 30px;
  transition: 0.3s ease-in-out;
}
.wd-electro-brcategory-header .wd-bc-btn .wd-br-button span {
  background: #EAEAEA;
  color: var(--wd-color-black);
  padding: 1px 0 3px 2px;
  width: 20px;
  height: 20px;
  font-size: 18px;
}
.wd-bc-btn.active .wd-br-button span {
  transform: rotate(90deg);
}
.wd-dropdown-swiper-slider {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 0px 0px 20px 20px;
  background: var(--wd-color-white);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 99;
  height: 242px;
  padding: 20px 45px;
}
.wd-bc-btn.active ~ .wd-dropdown-swiper-slider {
  display: block;
}
.wd-dropdown-swiper-slider .wd-dropdown-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.wd-dropdown-swiper-slider .wd-dropdown-img-container {
  background: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-50);
  width: 120px;
  height: 120px;
  transition: 0.3s ease-in-out;
}
.wd-dropdown-swiper-slider .wd-dropdown-img-container:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.wd-dropdown-product-item .wd-dropdown-desc-container {
  margin-top: 0;
  gap: 15px;
  width: 100%;
}
.wd-dropdown-desc-container .wd-dropdown-desc-heading {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.wd-dropdown-desc-container .wd-dropdown-products {
  color: #555;
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  padding: 6px 8px;
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-light-gray);
}
.wd-dropdown-swiper-slider .wd-dropdown-img-container img {
  object-fit: contain;
  width: 60px;
  height: 60px;
}
.wd-dropdown-owl-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 20px 46px;
}
.wd-dropdown-owl-carousel .owl-stage-outer {
  overflow: visible;
}
.wd-dropdown-owl-carousel .owl-stage-outer .owl-item {
  opacity: 0;
  visibility: hidden;
}
.wd-dropdown-owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  visibility: visible;
}
.wd-dropdown-owl-carousel .owl-nav {
  margin-top: 0;
  display: none;
}
.wd-dropdown-swiper-slider .wd-dropdown-swiper-navigation {
  position: absolute;
  top: calc(50% - 20px);
  width: calc(100% - 90px);
  display: flex;
  justify-content: space-between;
}
.wd-dropdown-swiper-slider .dropdown-swiper-button-prev,
.wd-dropdown-swiper-slider .dropdown-swiper-button-next {
  position: absolute;
  top: 38%; /* Aligning with existing Owl Carousel buttons */
  width: 40px;
  height: 40px;
  background: var(--wd-color-secondary);
  color: var(--wd-color-white);
  border-radius: 500px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s ease-in-out;
}
.wd-dropdown-swiper-slider .dropdown-swiper-button-prev {
  left: -65px;
}
.wd-dropdown-swiper-slider .dropdown-swiper-button-next {
  right: -65px;
}
/*wd-brcategory-header-end-page-2*/
/*Hero-section-start-page2*/
.wdCollectionHeroSlider .swiper-slide .row {
  align-items: center;
}
.wd-hero-section-carousel {
  background: var(--wd-color-light-gray);
  position: relative;
  z-index: 1;
  min-height: 500px;
}
.wd-hero-section-carousel .wd-section-carousel-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.wd-section-carousel-item .wd-section-carousel-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wd-section-carousel-desc h1 {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-42);
  font-weight: var(--wd-font-weight-600);
  line-height: 56px;
  margin: 5px 0 10px 0;
}
.wd-section-carousel-desc p {
  color: #6d6d6d;
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-400);
  line-height: 32px;
}
.wd-section-carousel-desc .wd-collection-offer {
  color: var(--wd-color-black);
  font-weight: var(--wd-font-weight-500);
  font-size: var(--wd-font-size-18);
}
.wd-section-carousel-item .wd-btn-primary {
  border: 1px solid var(--wd-color-black);
  padding-right: 10px;
}
.wd-section-carousel-img {
  height: 500px;
}
.wd-section-carousel-img .wd-carousel-item-img {
  object-fit: scale-down;
  width: 100%;
  height: 100%;
}
.wd-container:has(.collection-hero-swiper-pagination) {
  position: relative;
}
.collection-hero-swiper-pagination {
  position: absolute;
  left: 12px !important;
  bottom: 40px !important;
  z-index: 1;
}
.collection-hero-swiper-pagination span.swiper-pagination-bullet {
  background: #000 !important;
  opacity: 1;
}
.collection-hero-swiper-pagination span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 11px 0 0;
}
.collection-hero-swiper-pagination span.swiper-pagination-bullet-active {
  width: 36px;
  height: 12px;
  border-radius: 7px;
  border: 1px solid var(--wd-color-black);
  background: var(--wd-color-primary) !important;
}
/*Hero-section-end-page2*/
/*wd-ecommerce-products-section-start*/
.wd-ecommerce-products-section .wd-ecommerce-products-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.wd-ecommerce-products-section .wd-ecommerce-product-item {
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-light-gray);
  padding: 20px;
  min-width: 0;
}
.wd-ecommerce-product-item .row {
  align-items: center;
}
.wd-ecommerce-product-item .wd-ecommerce-product-item-img img {
  object-fit: contain;
  width: 182px;
  height: 157px;
}
.wd-ecommerce-product-item .wd-ecommerce-product-item-desc-outer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 40px;
}
.wd-ecommerce-product-item-desc-outer .wd-ecommerce-product-item-desc-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  text-align: right;
}
.wd-ecommerce-product-item-desc-outer .wd-btn-secondary {
  padding-right: 10px;
}
.wd-ecommerce-product-item-desc-inner .wd-desc-title {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
.wd-ecommerce-product-item-desc-inner .wd-desc-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-desc-price .wd-disc-price {
  color: var(--wd-color-primary);
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-600);
  line-height: normal;
}
.wd-desc-price .wd-disc-price ins {
  text-decoration: none;
}
.wd-desc-price .wd-price-start {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 0px;
}
/*wd-ecommerce-products-section-end*/
/*wd-top-trending-section-start*/
.wd-section-heading {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  display: block;
  margin-bottom: 40px;
}
.wd-top-trending-section .owl-nav {
  top: -37px;
}
/*wd-top-trending-section-end*/
/*wd-shop-by-category-section-start*/
.wd-shop-by-category-section .wd-shop-by-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.wd-shop-by-category-item {
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-light-gray);
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.wd-shop-by-category-item .wd-shop-category-outer {
  display: block;
  padding: 20px 30px 20px 32px;
}
.wd-shop-by-category-item .wd-shop-by-category-inner {
  display: flex;
  gap: 27px;
  flex-wrap: wrap;
}
.wd-shop-by-category-inner .wd-shop-by-category-desc {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: calc(100% - 87px);
}
.wd-shop-by-category-inner .wd-shop-by-category-desc .wd-pro-desc-heading {
  width: 100%;
}
.wd-shop-by-category-inner .wd-shop-by-category-inner-img {
  width: 60px;
  height: 60px;
}
.wd-shop-by-category-inner .wd-shop-by-category-inner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wd-shop-by-category-desc .wd-pro-desc-heading {
  font-size: var(--wd-font-size-16);
}
.wd-shop-by-category-item .wd-line-vector {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--wd-color-primary);
  clip-path: polygon(100% 90%, 0 100%, 100% 100%);
  z-index: 2;
}
.wd-shop-by-category-item:hover .wd-line-vector {
  visibility: visible;
  opacity: 1;
}
/*wd-shop-by-category-section-end*/
/*wd-deal-of-day-section-start*/
.wd-deal-of-day-section {
  padding-top: 80px;
}
.wd-deal-of-day-section .wd-deal-of-day-section-inner {
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-light-gray);
  position: relative;
  min-height: 220px;
  background-image: url(../imgs/horizontal-banner-1.png);
  background-size: cover;
}
.wd-deal-of-day-section .wd-deal-section-right-img {
  position: absolute;
  left: 20px;
  height: 220px;
  object-fit: contain;
}
.wd-deal-of-day-section .wd-deal-section-midtop-img {
  position: absolute;
  top: -10px;
  left: 526px;
  width: 122px;
  height: 163px;
  object-fit: contain;
  z-index: 2;
}
.wd-deal-of-day-section .wd-deal-section-midbottom-img {
  position: absolute;
  bottom: 0;
  left: 446px;
  width: 153px;
  object-fit: contain;
  z-index: 1;
}
.wd-deal-of-day-section .wd-deal-section-topright-img {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: contain;
  width: 73px;
  height: 65px;
}
.wd-deal-of-day-section .wd-deal-section-bottomright-img {
  width: 92px;
  height: 144px;
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: contain;
}
.wd-deal-section-desc-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 139px;
  z-index: 2;
}
.wd-deal-section-desc-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 39px 100px 39px 190px;
}
.wd-deal-of-day-section-inner .row {
  align-items: center;
}

.wd-deal-section-desc-inner .wd-deal-section-desc {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.wd-deal-section-desc .wd-deal-section-heading {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-600);
}
.wd-deal-section-desc .wd-deal-section-para {
  font-size: var(--wd-font-size-18);
}
.wd-deal-section-desc-inner .wd-btn-secondary {
  padding-right: 10px;
}
.wd-deal-section-desc .wd-deal-countdown-desc {
  padding: 70px 10px;
  z-index: 2;
}
.wd-deal-section-desc .wd-deal-section-desc-inner {
  padding: 30px 107px 30px 190px;
  z-index: 2;
}
/*wd-deal-of-day-section-end*/
/* wd-trending-item-section-start */
.wd-trending-item-section .wd-trending-item-section-grid {
  display: flex;
  gap: 36px;
  position: relative;
}
.wd-trending-item-section-grid .wd-advertise-grid-box {
  height: 427px; 
  width: 235px;
}
.wd-trending-item-section-grid .wd-trending-item-left-section {
  width: calc(100% - 271px);
}
.trending-product-swiper-navigation {
  position: absolute;
  top: 6px;
  right: 0;
  display: flex;
  gap: 10px;
}
.wd-trending-item-section-reverse .trending-product-swiper-navigation {
  right: 271px;
}
.trending-product-swiper-navigation .trending-product-swiper-button-prev,
.trending-product-swiper-navigation .trending-product-swiper-button-next {
  color: #333333;
}
.trending-product-swiper-navigation .swiper-button-disabled {
  color: #AAAAAA;
}
.wd-trending-item-section .wd-top-item-btn {
  padding: 8px 50px;
}
.wd-trending-item-section .wd-item-collection {
  height: 435px;
  border-radius: var(--wd-radius-4);
}
.wd-trending-item-section .wd-item-collection img {
  border-radius: var(--wd-radius-4);
}
/* wd-trending-item-section-end */
/*wd-deal-banner-section-start*/
.wd-deal-banner-section {
  padding-top: 80px;
}
.wd-deal-banner-section .wd-deal-banner-background {
  background: url(../imgs/deal-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 220px;
  border-radius: var(--wd-radius-4);
}
.wd-deal-banner-background {
  border-radius: var(--wd-radius-4);
}
.wd-deal-banner-background .wd-deal-section-desc-inner {
  align-items: center;
  gap: 30px;
  padding: 39px 20px;
  text-align: center;
}
/*wd-deal-banner-section-end*/

.wd-trending-item-section .wd-trending-item-section-reverse {
  flex-direction: row-reverse;
}
/*wd-customer-support-section-start*/
.wd-support-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.wd-support-section-grid .wd-support-section-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.wd-support-section-card span {
  border-radius: 42.5px;
  background: var(--wd-color-light-gray);
  width: 55px;
  height: 55px;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-support-section-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  flex: 1 0 0;
}
.wd-support-section-desc .wd-section-desc-heading {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
.wd-support-section-desc .wd-section-desc-para {
  color: #6d6d6d;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
}
/*wd-customer-support-section-end*/

/* .wd-treanding-item-carousel .wd-product-item{
  display: flex;
  align-items: center;
  justify-content: flex-start;
} */
/*wd-trending-item-section-start*/
.wd-treanding-item-carousel .owl-item img {
  width: fit-content;
}
.wd-trending-item-container .wd-trending-countdown-desc-clock {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-light-gray);
  padding: 5px 15px;
}
.wd-trending-item-container .wd-trending-countdown-clock-div {
  background: none;
  box-shadow: none;
}
.wd-trending-item-price .wd-pro-actual-price {
  color: #aaa;
  font-size: var(--wd-font-size-14);
  font-style: normal;
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  text-decoration-line: line-through;
}
.wd-trending-item-price .wd-pro-discounted-price {
  color: #333;
  font-size: var(--wd-font-size-16);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
.wd-treanding-item-carousel .wd-pro-desc-container {
  margin-top: 0;
  align-items: flex-start !important;
}
.wd-trending-countdown-inner .wd-trending-countdown-title {
  font-size: 16px !important;
  font-weight: 500 !important;
}
.wd-trending-countdown-inner .wd-trending-countdown-heading {
  font-size: 10px !important;
}
.wd-trending-countdown-desc-clock .wd-trending-countdown-svg svg {
  width: 2px;
  height: 2px;
}
.wd-trending-countdown-desc-outer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.wd-product-item .wd-trending-countdown-desc-outer .wd-pro-desc-container {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.wd-product-item .wd-trending-countdown-desc-outer .wd-pro-item-rating {
  justify-content: flex-start;
}
.wd-product-item .wd-trending-countdown-desc-outer .wd-btn-secondary {
  padding-right: 10px;
}
.wd-deal-swiper-slider-outer {
  position: relative;
}
.deal-product-swiper-navigation {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
  gap: 10px;
}
.deal-product-swiper-navigation .deal-product-swiper-button-prev,
.deal-product-swiper-navigation .deal-product-swiper-button-prev {
  color: #333333;
}
.deal-product-swiper-navigation .swiper-button-disabled {
  color: #AAAAAA;
}
.wd-trending-item-container .row {
  align-items: center;
}
/*wd-trending-item-section-end*/
/*wd-double-banner-section-start*/
.wd-double-banner-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.wd-double-banner-section-grid img {
  object-fit: cover;
  border-radius: var(--wd-radius-4);
  height: 299px;
  width: 100%;
  object-position: bottom;
}
/*wd-double-banner-section-end*/
.wd-trending-per-week {
  padding-bottom: 80px;
}
/*===========Home Page2 end==============*/

/*===========Fashion Home Page Start==============*/
/* wd-ecom-header-start */
.wd-ecom-header {
  background-color: var(--wd-color-dark);
}
.wd-electro-header.wd-ecom-header {
  background-color: #183544;
  z-index: 10;
}
.wd-ecom-header .sb-header-container {
  padding: 0;
  display: flex;
  justify-content: space-between;
  height: 74px;
}
.wd-ecom-header .sb-header-container .logo {
  width: 102px;
  height: 26px;
  padding: 0;
}
.wd-ecom-header .sb-header-container .logo img {
  width: auto;
}
.wd-ecom-header .sb-menu {
  margin-left: 158px;
}
@media (min-width: 1200px) {
  .wd-ecom-header .sb-menu > ul > li > a {
    height: 74px;
    line-height: 74px;
    padding: 0 12px;
  }
}
.wd-ecom-header .sb-menu > ul {
  list-style-type: none;
}
.wd-ecom-header .sb-menu > ul > li > a,
.wd-ecom-header .sb-menu > ul > li > a:hover,
.wd-ecom-header .sb-menu > ul > li > a:active,
.wd-ecom-header .sb-menu li:not(:last-child) a:hover, 
.wd-ecom-header .sb-menu li:not(:last-child) a:focus, 
.wd-ecom-header .sb-menu li:not(:last-child) a:active {
  font-size: var(--wd-font-size-16);
  color: var(--wd-color-white);
  text-transform: capitalize;
}
.wd-ecom-header .sb-menu li:not(:last-child) ul li a,
.wd-ecom-header .sb-menu li:not(:last-child) ul li a:hover {
  font-size: var(--wd-font-size-14);
  text-transform: unset;
}
.wd-electro-header .sb-menu li:not(:last-child) ul li a {
  line-height: 50px;
  color: var(--wd-color-text);
}
.wd-electro-header .sb-menu li:not(:last-child) ul li a::before {
  background-color: var(--wd-color-text);
}
.wd-ecom-header .wd-nav-container {
  margin-left: auto;
}
.wd-ecom-header .wd-header-section-form {
  width: auto;
}
.wd-ecom-header .wd-header-input-mail-section input {
  height: 40px;
  border: 0;
  width: 430px;
  padding: 6px 0 6px 20px;
}
.wd-ecom-header .wd-header-nav-actions .wd-wishlist-action.wd-sign-in span,
.wd-ecom-header .wd-header-nav-actions .wd-wishlist-action.wd-register span {
  color: var(--wd-color-primary);
}
.wd-electro-header.wd-ecom-header .wd-header-nav-actions .wd-wishlist-action.wd-sign-in span,
.wd-electro-header.wd-ecom-header .wd-header-nav-actions .wd-wishlist-action.wd-register span {
  color: var(--wd-color-white);
}
.wd-ecom-header .sb-menu .navbar-items.wd-mobile-sign-in,
.wd-ecom-header .sb-menu .navbar-items.wd-mobile-register {
  display: none;
}
/* wd-ecom-header-end */

/* wd-ecom-hero-section-start */
.wd-ecom-hero-section {
  padding: 136px 0 0px;
  background-image: url(../imgs/ecom-hero-bg.png);
  background-repeat: no-repeat;
  background-position: center top;
}
.wd-ecom-hero-section .wd-ecom-content-box {
  max-width: 670px;
}
.wd-ecom-hero-section .wd-ecom-content-box > .sub-title { 
  font-size: var(--wd-font-size-30);
  line-height: 30px;
  font-family: "Marcellus", serif;
  font-weight: var(--wd-font-weight-400);
}
.wd-ecom-hero-section .wd-ecom-content-box h1 {
  font-size: 56px;
  line-height: 80px;
  font-family: "Marcellus", serif;
  font-weight: var(--wd-font-weight-400);
  margin-bottom: 20px;
  max-width: 500px;
}
.wd-ecom-hero-section .wd-ecom-content-box p {
  color: var(--wd-color-text);
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  max-width: 575px;
  margin-bottom: 30px;
}
.wd-ecom-ad-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 107px;
}
.wd-ecom-ad-grid-box .wd-ecom-ad-center-content .wd-ecom-title-box {
  margin-bottom: 30px;
}
.wd-ecom-ad-content-box {
  width: 100%;
}
.wd-ecom-ad-content-box .wd-ecom-title-box small {
  display: inline-block;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  font-family: "Marcellus", serif;
  line-height: 20px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-400);
  font-family: "Marcellus", serif;
  line-height: 32px;
  color: var(--wd-color-black);
  max-width: 85%;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-fashion-ad-grid-box {
  position: relative;
  height: 200px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  background-size: cover;
  border-radius: 4px;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-fashion-ad-grid-box .wd-ecom-ad-content-box {
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-fashion-ad-grid-box .wd-ecom-ad-content-box.wd-ecom-ad-content-left {
  right: unset;
  left: 20px;
  text-align: left;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-fashion-ad-grid-box .wd-ecom-ad-content-box.wd-ecom-ad-content-right {
  right: 20px;
  left: unset;
  text-align: right;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-fashion-ad-grid-box .wd-ecom-ad-content-box.wd-ecom-ad-content-center {
  right: 0;
  left: 0;
  text-align: center;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-fashion-ad-grid-box .wd-ecom-ad-content-box.wd-ecom-ad-content-center p {
  margin: 0 auto 20px auto;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-fashion-ad-grid-box .wd-ecom-ad-content-box.wd-ecom-ad-center-content {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  bottom: unset;
  text-align: center;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-fashion-ad-grid-box .wd-ecom-ad-center-content .wd-ecom-title-box {
  margin-bottom: 30px;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box small {
  display: inline-block;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  font-family: "Marcellus", serif;
  line-height: 20px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-ecom-ad-grid-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  font-size: var(--wd-font-size-26);
  font-weight: var(--wd-font-weight-400);
  font-family: "Marcellus", serif;
  line-height: 100%;
  color: var(--wd-color-black);
  max-width: 100%;
}
/* wd-ecom-hero-section-end */

/* wd-ecom-category-section-start */
.wd-category-grid-card {
  position: relative;
  height: 350px;
  padding: 10px;
  border-radius: var(--wd-radius-4);
}
.wd-category-grid-card.wd-bg-lightsky {
  background-color: #E6ECEE;
}
.wd-category-grid-card.wd-bg-skyblue {
  background-color: #B8D9EB;
}
.wd-category-grid-card.wd-bg-lightpurple {
  background-color: #E9EDFF;
}
.wd-category-grid-card.wd-bg-lightgray {
  background-color: #D5D9D7;
}
.wd-category-grid-card .category-content-box {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 20px);
  padding: 10px 15px;
  background-color: var(--wd-color-white);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.15);
  border-radius: var(--wd-radius-25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wd-category-grid-card .wd-category-img-box {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 30px));
  text-align: center;
}
.wd-category-grid-card .wd-category-img-box img {
  transition: 0.3s ease-in-out;
}
.wd-category-grid-card:hover .wd-category-img-box img {
  transform: scale(0.9);
}
.wd-category-grid-card .category-content-box .category-name {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-secondary);
  line-height: 21px;
}
.wd-category-grid-card .category-content-box .category-count {
  display: inline-block;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555555; 
  line-height: 21px;
  padding: 4px 10px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-25);
}
/* wd-ecom-category-section-end */

/* wd-ecom-advertise-banner-section-start */
.wd-ecom-advertise-banner-section .wd-ecom-ad-grid-wrapper {
  margin-top: 0;
  grid-template-columns: 2fr 3fr;
}
.wd-ecom-advertise-banner-section .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
  height: 250px;
}
/* wd-ecom-advertise-banner-section-end */

/* wd-ecom-trending-item-section-start */
.wd-ecom-trending-item-section .wd-advertise-grid-box .wd-desc-title {
  font-family: "Marcellus", serif;
  font-weight: var(--wd-font-weight-400);
}
.wd-ecom-product-item .wd-pro-img-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.wd-ecom-product-item .wd-pro-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wd-radius-4);
}
.wd-ecom-product-item .wd-pro-wishlist,
.wd-ecom-product-item .wd-pro-compare,
.wd-ecom-product-item .wd-pro-mobile-cart {
  background-color: var(--wd-color-white);
}
/* wd-ecom-trending-item-section-end */

/* wd-ecom-latest-trends-section-start */
.wd-ecom-latest-trends-section {
  padding: 80px 0 60px 0;
  background-image: url(../imgs/ecom-latest-trend-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
}
.wd-ecom-latest-trend-content {
  text-align: center;
  max-width: 776px;
  margin: 0 auto 60px auto;
}
.wd-ecom-latest-trend-content h2 {
  font-size: 56px;
  font-weight: var(--wd-font-weight-400);
  font-family: "Marcellus", serif;
  line-height: 80px;
  color: var(--wd-color-black);
  margin-bottom: 20px;
}
.wd-ecom-latest-trend-content p {
  color: var(--wd-color-text);
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  margin-bottom: 30px;
}
.wd-ecom-latest-trend-content .wd-deal-countdown-desc-clock {
  justify-content: center;
}
/* wd-ecom-latest-trends-section-end */

/* wd-ecom-banner-backgrounds-start */
.wd-deal-banner-section .wd-ecom-banner-background {
  height: 300px;
  background-image: url(../imgs/ecom-deal-banner-4.png);
}
.wd-deal-banner-section .wd-elec-banner-background {
  height: 293px;
  background-image: url(../imgs/ecom-deal-banner-6.png);
}
.wd-deal-banner-section .wd-elec-banner-background .wd-deal-section-desc-inner {
  height: 100%;
}
.wd-ecom-banner-background .wd-deal-section-desc-inner {
  height: 100%;
}
.wd-ecom-banner-background .wd-deal-section-desc .wd-deal-section-heading {
  font-weight: var(--wd-font-weight-400);
  font-family: "Marcellus", serif;
}
/* wd-ecom-banner-background-end */
/*===========Fashion Home Page End==============*/

/*===========Grocery Home Page Start==============*/
/* wd-green-theme-start */
.wd-green-theme .wd-header-nav-section {
  background-color: var(--wd-color-primary);
}
.wd-green-theme .wd-nav-container .logo img {
  width: 113px;
}
.wd-green-theme .wd-header-input-mail-section input[type="email"] {
  border: 1px solid var(--wd-color-white);
}
.wd-green-theme .wd-btn-secondary {
  background-color: var(--wd-color-light-gray);
  border: 1px solid #d2d2d2;
}
.wd-green-theme .wd-btn-primary {
  background-color: var(--wd-color-primary);
  border: 1px solid var(--wd-color-primary);
}
.wd-green-theme .wd-nav-container .wd-header-input-mail-section .wd-btn-primary {
  background-color: var(--wd-color-light-gray);
  border: 1px solid #d2d2d2;
}
.wd-green-theme .wd-btn-primary > span {
  color: var(--wd-color-white);
}
.wd-green-theme .wd-nav-container .wd-header-input-mail-section .wd-btn-primary > span {
  color: var(--wd-color-black);
}
.wd-green-theme .wd-btn-secondary .wd-primary-btn-svg {
  background-color: var(--wd-color-green-theme-button-svg);
  color: var(--wd-color-black);
}
.wd-green-theme .wd-nav-container .wd-header-input-mail-section .wd-btn-primary .wd-primary-btn-svg {
  background-color: #EAEAEA;
}
.wd-green-theme .wd-btn-primary .wd-primary-btn-svg {
  background-color: var(--wd-color-white);
  color: var(--wd-color-black);
}
.wd-green-theme .wd-brcategory-header {
  border-bottom: 1px solid #e6e6e6;
}
.wd-green-theme .wd-bc-btn .wd-br-icon {
  background-color: var(--wd-color-primary);
  color: var(--wd-color-white);
}
.wd-green-theme .wd-bc-btn .wd-br-button span {
  background-color: var(--wd-color-green-theme-button-svg);
  color: var(--wd-color-black);
}
.wd-green-theme .wd-brcategory-header .sb-menu .navbar-items a:hover, 
.wd-green-theme .wd-brcategory-header .sb-menu .navbar-items a:focus, 
.wd-green-theme .wd-brcategory-header .sb-menu .navbar-items a:active {
  color: var(--wd-color-green-theme) !important;
}
.wd-green-theme .wd-brcategory-header::before,
.wd-green-theme .wd-brcategory-container .wd-customer-service {
  background-color: var(--wd-color-light-gray);
}
.wd-green-theme .wd-brcategory-container .wd-customer-service {
  height: calc(100% - 1px);
}
.wd-green-theme .wd-customer-service .wd-daily-deal,
.wd-green-theme .wd-customer-service .wd-order-tracking {
  color: var(--wd-color-primary);
}
.wd-green-theme .wd-customer-service .wd-daily-deal::after {
  background: rgba(0, 0, 0, 0.1);
}
.wd-green-theme .wd-footer-copywrite-section {
  background-color: var(--wd-color-primary);
}
.wd-green-theme .wd-footer-copywrite-section .wd-copywrite-tag {
  color: var(--wd-color-white);
}
.wd-green-theme .wd-top-bar-section {
  background-color: var(--wd-color-primary);
}
/* wd-green-theme-end */

/* wd-grocery-hero-section-start */
.wd-grocery-hero-grid-wrapper {
  margin-top: 0;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
}
.wd-grocery-left-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wd-grocery-hero-grid-wrapper .wd-ecom-ad-grid-box {
  height: 215px;
}
.wd-grocery-hero-grid-wrapper .wd-grocery-main-banner .wd-ecom-ad-grid-box {
  height: 450px;
}
.wd-grocery-hero-grid-wrapper .wd-advertise-grid-box {
  height: 450px;
}
.wd__custom_banner .wd-ecom-ad-content-box .wd-ecom-title-box small {
  font-family: "Poppins", sans-serif;
}
.wd__custom_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  font-family: "Poppins", sans-serif;
  color: var(--wd-color-green-theme);
  font-weight: var(--wd-font-weight-600);
  margin-bottom: 0px;
}
.wd_middle_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  font-size: var(--wd-font-size-36);
  line-height: 48px;
}
.wd_offer_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  max-width: 50%;
}
.wd_full_width_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  max-width: 22%;
}
.wd__custom_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3:has(~ p) {
  margin-bottom: 10px;
}
.wd__custom_banner.text-end .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  margin-left: auto;
}
.wd__custom_banner.text-center .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  margin: 0 auto 10px auto;
}
.wd-grocery-hero-grid-wrapper .wd-grocery-main-banner .wd-ecom-title-box h3 {
  font-size: var(--wd-font-size-36);
  line-height: 48px;
  margin: 5px 0;
}
.wd__custom_banner .wd-ecom-ad-content-box .wd-ecom-title-box p {
  color: var(--wd-color-text);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 22px;
  max-width: 360px;
  margin-bottom: 10px;
}
.wd__custom_banner.text-center .wd-ecom-ad-content-box .wd-ecom-title-box p {
  margin: 0 auto 10px auto;
}
.wd-horizontal-advertise-box {
  text-align: center;
}
/* wd-grocery-hero-section-end */

/* wd-grocery-trending-items-section-start */
.wd-grocery-trending-items-section .wd-trending-item-section-grid {
  gap: 20px;
}
.wd-trending-item-section-grid .wd-advertise-sidebar {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wd-trending-item-section-grid .wd-advertise-sidebar .wd-advertise-grid-box {
  width: 100%;
  height: 100%;
}
.wd-grocery-trending-items-section .wd-trending-item-section-grid .wd-trending-item-left-section {
  width: calc(100% - 360px);
}
.wd-grocery-trending-items-section .wd-section-heading {
  margin-bottom: 20px;
}
.wd-mini-product-item .wd-pro-img-container {
  height: 140px;
  transition: 0.3s ease-in-out;
}
.wd-mini-product-item .wd-pro-img-container > a,
.wd-mini-product-item .wd-pro-img-container > a > img {
  width: 100%;
  height: 100%;
}
.wd-mini-product-item:hover .wd-pro-img-container {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.wd-mini-product-item .wd-pro-desc-heading {
  font-size: var(--wd-font-size-16);
}
.wd-product-swiper-outer-card {
  padding: 20px 0 20px 20px;
  margin-top: 20px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
}
.wd-trending-mini-product-item .wd-pro-img-container {
  height: 200px;
  background-color: var(--wd-color-white);
  transition: 0.3s ease-in-out;
}
.wd-trending-mini-product-item:hover .wd-pro-img-container {
  box-shadow: 0px 0px 50px 0 rgba(0, 0, 0, 0.10);
} 
.wd-trending-mini-product-item .wd-pro-img-container > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-trending-mini-product-item .wd-pro-img-container .wd-card-tags-wrapper {
  right: unset;
  left: 10px;
}
.wd-trending-mini-product-item .wd-pro-desc-heading {
  margin-bottom: 5px;
}
.wd-trending-mini-product-item:hover .wd-fea-pro-price {
  display: block;
}
.wd-trending-mini-product-navigation {
  right: 20px;
}
.wd-pro-quick-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.wd-trending-mini-product-item:hover .wd-pro-quick-actions {
  visibility: visible;
  opacity: 1;
}
.wd-pro-quick-actions a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--wd-color-black);
  background-color: var(--wd-color-white);
  transition: 0.3s ease-in-out;
}
.wd-green-theme .wd-trending-mini-product-item .wd-pro-quick-actions a:hover {
  color: var(--wd-color-white);
  background-color: var(--wd-color-primary);
}
.wd-pro-quick-actions a span {
  font-size: var(--wd-font-size-20);
}
.wd-pro-quick-actions a svg {
  width: 18px;
  height: 18px;
}
.wd-product-swiper-navigation .mini-product-swiper-button-prev,
.wd-product-swiper-navigation .mini-product-swiper-button-prev,
.wd-product-swiper-navigation .trending-mini-product-swiper-button-next,
.wd-product-swiper-navigation .trending-mini-product-swiper-button-prev,
.wd-product-swiper-navigation .trending-mini-product-swiper2-button-next,
.wd-product-swiper-navigation .trending-mini-product-swiper2-button-prev {
  color: #333333;
}
.wd-product-swiper-navigation .swiper-button-disabled {
  color: #AAAAAA;
}
.wd-grocery-trending-items-section .wd-ecom-ad-grid-wrapper {
  margin-top: 20px;
  margin-bottom: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.wd-grocery-trending-items-section .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
  height: 215px;
}
.wd-grocery-trending-items-section .wd-ecom-ad-content-box .wd-ecom-title-box small {
  font-family: "Poppins", sans-serif;
}
.wd-grocery-banner-section .wd-deal-section-desc .wd-deal-section-para {
  font-size: var(--wd-font-size-12);
  line-height: 18px;
  color: var(--wd-color-black);
  font-weight: var(--wd-font-weight-500);
}
.wd-grocery-banner-section .wd-ecom-banner-background .wd-deal-section-desc .wd-deal-section-heading {
  font-size: var(--wd-font-size-24);
  font-family: "Poppins", serif;
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-green-theme);
  max-width: 270px;
}
/* wd-grocery-trending-items-section-end */
/* wd-blogs-section-start */
.wd-blogs-section .wd-section-heading {
  text-align: center;
}
.wd-blogs-section .wd-section-heading.wd-section-heading-left {
  text-align: left;
}
.wd-blog-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wd-blog-card {
  min-width: 0%;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  transition: 0.3s ease-in-out;
}
.wd-blog-card:hover {
  border: 1px solid var(--wd-color-white);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}
.wd-blog-card .wd-blog-img-box {
  height: 220px;
}
.wd-blog-card .wd-blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}
.wd-blog-card .wd-blog-content-box {
  padding: 20px;
  text-align: center;
}
.wd-blog-card .wd-blog-content-box .wd-blog-publish-date {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-size: var(--wd-font-size-12);
  color: #6D6D6D;
}
.wd-blog-card .wd-blog-content-box .wd-blog-publish-date span {
  font-size: var(--wd-font-size-16);
}
.wd-blog-card .wd-blog-content-box .wd-pro-desc-heading {
  font-size: var(--wd-font-size-16);
  overflow: visible;
  text-overflow: unset;
  white-space: unset;
  margin-top: 5px;
  margin-bottom: 0;
}
/* wd-blogs-section-end */

/* wd-brand-logo-section-start */
.wd-brand-logo-section {
  padding: 16px 0;
  background-color: var(--wd-color-light-gray);
}
.wd-brand-logo-section.wd-transparent-bg {
  background-color: transparent;
}
.wd-brand-logo-box {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
}
.wd-brand-logo-box img {
  height: 100%;
  /* filter: invert(86%) sepia(12%) saturate(21%) hue-rotate(344deg) brightness(88%) contrast(84%); */
}
/* wd-brand-logo-section-end */

/* wd-advanced-footer-start */
.wd-advanced-footer {
  background-color: var(--wd-color-light-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}
.wd-advanced-footer .wd-footer-desc-section,
.wd-advanced-footer .wd-footer-newsletter-section {
  padding: 60px 0;
}
.wd-advanced-footer .wd-footer-contact-para {
  color: #555555;
}
.wd-advanced-footer .wd-footer-contact-section .wd-footer-contact-detail-section svg {
  color: var(--wd-color-black);
}
.wd-bluish-green .wd-advanced-footer .wd-footer-contact-section .wd-footer-contact-detail-section svg {
  color: var(--wd-color-petrol-blue);
}
.wd-green-theme .wd-advanced-footer .wd-footer-contact-section .wd-footer-contact-detail-section svg {
  color: var(--wd-color-primary);
}
.wd-advanced-footer .wd-footer-contact-detail .wd-footer-contact-detail-name {
  color: var(--wd-color-black);
}
.wd-advanced-footer .wd-footer-newsletter-section-wrapper {
  background-color: var(--wd-color-white);
}
.wd-advanced-footer .wd-footer-newsletter-section {
  gap: 20px;
  padding-left: 6px;
  padding-right: 6px;
}
.wd-advanced-footer .wd-footer-newsletter-section .wd-footer-newsletter-heading {
  font-size: var(--wd-font-size-18);
  margin-bottom: 5px;
}
.wd-advanced-footer .wd-footer-newsletter-section .wd-footer-newsletter-para,
.wd-advanced-footer .wd-footer-checkbox-section .checkbox-label,
.wd-advanced-footer .wd-footer-checkbox-section .checkbox-label a {
  font-size: var(--wd-font-size-14);
}
.wd-advanced-footer .wd-footer-input-mail-section {
  position: relative;
}
.wd-advanced-footer .wd-footer-section-newsletter-form .wd-btn-primary {
  padding: 9px;
  position: absolute;
  right: 1px;
}
.wd-bluish-green .wd-advanced-footer .wd-footer-section-newsletter-form .wd-btn-primary {
  background-color: var(--wd-color-petrol-blue);
  border-color: var(--wd-color-petrol-blue);
}
.wd-bluish-green .wd-advanced-footer .wd-footer-section-newsletter-form .wd-btn-primary .wd-primary-btn-svg {
  background-color: var(--wd-color-white);
  color: var(--wd-color-black);
}
.wd-company-info-desc-wrapper {
  padding: 60px 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wd-company-info-desc-wrapper .wd-company-info-desc {
  min-width: 0%;
}
.wd-company-info-desc-wrapper .wd-company-info-desc .wd-owl-des {
  font-size: var(--wd-font-size-18);
  margin-bottom: 20px;
}
/* wd-advanced-footer-end */

/* wd-recommended-products-section-start */
.wd-title-tags-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.wd-title-tags-section .wd-section-heading {
  margin-bottom: 0;
}
.wd-title-tags-list ul {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
}
.wd-title-tags-list .wd-title-tag {
  display: inline-block;
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-500);
  line-height: 18px;
  padding: 4px 15px;
  color: #333;
  border-radius: var(--wd-radius-25);
  transition: 0.3s ease-in-out;
}
.wd-title-tags-list .wd-title-tag:hover,
.wd-title-tags-list .wd-title-tag.active {
  background-color: var(--wd-color-primary);
  color: #333;
}
.wd-green-theme .wd-title-tags-list .wd-title-tag:hover,
.wd-green-theme .wd-title-tags-list .wd-title-tag.active,
.wd-bluish-green .wd-title-tags-list .wd-title-tag:hover,
.wd-bluish-green .wd-title-tags-list .wd-title-tag.active,
.wd-cherry-red .wd-title-tags-list .wd-title-tag:hover,
.wd-cherry-red .wd-title-tags-list .wd-title-tag.active {
  color: var(--wd-color-white);
}
.wd-trending-mini-product-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.wd-trending-mini-thumb-product {
  min-width: 0%;
  max-width: 100%;
}
.wd-trending-mini-thumb-product .wd-pro-img-container {
  display: block;
  padding: 20px;
  height: 270px;
  background-color: var(--wd-color-white);
  border: 1px solid rgba(0, 0, 0, 0.10);
  transition: 0.3s ease-in-out;
}
.wd-trending-mini-thumb-product:hover .wd-pro-img-container {
  border: 1px solid var(--wd-color-white);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
} 
.wd-trending-mini-thumb-product .wd-pro-img-container .wd-card-tags-wrapper {
  right: unset;
  left: 10px;
}
.wd-trending-mini-thumb-product-item {
  height: 173px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.wd-trending-mini-thumb-product-item > a,
.wd-trending-mini-thumb-product-item > a > img {
  width: 100%;
  height: 100%;
}
.wdProductThumbsItemSlider .swiper-wrapper {
  justify-content: center;
}
.wdProductThumbsItemSlider .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}
.wdProductThumbsItemSlider .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0 !important;
}
.wd-trending-mini-product-thumb-item {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  cursor: pointer;
}
.wd-trending-mini-product-thumb-item img {
  border-radius: var(--wd-radius-4) !important;
}
.wd-green-theme .wd-trending-mini-thumb-product .wdProductThumbsItemSlider .swiper-slide-thumb-active .wd-trending-mini-product-thumb-item {
  border-color: var(--wd-color-primary);
}
.wd-bluish-green .wd-trending-mini-thumb-product .wdProductThumbsItemSlider .swiper-slide-thumb-active .wd-trending-mini-product-thumb-item {
  border-color: var(--wd-color-primary);
}
.wd-trending-mini-thumb-product .wd-pro-quick-actions {
  z-index: 1;
}
.wd-trending-mini-thumb-product:hover .wd-pro-quick-actions {
  visibility: visible;
  opacity: 1;
}
.wd-green-theme .wd-trending-mini-thumb-product .wd-pro-quick-actions a:hover {
  color: var(--wd-color-white);
  background-color: var(--wd-color-green-theme);
}
.wd-trending-mini-thumb-product .wd-pro-desc-container {
  margin-top: 10px;
}
.wd-trending-mini-thumb-product .wd-pro-desc-heading {
  margin-bottom: 5px;
}
.wd-trending-mini-thumb-product:hover .wd-fea-pro-price {
  display: block;
}
/* wd-recommended-products-section-end */

/* wd-grocery-trending-items-section-start */
.wd-trending-mini-product-wrapper-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wd-trending-mini-thumb-product-style-2 .wd-pro-img-container {
  display: block;
  padding: 20px;
  height: 326px;
  background-color: var(--wd-color-white);
  border: 1px solid rgba(0, 0, 0, 0.10);
  transition: 0.3s ease-in-out;
}
.wd-trending-mini-thumb-product-style-2 {
  min-width: 0%;
  max-width: 100%;
}
.wd-trending-mini-thumb-product-style-2:hover .wd-pro-img-container {
  border: 1px solid var(--wd-color-white);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}
.wd-trending-mini-thumb-product-style-2 .wd-pro-quick-actions {
  z-index: 1;
}
.wd-trending-mini-thumb-product-style-2:hover .wd-pro-quick-actions {
  visibility: visible;
  opacity: 1;
}
.wd-green-theme .wd-trending-mini-thumb-product-style-2 .wd-pro-quick-actions a:hover {
  color: var(--wd-color-white);
  background-color: var(--wd-color-green-theme);
}
.wd-trending-mini-thumb-product-style-2 .wd-pro-img-container .wd-card-tags-wrapper {
  right: unset;
  left: 10px;
}
.wd-trending-mini-thumb-product-style-2 .wdProductThumbsItemSlider {
  width: 168px;
  margin: 0 auto 0 0;
}
.wd-trending-mini-thumb-product-style-2 .wdProductThumbsItemSlider .swiper-wrapper .swiper-slide {
  justify-content: flex-start;
}
.wd-green-theme .wd-trending-mini-thumb-product-style-2 .wdProductThumbsItemSlider .swiper-slide-thumb-active .wd-trending-mini-product-thumb-item {
  border-color: var(--wd-color-green-theme);
}
.wd-trending-mini-thumb-product-style-2:hover .wd-fea-pro-price {
  display: block;
}
.wd-pro-desc-container-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.wd-trending-mini-thumb-product-style-2 .wd-pro-desc-container {
  text-align: left;
  margin-top: 0;
  width: calc(100% - 118px);
}
.wd-trending-mini-thumb-product-style-2 .wd-pro-desc-container-wrapper .wd-btn-secondary {
  transition: 0.3s ease-in-out;
}
.wd-green-theme .wd-trending-mini-thumb-product-style-2:hover .wd-pro-desc-container-wrapper .wd-btn-secondary {
  background-color: var(--wd-color-primary);
  border-color: var(--wd-color-primary);
}
.wd-green-theme .wd-trending-mini-thumb-product-style-2:hover .wd-pro-desc-container-wrapper .wd-btn-secondary span {
  color: var(--wd-color-white);
} 
.wd-green-theme .wd-trending-mini-thumb-product-style-2:hover .wd-pro-desc-container-wrapper .wd-btn-secondary .wd-primary-btn-svg {
  background-color: var(--wd-color-white);
  color: var(--wd-color-black);
}
.wd-trending-mini-thumb-product-style-2 .wd-trending-mini-thumb-product-item {
  height: 162px;
}
/* wd-grocery-trending-items-section-end */

/*===========Grocery Home Page End==============*/

/*=========== Full Width Search Page Start ==============*/

/* wd-breadcrumb-start */
.wd-breadcrumb {
  padding: 20px 0;
  background-color: var(--wd-color-light-gray);
}
.wd-breadcrumb .breadcrumb {
  margin-bottom: 0;
}
.wd-breadcrumb .breadcrumb li {
  color: #333;
}
.wd-breadcrumb .breadcrumb li:not(:first-child)::before {
  color: #333;
  content: "arrow_forward_ios";
  font-family: 'Material Symbols Outlined';
}
.wd-breadcrumb .breadcrumb li a {
  color: #333;
}
/* wd-breadcrumb-end */

/* wd-search-product-section-start */
.wd-search-product-section {
  padding: 20px 0 60px 0;
}
.wd-ecommerce-advertise-box {
  position: relative;
  height: 167px;
  background-size: contain;
  transition: 0.3s ease-in-out;
}
.wd-ecommerce-advertise-box:hover {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
}
.wd-ecommerce-advertise-box .wd-ecom-advertise-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wd-ecommerce-advertise-box .subtitle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 22px;
  color: #555555;
}
.wd-ecommerce-advertise-box .title {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-600);
  line-height: 24px;
  color: var(--wd-color-black);
  width: 130px;
}
.wd-ecommerce-advertise-swiper-navigation {
  position: absolute;
  top: calc(50% - 15px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ecommerce-advertise-swiper-button-prev,
.ecommerce-advertise-swiper-button-next {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--wd-radius-50);
  color: var(--wd-color-white);
  background-color: var(--wd-color-black);
  z-index: 1;
}
.ecommerce-advertise-swiper-button-prev {
  left: -15px;
}
.ecommerce-advertise-swiper-button-next {
  right: -15px;
}
.wd-product-search-result-bar {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.wd-search-result-bar-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  flex: 1;
}
.wd-search-result-bar-box .wd-product-search-result {
  padding-left: 25px;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
}
.wd-search-filter-button,
.wd-search-filter-dropdown-button {
  padding: 9px 18px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: var(--wd-color-black);
  background-color: var(--wd-color-white);
  border: 1px solid #d2d2d2;
  border-radius: var(--wd-radius-4);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-search-filter-button > span {
  font-size: var(--wd-font-size-20);
}
.wd-search-sort-box .select2-container {
  width: 340px !important;
}
.wd-search-sort-box .select2-container .select2-selection--single {
  height: 50px;
  background-color: var(--wd-color-white);
  border: 1px solid #D2D2D2;
  margin-bottom: 0;
}
.wd-search-sort-box .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: var(--wd-font-size-14);
  color: #555555;
  line-height: 48px;
  padding: 0px 16px;
  padding-left: 30px;
}
.wd-search-sort-box .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  right: 16px;
}
.wd-search-sort-box .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #333 #333 transparent transparent;
  border-width: 1px 1px 0 0px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  transform: rotate(45deg);
  background-image: none;
}
.wd-search-sort-box .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  margin-top: -2px;
  transform: rotate(-45deg);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--wd-color-primary);
}
.wd-yellow-theme .wd-trending-mini-thumb-product .wdProductThumbsItemSlider .swiper-slide-thumb-active .wd-trending-mini-product-thumb-item {
  border-color: var(--wd-color-primary);
}
.wd-yellow-theme .wd-trending-mini-thumb-product .wd-pro-quick-actions a:hover {
  color: var(--wd-color-white);
  background-color: var(--wd-color-primary);
}
.wd-bluish-green .wd-trending-mini-thumb-product .wd-pro-quick-actions a:hover {
  color: var(--wd-color-white);
  background-color: var(--wd-color-primary-blue);
}
.wd-product-search-result-bar-style-2 {
  margin-top: 0;
  margin-bottom: 30px;
}
.wd-product-search-result-bar-style-2 .wd-search-result-bar-box {
  padding: 0;
  background-color: transparent;
}
.wd-signle-filter-dropdown-button {
  padding: 12px 20px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: var(--wd-color-black);
  background-color: var(--wd-color-white);
  border: 1px solid #d2d2d2;
  border-radius: var(--wd-radius-4);
  display: flex;
  align-items: center;
  gap: 10px 30px;
}
.wd-signle-filter-dropdown-button::after {
  content: none;
}
.wd-signle-filter-dropdown-button.show {
  border-color: var(--wd-color-primary);
}
.wd-signle-filter-dropdown-button > span {
  transition: 0.3s ease-in-out;
}
.wd-signle-filter-dropdown-button.show > span {
  transform: rotate(90deg);
}
.dropdown-menu.wd-single-filter-dropdown-wrapper {
  min-width: 212px !important;
  transform: translate(0px, 70px) !important;
  padding: 20px;
  border: 0;
  border-radius: var(--wd-radius-4);
  background-color: var(--wd-color-white);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.10);
  white-space: nowrap;
}
.wd-single-filter-dropdown-wrapper::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 20px;
  width: 15px;
  height: 15px;
  background-color: var(--wd-color-white);
  transform: rotate(45deg);
}
.wd-single-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls {
  flex-wrap: wrap;
}
.wd-single-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls input {
  width: calc(50% - 17px);
  padding: 15px 10px;
}
.wd-single-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls .wd-control-divider {
  width: 14px;
}
.wd-single-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls .wd-filter-price-btn {
  width: 100%;
}
.wd-product-search-result-bar-style-2 .wd-search-result-bar-box-left-cont {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.wd-product-search-result-bar-style-2 .wd-search-filter-dropdown-button {
  padding: 12px 22px;
}
.wd-product-search-result-bar-style-2 .wd-search-filter-dropdown-button.show,
.wd-product-search-result-bar-style-2 .wd-search-filter-dropdown-button.open {
  background-color: var(--wd-color-primary);
  border-color: var(--wd-color-primary);
}
.wd-product-search-result-bar-style-2 .wd-search-filter-dropdown-button::after {
  content: none;
}
.wd-product-search-result-bar-style-2 .wd-search-result-bar-box .wd-product-search-result {
  padding-left: 0;
}
.wd-product-search-result-bar-style-2 .wd-filter-refresh-button {
  padding: 9px 0;
}
.wd-filter-dropdown-wrapper {
  transform: translate(0px, 80px) !important;
  padding: 20px;
  border-radius: var(--wd-radius-4);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.20);
  min-width: 1216px;
  border: 0;
  grid-template-columns: 220px 320px 320px 180px;
  gap: 20px 40px;
}
.wd-filter-dropdown-wrapper.show {
  display: grid;
}
.wd-filter-dropdown-wrapper::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 47px;
  width: 15px;
  height: 15px;
  background-color: var(--wd-color-white);
  transform: rotate(45deg);
}
.wd-filter-dropdown-wrapper .wd-dropdown-filter-box-title {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  color: var(--wd-color-black);
  margin-bottom: 15px;
}
.wd-filter-dropdown-wrapper .wd-dropdown-filter-box {
  border-right: 1px solid rgba(0, 0, 0, 0.10);
}
.wd-filter-dropdown-wrapper .wd-dropdown-filter-box:last-child {
  border-right: 0;
} 
.wd-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls input {
  max-width: 80px;
}
.wd-dropdown-fitler-close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.wd-projuct-multi-filter-bar {
  align-items: flex-start;
}
.wd-projuct-multi-filter-bar .wd-search-result-bar-box {
  align-items: flex-start;
}
/* wd-search-product-section-end */

/* wd-search-filters-sidebar-start */
.wd-search-filters-sidebar-with-overlay {
  position: fixed;
  top: 0;
  left: -340px;
  width: 340px;
  height: 100dvh;
  z-index: 10;
  transition: 0.3s ease-in-out;
}
body:has(.wd-search-filters-sidebar-with-overlay.open) {
  overflow: hidden;
}
.wd-search-filters-sidebar-with-overlay.open {
  left: 0;
  z-index: 10;
}
.wd-search-filters-sidebar-with-overlay:is(.open) ~ .wd-search-fitlers-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 9;
}
.wd-search-filters-sidebar-with-overlay .wd-search-filters-sidebar {
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #777 #ccc;
}
.wd-search-filters-sidebar {
  padding: 20px;
  background-color: var(--wd-color-white);
}
.wd-fitler-sidebar-main-title {
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: var(--wd-color-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wd-fitler-sidebar-close-btn {
  color: var(--wd-color-black);
  background-color: var(--wd-color-white);
  cursor: pointer;
}
.wd-search-filters-sidebar h6 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  color: var(--wd-color-black);
}
.wd-search-filters-sidebar .wd-filter-item {
  padding-top: 20px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  margin-top: 20px;
}
.wd-search-filters-sidebar .wd-filter-item:first-of-type,
.wd-search-filters-sidebar .wd-filter-item:last-of-type {
  border-radius: 0;
}
.wd-search-filters-sidebar .wd-filter-item .accordion-button {
  padding: 0;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  color: var(--wd-color-black);
}
.wd-search-filters-sidebar .wd-filter-item .accordion-button:not(.collapsed) {
  background-color: #ffff;
  box-shadow: none;
}
.wd-search-filters-sidebar .wd-filter-item .accordion-button:focus {
  box-shadow: none;
}
.wd-search-filters-sidebar .wd-filter-item .accordion-button.collapsed:after,
.wd-search-filters-sidebar .wd-filter-item .accordion-button::after {
  background-image: none;
  content: "add";
  font-family: 'Material Symbols Outlined';
  color: var(--wd-color-black);
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 0;
}
.wd-search-filters-sidebar .wd-filter-item .accordion-button:not(.collapsed)::after {
  content: "remove";
  top: 6px;
}
.wd-search-filters-sidebar .wd-filter-item .accordion-body {
  padding: 15px 0 0 0;
}
.wd-search-filter-content-item {
  padding-left: 0;
}
.wd-search-filter-content-item li {
  display: block;
  margin-bottom: 15px;
}
.wd-search-filter-content-item li:last-child {
  margin-bottom: 0;
}
.wd-search-filter-content-item .wd-search-filter-content-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: #555;
}
.wd-search-filter-content-item .wd-search-filter-content-item span {
  color: var(--wd-color-black);
}
.wd-filter-item .wd-extra-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.wd-filter-item .wd-extra-controls input {
  height: 50px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: #555;
  padding: 15px;
  background-color: var(--wd-color-light-gray);
  border: 1px solid #d2d2d2;
  border-radius: var(--wd-radius-4);
}
.wd-filter-item .wd-extra-controls input:focus {
  box-shadow: none;
}
.wd-filter-item .wd-extra-controls .wd-filter-price-btn {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: var(--wd-color-black);
  padding: 15px 24px;
  background-color: var(--wd-color-primary);
  border: 0;
  border-radius: var(--wd-radius-4);
}
.wd-search-color-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.wd-search-color-filter li {
  margin-bottom: 0;
  display: flex;
}
.wd-search-color-filter .wd-color-filter-item {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: var(--wd-radius-50);
  cursor: pointer;
}
.wd-search-color-filter .wd-color-filter-item.wd-light-gray-color {
  background-color: #D9D9D9;
}
.wd-search-color-filter .wd-color-filter-item.wd-dark-green-color {
  background-color: #1B4F41;
}
.wd-search-color-filter .wd-color-filter-item.wd-light-pink-color {
  background-color: #FFB8B8;
}
.wd-search-color-filter .wd-color-filter-item.wd-baby-pink-color {
  background-color: #FFB3E3;
}
.wd-search-color-filter .wd-color-filter-item.wd-olive-color {
  background-color: #B7AB57;
}
.wd-search-color-filter .wd-color-filter-item.wd-black-color {
  background-color: #000000;
}
.wd-search-color-filter .wd-color-filter-item.wd-sky-blue-color {
  background-color: #00AEEF;
}
.wd-search-color-filter .wd-color-filter-item.wd-royal-blue-color {
  background-color: #0000FF;
}
.wd-search-color-filter .wd-color-filter-item.wd-neon-green-color {
  background-color: #00F27C;
}
.wd-search-color-filter .wd-color-filter-item.wd-very-light-gray-color {
  background-color: #F6F6F6;
}
.wd-search-color-filter .wd-color-filter-item.wd-bright-red-color {
  background-color: #FF1E1E;
}
.wd-search-color-filter .wd-color-filter-item.wd-hot-pink-color {
  background-color: #FF00B3;
}
.wd-search-color-filter .wd-color-filter-item.wd-bright-purple-color {
  background-color: #9B00FF;
}
.wd-search-filters-sidebar .wd-sale-product-right-col {
  width: 100%;
  height: auto;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}
.wd-search-filters-sidebar .wd-sale-product-right-col .wd-right-col-item {
  background-color: var(--wd-color-light-gray);
}
.wd-search-filters-sidebar .wd-advertise-grid-box {
  margin-top: 20px;
  min-height: 420px;
}
.wd-search-filters-sidebar .wd-advertise-grid-box img {
  border-radius: var(--wd-radius-4);
}
/* wd-search-filters-sidebar-end */

/*=========== Full Width Search Page End ==============*/

/*=========== Left Sidebar Search Page Start ==============*/
.wd-search-product-sidebar-wrapper {
  display: flex;
  gap: 20px;
}
.wd-search-product-sidebar-reverse-wrapper {
  flex-direction: row-reverse;
}
.wd-search-product-sidebar-wrapper .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wd-search-product-sidebar-wrapper .wd-search-filters-sidebar-with-overlay {
  position: unset;
  height: 100%;
  width: 340px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
}
.wd-search-product-sidebar-wrapper .wd-search-filters-sidebar-with-overlay .wd-search-filters-sidebar {
  overflow-y: unset;
  border-radius: var(--wd-radius-4);
  height: 100%;
}
.wd-search-product-sidebar-wrapper .wd-search-filters-sidebar .wd-fitler-sidebar-close-btn {
  display: none;
}
.wd-search-product-sidebar-wrapper .wd-search-product-content-wrapper {
  width: calc(100% - 360px);
}
.wd-search-product-content-wrapper .wd-deal-banner-background .wd-deal-section-desc-inner {
  height: 250px;
}
.wd-search-product-content-wrapper .wd-search-sort-box .select2-container .select2-selection--single {
  background-color: var(--wd-color-white);
}
.wd-filter-refresh-button {
  padding: 9px 18px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: #35BD05;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px;
} 
.wd-search-product-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/*=========== Left Sidebar Search Page End ==============*/

/*=========== Product Detail Page Start ==============*/

/* wd-product-detail-section-start */
.wd-product-detail-section {
  padding: 20px 0 60px 0;
}
.wd-product-detail-section-wrapper {
  display: flex;
  gap: 20px;
}
.wd-product-detail-content-wrapper {
  width: calc(100% - 360px);
}
.wd-about-product-detail-area-wrapper {
  display: flex;
  gap: 20px;
}
.wd-about-product-slider-box {
  width: calc(45% - 10px);
}
.wd-detail-product-image-box {
  width: 100%;
  height: 450px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-detail-product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wdProductDetailItemThumbsSlider {
  margin-top: 20px;
}
.wd-detail-product-thumb-image-box {
  height: 100px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.wd-detail-product-thumb-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wd-about-product-content-box {
  width: calc(55% - 10px);
}
.wd-about-product-content-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wd-about-product-content-box .wd-about-product-title {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-600);
  line-height: 38px;
}
.wd-about-product-content-box .wd-pro-item-rating .wd-pro-star-rating {
  gap: 1px;
}
.wd-about-product-content-box .wd-pro-item-rating .wd-pro-star-rating span {
  font-size: var(--wd-font-size-16);
}
.wd-about-product-content-box .wd-pro-total-reviews {
  color: #555;
}
.wd-about-product-content-box .wd-fea-pro-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-about-product-content-box .wd-fea-pro-price .wd-pro-actual-price {
  font-size: var(--wd-font-size-16);
}
.wd-about-product-content-box .wd-fea-pro-price .wd-pro-discounted-price {
  font-size: var(--wd-font-size-24);
}
.wd-about-product-content-box .wd-fea-pro-price .wd-off-tag {
  position: unset;
  z-index: 1;
}
.wd-about-product-content-box .wd-product-stock-box {
  margin-top: 5px;
}
.wd-product-stock-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-stock-tag,
.wd-out-of-stock-tag {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  padding: 4px 10px;
  color: #3D770B;
  background-color: #E9F6E7;
  border-radius: var(--wd-radius-2);
}
.wd-out-of-stock-tag {
  color: #A94442;
  background-color: #FDECEA;
}
.wd-product-stock-box p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 24px;
  color: #555;
}
.wd-product-detail-desc {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  margin-bottom: 20px;
}
.wd-about-product-content-box .wd-product-detail-desc {
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.wd-about-product-content-box .wd-progress-bar-box {
  margin: 5px 0;
}
.wd-progress-bar-box p {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  margin-bottom: 10px;
  color: #555;
} 
.wd-progress-bar-box p span {
  color: var(--wd-color-primary);
  font-weight: var(--wd-font-weight-500);
}
.wd-progress-bar-box .wd-progress {
  height: 6px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-25);
}
.wd-progress-bar-box .wd-progress .wd-progress-bar {
  background-color: var(--wd-color-primary);
  border-radius: var(--wd-radius-25);
}
.wd-about-product-content-box .wd-detail-product-call-to-action-box {
  margin-top: 25px;
}
.wd-detail-product-call-to-action-box {
  display: flex;
  gap: 20px;
}
.wd-item-quantity-box {
  display: flex;
  gap: 10px;
  padding: 9px 14px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
}
.wd-quantity-count-button {
  width: 26px;
  height: 26px;
  border-radius: var(--wd-radius-50);
  background-color: var(--wd-color-white);
  color: var(--wd-color-black);
  border: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-quantity-count-button span {
  font-size: var(--wd-font-size-18);
}
.wd-about-product-content-box .wd-product-quick-actions-box {
  margin-top: 15px;
}
.wd-product-quick-actions-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
  list-style-type: none;
}
.wd-product-quick-actions-box ul li {
  display: flex;
}
.wd-product-quick-actions-box ul li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  color: #555;
}
.wd-product-quick-actions-box ul li span {
  font-size: var(--wd-font-size-18);
}
.wd-product-quick-action-divider {
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.10);
}
.wd-about-product-content-box .wd-store-author-detail-box {
  margin-top: 10px;
}
.wd-store-author-detail-box {
  padding: 18px 30px 18px 21px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.wd-store-author-detail-box .wd-store-author-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wd-store-author-detail-box .wd-store-author-content .wd-store-author-logo {
  width: 76px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-4);
}
.wd-store-author-detail-box .wd-store-author-content .wd-store-author-meta h5 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-store-author-detail-box .wd-store-author-content .wd-store-author-meta p {
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  color: #555;
  margin-bottom: 0;
}
.wd-store-author-detail-box .wd-store-author-content .wd-store-author-meta p span {
  color: var(--wd-color-black);
}
.wd-nav-pills {
  margin: 20px 0;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
}
.wd-nav-pills .wd-nav-pill-link,
.wd-nav-pills .wd-nav-pill-link.active {
  position: relative;
  padding: 20px;
  background-color: transparent;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 20px;
  color: var(--wd-color-black);
}
.wd-nav-pills .wd-nav-pill-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--wd-color-primary);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.wd-nav-pills .wd-nav-pill-link.active::before {
  opacity: 1;
}
.wd-tab-content h4 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-600);
  color: var(--wd-color-black);
  line-height: 30px;
  margin-bottom: 5px;
} 
.wd-tab-content p {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  line-height: 30px;
  margin-bottom: 20px;
}
.wd-tab-content p strong {
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
}
.wd-tab-content p.wd-desc-note,.wd-tab-content p.wd-desc-note strong {
  color: #FF3B3B;
}
.wd-tab-content ul {
  list-style-type: disc;
  margin-bottom: 20px;
}
.wd-tab-content ul li,
.wd-tab-content ol li {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  line-height: 30px;
}
.wd-product-detail-content-wrapper .wd-section-heading {
  margin-bottom: 20px;
}
.wd-product-specs-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.wd-product-specs-item-box {
  min-width: 0%;
  max-width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--wd-color-white);
  border: 1px solid #D2D2D2;
  border-radius: var(--wd-radius-4);
}
.wd-product-specs-item-box .wd-product-spec-name {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
  line-height: 24px;
  padding: 18px 20px 18px 30px;
  background-color: var(--wd-color-light-gray);
  width: 200px;
  border-radius: 4px 4px 0 0;
}
.wd-product-specs-item-box .wd-product-spec-detail {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  line-height: 24px;
  padding: 18px 20px;
  width: calc(100% - 200px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wd-tab-content .wd-store-author-detail-box {
  padding: 0 0 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
  background-color: transparent;
}
.wd-tab-content .wd-store-author-detail-box .wd-store-author-content .wd-store-author-logo {
  width: 100px;
  height: 80px;
  border: 1px solid #D2D2D2;
  border-radius: var(--wd-radius-4);
}
.wd-customer-reviews-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.wd-customer-review-box-wrapper {
  width: 340px;
}
.wd-customer-review-box-wrapper .wd-customer-review-box {
  margin-top: 0;
  margin-bottom: 20px;
}
.wd-customer-reviews-wrapper .wd-customer-comments-box {
  width: calc(100% - 360px);
  margin-top: 0;
}
.wd-customer-comments-box .wd-product-sidebar-widget-title {
  padding: 0;
}
.wd-tab-content .wd-review-list,
.wd-review-list {
  padding-left: 0;
  list-style-type: none;
}
.wd-review-list li {
  margin-top: 20px;
}
.wd-review-box-outer .wd-review-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-review-box-outer .wd-review-box .wd-review-user-img {
  width: 40px;
  height: 40px;
}
.wd-review-box-outer .wd-review-box .wd-review-user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wd-radius-50);
}
.wd-review-box-outer .wd-review-box .wd-review-user-content h4 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
  line-height: 24px;
  margin-bottom: 0;
}
.wd-review-box-outer .wd-review-box .wd-review-user-content ul {
  display: flex;
  padding-left: 0;
  line-height: 21px;
  margin-bottom: 0;
}
.wd-review-box-outer .wd-review-box .wd-review-user-content ul li {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  position: relative;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  line-height: 21px;
  padding-right: 10px;
  margin-right: 10px;
  margin-top: 0;
}
.wd-review-box-outer .wd-review-box .wd-review-user-content ul li:first-child:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background-color: #D2D2D2;
  top: 4px;
  right: -3px;
}
.wd-review-box-outer > p.wd-review-text {
  position: relative;
  padding: 15px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  margin-top: 20px;
}
.wd-review-box-outer > p.wd-review-text::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 11px;
  width: 14px;
  height: 14px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  transform: rotate(45deg);
}
.wd-rating-form-box .wd-pro-item-rating {
  margin-top: 20px;
}
.wd-rating-form-box .wd-pro-total-reviews {
  font-size: var(--wd-font-size-14);
  color: #555;
}
.wd-rating-form-box .wd-pro-item-rating .wd-pro-star-rating {
  gap: 2px;
}
.wd-rating-form-box .wd-pro-item-rating .wd-pro-star-rating span {
  font-size: var(--wd-font-size-20);
}
.wd-rating-form-box .wd-form-field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}
.wd-rating-form-box .wd-form-field {
  margin-top: 20px;
}
.wd-rating-form-box .wd-form-field input,
.wd-rating-form-box .wd-form-field textarea {
  height: 50px;
  background-color: var(--wd-color-white);
  border: 1px solid #d2d2d2;
  border-radius: var(--wd-radius-4);
  padding: 15px 30px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
}
.wd-rating-form-box .wd-form-field input:focus,
.wd-rating-form-box .wd-form-field textarea:focus {
  box-shadow: none;
}
.wd-rating-form-box .wd-form-field textarea:focus-visible {
  outline: none;
}
.wd-rating-form-box .wd-form-field input::placeholder,
.wd-rating-form-box .wd-form-field textarea::placeholder {
  color: #555;
  opacity: 1;
}
.wd-rating-form-box .wd-form-field textarea {
  height: 150px;
  width: 100%;
  resize: unset;
}
.wd-rating-form-box .wd-form-field.wd-form-field-right {
  text-align: right;
}
.wd-customer-review-box {
  border: 1px solid #D2D2D2;
  border-radius: var(--wd-radius-4);
}
.wd-customer-rating-box {
  padding: 28px 20px 20px 20px;
  background-color: rgba(255, 195, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-customer-rating-box .wd-customer-rating-count {
  font-size: 65px;
  font-weight: 600;
  line-height: 50px;
  color: var(--wd-color-primary);
}
.wd-customer-rating-box .wd-customer-rating-meta h5 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-customer-rating-box .wd-customer-rating-meta .wd-pro-total-reviews {
  font-size: var(--wd-font-size-14);
  color: #555;
}
.wd-customer-rating-box .wd-customer-rating-meta .wd-pro-item-rating .wd-pro-star-rating {
  gap: 2px;
}
.wd-customer-rating-box .wd-customer-rating-meta .wd-pro-item-rating .wd-pro-star-rating span {
  font-size: var(--wd-font-size-18);
}
.wd-rating-ratio-list-box {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wd-rating-ratio-box {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wd-rating-ratio-box .wd-pro-item-rating .wd-pro-star-rating {
  gap: 2px;
}
.wd-rating-ratio-box .wd-progress-bar-box {
  width: calc(100% - 116px);
}
.wd-rating-ratio-box .wd-progress-bar-box .wd-progress {
  border: 1px solid #D2D2D2;
}
.wd-rating-ratio-box .wd-pro-total-reviews {
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-400);
  color: var(--wd-color-black);
}
.wd-customer-review-box .wd-customer-review-extra {
  padding: 0 20px 20px 20px;
}
.wd-customer-review-box .wd-customer-review-extra h5 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: var(--wd-color-black);
  margin-bottom: 10px;
}
.wd-customer-review-box .wd-customer-review-extra p {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: #555;
  margin-bottom: 20px;
}
.wd-customer-review-box-wrapper .wd-advertise-grid-box {
  height: auto;
}
.wd-product-detail-content-sidebar {
  width: 340px;
}
.wd-product-sidebar-widget {
  position: relative;
  padding: 20px;
  background-color: var(--wd-color-white);
  border: 1px solid #D2D2D2;
  border-radius: var(--wd-radius-4);
  margin-top: 20px;
}
.wd-product-sidebar-widget:has(.wd-product-sidebar-widget-title-outer) {
  margin-top: 30px;
}
.wd-product-sidebar-widget-title-outer {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.wd-product-sidebar-widget-title {
  display: inline-block;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  color: var(--wd-color-black);
  background-color: var(--wd-color-white);
  padding: 0 10px;
}
.wd-product-available-card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
}
.wd-product-available-card-services li img {
  border: 1px solid #D2D2D2;
  border-radius: var(--wd-radius-4);
}
.wd-product-sidebar-widget .wd-support-section-grid {
  padding-top: 0;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}
.wd-product-sidebar-widget .wd-support-section-card {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.wd-product-sidebar-widget .wd-support-section-card:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}
.wd-product-sidebar-widget .wd-support-section-card span {
  border-radius: var(--wd-radius-4);
  padding: 7px;
  font-size: 30px;
  width: 50px;
  height: 50px;
}
.wd-product-sidebar-widget .wd-support-section-desc .wd-section-desc-heading,
.wd-product-sidebar-widget .wd-support-section-desc .wd-section-desc-para {
  font-size: var(--wd-font-size-14);
  line-height: 18px;
}
.wd-product-sidebar-widget-without-border {
  margin-top: 20px;
}
.wd-product-sidebar-widget-without-border .wd-product-sidebar-widget-title {
  padding: 0;
  margin-bottom: 15px;
}
.wd-product-sidebar-widget-without-border .wd-sale-product-right-col {
  width: 100%;
  height: auto;
  gap: 15px;
}
.wd-product-sidebar-widget-without-border .wd-sale-product-right-col .wd-right-col-item {
  background-color: var(--wd-color-light-gray);
}
/* wd-product-detail-section-end */
.wd-up-sale-product-slider-wrapper {
  margin-top: 40px;
}
.trending-product-swiper-navigation .up-sale-product-swiper-button-prev,
.trending-product-swiper-navigation .up-sale-product-swiper-button-next {
  color: #333333;
}
.trending-product-swiper-navigation .swiper-button-disabled {
  color: #AAAAAA;
}
.wd-about-product-content-box .quantity {
  margin-bottom: 20px;
}
.wd-about-product-content-box .quantity .qty {
  width: 70px;
  margin-right: 10px;
  height: 40px;
  padding: 10px 6px;
}
.wd-about-product-content-box .woocommerce-grouped-product-list-item__label label {
  margin-bottom: 20px;
}
.wd-about-product-content-box .woocommerce-grouped-product-list-item__label label a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin-right: 10px;
}
.wd-about-product-content-box .woocommerce-grouped-product-list-item__price .woocommerce-Price-amount {
  display: inline-block;
  margin-bottom: 20px;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: #333;
}
.wd-about-product-content-box .woocommerce-grouped-product-list-item__price del {
  color: #aaa;
}
.wd-about-product-content-box .woocommerce-grouped-product-list-item__price del .woocommerce-Price-amount {
  display: unset;
  color: #aaa;
  font-size: var(--wd-font-size-14);
  margin-right: 5px;
}
/*=========== Product Detail Page End ==============*/

/*=========== Cart Page Start ==============*/
.wd-cart-section {
  padding: 20px 0 60px 0;
}
.wd-cart-section-wrapper {
  display: flex;
  gap: 20px;
}
.wd-cart-main-area {
  width: calc(100% - 360px);
}
.wd-cart-main-area .wd-section-heading {
  margin-bottom: 20px;
}
.wd-cart-product-list-wrapper {
  padding: 20px 30px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  margin-bottom: 40px;
}
.wd-cart-product-list {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.wd-cart-product-list:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.wd-cart-product-list .wd-cart-pro-name {
  width: 40%;
  display: flex;
  align-items: center;
  gap: 15px;
}
.wd-cart-product-list .wd-cart-pro-name .wd-cart-pro-img {
  width: 65px;
  height: 65px;
}
.wd-cart-product-list .wd-cart-pro-name .wd-cart-pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wd-radius-4);
}
.wd-cart-product-list .wd-cart-price {
  width: 10%;
}
.wd-cart-product-list .wd-cart-quantity {
  width: 20%;
}
.wd-cart-product-list .wd-cart-quantity .wd-item-quantity-box {
  display: inline-flex;
}
.wd-cart-product-list .wd-cart-total-price {
  width: 10%;
}
.wd-cart-product-list .wd-cart-pro-name h6,
.wd-cart-product-list .wd-cart-price span,
.wd-cart-product-list .wd-cart-total-price span {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: #333;
}
.wd-cart-product-list .wd-cart-delete-box {
  width: 20%;
  text-align: right;
}
.wd-cart-delete-btn {
  background-color: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 22px;
  color: #333;
}
.wd-cart-delete-btn span {
  color: #333;
}
.wd-cart-product-list .wd-cart-heading h5 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: var(--wd-color-black);
}
.wd-cart-sidebar {
  width: 340px;
}
.wd-cart-product-sidebar-box {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
}
.wd-cart-product-sidebar-box h5 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: var(--wd-color-black);
  margin-bottom: 20px;
}
.wd-order-summary-list {
  padding: 20px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);     
  margin-bottom: 20px; 
  display: flex;
  flex-direction: column;
  gap: 15px;      
}
.wd-order-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.wd-order-list .wd-order-headings {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #333;
}
.wd-order-list .wd-order-values {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  color: #333;
}
.wd-order-list .wd-coupon-code {
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-500);
  color: #FF0000;
}
.wd-order-total-list {
  padding: 16px 20px;
  margin-bottom: 15px;
}
.wd-order-total-list .wd-order-headings {
  font-weight: var(--wd-font-weight-500);
}
.wd-cart-product-sidebar-box .wd-checkout-btn {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
  padding: 12px 20px;
  background-color: var(--wd-color-black);
  border: 1px solid var(--wd-color-black);
  border-radius: var(--wd-radius-4);
  text-align: center;
  width: 100%;
}
.wd-cart-product-sidebar-box .inupt-field {
  position: relative;
  margin-bottom: 20px;
}
.wd-cart-product-sidebar-box .inupt-field input {
  height: 50px;
  width: 100%;
  background-color: var(--wd-color-white);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  padding: 14px 20px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
}
.wd-cart-product-sidebar-box .inupt-field input:focus-visible {
  outline: none;
}
.wd-cart-product-sidebar-box .inupt-field .wd-coupon-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  height: 44px;
  padding: 12px 20px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
  background-color: var(--wd-color-black);
  border: 0;
  border-radius: var(--wd-radius-4);
}
.wd-cart-sidebar .wd-advertise-grid-box {
  height: auto;
}
/*=========== Cart Page End ==============*/

/*=========== Checkout Page Start ==============*/
.wd-checkout-section {
  padding: 20px 0 60px 0;
}
.wd-checkout-form-box {
  padding: 20px 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
}
.wd-checkout-form-box .wd-checkout-form-heading {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: var(--wd-color-black);
  margin-bottom: 20px;
}
.wd-acc-coupon .wd-acc-coupon-item .wd-acc-header .wd-acc-button, 
.wd-acc-coupon .wd-acc-coupon-item .wd-acc-header .wd-acc-button.collapsed {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  border-radius: var(--wd-radius-4);
  color: #FF0000;
  background-color: rgba(255, 0, 0, 0.05);
  box-shadow: none;
  gap: 10px;
  margin-bottom: 20px;
}
.wd-acc-coupon .wd-acc-coupon-item .wd-acc-header .wd-acc-button span {
  color: #555;
  font-weight: var(--wd-font-weight-400);
}
.wd-acc-coupon .wd-acc-coupon-item .wd-acc-header .wd-acc-button::after {
  content: none;
}
.wd-acc-coupon .wd-acc-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px 0;
  gap: 30px;
}
.wd-acc-coupon .wd-acc-inner > span {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
}
.wd-acc-coupon .wd-acc-inner input {
  flex: 1;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  border: none;
  padding: 14px 30px 14px 30px;
  height: 50px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #333;
}
.wd-acc-coupon .wd-acc-inner input:focus-visible {
  outline: none;
}
.wd-acc-coupon .wd-acc-inner button {
  position: absolute;
  top: 3px;
  right: 3px;
  background-color: var(--wd-color-black);
  color: var(--wd-color-white);
  height: 44px;
}
.wd-customer-info .wd-customer,
.wd-customer-info .wd-customer-textarea {
  margin-bottom: 20px;
}
.wd-customer-info input,
.wd-customer-info textarea {
  width: 100%;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  border: none;
  padding: 14px 30px 14px 30px;
  height: 50px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
}
.wd-customer-info input::placeholder,
.wd-customer-info textarea::placeholder {
  color: #555;
  opacity: 1;
}
.wd-customer-info input:focus-visible,
.wd-customer-info textarea:focus-visible {
  outline: none;
}
.wd-customer-info textarea {
  height: 160px;
  resize: unset;
}
.wd-terms {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.wd-terms > span {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  line-height: 30px;
}
.wd-terms span a {
  color: var(--wd-color-black);
  font-weight: var(--wd-font-weight-500);
}
.wd-terms .wd-secondary-ecom-btn {
  min-width: 152px;
}
.wd-customer .select2-container {
  width: 100% !important;
}
.wd-customer .select2-container--default .select2-selection--single {
  background-color: var(--wd-color-light-gray);
  border: 0;
  height: 50px;
  margin-bottom: 0;
}
.wd-customer .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  padding: 0 30px;
}
.wd-customer .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px;
  right: 20px;
  top: 0;
}
.wd-customer .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #333 #333 transparent transparent;
  border-width: 1px 1px 0 0px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  transform: rotate(135deg);
}
.wd-customer .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  margin-top: -2px;
  transform: rotate(-45deg);
}
.wd-cart-sidebar .wd-sale-product-right-col {
  width: 100%;
  height: auto;
  gap: 20px;
  margin-bottom: 20px;
}
.wd-cart-sidebar .wd-sale-product-right-col .wd-right-col-item {
  background-color: var(--wd-color-light-gray);
}
.wd-cart-sidebar .wd-right-col-item .wd-right-col-item-inner {
  padding: 10px;
}
.wd-cart-sidebar .wd-right-col-item-inner-img {
  position: relative;
}
.wd-cart-item-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  background-color: var(--wd-color-white);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-50);
  font-size: 11px;
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-checkout-section .wd-order-total-list {
  margin-bottom: 0;
}
/*=========== Checkout Page End ==============*/

/*=========== About Us Page Start ==============*/
/* wd-about-us-main-section-start */
.wd-about-us-main-section {
  padding: 40px 0 0 0;
}
.wd-about-us-main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.wd-about-us-main-wrapper .wd-about-us-title-box {
  width: 470px;
}
.wd-about-us-main-wrapper .wd-about-us-title-box span {
  font-size: var(--wd-font-size-20);
  font-weight: var(--wd-font-weight-400);
  line-height: 28px;
  color: #C90000;
}
.wd-about-us-main-wrapper .wd-about-us-title-box h1 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-600);
  line-height: 32px;
  color: var(--wd-color-black);
  margin-top: 10px;
}
.wd-about-us-main-wrapper .wd-about-us-desc-wrapper {
  width: 580px;
}
.wd-about-us-desc-wrapper p {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  margin-bottom: 20px;
}
.wd-about-us-experience-banner {
  position: relative;
  height: 400px;
  background-image: url(../imgs/about-us-banner.png);
  background-size: cover;
  border-radius: var(--wd-radius-4);
  margin-top: 60px;
}
.wd-about-us-experience-cont {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  background-color: var(--wd-color-primary);
  border-radius: var(--wd-radius-4);
  position: absolute;
  top: 30px;
  left: -23px;
}
.wd-about-us-experience-cont::before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 0;
  width: 23px;
  height: 20px;
  background-image: linear-gradient(45deg, transparent 50%, var(--wd-color-primary) 50% );
}
.wd-about-us-experience-cont .experience-count {
  font-size: 70px;
  font-weight: var(--wd-font-weight-600);
  line-height: 60px;
  color: var(--wd-color-black);
}
.wd-about-us-experience-cont .exp-txt {
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-500);
  line-height: 25px;
  color: var(--wd-color-black);
  width: 120px;
}
.wd-video-play-btn {
  width: 74px;
  height: 74px;
  border-radius: var(--wd-radius-50);
  background-color: var(--wd-color-black);
  position: absolute;
  bottom: 44px;
  right: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.wd-video-play-btn > span {
  font-size: 42px;
  color: var(--wd-color-white);
  z-index: 2;
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 40
}
.wd-video-play-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 50%;
  z-index: 1;
  animation: ripple 1.5s ease-out infinite;
  animation-delay: 0.2s;
}
.wd-video-play-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 50%;
  z-index: 1;
  animation: ripple-sub 1.5s ease-out infinite;
  animation-delay: 0.2s;
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(1.4);
  }
}
@keyframes ripple-sub {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(1.6);
  }
}
/* wd-about-us-main-section-end */

/* wd-team-members-section-start */
.wd-team-members-section {
  padding: 10px 0 60px 0;
}
.wd-team-members-section .wd-section-title {
  text-align: center;
}
.wd-team-member-grid .wd-pro-img-container {
  height: 220px;
}
.wd-team-member-grid .wd-pro-img-container > a {
  width: 100%;
  height: 100%;
}
.wd-team-member-grid .wd-pro-img-container > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wd-radius-4);
}
.wd-team-member-grid:hover .wd-pro-img-container {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.10);
}
.wd-team-member-grid:hover .wd-pro-quick-actions {
  opacity: 1;
  visibility: visible;
}
.wd-team-member-grid:hover .wd-pro-quick-actions a:hover {
  background-color: var(--wd-color-primary);
}
.wd-team-member-grid .wd-pro-desc-heading {
  font-size: var(--wd-font-size-16);
}
.wd-team-member-designation {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  color: #555;
  margin-top: 5px;
}
/* wd-team-members-section-end */

/* wd-choose-us-section-start */
.wd-choose-us-section {
  background-color: var(--wd-color-light-gray);
}
.wd-choose-us-content .wd-section-title {
  margin-bottom: 20px;
}
.wd-choose-us-content .wd-section-title .wd-pro-heading {
  font-size: var(--wd-font-size-24);
}
.wd-choose-us-content p {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  margin-bottom: 20px;
}
.wd-choose-us-content h6 {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-choose-us-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr;   
  gap: 20px;
}
.wd-choos-us-grid-box {
  position: relative;
  min-width: 0%;
  max-width: 100%;
}
.wd-choos-us-grid-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wd-radius-4);
}
.wd-choose-us-grid-wrapper .wd-choos-us-grid-box img {
  height: 100%;
}
.wd-choos-us-grid-box:first-child {
  grid-column: 1;
  grid-row: 1;
}
.wd-choos-us-grid-box:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.wd-choos-us-grid-box:nth-child(3) {
  grid-column: 2;
  grid-row: 1/3;
}
.wd-choose-us-rating-box {
  position: absolute;
  bottom: 34px;
  right: -24px;
  padding: 20px 22px;
  background-color: var(--wd-color-black);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}
.wd-choose-us-rating-box::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 24px;
  height: 20px;
  background-image: linear-gradient(45deg, var(--wd-color-black) 50%, transparent 50% );
}
.wd-choose-us-client-rating {
  display: flex;
  align-items: center;
}
.wd-choose-us-client-rating img {
  width: 50px;
  height: 50px;
  border-radius: var(--wd-radius-50);
}
.wd-choose-us-client-rating img {
  margin-left: -25px;
}
.wd-choose-us-client-rating img:first-child {
  margin-left: 0;
}
.wd-choose-us-client-rating .wd-client-more-rating {
  width: 50px;
  height: 50px;
  border-radius: var(--wd-radius-50);
  background-color: var(--wd-color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -25px;
}
.wd-choose-us-client-rating .wd-client-more-rating span {
  color: var(--wd-color-black);
}
.wd-choose-us-rating-box .wd-choose-us-rating-cont h6 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  line-height: 30px;
  color: var(--wd-color-white);
}
.wd-choose-us-rating-box .wd-choose-us-rating-cont > span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  color: var(--wd-color-white);
}
.wd-choose-us-rating-box .wd-choose-us-rating-cont > span > span {
  color: #EA9A00;
  font-size: var(--wd-font-size-14);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 40;
}
/* wd-choose-us-section-end */

/* wd-faqs-section-start */
.wd-faqs-section .wd-faqs-section-row {
  align-items: center;
}
.wd-faqs-section .wd-section-title {
  margin-bottom: 20px;
}
.wd-faqs-section .wd-section-title h3 {
  font-size: var(--wd-font-size-24);
  margin-bottom: 20px;
}
.wd-faqs-section .wd-section-title p {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
}
.wd-faqs-section .wd-accordion-style .wd-accordion-card {
  border: 1px solid #d3d3d3;
  border-radius: var(--wd-radius-4);
  margin-bottom: 30px;
}
.wd-faqs-section .wd-accordion-style .wd-accordion-card:last-child {
  margin-bottom: 0;
}
.wd-faqs-section .wd-accordion-style .card-header {
  border: 0;
  background: none;
  padding: 0;
  border-bottom: none;
  border-radius: 0;
}
.wd-faqs-section .wd-accordion-style .btn-link {
  color: #000;
  position: relative;
  background-color: var(--wd-color-light-gray);
  display: flex;
  align-items: center;
  width: 100%;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  text-align: left;
  white-space: normal;
  box-shadow: none;
  border-radius: 4px 4px 0 0;
  padding: 15px 30px;
  text-decoration: none;
}
.wd-faqs-section .wd-accordion-style .btn-link:hover {
  text-decoration: none;
}
.wd-faqs-section .wd-accordion-style .btn-link.collapsed {
  background-color: var(--wd-color-light-gray);
  color: #000;
  border-radius: var(--wd-radius-4);
}
.wd-faqs-section .wd-accordion-style .btn-link.collapsed:after {
  content: "add";
  font-size: var(--wd-font-size-34);
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: 20px;
  top: 4px;
  color: #CDCDCD;
}
.wd-faqs-section .wd-accordion-style .btn-link:after {
  content: "remove";
  font-size: var(--wd-font-size-34);
  font-family: 'Material Symbols Outlined';
  right: 20px;
  top: 4px;
  position: absolute;
  color: #CDCDCD;
}
.wd-faqs-section .wd-accordion-style .btn-link span.text-theme-secondary {
  width: 30px;
  height: 30px;
  background: var(--wd-color-white);
  font-weight: 400;
  font-size: var(--wd-font-size-14);
  color: var(--wd-color-black);
  border: 1px solid #D2D2D2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
}
.wd-faqs-section .wd-accordion-style .btn-link .heading-txt {
  width: calc(100% - 100px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wd-faqs-section .wd-accordion-style .card-body {
  font-size: var(--wd-font-size-14);
  padding: 20px 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 24px;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #D3D3D3;
  line-height: 30px;
  color: #6D6D6D;
  background-color: var(--wd-color-white);
}
.wd-faqs-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--wd-radius-4);
} 
/* wd-faqs-section-end */

/* wd-cart-sidebar-start */
.wd-cart-item-sidebar {
  position: fixed;
  top: 30px;
  right: -366px;
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-4);
  border: 1px solid #D2D2D2;
  padding: 20px;
  z-index: 10;
  width: 366px;
  transition: 0.3s ease-in-out;
}
.wd-cart-item-sidebar.show {
  right: 30px;
}
.wd-cart-item-sidebar .wd-cart-sidebar-main-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: var(--wd-color-black);
  margin-bottom: 20px;
}
.wd-cart-item-sidebar .wd-sale-product-right-col,
.wd-cart-item-sidebar .wd-sale-product-cart-right-col {
  width: 100%;
  height: 360px;
  gap: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #777 #ccc;
}
.wd-cart-item-sidebar .wd-sale-product-cart-right-col:has(.wd-empty-cart-box) {
  justify-content: center;
}
.wd-cart-item-sidebar .wd-right-col-item .wd-right-col-item-inner {
  padding: 10px 30px 10px 10px;
  background-color: var(--wd-color-light-gray);
}
.wd-cart-item-sidebar .wd-right-col-item-inner-img {
  position: relative;
}
.wd-cart-item-sidebar .wd-cart-sidebar-main-title .wd-cart-sidebar-close-btn {
  cursor: pointer;
}
.wd-cart-item-sidebar .wd-right-col-item {
  position: relative;
}
.wd-cart-item-remove-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #E71C1C;
  font-size: var(--wd-font-size-20);
  cursor: pointer;
}
.wd-cart-item-sidebar .wd-order-total-list {
  margin: 30px 0 20px;
}
.wd-cart-action-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.wd-cart-action-box .wd-ecom-button {
  width: 324px;
  justify-content: space-evenly;
}
body:has(.wd-cart-sidebar-overlay.show) {
  overflow: hidden;
}
.wd-cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}
.wd-cart-sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}
/* wd-cart-sidebar-end */

/* wd-default-modal-start */
.wd-default-modal,
.wd-default-modal .modal-content {
  border: 0;
}
.wd-default-modal .modal-body {
  padding: 20px;
  background-color: var(--wd-color-white);
  border: 1px solid #d2d2d2;
  border-radius: var(--wd-radius-4);
}
.wd-default-modal .wd-default-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--wd-color-black);
  cursor: pointer;
}
.wd-default-modal .wd-about-product-detail-area-wrapper {
  align-items: center;
}
/* wd-default-modal-end */
/*=========== About Us Page End ==============*/

/*=========== Contact Us Page Start ==============*/
/* wd-contact-us-section-start */
.wd-contact-us-section {
  padding: 60px 0 120px 0;
}
.wd-contact-us-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.wd-contact-us-content {
  width: calc(100% - 360px);
}
.wd-contact-us-content h1 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  line-height: 28px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-contact-us-content > p {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  margin-bottom: 30px;
  max-width: 622px;
  margin-right: auto;
}
.wd-contact-us-content .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.wd-contact-us-content .form-row > p {
  width: 100%;
}
.wd-contact-us-content .form-row .half-width {
  width: calc(50% - 10px);
}
.wd-contact-us-content input,
.wd-contact-us-content textarea {
  width: 100%;
  height: 50px;
  background-color: var(--wd-color-light-gray);
  border: 0;
  border-radius: var(--wd-radius-4);
  padding: 15px 20px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  color: #555;
}
.wd-contact-us-content input::placeholder,
.wd-contact-us-content textarea::placeholder {
  opacity: 1;
  color: #555;
}
.wd-contact-us-content input:focus,
.wd-contact-us-content textarea:focus {
  box-shadow: none;
  border-color: #d2d2d2;
}
.wd-contact-us-content textarea:focus-visible {
  outline: none;
}
.wd-contact-us-content textarea {
  height: 160px;
  width: 100%;
  resize: unset;
}
.wd-contact-us-content .contact-form-button p {
  margin-top: 20px;
  text-align: right;
  max-width: 100%;
}
.wd-contact-us-content .contact-form-button p input {
  float: right;
  padding: 6px 14px;
  width: auto;
  color: var(--wd-color-black);
}
.wd-content-us-sidebar {
  width: 340px;
  padding: 20px;
  background-color: var(--wd-color-white);
  border: 1px solid #d2d2d2;
  border-radius: var(--wd-radius-4);
}
.wd-content-us-sidebar h2 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  line-height: 28px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-content-us-sidebar p {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  margin-bottom: 30px;
}
.wd-content-us-sidebar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.wd-content-us-sidebar ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.wd-content-us-sidebar ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.wd-content-us-sidebar ul li .wd-contact-icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-content-us-sidebar ul li .wd-contact-icon-box span {
  font-size: var(--wd-font-size-30);
}
.wd-content-us-sidebar .wd-contact-meta-box h6 {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 18px;
  color: var(--wd-color-black);
}
.wd-content-us-sidebar .wd-contact-meta-box span {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  color: #333;
}
/* wd-contact-us-section-end */

/* wd-404-section-start */
.wd-404-section {
  padding: 100px 0 60px;
}
.wd-404-content-area {
  text-align: center;
}
.wd-404-content-area img {
  margin-bottom: 30px;
}
.wd-404-content-area h1 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  line-height: 32px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-404-content-area p {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  max-width: 590px;
  margin: 0 auto 30px auto;
}
/* wd-404-section-end */
/*=========== Contact Us Page End ==============*/

/*=========== Compare Page Start ==============*/
/* wd-compare-section-start */
.wd-compare-section {
  padding: 60px 0 60px 0;
}
.wd-compare-items-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding-top: 30px;
}
.wd-compare-items-wrapper.wd-compare-5-items-wrapper {
  grid-template-columns: repeat(5, 1fr);
}
.wd-compare-items-wrapper.wd-compare-4-items-wrapper {
  grid-template-columns: repeat(4, 1fr);
}
.wd-compare-items-wrapper.wd-compare-3-items-wrapper {
  grid-template-columns: repeat(3, 1fr);
}
.wd-compare-items-wrapper.wd-compare-2-items-wrapper {
  grid-template-columns: 300px auto;
}
.wd-compare-item-heading-sidebar .wd-ad-compare-btn-box {
  height: 310px;
  padding: 20px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  margin-bottom: 10px;
}
.wd-compare-item-heading-sidebar .wd-ad-compare-btn-box a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-icon {
  width: 60px;
  height: 60px;
  background-color: var(--wd-color-white);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-50);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-icon span {
  font-size: 40px;
  color: var(--wd-color-black);
}
.wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-txt {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  color: #333;
}
.wd-compare-item-heading-box h6 {
  padding: 15px 30px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  color: #333;
}
.wd-compare-item-heading-sidebar .wd-compare-item-heading-box:nth-child(odd) {
  background-color: var(--wd-color-light-gray);
}
.wd-compare-item-detail-bar {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
}
.wd-compare-item-detail-bar .wd-compare-item-meta-box {
  padding: 15px 15px 0 15px;
  margin-bottom: 10px;
}
.wd-compare-item-detail-bar .wd-compare-item-meta-box .wd-compare-item-img-box {
  width: 100%;
  height: 185px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  margin-bottom: 10px;
}
.wd-compare-item-detail-bar .wd-compare-item-meta-box .wd-compare-item-img-box a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-compare-item-detail-bar .wd-compare-item-meta-box > span {
  font-size: 10px;
  font-weight: var(--wd-font-weight-400);
  line-height: 16px;
  color: #555;
}
.wd-compare-item-detail-bar .wd-compare-item-meta-box h3 {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 18px;
  color: #333;
  margin: 5px 0 10px 0;
}
.wd-compare-item-detail-bar .wd-compare-item-box {
  padding: 8px 30px;
  height: 52px;
  display: flex;
  align-items: center;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  color: #555;
}
.wd-compare-item-detail-bar .wd-compare-item-box:nth-child(even) {
  background-color: var(--wd-color-light-gray);
}
.wd-compare-item-detail-bar .wd-compare-item-box:last-child {
  border-radius: 0 0 4px 4px;
}
.wd-compare-item-detail-bar .wd-compare-item-box .wd-search-color-filter {
  gap: 10px;
}
.wd-compare-item-detail-bar .wd-compare-item-box .wd-search-color-filter .wd-color-filter-item {
  width: 20px;
  height: 20px;
}
.wd-compare-item-detail-bar .wd-compare-item-remove-btn {
  position: absolute;
  top: -30px;
  right: -5px;
  color: var(--wd-color-black);
  cursor: pointer;
}
/* wd-compare-section-end */

/* wd-pagination-wrapper-start */
.wd-pagination-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wd-pagination-wrapper .wd-pagination-items {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 24px;
  color: #333;
}
.wd-pagination-wrapper .wd-pagination-items span {
  font-weight: var(--wd-font-weight-500);
}
.wd-pagination {
  gap: 5px;
}
.wd-pagination .nav-links {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  width: 100%;
}
.wd-pagination .wd-page-item .wd-page-link,
.wd-pagination .nav-links .page-numbers {
  border: 0;
  border-radius: var(--wd-radius-4);
  background-color: transparent;
  padding: 13px 12px;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 24px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 50px;
}
.wd-pagination .wd-page-item .wd-page-link:focus {
  box-shadow: none;
}
.wd-pagination .nav-links .page-numbers.current {
  background-color: var(--wd-color-primary);
}
.wd-pagination .wd-page-item.active .wd-page-link {
  background-color: var(--wd-color-primary);
}
.wd-pagination .wd-page-prev .wd-page-link {
  padding-left: 0;
}
.wd-pagination .wd-page-next .wd-page-link {
  padding-right: 0;
}
/* wd-pagination-wrapper-end */
.wd-back-to-top-button {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  background-color: var(--wd-color-primary);
  border-radius: var(--wd-radius-4);
  transition: opacity 0.4s, transform 0.4s;
  opacity: 0;
  cursor: pointer;
  z-index: 9;
}
.wd-back-to-top-button.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.wd-back-to-top-button.hide {
  opacity: 0;
  transform: translateY(20px);
}
.wd-back-to-top-button-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-back-to-top-button span {
  color: var(--wd-color-black);
}
.wd-green-theme .wd-back-to-top-button span,
.wd-coral-orange .wd-back-to-top-button span,
.wd-coral-red .wd-back-to-top-button span,
.wd-bluish-green .wd-back-to-top-button span,
.wd-cherry-red .wd-back-to-top-button span {
  color: var(--wd-color-white);
}
html {
  scroll-behavior: smooth;
}

/* wd-login-modal-start */
.wd-login-modal .modal-content {
  border: 1px solid #d2d2d2;
  border-radius: var(--wd-radius-4);
}
.wd-login-modal .modal-body {
  padding: 56px 20px 20px 20px;
  border-radius: var(--wd-radius-4);
}
.wd-login-modal .wd-default-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.wd-login-modal .wd-signup-content h4 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-600);
  line-height: 36px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-login-modal .wd-signup-content p {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  margin-bottom: 30px;
}
.wd-login-modal .wd-signup-content .field-box {
  margin-bottom: 30px;
  position: relative;
}
.wd-login-modal .wd-signup-content .field-box input {
  width: 100%;
  height: 50px;
  background-color: var(--wd-color-light-gray);
  border: 0;
  border-radius: var(--wd-radius-4);
  padding: 15px 30px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: #555;
}
.wd-login-modal .wd-signup-content .field-box input::placeholder {
  color: #555;
  opacity: 1;
}
.wd-login-modal .wd-signup-content .field-box input:focus {
  outline: none;
}
.wd-password-visibility {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}
.wd-login-modal .wd-signup-content .field-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  padding: 4px;
  background-color: var(--wd-color-light-gray);
  border: 1px solid #d2d2d2;
}
.wd-login-modal .wd-signup-content .wd-auth-message {
  font-size: var(--wd-font-size-14);
}
.wd-login-modal .wd-signup-content .wd-auth-message.error {
  color: #d32f2f;
  margin-bottom: 20px;
}
.wd-login-modal .wd-signup-content .wd-auth-message.success {
  color: #388e3c;
  margin-bottom: 20px;
}
.wd-login-modal .wd-signup-content .wd-footer-checkbox-section {
  padding-top: 0;
}
.wd-login-modal .wd-signup-content .wd-footer-checkbox-section .checkbox-label {
  font-size: var(--wd-font-size-14);
  flex: 1;
}
.wd-login-modal .wd-signup-content .field-box:has(.forget-password) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.wd-login-modal .wd-signup-content .field-box .forget-password a {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 20px;
  color: var(--wd-color-black);
}
.wd-login-modal .wd-signup-content .wd-ecom-button {
  width: 100%;
  justify-content: center;
  padding: 10px 6px;
}
.wd-login-modal .wd-signup-content .bottom-content {
  max-width: 360px;
  margin: 0 auto;
}
.wd-login-modal .wd-signup-content .bottom-content .break-block {
  margin-top: 25px;
  text-align: center;
}
.wd-login-modal .wd-signup-content .bottom-content .break-block span {
  font-weight: var(--wd-font-weight-500);
  font-size: var(--wd-font-size-14);
  line-height: 21px;
  color: var(--wd-color-black);
  margin: 0 22px;
  position: relative;
  display: block;
}
.wd-login-modal .wd-signup-content .bottom-content .break-block span::before,
.wd-login-modal .wd-signup-content .bottom-content .break-block span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 85px;
  height: 1px;
  background-color: #D2D2D2;
}
.wd-login-modal .wd-signup-content .bottom-content .break-block span::after {
  left: unset;
  right: 0;
}
.wd-login-modal .wd-signup-content .bottom-content .social-links-main {
  text-align: center;
  margin: 30px 0;
  padding-left: 0;
}
.wd-login-modal .wd-signup-content .bottom-content .social-links-main li {
  display: inline-block;
  margin: 0 15px;
}
.wd-login-modal .wd-signup-content .bottom-content .social-links-main .soical-link {
  width: 85px;
  height: 50px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-login-modal .wd-signup-content .bottom-content .social-links-main .soical-link svg {
  font-size: 24px;
}
.wd-login-modal .wd-signup-content .botm-question-text {
  text-align: center;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 21px;
  color: #333;
}
.wd-login-modal .wd-signup-content .botm-question-text span a {
  font-weight: var(--wd-font-weight-500);
  color: #333;
} 
/* wd-login-modal-end */

/* wd-social-links-modal-start */
.wd-social-links-modal .modal-body {
  padding: 30px 20px;
}
.wd-social-links-modal .wd-signup-content h4 {
  margin-bottom: 10px;
}
.wd-social-links-modal .wd-signup-content p {
  margin-bottom: 10px;
}
.wd-social-links-modal .wd-social-links {
  margin-bottom: 30px;
}
.wd-social-links-modal .wd-social-links li a {
  background-color: var(--wd-color-dark);
}
.wd-social-links-modal .wd-signup-content .field-box {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
.wd-social-links-modal .wd-signup-content .field-box .wd-simple-secondary-btn {
  border: 0;
  border-radius: var(--wd-radius-4);
}
/* wd-social-links-modal-end */

/* wd-compare-item-modal-start */
.wd-compare-item-modal h2 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  line-height: 32px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f1f1;
}
.wd-compare-item-modal .wd-default-modal-close-btn {
  top: 24px;
}
.wd-compare-item-modal .wd-compare-items-wrapper {
  overflow-x: unset;
  grid-template-columns: repeat(5, 1fr);
}
.wd-compare-item-modal .wd-compare-item-detail-bar {
  width: auto;
}
.wd-compare-item-modal .wd-compare-item-detail-bar .wd-compare-item-meta-box {
  margin-bottom: 0;
  padding: 15px;
}
.wd-compare-item-modal .wd-compare-item-meta-box .wd-fea-pro-price {
  margin-bottom: 10px;
}
.wd-compare-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.wd-compare-bar .wd-compare-left-cont p {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 24px;
  color: var(--wd-color-text);
}
/* wd-compare-item-modal-end */

/*=========== Compare Page End ==============*/

/*=========== Electronic Home Page start ==============*/
/* wd-electronic-hero-section-start */
.wd-elec-advertise-container {
  display: grid;
  grid-template-columns: 340px 2fr 340px;
  gap: 20px;
}
.wd-elec-left-panel,
.wd-elec-right-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wd-elec-left-panel .wd-ecommerce-advertise-box,
.wd-elec-right-panel .wd-ecommerce-advertise-box {
  background-size: cover;
}
.wd-elec-middle-panel {
  position: relative;
}
.wd-elec-advertise-content-box {
  position: absolute;
  top: 30px;
  left: 30px;
}
.wd-elec-advertise-content-box .sub-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  color: #555555;
}
.wd-elec-advertise-content-box .title {
  position: unset;
  font-size: 35px;
  font-weight: 600;
  line-height: 42px;
  color: #000;
  margin-bottom: 20px;
  width: 100%;
}
.wd-elec-middle-panel .wd-deal-countdown-desc {
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: right;
}
.wd-elec-middle-panel .wd-deal-countdown-desc h5 {
  font-size: var(--wd-font-size-20);
  font-weight: var(--wd-font-weight-500);
  line-height: 30px;
  margin-bottom: 15px;
  color: #333;
}
.wd-elec-middle-panel .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
  gap: 10px;
}
.wd-elec-middle-panel .wd-deal-countdown-desc .wd-deal-countdown-desc-clock .wd-countdown-clock-div {
  padding: 6px 4px;
  width: 50px;
  height: 50px;
}
.wd-elec-middle-panel .wd-countdown-clock-div .wd-countdown-clock-inner .wd-countdown-clock-title {
  font-size: var(--wd-font-size-16);
  line-height: 18px;
}
.wd-elec-middle-panel .wd-countdown-clock-div .wd-countdown-clock-inner .wd-countdown-clock-heading {
  font-size: 10px;
  line-height: 12px;
}
/* wd-electronic-hero-section-end */

/* wd-elec-product-grid-box-start */
.wd-elec-product-grid-wrapper {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wd-elec-product-grid-box {
  position: relative;
  width: calc(50% - 10px);
  padding: 24px 32px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
}
.wd-elec-product-grid-box h2 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  line-height: 36px;
  margin-bottom: 25px;
  color: var(--wd-color-black);
}
.wd-elec-product-item-box {
  position: relative;
}
.wd-elec-product-item-box .wd-card-tags-wrapper {
  right: unset;
  left: 10px;
}
.wd-elec-product-item-box .wd-elec-product-img-box {
  position: relative;
  width: 100%;
  height: 254px;
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-4);
  margin-bottom: 10px;
}
.wd-elec-product-item-box .wd-elec-product-img-box > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-elec-product-item-box .wd-elec-product-img-box a img {
  max-width: 100%;
  height: auto;
}
.wd-elec-product-item-box .wd-elec-product-content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-meta {
  width: calc(100% - 66px);
}
.wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-meta h5 {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 21px;
  margin-bottom: 5px;
  color: var(--wd-color-black);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-btn {
  width: 56px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--wd-color-white);
  border: 0;
  border-radius: var(--wd-radius-4);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.wd-bluish-green .wd-elec-product-item-box:hover .wd-elec-product-content-box .wd-elec-product-btn {
  background-color: var(--wd-color-primary);
}
.wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-btn span {
  color: var(--wd-color-black);
  transition: 0.3s ease-in-out;
}
.wd-elec-product-item-box:hover .wd-elec-product-content-box .wd-elec-product-btn span {
  color: var(--wd-color-white);
}
.wd-elec-product-item-box:hover .wd-pro-quick-actions {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.wd-bluish-green .wd-elec-product-item-box .wd-pro-quick-actions a:hover {
  background-color: var(--wd-color-primary);
  color: var(--wd-color-white);
} 
.wd-elec-product-navigation {
  top: 30px;
  right: 30px;
}
/* wd-elec-product-grid-box-end */

/* wd-elec-featured-pro-wrapper-start */
.wd-elec-featured-pro-wrapper {
  display: flex;
  gap: 20px;
}
.wd-elec-featured-pro-wrapper .wd-advertise-grid-box {
  width: 340px;
  height: 424px;
  border-radius: var(--wd-radius-4);
}
.wd-elec-featured-pro-wrapper .wd-advertise-grid-box .wd-advertise-desc {
  top: 20px;
  left: 20px;
}
.wd-advertise-grid-box .wd-advertise-desc.wd-advertise-desc-right {
  left: unset;
  right: 20px;
  text-align: right;
}
.wd-elec-featured-pro-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-offer {
  color: var(--wd-color-black);
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-500);
}
.wd-elec-featured-pro-wrapper .wd-advertise-grid-box .wd-desc-title {
  font-size: var(--wd-font-size-22);
  margin-bottom: 20px;
}
.wd-elec-featured-pro-wrapper .wd-advertise-grid-box img {
  border-radius: var(--wd-radius-4);
}
.wd-elec-featured-pro-wrapper .wd-elec-product-grid-box {
  width: calc(100% - 700px);
}
/* wd-elec-featured-pro-wrapper-end */
/*=========== Electronic Home Page End ==============*/

/*=========== Glasses Home Page Start ==============*/

/* wd-glasses-top-action-bar-start */
.wd-glasses-top-action-bar {
  padding: 14px 0;
  background-color: var(--wd-color-white);
}
.wd-glasses-topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.wd-glasses-topbar-search-side {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 95px;
}
.wd-glasses-logo-box {
  width: 131px;
  height: 30px;
}
.wd-glasses-logo-box img {
  width: 100%;
  height: 100%;
}
.wd-glasses-search-bar {
  width: 530px;
}
.wd-glasses-search-bar .wd-glasses-search-box {
  position: relative;
}
.wd-glasses-search-bar .wd-glasses-search-box input {
  width: 100%;
  height: 44px;
  background-color: #F4F1EC;
  border: 0;
  border-radius: var(--wd-radius-4);
  padding: 12px 30px;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
}
.wd-glasses-search-bar .wd-glasses-search-box input::placeholder {
  color: #555;
  opacity: 1;
}
.wd-glasses-search-bar .wd-glasses-search-box input:focus {
  outline: none;
}
.wd-glasses-search-bar .wd-glasses-search-box .wd-ecom-btn-svg {
  border: 0;
  position: absolute;
  top: 7px;
  right: 7px;
  background-color: var(--wd-color-primary);
  color: var(--wd-color-white);
}
.wd-glasses-actions-side {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 60px;
}
.wd-hotline-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wd-hotline-box .wd-hotline-icon {
  width: 24px;
  height: 24px;
}
.wd-hotline-box .wd-hotline-icon span {
  color: var(--wd-color-primary);
}
.wd-hotline-box .wd-hotline-meta small {
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-400);
  color: var(--wd-color-black);
}
.wd-hotline-box .wd-hotline-meta a {
  display: block;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
}
.wd-glasses-quick-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}
.wd-glasses-quick-actions::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -30px;
  height: 35px;
  width: 1px;
  background-color: #DEDEDE;
}
.wd-glasses-quick-actions .wd-glasses-action-item {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  text-align: center;
}
.wd-glasses-quick-actions .wd-glasses-action-item span {
  color: var(--wd-color-black);
}
.wd-glasses-quick-actions .wd-glasses-action-item span.wd-add-to-cart {
  color: var(--wd-color-white);
  top: -6px;
  right: -4px;
  width: 14px;
  height: 14px;
  padding: 2px 4px;
  font-size: 8px;
}
.wd-glasses-quick-actions .wd-glasses-action-item small {
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-400);
  color: var(--wd-color-black);
}
/* wd-glasses-top-action-bar-end */

/* wd-glasses-header-start */
.wd-glasses-header {
  background-color: var(--wd-color-black);
}
.wd-glasses-header::before {
  content: none;
}
.wd-glasses-header .sb-header-container .wd-bc-sb-menu {
  width: 100%;
  justify-content: space-between;
}
.wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li a {
  padding-left: 50px !important;
  color: var(--wd-color-white);
}
.wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li .sub-menu a {
  color: var(--wd-color-black);
}
.wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li:first-child a {
  padding-left: 0 !important;
}
.wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li a > span::before {
  border-color: var(--wd-color-white);
}
.wd-glasses-header .wd-customer-service {
  background-color: transparent;
}
.wd-glasses-header .wd-customer-service .wd-daily-deal::after {
  background-color: rgba(255, 255, 255, 0.50);
}
.wd-coral-red .wd-glasses-header .wd-customer-service .wd-daily-deal span,
.wd-coral-red .wd-glasses-header .wd-order-tracking span {
  color: var(--wd-color-primary);
}
.wd-coral-red .wd-glasses-header .wd-customer-service .wd-daily-deal a,
.wd-coral-red .wd-glasses-header .wd-order-tracking a {
  color: var(--wd-color-white);
}
.wd-coral-red .wd-brcategory-header .sb-menu .navbar-items a:hover, 
.wd-coral-red .wd-brcategory-header .sb-menu .navbar-items a:focus, 
.wd-coral-red .wd-brcategory-header .sb-menu .navbar-items a:active {
  color: var(--wd-color-coral-red) !important;
}
.wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li a:hover > span::before {
  border-color: var(--wd-color-primary);
}
.wd-glasses-header .sb-header-container .sb-menu ul ul li > a::before {
  background-color: var(--wd-color-primary);
}
/* wd-glasses-header-end */

/* wd-glasses-hero-section-start */
.wd-glasses-hero-section {
  padding: 95px 0 0 0;
  background-image: url(../imgs/glasses-hero-bg.png);
  background-size: cover;
  background-position: center;
  margin-bottom: 116px;
}
.wd-glasses-hero-content {
  margin-bottom: 80px;
}
.wd-glasses-hero-content > span {
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-400);
  line-height: 28px;
  color: var(--wd-color-primary);
  margin-bottom: 5px;
}
.wd-glasses-hero-content h1 {
  font-size: var(--wd-font-size-36);
  font-weight: var(--wd-font-weight-500);
  line-height: 54px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-glasses-hero-content h3 {
  font-size: var(--wd-font-size-26);
  font-weight: var(--wd-font-weight-500);
  line-height: 40px;
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-glasses-hero-content h3 span {
  font-weight: var(--wd-font-weight-600);
  color: var(--wd-color-primary);
}
.wd-glasses-hero-content p {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  margin-bottom: 20px;
  max-width: 520px;
}
.wd-hero-category-grid-wrapper {
  padding: 20px;
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: -76px;
}
.wd-hero-category-grid-wrapper .wd-ecommerce-advertise-box {
  height: 152px;
  background-size: cover;
  border-radius: var(--wd-radius-4);
}
.wd-hero-category-grid-wrapper .wd-ecommerce-advertise-box:hover {
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.10);
}
/* wd-glasses-hero-section-end */

/* wd-glasses-product-section-start */
.wd-glasses-product-section .wd-title-tags-section {
  margin-bottom: 36px;
}
.wd-glasses-product-section .wd-title-tags-list .wd-title-tag {
  border-radius: var(--wd-radius-4);
}
.wd-coral-red .wd-title-tags-list .wd-title-tag.active,
.wd-coral-red .wd-title-tags-list .wd-title-tag:hover {
  color: var(--wd-color-white);
  background-color: var(--wd-color-primary);
}
.wd-elec-product-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.wd-coral-red .wd-elec-product-img-box {
  background-color: #F4F1EC;
}
.wd-coral-red .wd-elec-product-img-box {
  height: 220px;
}
.wd-coral-red .wd-elec-product-content-box .wd-elec-product-btn {
  background-color: #F4F1EC;
}
.wd-coral-red .wd-elec-product-item-box:hover .wd-elec-product-content-box .wd-elec-product-btn {
  background-color: var(--wd-color-coral-red);
}
.wd-glasses-product-section .wd-fea-pro-price .wd-pro-discounted-price {
  color: var(--wd-color-black);
}
.wd-coral-red .wd-elec-product-item-box .wd-pro-quick-actions a:hover {
  background-color: var(--wd-color-primary);
  color: var(--wd-color-white);
} 
.wd-product-color-variations {
  opacity: 0;
  visibility: hidden;
  padding: 6px 10px;
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-25);
  transition: 0.3s ease-in-out;
}
.wd-product-color-variations ul {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.wd-product-color-variations ul li {
  display: flex;
}
.wd-product-color-variations ul li a {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: var(--wd-radius-50);
}
.wd-product-color-variations ul li a.wd-olive-color {
  background-color: #b9ab4d;
}
.wd-product-color-variations ul li a.wd-black-color {
  background-color: var(--wd-color-black);
}
.wd-product-color-variations ul li a.wd-cyan-color {
  background-color: #00b3e6;
}
.wd-product-color-variations ul li a.wd-blue-color {
  background-color: #0000ff;
}
.wd-product-color-variations ul li a.wd-forest-green-color {
  background-color: #10462b;
}
.wd-product-color-variations ul li a.wd-light-pink-color {
  background-color: #f7b6b2;
}
.wd-product-color-variations ul li a.wd-soft-pink-color {
  background-color: #fca3e2;
}
.wd-elec-product-item-box .wd-product-color-variations {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wd-elec-product-item-box:hover .wd-product-color-variations {
  opacity: 1;
  visibility: visible;
}
.wd-color-varient-product-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.wd-color-varient-product-image.active {
  visibility: visible;
  opacity: 1;
}
.wd-color-varient-dot.active::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: var(--wd-radius-50);
  background-color: var(--wd-color-white);
} 
/* wd-glasses-product-section-end */

/* wd-glasses-product-wrapper-start */
.wd-glasses-product-wrapper {
  display: flex;
  gap: 36px;
}
.wd-glasses-product-wrapper .wd-advertise-grid-box {
  width: 303px;
  height: 483px;
}
.wd-glasses-product-slider-main {
  width: calc(100% - 339px);
}
.wd-glasses-product-wrapper .wd-advertise-grid-box .wd-advertise-desc {
  top: 30px;
  left: unset;
  right: 30px;
  text-align: right;
}
.wd-glasses-product-wrapper .wd-advertise-grid-box .wd-desc-offer {
  color: #6D6D6D;
  margin-bottom: 5px;
}
.wd-glasses-product-wrapper .wd-advertise-grid-box .wd-desc-title {
  font-size: var(--wd-font-size-24);
  margin-bottom: 15px;
}
.wd-glasses-product-wrapper .wd-horizontal-advertise-box {
  margin-bottom: 20px;
}
.wd-glasses-product-slider-wrapper {
  position: relative;
}
.wd-glasses-product-navigation {
  top: 6px;
}
/* wd-glasses-product-wrapper-end */
.wd-deal-banner-section:has(.wd-glasses-banner-background) {
  padding-top: 36px;
}
.wd-deal-banner-background.wd-glasses-banner-background {
  height: 250px;
  background-image: url(../imgs/glasses-banner.png);
}
.wd-deal-banner-background.wd-glasses-banner-background .wd-deal-section-desc-inner {
  height: 100%;
}
.wd-glasses-full-width-product-navigation {
  top: -50px;
}

/* wd-faqs-advanced-section-start */
.wd-faqs-advanced-section {
  padding: 95px 0;
  background-image: url(../imgs/wd-faq-advanced-bg.png);
  background-size: cover;
  background-position: center;
}
.wd-faqs-advanced-section .wd-accordion-style .wd-accordion-card {
  border: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 24px;
}
.wd-faqs-advanced-section .wd-accordion-style .card-body {
  border-top: 0;
  box-shadow: none;
}
/* wd-faqs-advanced-section-end */
.wd-insta-advanced-section .wd-pro-heading {
  font-size: var(--wd-font-size-24);
}
.wd-insta-advanced-section .wd-section-title p {
  font-size: var(--wd-font-size-16);
  line-height: 30px;
  max-width: 670px;
}
/* wd-black-footer-start */
.wd-black-footer {
  padding: 60px 0;
  background-color: var(--wd-color-black);
}
.wd-join-newsletter-box {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.wd-black-footer .wd-join-newsletter-box {
  margin-bottom: 60px;
}
.wd-join-newsletter-box .wd-join-newsletter-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-icon {
  width: 65px;
  height: 65px;
}
.wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-icon span {
  font-size: 65px;
}
.wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-icon span {
  color: var(--wd-color-primary);
}
.wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-meta h4 {
  font-size: var(--wd-font-size-28);
  font-weight: var(--wd-font-weight-500);
  line-height: 42px;
  color: var(--wd-color-white);
  margin-bottom: 5px;
}
.wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-meta p {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 24px;
  color: #c1c1c1;
  max-width: 517px;
}
.wd-join-newsletter-box .wd-glasses-search-bar .wd-glasses-search-box input {
  background-color: var(--wd-color-black);
  color: var(--wd-color-white);
}
.wd-join-newsletter-box .wd-glasses-search-bar .wd-glasses-search-box input::placeholder {
  color: var(--wd-color-white);
  opacity: 1;
}
/* wd-black-footer-end */

/* wd-address-section-start */
.wd-address-section {
  padding: 25px 0;
  background-color: #191919;
}
.wd-address-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wd-address-box .wd-address-icon {
  width: 40px;
  height: 40px;
}
.wd-address-box .wd-address-meta {
  width: calc(100% - 60px);
}
.wd-address-box .wd-address-icon span {
  font-size: var(--wd-font-size-40);
  color: var(--wd-color-primary);
}
.wd-coral-red .wd-address-box .wd-address-icon span {
  color: var(--wd-color-coral-red);
}
.wd-address-box .wd-address-meta small {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 22px;
  color: #c1c1c1;
}
.wd-address-box .wd-address-meta span {
  display: block;
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: var(--wd-color-white);
}
/* wd-address-section-end */

/* wd-vendor-products-section-start */
.wd-vendor-products-section .wd-section-heading {
  margin-bottom: 36px;
}
.wd-vendor-products-main-wrapper {
  display: flex;
  gap: 36px;
}
.wd-vendor-products-main-wrapper .wd-single-vendor-box {
  width: calc(50% - 18px);
}
.wd-single-vendor-product-wrapper {
  display: flex;
  gap: 36px;
}
.wd-single-vendor-product-wrapper .wd-glasses-product-item-box {
  width: calc(50% - 18px);
}
.wd-single-vendor-product-wrapper .wd-glasses-product-item-box .wd-elec-product-img-box {
  display: flex;
  gap: 5px;
  background-color: transparent;
}
.wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductThumbsSlider {
  width: 77px;
}
.wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductThumbsSlider .wd-vendor-product-main-item {
  height: 100%;
  background-color: #F4F1EC;
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductItemSlider {
  width: calc(100% - 82px);
}
.wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductItemSlider .wd-vendor-thumb-product-item {
  height: 100%;
  background-color: #F4F1EC;
  border-radius: var(--wd-radius-4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-single-vendor-product-wrapper .wd-elec-product-item-box:hover .wd-pro-quick-actions {
  z-index: 2;
}
.wd-single-vendor-box .wd-store-author-detail-box {
  background-color: #F4F1EC;
  margin-top: 24px;
}
/* wd-vendor-products-section-end */

/*=========== Glasses Home Page End ==============*/

/*=========== Auto Store Home Page Start ==============*/
.wd-rich-black .wd-top-bar-section {
  background-color: var(--wd-color-rich-black);
  border-bottom: 0;
}
.wd-rich-black .wd-top-bar-section .wd-container {
  position: relative;
}
.wd-rich-black .wd-top-bar-section .wd-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: calc(100% - 24px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.20);
}
.wd-rich-black .wd-header-nav-section {
  background: var(--wd-color-rich-black);
}
.wd-rich-black .wd-glasses-header {
  background-color: var(--wd-color-rich-black);
}
.wd-rich-black .wd-glasses-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.10);
}
/* wd-auto-store-header-nav-start */
.wd-auto-store-header-nav .wd-nav-container .logo img {
  width: 138px;
  height: 32px;
}
.wd-auto-store-header-nav .wd-header-input-mail-section input {
  background-color: #F4F1EC;
  border: 0;
  border-radius: var(--wd-radius-4);
  padding: 8px 0 8px 20px;
}
.wd-auto-store-header-nav .wd-header-section-form .wd-ecom-btn-svg {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 42px;
  height: 42px;
  border: 0;
  background-color: var(--wd-color-primary-blue);
  color: var(--wd-color-white);
}
.wd-auto-store-header-nav .wd-nav-container .wd-header-input-mail-section {
  width: max-content;
}
.wd-auto-store-header-nav .wd-nav-container .wd-header-input-mail-section input {
  width: 600px;
}
.wd-auto-store-header-nav .wd-header-input-mail-section .wd-signle-filter-dropdown-button {
  padding: 11px 16px;
}
/* wd-auto-store-header-nav-end */
.wd-rich-black .wd-brcategory-header .sb-menu .navbar-items a:hover, 
.wd-rich-black .wd-brcategory-header .sb-menu .navbar-items a:focus, 
.wd-rich-black .wd-brcategory-header .sb-menu .navbar-items a:active {
  color: var(--wd-color-primary-blue) !important;
}
.wd-rich-black .wd-glasses-header .wd-customer-service .wd-daily-deal span, 
.wd-rich-black .wd-glasses-header .wd-order-tracking span {
  color: var(--wd-color-primary-blue);
}
.wd-rich-black .wd-glasses-header .wd-customer-service .wd-daily-deal a, 
.wd-rich-black .wd-glasses-header .wd-order-tracking a {
  color: var(--wd-color-white);
}
.wd-rich-black .wd-header-input-mail-section .wd-signle-filter-dropdown-button {
  background-color: var(--wd-color-primary-blue);
  border-color: var(--wd-color-primary-blue);
  color: var(--wd-color-white);
}
/* wd-auto-motor-product-item-start */
.wd-auto-moto-slider-wrapper {
  position: relative;
}
.wd-auto-motor-product-item .wd-pro-img-container {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: var(--wd-radius-50);
}
.wd-auto-motor-product-item .wd-pro-desc-heading {
  font-size: var(--wd-font-size-16);
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-auto-motor-product-item .wd-dropdown-products {
  display: inline-block;
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  line-height: 18px;
}
.wd-auto-moto-swiper-navigation {
  position: absolute;
  top: calc(50% - 15px);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.auto-motor-swiper-button-prev,
.auto-motor-swiper-button-next {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--wd-radius-50);
  background-color: var(--wd-color-black);
  z-index: 1;
}
.auto-motor-swiper-button-prev {
  left: -15px;
}
.auto-motor-swiper-button-next {
  right: -15px;
}
.wd-rich-black .auto-motor-swiper-button-prev,
.wd-rich-black .auto-motor-swiper-button-next {
  background-color: var(--wd-color-primary-blue);
}
.wd-rich-black .wd-auto-moto-swiper-navigation .swiper-button-disabled {
  background-color: var(--wd-color-rich-black);
}
.auto-motor-swiper-button-prev span,
.auto-motor-swiper-button-next span {
  color: var(--wd-color-white);
}
/* wd-auto-motor-product-item-end */

/* wd-auto-moto-hero-section-start */
.wd-auto-moto-hero-section {
  background-color: var(--wd-color-light-gray);
}
.wd-auto-hero-content-wrapper {
  display: flex;
  gap: 20px;
}
.wd-auto-hero-content-wrapper .wd-advertise-grid-box {
  width: 340px;
  height: 500px;
}
.wd-auto-hero-content-wrapper .wd-advertise-grid-box .wd-advertise-desc {
  position: absolute;
  top: 20px;
  left: 30px;
}
.wd-auto-hero-content-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-title {
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
  margin-bottom: 5px;
}
.wd-auto-hero-content-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-offer {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
}
.wd-rich-black .wd-auto-hero-content-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-offer { 
  color: var(--wd-color-primary-blue);
}
.wd-auto-hero-content-wrapper .wd-advertise-grid-box .wd-ecom-button {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}
.wd-auto-hero-content-wrapper .wd-advertise-grid-box img {
  border-radius: var(--wd-radius-4);
}
.wd-auto-hero-content-wrapper .wd-auto-hero-slider-wrapper {
  width: calc(100% - 360px);
  position: relative;
}
.wd-auto-hero-banner-box {
  position: relative;
  height: 500px;
}
.wd-auto-hero-banner-box .auto-hero-main-img {
  width: 100%;
  height: 100%;
  border-radius: var(--wd-radius-4);
}
.wd-auto-hero-banner-box .wd-auto-hero-content-box {
  position: absolute;
  top: 30px;
  left: 30px;
}
.wd-auto-hero-banner-box .wd-auto-hero-content-box span {
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
}
.wd-auto-hero-banner-box .wd-auto-hero-content-box h1 {
  font-size: var(--wd-font-size-34);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
  margin-bottom: 20px;
}
.wd-auto-hero-banner-box .wd-auto-hero-content-box .wd-ecom-button span {
  color: var(--wd-color-black);
}
.wd-auto-hero-banner-box .wd-deal-countdown-desc {
  position: absolute;
  bottom: 30px;
  left: 30px;
} 
.wd-auto-hero-banner-box .wd-deal-countdown-desc h5 {
  font-size: var(--wd-font-size-20);
  font-weight: var(--wd-font-weight-500);
  line-height: 30px;
  margin-bottom: 15px;
  color: var(--wd-color-white);
}
.wd-auto-hero-banner-box .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
  gap: 10px;
}
.wd-auto-hero-banner-box .wd-deal-countdown-desc .wd-deal-countdown-desc-clock .wd-countdown-clock-div {
  padding: 6px 4px;
  width: 50px;
  height: 50px;
}
.wd-auto-hero-banner-box .wd-countdown-clock-div .wd-countdown-clock-inner .wd-countdown-clock-title {
  font-size: var(--wd-font-size-16);
  line-height: 18px;
}
.wd-auto-hero-banner-box .wd-countdown-clock-div .wd-countdown-clock-inner .wd-countdown-clock-heading {
  font-size: 10px;
  line-height: 12px;
}
.wd-auto-hero-banner-box .wd-deal-countdown-desc-clock .wd-coundown-svg svg circle {
  fill: var(--wd-color-white);
}
.wd-auto-swiper-pagination {
  position: absolute;
  bottom: 30px !important;
  left: unset !important;
  right: 30px;
  width: auto !important;
  text-align: right;
  z-index: 1;
  padding: 6px 11px;
  background-color: rgba(0, 0, 0, 0.50);
  border-radius: var(--wd-radius-25);
  display: flex;
  align-items: center;
}
.wd-auto-swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: var(--wd-radius-50);
  background-color: rgba(255, 255, 255, 0.50);
  opacity: 1;
}
.wd-rich-black .wd-auto-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--wd-color-primary-blue);
}
.wd-auto-swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-50);
}
.wd-auto-parts-product-item {
  padding: 15px;
  background-color: var(--wd-color-white);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
}
.wd-auto-parts-product-item:hover {
  border-color: var(--wd-color-light-gray);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.10);
}
.wd-auto-parts-product-item .wd-pro-img-container {
  height: 185px;
}
.wd-auto-parts-product-item .wd-pro-img-container > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.wd-auto-parts-product-item .wd-pro-img-container .wd-pro-quick-actions {
  top: 10px;
  right: 10px;
}
.wd-auto-parts-product-item:hover .wd-pro-img-container .wd-pro-quick-actions {
  visibility: visible;
  opacity: 1;
}
.wd-rich-black .wd-auto-parts-product-item .wd-pro-img-container .wd-pro-quick-actions a:hover {
  background-color: var(--wd-color-primary-blue);
  color: var(--wd-color-white);
}
.wd-auto-parts-product-item .wd-pro-img-container .wd-card-tags-wrapper {
  right: unset;
  left: 10px;
}
.wd-auto-parts-product-item .wd-pro-desc-container {
  text-align: left;
}
.wd-auto-parts-product-item .wd-pro-desc-container .wd-pro-count {
  display: inline-block;
  font-size: 10px;
  line-height: 15px;
  color: #555;
  margin-bottom: 3px;
}
.wd-auto-parts-product-item .wd-pro-desc-container .wd-pro-item-rating {
  justify-content: flex-start;
}
.wd-auto-parts-product-item .wd-fea-pro-price {
  margin-top: 3px;
}
.wd-auto-parts-product-item:hover .wd-fea-pro-price {
  display: block;
}
.wd-auto-parts-product-item .wd-fea-pro-price .wd-pro-discounted-price {
  font-size: var(--wd-font-size-14);
}
.wd-auto-parts-product-item .wd-pro-desc-container .wd-pro-item-rating {
  margin: 3px 0 10px 0;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--wd-color-light-gray);
}
.wd-auto-parts-product-item .wd-pro-desc-container .wd-progress-bar-box p {
  font-size: var(--wd-font-size-12);
  margin-bottom: 5px;
}
.wd-auto-parts-product-item .wd-pro-desc-container .wd-progress-bar-box .wd-progress {
  height: 3px;
  background-color: #D2D2D2;
}
.wd-rich-black .wd-auto-parts-product-item .wd-pro-desc-container .wd-progress-bar-box .wd-progress .wd-progress-bar {
  background-color: var(--wd-color-primary-blue);
}
.wd-auto-parts-swiper-navigation {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  gap: 10px;
}
.auto-parts-swiper-button-prev,
.auto-parts-swiper-button-next {
  color: var(--wd-color-black);
}
.auto-parts-swiper-button-prev.swiper-button-disabled,
.auto-parts-swiper-button-next.swiper-button-disabled {
  color: #AAAAAA;
}
/* wd-auto-moto-hero-section-end */

/* wd-auto-popular-picks-wrapper-start */
.wd-auto-popular-picks-section {
  background: url(../imgs/auto-popular-picks-bg.png);
  background-size: cover;
}
.wd-auto-popular-picks-wrapper {
  display: flex;
  gap: 20px;
}
.wd-auto-popular-picks-wrapper .wd-auto-popular-picks-container {
  width: calc(100% - 480px);
}
.wd-auto-popular-picks-wrapper .wd-advertise-grid-box {
  width: 460px;
  height: 440px;
}
.wd-auto-popular-picks-wrapper .wd-advertise-grid-box > img {
  border-radius: var(--wd-radius-4);
}
.wd-auto-popular-picks-wrapper .wd-advertise-grid-box .wd-advertise-desc {
  position: absolute;
  top: 20px;
  left: 30px;
}
.wd-auto-popular-picks-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-title {
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
}
.wd-auto-popular-picks-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-offer {
  font-size: var(--wd-font-size-34);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
}
.wd-auto-popular-picks-wrapper .wd-advertise-grid-box .wd-ecom-button {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}
.wd-auto-parts-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.wd-auto-parts-product-list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  height: 182px;
}
.wd-auto-parts-product-list .wd-pro-img-container {
  width: 162px;
  height: 162px;
}
.wd-auto-parts-product-list .wd-pro-desc-container {
  width: calc(100% - 232px);
  margin-top: 0;
}
.wd-auto-parts-product-item .wd-pro-desc-container .wd-pro-item-rating {
  padding-bottom: 10px;
}
.wd-auto-parts-product-list .wd-pro-quick-actions {
  right: 20px;
  bottom: 20px;
  justify-content: center;
  visibility: visible;
  opacity: 1;
}
.wd-rich-black .wd-auto-parts-product-list .wd-pro-quick-actions a:hover {
  background-color: var(--wd-color-primary-blue);
  color: var(--wd-color-white);
}
.wd-auto-parts-product-items-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.wd-auto-brand-logo-box {
  padding: 0px;
  transition: 0.3s ease-in-out;
}
.wd-auto-brand-logo-box:hover {
  border-color: var(--wd-color-light-gray);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.10);
}
.wd-auto-brand-logo-box .wd-auto-pro-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.wd-auto-brand-logo-box .wd-pro-img-container {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-color: transparent;
}
.wd-auto-brand-logo-box .wd-pro-desc-container {
  text-align: center;
  margin-top: 20px;
}
.wd-auto-brand-logo-box .wd-pro-desc-heading {
  font-size: var(--wd-font-size-16);
  margin-bottom: 5px;
}
.wd-auto-brand-logo-box .wd-pro-desc-container .wd-pro-count {
  font-size: var(--wd-font-size-12);
  margin-bottom: 0;
}
.auto-brand-logo-swiper-button-prev, 
.auto-brand-logo-swiper-button-next {
  color: var(--wd-color-black);
}
.auto-brand-logo-swiper-button-prev.swiper-button-disabled, 
.auto-brand-logo-swiper-button-next.swiper-button-disabled {
  color: #AAAAAA;
}
.wd-auto-ad-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.wd-auto-vertical-ad-banner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box {
  height: 500px;
}
.wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box > img {
  border-radius: var(--wd-radius-4);
}
.wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box .wd-advertise-desc {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  text-align: center;
}
.wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-title {
  color: var(--wd-color-white);
  font-weight: var(--wd-font-weight-500);
}
.wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-offer {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-white);
  margin-bottom: 20px;
}
.wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box .wd-ecom-button-bottom {
  position: absolute;
  bottom: 30px;
  z-index: 2;
}
.wd-auto-parts-grid-wrapper-3 {
  grid-template-columns: repeat(3, 1fr);
}
.wd-rich-black .wd-advanced-footer .wd-footer-contact-section .wd-footer-contact-detail-section svg {
  color: var(--wd-color-rich-black);
}
.wd-rich-black .wd-advanced-footer .wd-footer-section-newsletter-form .wd-btn-primary {
  background: var(--wd-color-rich-black);
}
.wd-rich-black .wd-advanced-footer .wd-footer-section-newsletter-form .wd-btn-primary .wd-primary-btn-svg {
  background-color: var(--wd-color-white);
  color: var(--wd-color-black);
}
.wd-rich-black .wd-footer-copywrite-section {
  background: var(--wd-color-rich-black);
}
.wd-rich-black .wd-copywrite-tag {
  color: var(--wd-color-white);
}
.wd-auto-hero-full-banner-box img.auto-hero-main-img {
  border-radius: 0;
}
.wd-auto-full-banner-pagination {
  left: 0 !important;
  right: 0 !important;
  justify-content: center;
  background-color: transparent;
  bottom: 10px !important;
}
/* wd-auto-popular-picks-wrapper-end */
/*=========== Auto Store Home Page End ==============*/

/*=========== Pet Home Page Start ==============*/

/* wd-pet-top-bar-section-start */
.wd-pet-top-bar-section {
  background-color: #00112D;
}
.wd-cherry-red .wd-pet-top-bar-section {
  background-color: #000;
}
.wd-pet-top-bar-section .wd-top-bar-content {
  padding: 15px 0;
}
.wd-pet-top-bar-section .wd-top-bar-content .logo {
  display: inline-block;
  width: 99px;
  height: 26px;
}
.wd-pet-top-bar-section .wd-top-bar-content .logo img {
  width: 100%;
  height: 100%;
}
.wd-pet-top-bar-section .wd-top-bar-links a {
  color: var(--wd-color-white);
}
.wd-pet-top-bar-section .wd-top-bar-links::before {
  background-color: rgba(255, 255, 255, 0.50);
  height: 15px;
  top: 6px;
}
.wd-pet-top-bar-section .wd-help-text {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wd-pet-top-bar-section .wd-help-text span {
  font-size: var(--wd-font-size-18);
}
.wd-pet-top-bar-section .wd-social-links {
  padding-right: 20px;
  position: relative;
}
.wd-pet-top-bar-section .wd-social-links::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 5px;
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.50);
}
.wd-pet-top-bar-section .wd-social-links li a {
  width: auto;
  height: auto;
  background-color: transparent;
}
.wd-coral-orange .wd-pet-top-bar-section .wd-social-links li a:hover {
  background-color: transparent;
}
.wd-pet-top-bar-section .wd-top-bar-links .wd-menu-dropdown-toggle {
  background-color: transparent;
  border: 0;
  padding: 0;
}
/* wd-pet-top-bar-section-end */

/* wd-pet-header-start */
.wd-pet-header {
  background-color: transparent;
  margin-bottom: -30px;
}
.wd-pet-header::before {
  content: none;
}
.wd-pet-header .wd-brcategory-container {
  width: 100%;
  padding: 0px 30px;
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-4);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.15);
}
.wd-pet-header .sb-header-container .wd-bc-sb-menu {
  width: 100%;
  justify-content: space-between;
}
.wd-pet-header .wd-brcategory-container .sb-menu .menu-item a {
  color: var(--wd-color-black);
  padding-left: 0px !important;
  padding-right: 40px !important;
}
.wd-pet-header .sb-menu .menu-item:last-child a {
  padding-right: 0 !important;
}
.wd-pet-header .wd-glasses-quick-actions {
  gap: 40px;
}
.wd-pet-header .wd-glasses-quick-actions::before {
  content: none;
}
.wd-pet-header .wd-glasses-quick-actions .wd-glasses-action-item {
  flex-direction: row;
  align-items: center;
}
.wd-pet-header .wd-glasses-quick-actions .wd-glasses-action-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -20px;
  width: 1px;
  height: 15px;
  background-color: rgba(0, 0, 0, 0.20);
}
.wd-pet-header .wd-glasses-quick-actions .wd-glasses-action-item:first-child::before {
  content: none;
}
.wd-pet-header .wd-glasses-quick-actions .wd-glasses-action-item span.wd-add-to-cart {
  right: unset;
  left: 15px;
}
.wd-coral-orange .wd-brcategory-header .sb-menu .menu-item a:hover, 
.wd-coral-orange .wd-brcategory-header .sb-menu .menu-item a:focus, 
.wd-coral-orange .wd-brcategory-header .sb-menu .menu-item a:active {
  color: var(--wd-color-coral-orange) !important;
}
/* wd-pet-header-end */
.wd-coral-orange .wd-pro-quick-actions a:hover {
  background-color: var(--wd-color-primary);
  border-color: var(--wd-color-primary);
  color: var(--wd-color-white);
}
.wd-coral-orange .wd-progress-bar-box .wd-progress .wd-progress-bar {
  background-color: var(--wd-color-primary);
}

/* wd-pet-banner-content-box-start */
.wd-auto-hero-slider-wrapper .wd-container {
  position: relative;
}
.wd-pet-banner-content-box {
  height: 650px;
}
.wd-pet-banner-content-box .wd-container {
  position: relative;
}
.wd-pet-banner-content-box .wd-pet-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wd-pet-banner-content-box .wd-pet-banner-meta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 650px;
  width: 400px;
  z-index: 1;
}
.wd-pet-banner-content-box .wd-pet-banner-meta > span {
  position: relative;
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-500);
  line-height: 34px;
  margin-bottom: 5px;
}
.wd-pet-banner-content-box .wd-pet-banner-meta > span::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -20px;
  background-image: url(../images/pet-hero-title-vector.png);
  width: 23px;
  height: 22px;
}
.wd-coral-orange .wd-pet-banner-content-box .wd-pet-banner-meta > span {
  color: var(--wd-color-primary);
}
.wd-pet-banner-content-box .wd-pet-banner-meta h1 {
  font-size: 46px;
  font-weight: var(--wd-font-weight-600);
  line-height: 65px;
  margin-bottom: 5px;
}
.wd-pet-banner-content-box .wd-pet-banner-meta p {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 30px;
  color: #555;
  max-width: 350px;
  margin-bottom: 20px;
}
.wd-pet-banner-content-box .wd-pet-banner-meta .wd-ecom-button {
  background-color: var(--wd-color-secondary);
}
.wd-pet-swiper-pagination {
  position: absolute;
  bottom: 30px !important;
  left: unset !important;
  right: 30px;
  width: auto !important;
  text-align: right;
  z-index: 1;
  padding: 6px 11px;
  background-color: var(--wd-color-secondary);
  border-radius: var(--wd-radius-25);
  display: flex;
  align-items: center;
}
.wd-pet-swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: var(--wd-radius-50);
  background-color: var(--wd-color-white);
  opacity: 1;
}
.wd-coral-orange .wd-pet-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--wd-color-primary);
}
.wd-pet-swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  background-color: var(--wd-color-white);
  border-radius: var(--wd-radius-50);
}
/* wd-pet-banner-content-box-end */

/* wd-pet-ad-banner-wrapper-start */
.wd-pet-ad-banner-wrapper {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr;
  gap: 20px;
}
.wd-pet-ad-banner-wrapper .wd-advertise-grid-box {
  height: 400px;
}
.wd-pet-ad-banner-wrapper .wd-advertise-grid-box img {
  border-radius: var(--wd-radius-4);
}
.wd-pet-ad-banner-wrapper .wd-advertise-grid-box .wd-advertise-desc {
  width: 230px;
}
.wd-pet-ad-banner-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-title {
  font-weight: var(--wd-font-weight-500);
  margin-bottom: 5px;
}
.wd-pet-ad-banner-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-offer {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-600);
  color: var(--wd-color-black);
  margin-bottom: 30px;
}
/* wd-pet-ad-banner-wrapper-end */
.wd-pet-customer-support-section .wd-support-section-grid {
  padding-top: 0;
}
.wd-coral-orange .wd-support-section-card span {
  background-color: rgba(247, 108, 72, 0.10);
  color: var(--wd-color-primary);
}
/* wd-pet-latest-trend-section-start */
.wd-pet-latest-trend-section {
  padding: 90px 0;
  background-image: url(../imgs/pet-banner-img.png);
  background-position: center center;
  background-size: cover;
}
.wd-pet-latest-trend-section .wd-ecom-latest-trend-content {
  margin-bottom: 0;
}
.wd-pet-latest-trend-section .wd-ecom-latest-trend-content > span {
  display: inline-block;
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-primary);
  margin-bottom: 15px;
}
.wd-pet-latest-trend-section .wd-ecom-latest-trend-content h2 {
  font-size: 46px;
  font-weight: var(--wd-font-weight-600);
  font-family: "Poppins", sans-serif;
  line-height: 65px;
  margin-bottom: 15px;
}
.wd-pet-ad-banner-grid {
  margin-top: 0;
}
.wd-pet-product-item {
  border-radius: var(--wd-radius-4);
  background: var(--wd-color-light-gray);
}
.wd-pet-product-item:hover {
  transform: translateY(10px);
}
.wd-pet-product-item .wd-pro-desc-container {
  padding: 20px 20px 0 20px;
  margin-top: 0;
  text-align: left;
}
.wd-pet-product-item .wd-pro-desc-container .wd-pro-desc-heading {
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-pet-product-item .wd-pro-desc-container .wd-pro-count {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  color: #555;
}
.wd-pet-product-item .wd-pro-img-container {
  margin-top: 15px;
  height: 169px;
  align-items: flex-end;
}
.wd-pet-product-item .wd-pro-img-container img {
  border-radius: 0 0 4px 4px;
}
/* wd-pet-latest-trend-section-end */
.wd-coral-orange .wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-icon span {
  color: var(--wd-color-primary);
}
.wd-coral-orange .wd-glasses-search-bar .wd-glasses-search-box .wd-ecom-btn-svg {
  background-color: var(--wd-color-primary);
}
.wd-coral-orange .wd-social-links li a:hover {
  background-color: var(--wd-color-primary);
}
.wd-coral-orange .wd-address-box .wd-address-icon span {
  color: var(--wd-color-primary);
}
.wd-coral-orange .wd-copywrite-tag {
  color: var(--wd-color-white);
}

/*=========== Pet Home Page End ==============*/

/*=========== Cloth Fashion Home Page Start ==============*/

/* wd-fashion-top-bar-section-start */
.wd-fashion-top-bar-section {
  background-color: var(--wd-color-black);
}
.wd-cherry-red .wd-brcategory-header .sb-menu .navbar-items a:hover, 
.wd-cherry-red .wd-brcategory-header .sb-menu .navbar-items a:focus, 
.wd-cherry-red .wd-brcategory-header .sb-menu .navbar-items a:active {
  color: var(--wd-color-cherry-red) !important;
}
/* wd-fashion-top-bar-section-end */

/* wd-fashion-banner-content-box-start */
.wd-fashion-banner-content-box .wd-pet-banner-meta {
  width: 560px;
}
.wd-fashion-banner-content-box .wd-pet-banner-meta > span {
  font-weight: var(--wd-font-weight-400);
  margin-bottom: 15px;
}
.wd-fashion-banner-content-box .wd-pet-banner-meta > span::before {
  content: none;
}
.wd-fashion-banner-content-box .wd-pet-banner-meta h1 {
  font-size: 42px;
  font-weight: var(--wd-font-weight-500);
  line-height: 62px;
  margin-bottom: 20px;
}
.wd-fashion-swiper-pagination {
  position: absolute;
  bottom: 30px !important;
  left: unset !important;
  right: 30px;
  width: auto !important;
  text-align: right;
  z-index: 1;
  padding: 0;
  gap: 6px;
  background-color: transparent;
  border-radius: var(--wd-radius-25);
  display: flex;
  align-items: center;
}
.wd-fashion-swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: var(--wd-radius-50);
  background-color: var(--wd-color-black);
  opacity: 1;
}
.wd-cherry-red .wd-fashion-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--wd-color-primary);
}
.wd-fashion-swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--wd-color-black);
  background-color: transparent;
  border-radius: var(--wd-radius-50);
}
.wd-cherry-red .wd-fashion-swiper-pagination .swiper-pagination-bullet-active::before {
  border-color: var(--wd-color-primary);
}
/* wd-fashion-banner-content-box-end */
.wd-cherry-red .wd-footer-contact-section .wd-footer-contact-detail-section svg {
  color: var(--wd-color-cherry-red);
}
.wd-cherry-red .wd-footer-desc-section .wd-company-info-desc-list .wd-desc-item a svg {
  color: var(--wd-color-cherry-red);
}
.wd-cherry-red .wd-copywrite-tag {
  color: var(--wd-color-cherry-red);
}
.wd-footer-section-newsletter-form .wd-simple-secondary-btn {
  border: 0;
  padding: 15px 30px;
}
.wd-cherry-red .wd-footer-section-newsletter-form .wd-simple-secondary-btn {
  background-color: var(--wd-color-cherry-red);
  color: var(--wd-color-white);
}
/* wd-fashion-popular-categories-section-start */
.wd-fashion-title-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.wd-fashion-section-heading {
  font-size: var(--wd-font-size-32);
  font-weight: var(--wd-font-weight-500);
  line-height: 45px;
  color: var(--wd-color-black);
}
.wd-fashion-section-para {
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-400);
  line-height: 35px;
  color: #6D6D6D;
}
.wd-fashion-view-all-btn {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: 24px;
  color: #333;
}
.wd-cloth-category-product-item .wd-pro-img-container {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: var(--wd-radius-50);
}
.wd-cloth-category-product-item .wd-pro-desc-heading {
  font-size: var(--wd-font-size-16);
  color: var(--wd-color-black);
  margin-bottom: 5px;
}
.wd-cloth-category-product-item .wd-dropdown-products {
  display: inline-block;
  font-size: var(--wd-font-size-12);
  font-weight: var(--wd-font-weight-400);
  color: #555;
  line-height: 18px;
}
/* wd-fashion-popular-categories-section-end */

/* wd-cloth-fashion-product-start */
.wd-fashion-title-section.wd-center-align-title {
  align-items: center;
}
.wd-fashion-title-section .wd-title-tags-list .wd-title-tag {
  border-radius: var(--wd-radius-4);
}
.wd-cherry-red .wd-fashion-title-section .wd-title-tags-list .wd-title-tag:hover,
.wd-cherry-red .wd-fashion-title-section .wd-title-tags-list .wd-title-tag.active {
  background-color: var(--wd-color-cherry-red);
  color: var(--wd-color-white);
}
.wd-cloth-fashion-product .wd-pro-img-container {
  height: 370px;
}
.wd-cloth-fashion-product .wd-pro-img-container a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--wd-radius-4);
}
.wd-cloth-fashion-product:hover .wd-pro-img-container .wd-pro-quick-actions {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.wd-cloth-fashion-product .wd-pro-img-container .wd-pro-quick-actions a {
  border-radius: var(--wd-radius-50);
}
.wd-cherry-red .wd-cloth-fashion-product .wd-pro-img-container .wd-pro-quick-actions a:hover {
  background-color: var(--wd-color-cherry-red);
  color: var(--wd-color-white);
}
.wd-cloth-fashion-product .wd-pro-hover-btn {
  bottom: 20px;
  left: 30px;
  right: 30px;
  padding: 8px 12px;
  font-size: var(--wd-font-size-14);
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 1;
}
.wd-cherry-red .wd-cloth-fashion-product .wd-pro-hover-btn {
  background-color: var(--wd-color-cherry-red);
  color: var(--wd-color-white);
}
.wd-cloth-fashion-product .wd-pro-img-container .wd-card-tags-wrapper {
  right: unset;
  left: 10px;
}
.wd-cloth-fashion-product .wd-pro-desc-container {
  text-align: left;
  margin-top: 20px;
}
.wd-cloth-fashion-product .wd-pro-desc-container .wd-pro-item-rating {
  justify-content: flex-start;
}
.wd-cloth-fashion-product .wd-pro-desc-heading {
  font-size: var(--wd-font-size-16);
}
.wd-cloth-fashion-product .wd-fea-pro-price,
.wd-cloth-fashion-product:hover .wd-fea-pro-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.wd-cloth-fashion-product .wd-fea-pro-price .wd-pro-discounted-price {
  color: var(--wd-color-cherry-red);
}
.wd-cloth-fashion-product .wd-product-color-variations {
  position: unset;
  transform: unset;
  opacity: 1;
  visibility: visible;
  background-color: transparent;
  padding: 0;
  margin-top: 10px;
}
/* wd-cloth-fashion-product-end */

/* wd-cloth-fashion-deal-section-start */
.wd-cloth-fashion-deal-section {
  padding: 105px 0;
  background-image: url(../imgs/cloth-fashion-deal-bg.png);
  background-size: cover;
}
.wd-cloth-fashion-deal-section .wd-ecom-latest-trend-content {
  margin-bottom: 0;
}
.wd-cloth-fashion-deal-section .wd-ecom-latest-trend-content > span {
  display: inline-block;
  font-size: var(--wd-font-size-22);
  font-weight: var(--wd-font-weight-400);
  color: var(--wd-color-coral-orange);
}
.wd-cloth-fashion-deal-section .wd-ecom-latest-trend-content h2 {
  font-size: 42px;
  font-weight: var(--wd-font-weight-500);
  font-family: "Poppins", sans-serif;
  line-height: 62px;
  margin-bottom: 0;
}
.wd-cloth-fashion-deal-section .wd-ecom-latest-trend-content p {
  max-width: 430px;
  margin: 0 auto 30px auto;
}
.wd-cloth-fashion-deal-section .wd-deal-countdown-desc {
  margin-bottom: 30px;
}
/* wd-cloth-fashion-deal-section-end */

/* wd-cloth-fashion-ad-wrapper-start */
.wd-cloth-fashion-ad-wrapper {
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}
.wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box {
  height: 280px;
}
.wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box .wd-ecom-ad-content-box {
  justify-content: center;
  right: 30px;
  max-width: 250px;
}
.wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box .wd-ecom-ad-content-box.wd-ecom-ad-content-left {
  left: 30px;
}
.wd-cloth-fashion-ad-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box small {
  font-weight: var(--wd-font-weight-500);
  font-family: "Poppins", sans-serif;
}
.wd-cloth-fashion-ad-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
  font-size: var(--wd-font-size-24);
  font-weight: var(--wd-font-weight-500);
  font-family: "Poppins", sans-serif;
  line-height: 36px;
  margin-bottom: 20px;
}
/* wd-cloth-fashion-ad-wrapper-end */

/* wd-announcement-bar-start */
.wd-announcement-bar {
  background-color: var(--wd-color-black);
  color: var(--wd-color-white);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
}
.wd-announcement-scroll {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wd-announcement-item {
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-400);
  display: inline-flex;
  align-items: center;
}
.wd-announcement-icon {
  color: var(--wd-color-white);
  margin: 0 45px;
  font-size: var(--wd-font-size-24);
}
/* wd-announcement-bar-end */

/*=========== Cloth Fashion Home Page End ==============*/

/*=========== wishlist Page Start ==============*/

/* wd-wishlist-section-start */
.wd-wishlist-items-wrapper .wd-cart-product-list {
  padding: 20px;
  border: 1px solid #d2d2d2;
  border-radius: var(--wd-radius-4);
  margin-bottom: 20px;
}
.wd-wishlist-items-wrapper .wd-cart-product-list:last-child {
  margin-bottom: 0;
}
.wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-pro-name {
  width: 35%;
}
.wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-price {
  width: 30%;
}
.wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-price p {
  font-size: var(--wd-font-size-14);
  color: var(--wd-color-text);
  line-height: 22px;
}
.wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-total-price {
  width: 25%;
  text-align: center;
}
.wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-delete-box {
  width: 10%;
}
/* wd-wishlist-section-end */

/* wd-social-tags-box-start */
.wd-social-tags-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background-color: var(--wd-color-light-gray);
  border: 1px solid #dcdcdc;
  border-radius: var(--wd-radius-4);
}
.wd-social-tags-box .wd-tags-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.wd-blog-grid-section .wd-social-tags-box .wd-tags-list,
.wd-blog-grid-section .wd-social-tags-box .wd-social-links {
  padding-left: 0 !important;
  margin-bottom: 0;
}
.wd-social-tags-box .wd-tags-list li {
  margin-right: 20px;
}
.wd-social-tags-box .wd-tags-list li a {
  font-size: var(--wd-font-size-16);
  color: #6D6D6D;
  transition: 0.3s ease-in-out;
}
.wd-social-tags-box .wd-tags-list li a:hover {
  color: var(--wd-color-black);
}
.wd-social-tags-box .wd-social-links {
  list-style-type: none;
}
.wd-social-tags-box .wd-social-links li a {
  width: 30px;
  height: 30px;
  background-color: var(--wd-color-white);
  border: 1px solid #e6e6e6;
}
.wd-social-tags-box .wd-social-links li a:hover {
  background-color: var(--wd-color-primary);
  border-color: var(--wd-color-primary);
}
.wd-social-tags-box .wd-social-links li a svg,
.wd-social-tags-box .wd-social-links li a:hover svg {
  color: var(--wd-color-black);
}
/* wd-social-tags-box-end */

/*=========== wishlist Page End ==============*/

.wd-empty-cart-box {
  text-align: center;
}
.wd-empty-cart-box img {
  margin-bottom: 15px;
}
.wd-empty-cart-box h3 {
  font-size: var(--wd-font-size-18);
  margin-bottom: 10px;
}
.wd-empty-cart-box p {
  font-size: var(--wd-font-size-14);
  color: var(--wd-color-text);
  line-height: 24px;
}


/*=========== Single Page Start ==============*/
.wd-about-product-content-box .variations_form .variations {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.wd-about-product-content-box .variations_form .variations th {
  padding: 0 10px 0 0;
  font-size: 18px;
  font-weight: 500;
}
.wd-about-product-content-box .variations_form .variations select {
  margin-right: 10px;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 340px;
  padding: 5px 44px 5px 14px; 
  background:
    /* arrow */
    url("data:image/svg+xml;utf8,\ <svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") 
    no-repeat right 12px center / 18px 18px,
    /* subtle gradient */
    linear-gradient(#ffffff, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.04);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
  cursor: pointer;
}
.wd-about-product-content-box .variations_form .variations .reset_variations {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  padding: 9px 18px;
  background-color: var(--wd-color-black);
  border-color: var(--wd-color-black);
  color: var(--wd-color-white);
  border-radius: 4px;
  display: inline-block;
}
.wd-about-product-content-box .variations_form .single_variation_wrap .price {
  color: #333;
  font-size: var(--wd-font-size-20);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
}
.wd-about-product-content-box .variations_form .woocommerce-variation-add-to-cart {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.wd-about-product-content-box .variations_form .woocommerce-variation-add-to-cart .quantity input {
  width: 120px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 4px;
}
.wd-about-product-content-box .variations_form .woocommerce-variation-add-to-cart .quantity input:focus-visible {
  outline: none;
}
.wd-about-product-content-box .variations_form .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  display: inline-block;
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 22px;
  padding: 9px 18px;
  background-color: var(--wd-color-primary);
  border-color: var(--wd-color-primary);
  border: 1px solid var(--wd-color-primary);
  color: var(--wd-color-black);
  border-radius: 4px;
}
.wd-about-product-content-box .variations_form .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover,
.wd-about-product-content-box .variations_form .woocommerce-variation-add-to-cart .single_add_to_cart_button.disabled,
.wd-about-product-content-box .variations_form .woocommerce-variation-add-to-cart .single_add_to_cart_button.disabled:hover {  
  background-color: var(--wd-color-primary);
  border-color: var(--wd-color-primary);
  color: var(--wd-color-black);
}

.wd-ecom-ad-grid-box.wd__custom_banner {
  background-size: cover;
}

/* ---------------- products widget ------------------- */

.wd-product-grid.columns_per_row_2 {
  grid-template-columns: repeat(2, 1fr);
}
.wd-product-grid.columns_per_row_3 {
  grid-template-columns: repeat(3, 1fr);
}
.wd-product-grid.columns_per_row_4 {
  grid-template-columns: repeat(4, 1fr);
}
.wd-product-grid.columns_per_row_5 {
  grid-template-columns: repeat(5, 1fr);
}
.wd-product-grid.columns_per_row_6 {
  grid-template-columns: repeat(6, 1fr);
}


.wd-product-grid.sub_columns_per_row_3 {
  grid-template-columns: repeat(3, 1fr);
}
.wd-product-grid.sub_columns_per_row_2 {
  grid-template-columns: repeat(2, 1fr);
}


.wd-search-product-grid-wrapper.columns_per_row_6 {
  grid-template-columns: repeat(6, 1fr);
}
.wd-search-product-grid-wrapper.columns_per_row_5 {
  grid-template-columns: repeat(5, 1fr);
}
.wd-search-product-grid-wrapper.columns_per_row_4 {
  grid-template-columns: repeat(4, 1fr);
}
.wd-search-product-grid-wrapper.columns_per_row_3 {
  grid-template-columns: repeat(3, 1fr);
}
.wd-search-product-grid-wrapper.columns_per_row_2 {
  grid-template-columns: repeat(2, 1fr);
}
.wd-search-product-grid-wrapper.columns_per_row_1 {
  grid-template-columns: repeat(1, 1fr);
}



/* My Account Page CSS Start */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 4px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding-left: 0;
  list-style-type: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  padding: 10px 20px;
  display: inline-block;
  color: #000;
  width: 100%;
  border-radius: var(--wd-radius-4);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: var(--wd-color-light-gray);
}
.woocommerce-account .woocommerce-MyAccount-content a {
  color: var(--wd-color-black);
  transition: 0.3s ease-in-out;
}
.woocommerce-account .woocommerce-MyAccount-content a:hover {
  color: var(--wd-color-primary);
}
.woocommerce-account .woocommerce-MyAccount-content p {
  line-height: 30px;
}
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--wd-color-primary);
  background-color: var(--wd-color-light-gray);
}
.woocommerce-info:focus,
.woocommerce-message:focus {
  box-shadow: none;
  outline: 0;
}
.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--wd-color-primary);
}
.woocommerce-account .woocommerce-MyAccount-content .addresses {
  margin-top: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
  margin-bottom: 12px;
}
.woocommerce-account .woocommerce-MyAccount-content .addresses address {
  padding: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 4px;
}
.woocommerce form h2 {
  margin-bottom: 12px;
}
.woocommerce form .form-row label {
  color: var(--wd-color-black);
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  height: 50px;
  padding: 15px 20px;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
  color: #555555;
  border: 0;
}
.woocommerce form .select2-container .select2-dropdown, .select2-container .select2-selection {
  height: 50px;
  border: 0;
  background-color: var(--wd-color-light-gray);
}
.woocommerce form .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 34px;
  padding: 8px 20px;
  font-size: var(--wd-font-size-14);
  color: #555555;
}
.woocommerce button.button,
.woocommerce button.button:hover,
.woocommerce a.button,
.woocommerce a.button:hover,
.woocommerce button.single_add_to_cart_button,
.woocommerce button.single_add_to_cart_button:hover {
  background-color: var(--wd-color-primary) !important;
  border-color: var(--wd-color-primary);
  color: var(--wd-color-black) !important;
  font-weight: var(--wd-font-weight-500);
  padding: 6px 10px 6px 22px;
  border-radius: var(--wd-radius-25);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  margin-top: 15px;
}
.woocommerce button.button::after,
.woocommerce a.button::after {
  content: "arrow_right_alt";
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'wght' 400, 'FILL' 0, 'GRAD' 0, 'opsz' 24;
  background-color: var(--wd-color-black);
  color: var(--wd-color-white);
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: var(--wd-radius-50);
  text-align: center;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce form p:has(.button) {
  margin-top: 15px;
}
.woocommerce form fieldset {
  margin-top: 20px;
}
.woocommerce form fieldset legend {
  font-weight: var(--wd-font-weight-500);
}
.woocommerce-account .woocommerce h2:has(~ .woocommerce-form-login) {
  max-width: 500px;
  margin: 0 auto 30px auto;
}
.woocommerce-account .woocommerce .woocommerce-form-login {
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  max-width: 500px;
  margin: 0 auto 30px auto;
}
.woocommerce-account .woocommerce .woocommerce-form-login .lost_password {
  margin-top: 15px;
}
.woocommerce-account .woocommerce .woocommerce-form-login .lost_password a {
  color: var(--wd-color-black);
}
.woocommerce .woocommerce-form-login .form-row:has(.woocommerce-form-login__rememberme) {
  display: flex;
  flex-direction: column;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 3px;
  width: 100%;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
  border: 1px solid rgba(0, 0, 0, 0.10);
}
.woocommerce .woocommerce-error a, .woocommerce .woocommerce-info a, .woocommerce .woocommerce-message a {
  color: var(--wd-color-black);
}
.woocommerce .lost_reset_password {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  max-width: 700px;
  padding: 20px;
  margin: 40px auto 0 auto;
}
.woocommerce .lost_reset_password::before,
.woocommerce .woocommerce-ResetPassword::before {
  content: "Lost Your Password" !important;
  font-size: 24px;
  position: absolute;
  top: -50px;
  left: 0;
  font-weight: 500;
}
.woocommerce .woocommerce-ResetPassword::before {
  content: "Reset Password" !important;
}
.woocommerce .lost_reset_password .form-row-first,
.woocommerce .lost_reset_password .form-row-last {
  width: 100%;
  margin-top: 12px;
  padding: 0;
  margin-bottom: 0;
}
.woocommerce-account .col2-set .col-1,
.woocommerce-account .col2-set .col-2 {
  float: unset;
  width: 100%;
}
/* My Account Page CSS End */

/* Cart & Checkout Page CSS Start */
section:has(.wc-block-components-sidebar-layout.wc-block-cart) {
  padding: 80px 0 20px 0;
}
.woocommerce-cart .wc-block-cart table.wc-block-cart-items {
  margin-bottom: 0;
  border-bottom: 0;
}
.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main,
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  width: calc(100% - 340px);
  padding: 20px;
  padding-right: 20px; 
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
}
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  width: calc(100% - 460px);
}
.woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
  width: 340px;
  padding-left: 20px;
}
.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
  width: 440px;
  padding-left: 20px;
}
.woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
  padding: 20px 20px 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
}
.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main table.wc-block-cart-items .wc-block-cart-items__header th {
  font-weight: var(--wd-font-weight-600);
}
.woocommerce-cart .wc-block-cart table.wc-block-cart-items td.wc-block-cart-item__image img {
  border-radius: var(--wd-radius-4);
}
.woocommerce-cart .wc-block-cart table.wc-block-cart-items td .wc-block-components-product-name,
.woocommerce-cart .wc-block-cart table.wc-block-cart-items td .wc-block-cart-item__prices {
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: #333;
}
.woocommerce-cart .wc-block-cart table.wc-block-cart-items td .wc-block-cart-item__prices {
  display: inline-block;
  margin-right: 10px;
}
.woocommerce-cart .wc-block-cart table.wc-block-cart-items td .wc-block-cart-item__prices .wc-block-components-product-price__regular {
  color: #aaa;
  font-size: var(--wd-font-size-14);
}
.woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-badge,
.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-sale-badge {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-400);
  line-height: 18px;
  padding: 4px 10px;
  color: #3D770B;
  background-color: #E9F6E7;
  border-radius: var(--wd-radius-2);
  border: 0;
  text-transform: capitalize;
}
.woocommerce-cart .wc-block-cart table.wc-block-cart-items td .wc-block-components-product-metadata {
  color: #6d6d6d;
}
.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {
  display: flex;
  gap: 20px;
}
.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 0;
  background-color: var(--wd-color-light-gray);
  padding: 0 10px;
  width: 102px;
}
.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector::after {
  content: none;
}
.woocommerce-cart .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  height: 44px;
  font-weight: var(--wd-font-weight-500);
}
.woocommerce-cart .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  min-width: 26px !important;
  width: 26px;
  height: 26px;
  border-radius: var(--wd-radius-50);
  background-color: var(--wd-color-white);
  color: var(--wd-color-black);
  border: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  font-weight: var(--wd-font-weight-500);
  opacity: 1;
}
.woocommerce-cart .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:focus,
.woocommerce-cart .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus {
  box-shadow: unset;
}
.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  color: var(--wd-color-black);
  text-decoration: unset;
}
.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link::before {
  content: "delete";
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'wght' 400, 'FILL' 0, 'GRAD' 0, 'opsz' 24;
  margin-right: 5px;
  font-size: 16px;
  position: relative;
  top: 3px;
}
.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-600);
  line-height: 24px;
  color: #333;
}
.woocommerce-cart .wc-block-cart__main .wc-block-cart-items {
  border-bottom: 0;
  margin-bottom: 0;
}
.woocommerce-cart .wc-block-cart .wc-block-cart__totals-title {
  font-weight: var(--wd-font-weight-600) !important;
}
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: var(--wd-font-size-18);
  font-weight: var(--wd-font-weight-500);
}
.woocommerce-checkout .wc-block-components-totals-item__label {
  font-weight: var(--wd-font-weight-500);
}
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-weight: var(--wd-font-weight-600);
}
.woocommerce-cart .wc-block-cart__submit-button {
  background-color: var(--wd-color-primary);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
  text-decoration: unset;
  padding: 10px 20px;
  line-height: 18px;
  height: 44px;
  border-radius: var(--wd-radius-4);
}
.woocommerce-cart .wc-block-cart__submit-button:focus {
  box-shadow: none !important;
  outline: 0 !important;
}
.woocommerce-cart .wc-block-components-text-input input[type="text"],
.woocommerce-checkout .wc-block-components-text-input input[type="text"],
.woocommerce-cart .wc-block-components-text-input input[type="text"]:focus,
.woocommerce-checkout .wc-block-components-text-input input[type="text"]:focus {
  border: 1px solid rgba(0, 0, 0, 0.10);
}
.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button,
.woocommerce-checkout .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
  background-color: var(--wd-color-primary);
  font-size: var(--wd-font-size-14);
  text-decoration: unset;
  padding: 10px 20px;
  line-height: 18px;
  border: 1px solid var(--wd-color-primary);
  border-radius: var(--wd-radius-4);
}
.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button:focus,
.woocommerce-checkout .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button:focus {
  box-shadow: none !important;
  outline: 0 !important;
}
.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button .wc-block-components-button__text,
.woocommerce-checkout .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button .wc-block-components-button__text {
  color: var(--wd-color-black);
  opacity: 1 !important;
  font-weight: var(--wd-font-weight-500);
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="email"],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="text"],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="tel"],
.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select,
.woocommerce-checkout .wc-block-checkout__add-note .wc-block-components-textarea {
  background-color: var(--wd-color-light-gray);
  color: #555;
  border: 1px solid var(--wd-color-light-gray);
}
.woocommerce-checkout .wc-block-checkout__add-note .wc-block-components-textarea {
  resize: unset;
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="email"]:focus,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="text"]:focus,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="tel"]:focus,
.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select:focus,
.woocommerce-checkout .wc-block-checkout__add-note .wc-block-components-textarea:focus {
  border-color: var(--wd-color-light-gray);
  box-shadow: none;
}
.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:focus {
  outline: unset;
}
.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]::after {
  content: none;
}
.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__mark {
  top: 2px;
  left: 1px;
}
.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  background-color: var(--wd-color-primary);
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-black);
  text-decoration: unset;
  padding: 10px 20px;
  line-height: 18px;
  height: 44px;
  border: 0;
  border-radius: var(--wd-radius-4);
}
.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:focus {
  box-shadow: none;
  outline: 0;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10); 
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item:last-child {
  border-bottom: 0; 
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
  border-radius: var(--wd-radius-4);
}
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-product-name,
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
  font-size: var(--wd-font-size-14);
  font-weight: var(--wd-font-weight-500);
  line-height: 24px;
  color: #333;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
  padding-top: 0px;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices .wc-block-components-product-price__regular {
  color: #aaa;
  font-size: var(--wd-font-size-12);
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-product-metadata {
  color: #6d6d6d;
  font-size: var(--wd-font-size-12);
  margin-top: -6px;
}
.woocommerce-checkout .wc-block-components-radio-control--highlight-checked::after {
  border: 0 !important;
}
.woocommerce-checkout .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option {
  margin-top: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: var(--wd-radius-4);
  box-shadow: none;
  color: #6d6d6d;
  font-size: var(--wd-font-size-16);
}
.woocommerce-checkout .wc-block-components-checkout-step__description,
.woocommerce-checkout .wc-block-components-address-form__address_2-toggle,
.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__label,
.woocommerce-checkout .wc-block-checkout__terms.wc-block-checkout__terms--with-separator .wc-block-components-checkbox__label {
  color: #6d6d6d;
  font-size: var(--wd-font-size-16);
}
.woocommerce-checkout .wc-block-components-checkout-step__description,
.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__label {
  font-size: var(--wd-font-size-14);
}
.woocommerce-checkout .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border: 1px solid var(--wd-color-primary);
}
.woocommerce-checkout .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option::after {
  background-color: transparent;
}
.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option .wc-block-components-radio-control__input {
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.10);
}
.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option .wc-block-components-radio-control__input:focus {
  outline: 0;
}
.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option .wc-block-components-radio-control__input:checked {
  border: 1px solid var(--wd-color-primary);
}
.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control__option .wc-block-components-radio-control__input:checked::before {
  background: var(--wd-color-primary);
}
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-heading {
  margin-bottom: 24px;
}
.woocommerce-cart .wc-block-grid__products .wc-block-grid__product-image img {
  border-radius: var(--wd-radius-4);
}
.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-onsale {
  display: inline-block;
  color: var(--wd-color-white);
  font-size: var(--wd-font-size-12);
  font-style: normal;
  font-weight: var(--wd-font-weight-400);
  line-height: 16px;
  border-radius: var(--wd-radius-2);
  background: #245652;
  padding: 2px 10px;
  text-align: center;
  border: 0;
}
.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-title {
  color: #333;
  font-size: var(--wd-font-size-14);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0;
}
.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price {
  color: #333;
  font-size: var(--wd-font-size-16);
  font-style: normal;
  font-weight: var(--wd-font-weight-500);
  line-height: normal;
  text-decoration: none;
}
.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price ins {
  text-decoration: none;
}
.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price del {
  color: #aaa;
  font-size: var(--wd-font-size-14);
  font-style: normal;
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  text-decoration-line: line-through;
}
.woocommerce-cart .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  background-color: var(--wd-color-primary);
  border-color: var(--wd-color-primary);
  color: var(--wd-color-black);
  font-weight: var(--wd-font-weight-500);
  padding: 6px 10px 6px 22px;
  border-radius: var(--wd-radius-25);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: var(--wd-font-size-16);
}
.woocommerce-cart .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link::after {
  content: "arrow_right_alt";
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'wght' 400, 'FILL' 0, 'GRAD' 0, 'opsz' 24;
  background-color: var(--wd-color-black);
  color: var(--wd-color-white);
  width: 30px;
  height: 30px;
  padding: 2px;
  border-radius: var(--wd-radius-50);
  text-align: center;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Cart & Checkout Page CSS End */

/* wd-search-results */
.wd-search-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--wd-color-white);
  position: absolute;
  top: 100%;
  left: 0;
  max-height: 50vh;
  width: 100%;
  z-index: 10;
}
.wd-search-results-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc var(--wd-color-light-gray);
}
.wd-search-results:has(.wd-btn-primary) {
  padding-bottom: 50px;
}
.wd-search-results .wd-view-all-btn {
  height: auto !important;
  line-height: unset !important;
  padding: 6px 10px 6px 22px !important;
  justify-content: center;
  width: 200px;
  margin: 0 auto;
  position: sticky;
  bottom: 0px;
  text-transform: capitalize;
  cursor: pointer;
}
.wd-search-results:has(.wd-right-col-item) {
  padding: 10px;
  box-shadow: 0px 30px 50px 0 rgba(0, 0, 0, 0.10);
}
.wd-search-results .wd-right-col-item {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.wd-search-results .wd-right-col-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.wd-search-results .wd-right-col-item .wd-pro-desc-heading {
  width: 100%;
}
.wd-search-results .wd-right-col-item .wd-right-col-item-inner {
  height: auto !important; 
}
.wd-search-results .wd-right-col-item .wd-fea-pro-price {
  line-height: 20px;
}
.wd-search-loader {
  text-align: center;
  padding: 10px;
}
.wd-search-loader::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-top: 2px solid #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 5px;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.wd-result-not-found {
  padding: 0 10px;
  font-size: var(--wd-font-size-14);
  color: var(--wd-color-text);
  text-transform: capitalize;
}

/* =============== additional styling ================= */
.hidden {
  display: none !important;
}

/* --- toastify -- */
.toastify {
  min-width: 300px !important;
}
.toast-close {
  float: right !important;
}

/* --- header --- */
.wd-brcategory-header .sb-menu .navbar-items a,  /*original */
.wd-brcategory-header .sb-menu .menu-item a {
  color: #555;
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-400);
  line-height: normal;
  text-transform: capitalize;
  height: 60px;
  line-height: 60px;
  padding-left: 25px !important;
  padding-right: 0;
}
.wd-brcategory-header .sb-menu .navbar-items a:hover,  /*original */
.wd-brcategory-header .sb-menu .navbar-items a:focus,  /*original */
.wd-brcategory-header .sb-menu .navbar-items a:active,  /*original */
.wd-brcategory-header .sb-menu .menu-item a:hover,
.wd-brcategory-header .sb-menu .menu-item a:focus,
.wd-brcategory-header .sb-menu .menu-item a:active {
  color: var(--wd-color-primary) !important;
}

.wd-search-filters-sidebar-with-overlay {
  z-index: 5;
}

.wd-footer-desc-section .wd-company-info-desc-list .wd-desc-item a,  /*original */
.wd-footer-desc-section .wd-company-info-desc-list li a {
  color: #c1c1c1;
}
.wd-copywrite-tag,  /*original */
.wd-copywrite-section .wd-copywrite-text p a {
  color: var(--wd-color-primary);
  font-size: var(--wd-font-size-16);
  font-weight: var(--wd-font-weight-500);
  line-height: 20px;
}
.wd-green-theme .wd-copywrite-section .wd-copywrite-text p a {
  color: var(--wd-color-white);
}

/* ========= shop page ============ */

body.woocommerce
  .wd-search-result-bar-box
  .wd-product-search-result
  .woocommerce-result-count {
  margin: 0 !important;
}
.woocommerce .wd-search-sort-box .woocommerce-ordering {
  margin: 0 !important;
}

/* grid-1 */
.wdProductThumbsItemSlider .swiper-slide {
  width: fit-content;
}
/* grid-2 */
.wd-ecom-product-item .wd-pro-img-container .wp-pro-img-link {
  height: 100%;
  width: 100%;
}

.wd-ecom-product-item .wd-pro-wishlist,
.wd-ecom-product-item .wd-pro-compare,
.wd-ecom-product-item .wd-pro-mobile-cart {
  display: flex;
}

.wd-trending-item-container .wd-pro-wishlist,
.wd-trending-item-container .wd-pro-compare,
.wd-trending-item-container .wd-pro-mobile-cart,
.wd-trending-item-container .wd-pro-quickview {
  display: flex;
  background-color: var(--wd-color-white);
}

/* grid-4 */
.wd-elec-product-item-box .wd-elec-product-img-box a img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* wishlist */
.wd-pro-quick-actions a span.in_wishlist,
.wd-pro-wishlist span.in_wishlist {
  color: red !important;
}
.wd-product-quick-actions-box ul li span.in_wishlist {
  color: red !important;
}

html,
body {
  scroll-behavior: smooth;
}
.wd-cart-item-sidebar {
  z-index: 9999;
}
.wd-cart-sidebar-overlay {
  position: fixed;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spin.circle {
  border-radius: 500px;
}

.elementor-widget-image a:has(img) {
  width: 100%;
}

/* ================ product detail page ===================== */

.woocommerce-tabs.wc-tabs-wrapper {
  margin: 20px 0;
  background-color: var(--wd-color-light-gray);
  border-radius: var(--wd-radius-4);
}
.wd-product-detail-section-wrapper.nosidebar
  .wd-product-detail-content-wrapper {
  width: 100% !important;
}
.wd-advertise-grid-box {
  overflow: hidden;
}
.wd-advertise-grid-box a:not(.wd-ecom-button) {
  height: 100% !important;
}

.wd-detail-product-resposnse-message-box.hidden {
  display: none;
}

.wd-detail-product-resposnse-message-box .error-msg {
  background: #ffe9e9;
  border: 1px solid #ffb1b1;
  color: #b10000;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

/* ----- review ----- */
.wd-pro-star-rating span {
  cursor: pointer;
}
.wd-tab-content p.wd-review-pending-msg {
  font-weight: var(--wd-font-weight-500);
  color: var(--wd-color-primary);
}

/* ---- sidebar ---- */

.wd-right-col-item .wd-right-col-item-inner .wd-off-tag {
  display: none !important;
}

.wd-simple-secondary-btn.copy-url-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ============= compare ============== */

.wd-compare-item-img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.wd-compare-item-modal .wd-compare-items-wrapper.loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wd-compare-item-modal #wd-empty-comparelist-message,
.wd-compare-item-modal .wd-compare-items-wrapper#wd-compare-modal-content {
  min-height: 300px;
}
.wd-compare-item-modal #wd-empty-comparelist-message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wd-compare-item-heading-sidebar .wd-ad-compare-btn-box {
  height: 283px;
}
/* .wd-compare-item-detail-bar .wd-compare-item-meta-box h3 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
} */
.wd-compare-item-detail-bar .wd-compare-item-box.wd-compare-category a {
  color: #555;
}

/* ============== wishlist page ================== */

.wd-cart-product-list .wd-cart-total-price span.wd-pro-actual-price,
.wd-cart-product-list .wd-cart-total-price span.wd-pro-actual-price * {
  color: #aaa;
}
.wd-cart-product-list .wd-cart-pro-name a h6 {
  color: #333;
}

/* ========= quick view ========= */

.modal .wd-product-quick-actions-box ul {
  gap: 15px;
}

/* ================== elementor widgets ================== */

.wd-ecom-ad-grid-box {
  padding: 25px;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
}

/* =================== grocery home =================== */

.grocery__home section.py-3 {
  padding: 0 !important;
}

.grocery__home .wd-product-swiper-navigation {
  top: -50px !important;
}
.grocery__home .wd-section-title {
  margin-bottom: 20px !important;
}
.grocery__home .wd-section-title .wd-pro-heading {
  font-size: var(--wd-font-size-24) !important;
}

.grocery__home .wd-section-title {
  margin-bottom: 20px !important;
}
.grocery__home .wd-section-heading {
  margin-bottom: 20px !important;
}
.grocery__home .wd-title-tags-section h3:has(~ .wd-title-tags-list) {
  margin-bottom: 0px !important;
}

.grocery__home section {
  padding: 0 !important;
}

.grocery__home.grocery__slider .wd-container{
  padding: 0 !important;
}

.wd-flex-row{
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
  width: 100% !important;
}
.wd-my-0{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}





@media (max-width: 767px){
  .wd-flex-row{
    text-align: center;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px;
  }
}


/* =================== home 01 =================== */

.wd-product-hero-grid {
  border-top-right-radius: 500px;
    border-top-left-radius: 500px;
    overflow: hidden;
}
.wd-product-hero-grid .wd-product-hero-image {
  height: 300px;
}
.wd-product-hero-grid .wd-product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top__no_padding .wd-product-swiper-navigation{
  top: -70px;
}
.dark__advertisement .wd-desc-offer,
.dark__advertisement .wd-desc-title{
  color: white !important;
}

/* =================== home 02 =================== */

.wdCollectionHeroSlider .wd-btn-primary{
  display: inline-flex !important;
}
.wd-auto-motor-product-item .wd-pro-img-container{
  overflow: hidden;
}
.wd-cloth-category-product-item .wd-pro-img-container{
  overflow: hidden;
}
.wd-advertise-grid-box img {
  height: 100% !important;
}

.wd-trending-item-container:hover .wd-fea-pro-price{
  display: block !important;
}



/* =================== home 04 (ecom) =================== */

.ecom__timer_products section{
  padding-top: 0;
}

/* =================== home 05 (electronics) =================== */

.wd-elec-product-item-box:hover .wd-fea-pro-price{
  display: block !important;
}

.no__padding_section section{
  padding: 0;
}
.hide__category_tabs .wd-title-tags-list{
  display: none !important;
}

/* =================== home 07 (autostore) =================== */
.wd-auto-hero-content-wrapper .wd-advertise-grid-box .wd-ecom-button{
  height: fit-content !important;
}
.wd-auto-hero-banner-box .auto-hero-main-img{
  object-fit: cover;
}

/* -- product grid-8 -- */
.wd-pro-category a{
  color: #555;
}




/* ==================== footer 3 ===================== */
.wd-address-box .wd-address-icon svg{
  font-size: var(--wd-font-size-40);
  color: var(--wd-color-primary);
}




/*Responsive Design of the Home Pages*/

@media (min-width: 576px) {
  .wd-default-modal .modal-dialog {
    max-width: 1002px;
  }
  .wd-compare-item-modal .modal-dialog {
    max-width: 1170px;
  }
}
@media (min-width: 1400px) and (max-width: 1799.98px) {
  .wd-brcategory-header::before {
    width: 20%;
  }
  .wd-ecom-header .sb-menu {
    margin-left: 100px;
  }
  .wd-ecom-header .wd-header-input-mail-section input {
    width: 350px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .wd-ecom-header .wd-header-input-mail-section input {
    display: none;
  }
  .wd-nav-container .wd-header-input-mail-section .wd-search-icon {
    position: unset;
  }
}
@media (min-width: 1400px) and (max-width: 1499.98px) {
  .wd-hero-carousel {
    margin: 0px 25px 0 25px;
  }
  .wd-dropdown-swiper-slider .dropdown-swiper-button-prev {
    left: -30px;
  }
  .wd-dropdown-swiper-slider .dropdown-swiper-button-next {
    right: -30px;
  }
  .wd-shop-by-category-item .wd-shop-by-category-rec,
  .wd-shop-by-category-item:hover .wd-shop-by-category-rec {
    width: 100%;
  }
  .ecommerce-advertise-swiper-button-prev {
    left: -10px;
  }
  .ecommerce-advertise-swiper-button-next {
    right: -10px;
  }
  .wd-about-us-experience-cont {
    left: 20px;
  }
  .auto-motor-swiper-button-prev {
    left: 0;
  }
  .auto-motor-swiper-button-next {
    right: 0;
  }
}
/*extra-large devices*/
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /*==========Home Page 1==============*/
  /*header*/
  .wd-header-primary .sb-menu .navbar-items a {
    padding: 0px 18px;
  }
  /*wd-featured-product*/
  .wd-product-item .wd-pro-hover-btn {
    padding: 8px 10px;
  }
  .wd-second-collection .wd-second-collection-rec-svg svg,
  .wd-third-collection .wd-third-collection-rec-svg svg {
    max-width: 100%;
    top: -1px;
  }
  /*sale-section*/
  .wd-right-col-item .wd-pro-desc-heading {
    width: 100%;
  }
  .wd-hero-carousel {
    margin: 0px 25px 0 25px;
  }
  .wd-header-primary .sb-menu .search-icon {
    margin-left: 40px;
  }
  /*==========Home Page 1 End==============*/
  /*==========Home Page 2 Start==============*/
  .wd-brcategory-header::before {
    width: 20%;
  }
  .wd-brcategory-header .sb-menu ul {
    padding-right: 15px;
  }
  .wd-brcategory-header .sb-menu .navbar-items a {
    font-size: var(--wd-font-size-14);
    padding-left: 15px !important;
  }
  .wd-brcategory-container .wd-customer-service {
    gap: 12px;
    padding-left: 12px;
  }
  .wd-customer-service .wd-daily-deal a {
    padding-right: 10px;
  }
  .wd-dropdown-swiper-slider .dropdown-swiper-button-prev {
    left: -30px;
  }
  .wd-dropdown-swiper-slider .dropdown-swiper-button-next {
    right: -30px;
  }
  .wd-ecommerce-product-item-desc-outer .wd-btn-secondary {
    padding: 6px 10px;
  }
  .wd-shop-by-category-item .wd-shop-by-category-rec,
  .wd-shop-by-category-item:hover .wd-shop-by-category-rec {
    width: 100%;
  }
  .wd-deal-section-desc-inner {
    padding: 39px 50px 39px 160px;
  }
  /*==========Home Page 2 End==============*/
  .wd-ecom-header .wd-header-input-mail-section input[type="email"] {
    display: none;
  }
  .wd-nav-container .wd-header-input-mail-section .wd-search-icon {
    position: unset;
  }
  .wd-ecom-header .sb-menu {
    margin-left: auto;
  }
  .wd-grocery-hero-grid-wrapper .wd-ecom-ad-grid-box {
    height: 169px;
  }
  .wd-grocery-hero-grid-wrapper .wd-grocery-main-banner .wd-ecom-ad-grid-box,
  .wd-grocery-hero-grid-wrapper .wd-advertise-grid-box {
    height: 358px;
  }
  .wd-trending-item-section-grid .wd-advertise-sidebar {
    width: 269px;
  }
  .wd-grocery-trending-items-section .wd-trending-item-section-grid .wd-trending-item-left-section {
    width: calc(100% - 289px);
  }
  .wd-trending-item-section-grid .wd-advertise-sidebar .wd-advertise-grid-box {
    height: auto;
  }
  .wd-grocery-trending-items-section .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
    height: 200px;
  }
  .wd-trending-mini-product-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
  .wdCategoryBannerSlider .wd-ecommerce-advertise-box {
    height: 132px;
  }
  .wd-product-detail-content-wrapper {
    width: calc(100% - 300px);
  } 
  .wd-product-detail-content-sidebar {
    width: 280px;
  }
  .wd-detail-product-call-to-action-box {
    gap: 10px;
  }
  .wd-product-specs-item-box .wd-product-spec-name {
    font-size: var(--wd-font-size-14);
    padding: 10px;
    width: 150px;
  }
  .wd-product-specs-item-box .wd-product-spec-detail {
    font-size: var(--wd-font-size-12);
    padding: 10px;
    width: calc(100% - 150px);
  }
  .wd-customer-review-box-wrapper {
    width: 280px;
  }
  .wd-customer-reviews-wrapper .wd-customer-comments-box {
    width: calc(100% - 300px);
  }
  .wd-customer-rating-box .wd-customer-rating-count {
    font-size: 42px;
    line-height: 32px;
  }
  .wd-customer-rating-box .wd-customer-rating-meta .wd-pro-total-reviews {
    font-size: var(--wd-font-size-12);
  }
  .wd-customer-rating-box .wd-customer-rating-meta .wd-pro-item-rating .wd-pro-star-rating span {
    font-size: var(--wd-font-size-16);
  }
  .wd-search-product-sidebar-wrapper .wd-search-filters-sidebar-with-overlay {
    width: 280px;
  }
  .wd-search-product-sidebar-wrapper .wd-search-product-content-wrapper {
    width: calc(100% - 300px);
  }
  .wd-filter-dropdown-wrapper {
    grid-template-columns: 205px 300px 310px 170px;
    gap: 20px 30px;
    min-width: 1116px;
  }
  .wd-cart-main-area {
    width: calc(100% - 300px);
  }
  .wd-cart-sidebar {
    width: 280px;
  }
  .wd-cart-product-list .wd-cart-pro-name {
    width: 40%;
  }
  .wd-cart-product-list .wd-cart-delete-box {
    width: 20%;
  }
  .wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form {
    width: 450px;
  }
  .wd-elec-advertise-container {
    grid-template-columns: 260px 2fr 260px;
  }
  .wd-elec-left-panel .wd-ecommerce-advertise-box, 
  .wd-elec-right-panel .wd-ecommerce-advertise-box {
    height: 130px;
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box {
    width: 280px;
  }
  .wd-elec-featured-pro-wrapper .wd-elec-product-grid-box {
    width: calc(100% - 580px);
  }
  .wd-glasses-search-bar {
    width: 400px;
  }
  .wd-hero-category-grid-wrapper .wd-ecommerce-advertise-box {
    height: 120px;
  } 
  .wd-glasses-product-wrapper .wd-advertise-grid-box {
    height: 452px;
  }
  .wd-vendor-products-main-wrapper,
  .wd-single-vendor-product-wrapper {
    gap: 20px;
  }
  .wd-vendor-products-main-wrapper .wd-single-vendor-box,
  .wd-single-vendor-product-wrapper .wd-glasses-product-item-box {
    width: calc(50% - 10px);
  }
  .wd-address-section {
    padding: 15px 0;
  }
  .wd-address-box {
    gap: 10px;
  }
  .wd-address-box .wd-address-icon {
    width: 28px;
    height: 28px;
  }
  .wd-address-box .wd-address-icon span {
    font-size: var(--wd-font-size-28);
  }
  .wd-address-box .wd-address-meta small {
    font-size: var(--wd-font-size-12);
  }
  .wd-address-box .wd-address-meta span {
    font-size: var(--wd-font-size-14);
    line-height: 24px;
  }
  .wd-auto-store-header-nav .wd-nav-container .wd-header-input-mail-section input {
    width: 350px;
  }
  .wd-auto-hero-content-wrapper .wd-advertise-grid-box {
    height: 385px;
    width: 280px;
  }
  .wd-auto-hero-content-wrapper .wd-auto-hero-slider-wrapper {
    width: calc(100% - 300px);
  }
  .wd-auto-hero-banner-box {
    height: 385px;
  }
  .wd-auto-popular-picks-wrapper .wd-advertise-grid-box {
    width: 280px;
    height: 400px;
  }
  .wd-auto-popular-picks-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-offer {
    font-size: var(--wd-font-size-28);
  }
  .wd-auto-popular-picks-wrapper .wd-advertise-grid-box .wd-advertise-desc .wd-desc-title {
    font-size: var(--wd-font-size-18);
  }
  .wd-auto-popular-picks-wrapper .wd-auto-popular-picks-container {
    width: calc(100% - 300px);
  }
  .wd-auto-parts-product-list {
    padding: 10px;
    height: 162px;
    gap: 10px;
  }
  .wd-auto-parts-product-list .wd-pro-img-container {
    width: 142px;
    height: 142px;
  }
  .wd-auto-parts-product-list .wd-pro-desc-container {
    width: calc(100% - 190px);
  }
  .wd-auto-parts-product-list .wd-pro-quick-actions {
    right: 10px;
  }
  .wd-auto-parts-product-item .wd-pro-desc-container .wd-pro-item-rating {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .wd-auto-parts-product-items-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
  .wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box {
    height: 400px;
  }
  .wd-auto-hero-full-banner-box {
    height: 360px;
  }
  .wd-pet-banner-content-box {
    height: 470px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta {
    height: 470px;
  }
  .wd-product-grid:has(.wd-cloth-fashion-product) {
    grid-template-columns: repeat(4, 1fr);
  }
  .wd-compare-items-wrapper {
    overflow-x: auto;
  }
  .wd-compare-item-heading-sidebar,
  .wd-compare-item-detail-bar {
    min-width: 212px;
  }
  .wd-product-grid.columns_per_row_6 {
    grid-template-columns: repeat(5, 1fr);
  }
  .wd-product-grid.sub_columns_per_row_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-hero-grid .wd-product-hero-image {
    height: 230px;
  }
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    width: calc(100% - 360px);
  }
  .woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
    width: 340px;
  }
  .wd-footer-contact-detail .wd-footer-contact-detail-name {
    font-size: var(--wd-font-size-16); 
  }
  .wd-right-col-item .wd-right-col-item-inner {
    padding: 10px;
  }
  .wd-header-primary .sb-menu .menu-item a {
    padding: 0 12px;
  }
  .wd-brcategory-header .sb-menu .navbar-items a, .wd-brcategory-header .sb-menu .menu-item a {
    padding-left: 20px !important;
  }
  .wd_offer_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    max-width: 75%;
  }
  .wd-ecommerce-product-item-desc-inner .wd-desc-title {
    font-size: var(--wd-font-size-14);
  }
  .wd-desc-price .wd-disc-price {
    font-size: var(--wd-font-size-14);
  }
  .wd-shop-by-category-item .wd-shop-category-outer {
    padding: 20px;
  }
  .wd-trending-item-container .wd-pro-img-container {
    height: 210px;
  }
  .wd-auto-parts-product-item .wd-pro-item-rating .wd-pro-star-rating {
    gap: 0;
  }
}
@media (min-width: 320px) and (max-width: 1199.98px) {
  .wd-brcategory-header .sb-menu > ul {
    padding-right: 0px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 60px;
    background-color: #fff;
    box-shadow: 0px 10px 4px 6px rgba(0, 0, 0, 0.05);
    list-style-type: none;
  }
  .wd-brcategory-header .sb-menu .navbar-items a {
    height: 50px;
    line-height: 22px;
  }
  .wd-brcategory-header .sb-menu .navbar-items ul li {
    list-style-type: none;
  }
  .wd-brcategory-header .sb-menu .navbar-items ul,
  .wd-ecom-header .sb-menu .navbar-items ul {
    padding: 0;
    list-style-type: none;
  }
  .wd-brcategory-header .sb-menu .navbar-items ul li a,
  .wd-ecom-header .sb-menu .navbar-items ul li a {
    padding: 0 25px 0 50px !important;
  }
  .wd-shop-by-category-item .wd-shop-by-category-rec,
  .wd-shop-by-category-item:hover .wd-shop-by-category-rec {
    width: 100%;
  }
  .wd-ecom-header .sb-header-container {
    align-items: center;
  }
  .wd-ecom-header .wd-nav-container {
    margin-right: 60px;
  }
  .wd-ecom-header .burger-menu {
    top: 30px;
    right: 0;
  }
  .wd-ecom-header .burger-menu .line-menu {
    background-color: var(--wd-color-white);
  }
  .wd-ecom-header .sb-menu {
    position: absolute;
    width: 100%;
    margin-left: 0;
    background-color: #fff;
    top: 74px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.65);
  }
  .wd-electro-header .sb-menu {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.20);
  }
  .wd-ecom-header .sb-menu > ul > li > a, 
  .wd-ecom-header .sb-menu > ul > li > a:hover, 
  .wd-ecom-header .sb-menu > ul > li > a:active, 
  .wd-ecom-header .sb-menu li:not(:last-child) a:hover, 
  .wd-ecom-header .sb-menu li:not(:last-child) a:focus, 
  .wd-ecom-header .sb-menu li:not(:last-child) a:active {
    color: var(--wd-color-black);
  }
  .wd-ecom-header .wd-nav-container .wd-sign-in,
  .wd-ecom-header .wd-nav-container .wd-register {
    display: none;
  }
  .wd-ecom-header .sb-menu .navbar-items.wd-mobile-sign-in,
  .wd-ecom-header .sb-menu .navbar-items.wd-mobile-register {
    display: block;
  }
  .wd-cart-section-wrapper {
    flex-direction: column-reverse;
  }
  .wd-cart-main-area {
    width: 100%;
  }
  .wd-cart-sidebar {
    width: 100%;
  }
  .wd-cart-product-list .wd-cart-pro-name {
    width: 40%;
  }
  .wd-cart-product-list .wd-cart-delete-box {
    width: 20%;
  }
  .wd-pet-header .sb-menu ul {
    top: 70px;
    border-radius: var(--wd-radius-4);
    padding-bottom: 10px;
  }
  .wd-pet-header .sb-menu .navbar-items a {
    padding: 14px 30px !important;
  }
  .wd-pet-header .sb-menu .navbar-items:first-child a {
    padding-left: 30px !important;
  }
  .wd-compare-items-wrapper {
    overflow-x: auto;
  }
  .wd-compare-item-heading-sidebar,
  .wd-compare-item-detail-bar {
    min-width: 212px;
  }
  .wd-compare-item-modal .wd-compare-items-wrapper {
    overflow-x: auto;
  }
  .wd-compare-item-modal .wd-compare-item-detail-bar {
    width: 212px;
  }
  .wd-brcategory-header .sb-menu .navbar-items a, 
  .wd-brcategory-header .sb-menu .menu-item a {
    height: 50px;
    line-height: 22px;
  }
  .wd-brcategory-header .sb-menu .navbar-items a ~ .sub-menu,
  .wd-brcategory-header .sb-menu .menu-item a ~ .sub-menu {
    list-style-type: none;
    padding: 0;
  }
  .wd-brcategory-header .sb-menu .navbar-items a ~ .sub-menu li a, 
  .wd-brcategory-header .sb-menu .menu-item a ~ .sub-menu li a {
    padding-left: 50px !important;
  }
  .wd-shop-by-category-item .wd-shop-category-outer {
    padding: 20px;
  }
  .wd-pet-header .wd-brcategory-container .sb-menu .menu-item a {
    padding-left: 20px !important;
  }
}
/*large devices*/
@media (min-width: 992px) and (max-width: 1199.98px) {
  /*==========Home Page 1==============*/
  .wd-header-primary .logo {
    float: unset;
  }
  .wd-owl-carousel .owl-nav button.owl-prev {
    left: -25px;
    width: 56px;
    height: 56px;
  }
  .wd-owl-carousel .owl-nav button.owl-next {
    right: -25px;
    width: 56px;
    height: 56px;
  }
  /*wd-featured-product*/
  .wd-pro-heading {
    font-size: var(--wd-font-size-30);
  }
  .wd-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .wd-product-item .wd-pro-hover-btn {
    padding: 8px 35px;
  }
  .wd-second-collection .wd-second-collection-rec-svg svg,
  .wd-third-collection .wd-third-collection-rec-svg svg {
    max-width: 100%;
    top: -1px;
  }
  /*countdown-section*/
  .wd-deal-section .wd-deal-countdown-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-deal-section .wd-deal-countdown-container .wd-deal-countdown-desc {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
  }
  .wd-deal-section
    .wd-deal-countdown-container
    .wd-deal-countdown-desc
    .wd-deal-coundown-desc-inner {
    position: static;
    gap: 20px;
  }
  .wd-section-para {
    font-size: var(--wd-font-size-20);
  }
  .wd-deal-countdown-desc
    .wd-deal-countdown-desc-clock
    .wd-countdown-clock-div {
    width: 72px;
    height: 59px;
  }
  .wd-hero-carousel {
    margin: 0px 25px 0 25px;
  }
  /*banner-section*/
  .wd-banner-background .wd-banner-btn-svg svg {
    width: 130px;
    height: 130px;
  }
  .wd-banner-background .wd-banner-desc-section {
    right: 20px;
    top: -2px;
    bottom: 50px;
  }
  .wd-sale-product-slider-wrapper {
    margin: 0 25px;
  }
  /*insta-section*/
  .wd-sale-products-section .wd-sale-product-container {
    flex-wrap: wrap;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    width: calc(50% - 18px);
  }
  .wd-sale-product-right-col {
    order: 3;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    order: 2;
  }
  .wd-sale-product-container .wd-sale-product-mid-col {
    order: 1;
    width: 100%;
  }
  .wd-right-col-item .wd-pro-desc-heading {
    width: 100%;
  }
  .wd-sale-products-section .wd-sale-product-container {
    gap: 78px 36px;
  }
  /*footer-section*/
  .wd-footer-desc-section .wd-company-info-desc-title .wd-owl-des {
    font-size: var(--wd-font-size-16);
  }
  .wd-footer-input-mail-section {
    gap: 10px;
  }
  .wd-footer-app-security-section svg {
    max-width: 400px;
  }
  .wd-footer-section-newsletter-form input[type="email"] {
    width: 100%;
  }
  .wd-footer-checkbox-section .checkbox-label {
    width: calc(100% - 45px);
  }
  /*copywrite-section*/
  .wd-copywrite-section {
    gap: 20px;
  }
  /*==========Home Page 1 End==============*/
  /*==========Home Page 2 Start==============*/
  /*wd-ecommerce-products-section-start*/
  .wd-brcategory-container .wd-customer-service {
    padding-right: 100px;
  }
  .wd-electro-brcategory-header .wd-customer-service {
    padding-right: 0px;
  }
  .wd-brcategory-header .burger-menu {
    top: 22px;
    right: 0;
  }
  .wd-nav-margins {
    margin-left: 50px;
    width: 400px;
  } 
  .wd-header-input-mail-section input[type="email"] {
    width: 100%;
  }
  .wd-nav-container .wd-header-nav-actions {
    gap: 15px;
    margin-left: auto;
  }
  .wd-dropdown-swiper-slider .dropdown-swiper-button-prev {
    left: -30px;
  }
  .wd-dropdown-swiper-slider .dropdown-swiper-button-next {
    right: -30px;
  }
  .wd-ecommerce-products-section .wd-ecommerce-products-section-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .wd-ecommerce-product-item-img{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-product-item .wd-ecommerce-product-item-img img {
    width: 100px;
    height: 130px;
  }
  .wd-ecommerce-product-item .wd-ecommerce-product-item-desc-outer {
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-product-item-desc-outer .wd-ecommerce-product-item-desc-inner{
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-products-section .wd-ecommerce-product-item{
    padding: 15px;
  }
  .wd-ecommerce-product-item-desc-inner .wd-desc-title {
    font-size: var(--wd-font-size-14);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    width: 150px;
  }
  .wd-desc-price .wd-disc-price{
    font-size: 15px;
  }
  .wd-ecommerce-product-item-desc-outer .wd-btn-secondary {
    padding: 6px 10px;
    gap: 4px;
  }
  .wd-ecommerce-product-item-desc-outer .wd-btn-secondary span {
    font-size: var(--wd-font-size-12);
  }
  .wd-ecommerce-product-item-desc-outer .wd-btn-secondary .wd-primary-btn-svg {
    width: 24px;
    height: 24px;
    font-size: var(--wd-font-size-18);
  }
  .wd-shop-by-category-section .wd-shop-by-category-grid {
    grid-template-columns: repeat(3, 1fr);             
  }
  /*wd-ecommerce-products-section-end*/
  .wd-deal-section-desc-inner {
    padding: 39px 50px 39px 70px;
  }
  .wd-support-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /*==========Home Page 2 End==============*/
  .wd-ecom-header .wd-header-input-mail-section input[type="email"] {
    width: 299px;
  }
  .wd-grocery-hero-grid-wrapper {
    grid-template-columns: 2fr 1fr;
  }
  .wd-grocery-hero-grid-wrapper .wd-grocery-left-cards {
    order: 3;
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .wd-grocery-hero-grid-wrapper .wd-advertise-grid-box,
  .wd-grocery-hero-grid-wrapper .wd-grocery-main-banner .wd-ecom-ad-grid-box {
    height: 404px;
  }
  .wd-grocery-hero-grid-wrapper .wd-ecom-ad-grid-box {
    width: 100%;
  }
  .wd-trending-item-section-grid .wd-advertise-sidebar {
    width: 269px;
  }
  .wd-grocery-trending-items-section .wd-trending-item-section-grid .wd-trending-item-left-section {
    width: calc(100% - 289px);
  }
  .wd-trending-item-section-grid .wd-advertise-sidebar .wd-advertise-grid-box {
    height: auto;
  }
  .wd-grocery-trending-items-section .wd-ecom-ad-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-trending-mini-product-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  .wd-trending-mini-product-wrapper-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wdCategoryBannerSlider .wd-ecommerce-advertise-box {
    height: 150px;
  }
  .wd-product-detail-section-wrapper {
    flex-direction: column;
  }
  .wd-product-detail-content-wrapper {
    width: 100%;
  } 
  .wd-product-detail-content-sidebar {
    width: 100%;
  }
  .wd-product-specs-item-box .wd-product-spec-name {
    font-size: var(--wd-font-size-14);
    padding: 10px;
    width: 150px;
  }
  .wd-product-specs-item-box .wd-product-spec-detail {
    font-size: var(--wd-font-size-12);
    padding: 10px;
    width: calc(100% - 150px);
  }
  .wd-customer-review-box-wrapper {
    width: 280px;
  }
  .wd-customer-reviews-wrapper .wd-customer-comments-box {
    width: calc(100% - 300px);
  }
  .wd-customer-rating-box .wd-customer-rating-count {
    font-size: 42px;
    line-height: 32px;
  }
  .wd-customer-rating-box .wd-customer-rating-meta .wd-pro-total-reviews {
    font-size: var(--wd-font-size-12);
  }
  .wd-customer-rating-box .wd-customer-rating-meta .wd-pro-item-rating .wd-pro-star-rating span {
    font-size: var(--wd-font-size-16);
  }
  .wd-search-product-sidebar-wrapper .wd-search-filters-sidebar-with-overlay {
    width: 280px;
  }
  .wd-search-product-sidebar-wrapper .wd-search-product-content-wrapper {
    width: calc(100% - 300px);
  }
  .wd-search-product-content-wrapper .wd-deal-banner-background .wd-deal-section-desc-inner {
    height: 200px;
  }
  .wd-search-product-content-wrapper .wd-search-sort-box .select2-container {
    width: 240px !important;
  }
  .wd-search-product-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-filter-dropdown-wrapper {
    min-width: 936px;
    grid-template-columns: 200px 240px 220px 170px;
    gap: 20px;
  }
  .wd-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls input {
    max-width: 60px;
    padding: 8px;
  }
  .wd-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls .wd-filter-price-btn {
    padding: 15px 16px;
  }
  .wd-projuct-multi-filter-bar .wd-search-sort-box .select2-container {
    width: 290px !important;
  }
  .wd-about-us-main-wrapper .wd-about-us-title-box,
  .wd-about-us-main-wrapper .wd-about-us-desc-wrapper {
    width: 450px;
  }
  .wd-choose-us-rating-box {
    bottom: 20px;
    gap: 10px;
  }
  .wd-choose-us-client-rating img {
    margin-left: -18px;
    width: 32px;
    height: 32px;
  } 
  .wd-choose-us-client-rating .wd-client-more-rating {
    width: 32px;
    height: 32px;
    margin-left: -18px;
  }
  .wd-choose-us-client-rating .wd-client-more-rating span {
    font-size: var(--wd-font-size-18);
  }
  .wd-choose-us-rating-box .wd-choose-us-rating-cont h6 {
    font-size: var(--wd-font-size-16);
    line-height: 20px;
  }
  .wd-choose-us-rating-box .wd-choose-us-rating-cont > span {
    font-size: var(--wd-font-size-12);
    line-height: 18px;
  }
  .wd-default-modal .modal-dialog {
    max-width: 930px;
  }
  .wd-electro-brcategory-header.wd-brcategory-container .wd-customer-service {
    padding-right: 0;
  }
  .wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form {
    width: 300px;
  }
  .wd-elec-advertise-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .wd-elec-advertise-container .wd-elec-left-panel {
    grid-column: 1;
    grid-row: 2;
  }
  .wd-elec-advertise-container .wd-elec-middle-panel {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 400px;
    background-size: cover;
    background-position: 57%;
  }
  .wd-elec-advertise-container .wd-elec-right-panel {
    grid-column: 2;
    grid-row: 2;
  }
  .wd-elec-product-grid-box {
    padding: 20px;
  }
  .wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-meta {
    width: calc(100% - 50px);
  }
  .wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-btn {
    width: 40px;
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box {
    width: 280px;
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box:has(.wd-advertise-desc-right) {
    display: none;
  }
  .wd-elec-featured-pro-wrapper .wd-elec-product-grid-box {
    width: calc(100% - 300px);
  }
  .wd-glasses-topbar-search-side {
    gap: 20px 40px;
  }
  .wd-glasses-search-bar {
    width: 300px;
  }
  .wd-glasses-header .wd-brcategory-container .wd-customer-service {
    padding-left: 0;
  }
  .wd-glasses-header .burger-menu .line-menu {
    background-color: var(--wd-color-white);
  }
  .wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar {
    padding-bottom: 0;
  }
  .wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li a {
    color: var(--wd-color-black);
    padding: 14px 20px !important;
  }
  .wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li:first-child a {
    padding-left: 20px !important;
  }
  .wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li .sub-menu a {
    padding-left: 50px !important;
  }
  .wd-hero-category-grid-wrapper {
    gap: 20px;
  }
  .wd-hero-category-grid-wrapper .wd-ecommerce-advertise-box {
    height: 100px;
  }
  .wd-ecommerce-advertise-box .title {
    top: 10px;
    left: 10px;
  }
  .wd-ecommerce-advertise-box .subtitle {
    bottom: 10px;
    left: 10px;
  }
  .wd-glasses-product-section .wd-elec-product-wrapper {
    gap: 20px;
  }
  .wd-glasses-product-wrapper {
    gap: 20px;
  }
  .wd-glasses-product-wrapper .wd-advertise-grid-box {
    height: 430px;
  }
  .wd-vendor-products-main-wrapper,
  .wd-single-vendor-product-wrapper {
    gap: 20px;
  }
  .wd-vendor-products-main-wrapper .wd-single-vendor-box,
  .wd-single-vendor-product-wrapper .wd-glasses-product-item-box {
    width: calc(50% - 10px);
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductThumbsSlider {
    width: 50px;
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box {
    height: 185px;
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductItemSlider {
    width: calc(100% - 55px);
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductThumbsSlider .wd-vendor-product-main-item img,
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductItemSlider .wd-vendor-thumb-product-item img {
    transform: scale(0.7);
  }
  .wd-join-newsletter-box .wd-join-newsletter-content {
    width: 530px;
  }
  .wd-join-newsletter-box .wd-glasses-search-bar {
    width: 280px;
  }
  .wd-address-section {
    padding: 15px 0;
  }
  .wd-address-box {
    gap: 10px;
  }
  .wd-address-box .wd-address-icon {
    width: 28px;
    height: 28px;
  }
  .wd-address-box .wd-address-icon span {
    font-size: var(--wd-font-size-28);
  }
  .wd-address-box .wd-address-meta small {
    font-size: var(--wd-font-size-12);
  }
  .wd-address-box .wd-address-meta span {
    font-size: var(--wd-font-size-14);
    line-height: 24px;
  }
  .wd-auto-store-header-nav .wd-nav-margins {
    margin-left: 25px;
    width: 100%;
  }
  .wd-auto-store-header-nav .wd-nav-container .wd-header-input-mail-section input {
    width: 250px;
  }
  .wd-auto-hero-content-wrapper .wd-advertise-grid-box {
    height: 300px;
    width: 280px;
  }
  .wd-auto-hero-content-wrapper .wd-auto-hero-slider-wrapper {
    width: calc(100% - 300px);
  }
  .wd-auto-hero-banner-box {
    height: 300px;
  }
  .wd-auto-popular-picks-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-auto-popular-picks-wrapper .wd-auto-popular-picks-container {
    width: 100%;
  }
  .wd-auto-parts-product-items-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  .wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box {
    height: 350px;
  }
  .wd-auto-parts-grid-wrapper-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-pet-header .burger-menu {
    right: 30px;
  }
  .wd-pet-banner-content-box {
    height: 400px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta {
    height: 400px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta h1 {
    font-size: var(--wd-font-size-36);
    line-height: 50px;
  }
  .wd-product-grid:has(.wd-cloth-fashion-product) {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box {
    height: 230px;
  }
  .wd-product-grid.columns_per_row_6 {
    grid-template-columns: repeat(4, 1fr);
  }
  .wd-product-grid.columns_per_row_5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .wd-product-grid.sub_columns_per_row_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-hero-grid .wd-product-hero-image {
    height: 280px;
  }
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    width: calc(100% - 360px);
  }
  .woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
    width: 340px;
  }
  .wd-sales-items-wrapper .elementor-container {
    flex-wrap: wrap !important;
  }
  .wd-sales-left-item {
    width: 50% !important; 
    order: 2 !important;
  } 
  .wd-sales-middle-item {
    width: 100% !important;
    order: 1 !important;
  } 
  .wd-sales-right-item {
    width: 50% !important;
    order: 3 !important;
  } 
  .wd_offer_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    max-width: 75%;
  }
  .wd-hero-section-carousel {
    min-height: 400px;
  }
  .wd-section-carousel-desc h1 {
    font-size: var(--wd-font-size-36);
    line-height: 44px;
  }
  .wd-section-carousel-img {
    height: 400px;
  }
  .wd-trending-countdown-desc-outer .wd-btn-secondary {
    padding: 6px 10px 6px 14px;
  }
  .wd-trending-countdown-desc-outer .wd-btn-secondary span {
    font-size: var(--wd-font-size-12);
  }
  .wd-trending-countdown-desc-outer .wd-btn-secondary .wd-primary-btn-svg {
    width: 24px;
    height: 24px;
    font-size: var(--wd-font-size-18);
  }
  .wd-trending-item-container .wd-pro-img-container {
    height: 180px;
  }
  .wd-trending-item-container .wd-pro-item-rating .wd-pro-star-rating {
    gap: 0;
  }
  .wd-glasses-left-advertise {
    display: none !important;
  }
  .wd-glasses-right-main-content {
    width: 100% !important;
  }
  .wd-electro-header .sb-menu li:not(:last-child) ul {
    list-style-type: none;
  }
  .wd-electro-header .sb-menu > ul li > a,
  .wd-electro-header .sb-menu > ul li > a:hover,
  .wd-electro-header .sb-menu li:not(:last-child) a,
  .wd-electro-header .sb-menu li:not(:last-child) a:hover {
    color: var(--wd-color-text);
  }
  .wd-electro-header .sb-menu li:not(:last-child) ul li a {
    line-height: 22px;
    padding-left: 50px;
  }
}
@media (min-width: 320px) and (max-width: 991.98px) {
  .wd-dropdown-swiper-slider .dropdown-swiper-button-prev {
    left: -30px;
  }
  .wd-dropdown-swiper-slider .dropdown-swiper-button-next {
    right: -30px;
  }
  .wdCollectionHeroSlider .swiper-slide .row {
    flex-direction: column-reverse;
  }
  .wd-section-carousel-item .wd-section-carousel-desc {
    margin-top: 30px;
  }
  .collection-hero-swiper-pagination {
    margin-top: 20px;
  }
  .wd-shop-by-category-item .wd-shop-category-outer {
    padding: 20px;
  }
  .wd-shop-by-category-item .wd-shop-by-category-inner {
    gap: 12px;
  }
  .wd-shop-by-category-inner .wd-shop-by-category-inner-img {
    width: 40px;
    height: 40px;
  }
  .wd-shop-by-category-inner .wd-shop-by-category-desc {
    width: calc(100% - 52px);
  }
  .wd-deal-section-desc-inner {
    align-items: center;
    text-align: center;
    padding: 30px;
  }
  .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
    justify-content: center;
    padding-bottom: 40px;
  }
  .wd-ecom-advertise-banner-section .wd-ecom-ad-grid-wrapper {
    margin-bottom: 0;
  }
  .wd-ecom-latest-trend-content {
    margin-bottom: 20px;
  }
  .wd-green-theme .wd-nav-container .wd-mobile-search-btn {
    background-color: var(--wd-color-white);
    border-radius: 50%;
  }
  .wd-green-theme .wd-nav-container .wd-mobile-search-btn > span {
    color: var(--wd-color-green-theme);
  }
  .wd-trending-item-section-grid .wd-advertise-sidebar {
    display: none;
  }
  .wd-grocery-trending-items-section .wd-trending-item-section-grid .wd-trending-item-left-section {
    width: 100%;
  }
  .wd-product-search-result-bar {
    flex-direction: column;
  }
  .wd-search-result-bar-box,
  .wd-search-sort-box {
    width: 100%;
  }
  .wd-search-sort-box .select2-container {
    width: 100% !important;
  }
  .wd-product-detail-section-wrapper {
    flex-direction: column;
  }
  .wd-product-detail-content-wrapper {
    width: 100%;
  } 
  .wd-product-detail-content-sidebar {
    width: 100%;
  }
  .wd-product-specs-item-box .wd-product-spec-name {
    font-size: var(--wd-font-size-14);
    padding: 10px;
    width: 150px;
  }
  .wd-product-specs-item-box .wd-product-spec-detail {
    font-size: var(--wd-font-size-12);
    padding: 10px;
    width: calc(100% - 150px);
  }
  .wd-customer-review-box-wrapper {
    width: 100%;
  }
  .wd-customer-reviews-wrapper {
    flex-direction: column;
  }
  .wd-customer-reviews-wrapper .wd-customer-comments-box {
    width: 100%;
  }
  .wd-customer-rating-box .wd-customer-rating-count {
    font-size: 42px;
    line-height: 32px;
  }
  .wd-customer-rating-box .wd-customer-rating-meta .wd-pro-total-reviews {
    font-size: var(--wd-font-size-12);
  }
  .wd-customer-rating-box .wd-customer-rating-meta .wd-pro-item-rating .wd-pro-star-rating span {
    font-size: var(--wd-font-size-16);
  }
  .wd-search-product-sidebar-wrapper {
    flex-direction: column;
  }
  .wd-search-product-sidebar-wrapper .wd-search-filters-sidebar-with-overlay {
    position: fixed;
  }
  .wd-search-product-sidebar-wrapper .wd-search-product-content-wrapper {
    width: 100%;
  }
  .wd-search-product-sidebar-wrapper .wd-search-filters-sidebar .wd-fitler-sidebar-close-btn {
    display: block;
  }
  .wd-search-product-sidebar-wrapper .wd-search-filters-sidebar-with-overlay .wd-search-filters-sidebar {
    overflow-y: scroll;
    border-radius: 0;
  }
  .wd-search-product-content-wrapper .wd-search-filter-button {
    display: flex;
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    justify-content: center;
    width: 120px;
    background-color: var(--wd-color-black);
    border-color: var(--wd-color-black);
    color: var(--wd-color-white);
  }
  .wd-about-us-main-wrapper {
    flex-direction: column;
  }
  .wd-about-us-main-wrapper .wd-about-us-title-box,
  .wd-about-us-main-wrapper .wd-about-us-desc-wrapper {
    width: 100%;
  }
  .wd-faqs-section .wd-section-title {
    margin-top: 30px;
  }
  .wd-contact-us-wrapper {
    flex-direction: column;
  }
  .wd-contact-us-content,
  .wd-content-us-sidebar {
    width: 100%;
  }
  .wd-pagination-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .wd-electro-brcategory-header .wd-brcategory-container .wd-customer-service {
    display: none;
  }
  .wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar,
  .wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form {
    width: 100%;
  }
  .wd-elec-middle-panel .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
    padding-bottom: 0;
  }
  .wd-elec-product-grid-wrapper {
    flex-direction: column;
  }
  .wd-elec-product-grid-box {
    width: 100%;
  } 
  .wd-elec-featured-pro-wrapper {
    flex-wrap: wrap;
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box {
    width: calc(50% - 10px);
  }
  .wd-elec-featured-pro-wrapper .wd-elec-product-grid-box {
    order: 3;
    width: 100%;
  }
  .wd-glasses-topbar-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .wd-glasses-topbar-search-side {
    gap: 20px;
    width: 100%;
  }
  .wd-glasses-topbar-search-side .wd-glasses-search-bar {
    width: calc(100% - 200px);
  }
  .wd-glasses-actions-side {
    width: 100%;
  }
  .wd-glasses-quick-actions::before {
    content: none;
  }
  .wd-glasses-header .wd-brcategory-container .wd-customer-service {
    padding-left: 0;
  }
  .wd-glasses-header .burger-menu .line-menu {
    background-color: var(--wd-color-white);
  }
  .wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar {
    padding-bottom: 0;
  }
  .wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li a {
    color: var(--wd-color-black);
    padding: 14px 20px !important;
  }
  .wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li:first-child a {
    padding-left: 20px !important;
  }
  .wd-glasses-header .sb-header-container .wd-bc-sb-menu .wd-navbar li .sub-menu a {
    padding-left: 50px !important;
  }
  .wd-faqs-advanced-section {
    padding: 60px 0;
    background-position: 52%;
  }
  .wd-faqs-advanced-section .wd-section-title {
    margin-top: 0;
  }
  .wd-vendor-products-main-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .wd-vendor-products-main-wrapper .wd-single-vendor-box {
    width: 100%;
  }
  .wd-single-vendor-product-wrapper {
    gap: 20px;
  }
  .wd-single-vendor-product-wrapper .wd-glasses-product-item-box {
    width: calc(50% - 10px);
  }
  .wd-black-footer .wd-join-newsletter-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .wd-join-newsletter-box .wd-join-newsletter-content,
  .wd-join-newsletter-box .wd-glasses-search-bar {
    width: 100%;
  }
  .wd-address-section {
    padding: 15px 0;
  }
  .wd-address-section > .wd-container > .row {
    gap: 10px 0;
  }
  .wd-address-box {
    gap: 10px;
  }
  .wd-address-box .wd-address-icon {
    width: 28px;
    height: 28px;
  }
  .wd-address-box .wd-address-icon span {
    font-size: var(--wd-font-size-28);
  }
  .wd-address-box .wd-address-meta small {
    font-size: var(--wd-font-size-14);
  }
  .wd-address-box .wd-address-meta span {
    font-size: var(--wd-font-size-16);
    line-height: 24px;
  }
  .wd-rich-black .wd-nav-container .wd-mobile-search-btn {
    background-color: var(--wd-color-primary-blue);
  }
  .wd-rich-black .wd-nav-container .wd-mobile-search-btn span {
    color: var(--wd-color-white);
  }
  .wd-auto-ad-banner-grid {
    grid-template-columns: 1fr;
  }
  .wd-pet-latest-trend-section {
    padding: 60px 0;
  }
  .wd-pet-latest-trend-section .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
    padding-bottom: 0;
  }
  .wd-cloth-fashion-deal-section {
    padding: 60px 0;
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-pro-name {
    width: 50%;
    margin-bottom: 0;
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-price {
    display: none;
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-total-price {
    width: 25%;
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-delete-box {
    width: 25%;
  } 
  .wd-compare-items-wrapper.wd-compare-2-items-wrapper {
    grid-template-columns: 212px auto;
  }
  .woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main, 
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100%;
  }
  .woocommerce-cart .wc-block-cart .wc-block-components-sidebar {
    width: 100%;
    padding-left: 0px;
    margin-top: 20px;
  }
  .woocommerce-cart .wc-block-cart .wc-block-cart__totals-title {
    font-weight: var(--wd-font-weight-500) !important;
    display: block !important;
    font-size: 18px;
    padding-bottom: 10px;
  }
  .woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar {
    width: 100%;
    padding-left: 0px;
  }
  .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block:has(.wc-block-components-checkout-order-summary__title) {
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 20px;
    border-radius: 4px;
  }
  .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
    padding: 0;
    border: 0;
    margin-top: 0;
  }
  .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content.is-open {
    border-bottom: 0;
    margin-bottom: 20px;
  }
  .woocommerce-checkout .wc-block-components-checkout-step__heading {
    margin-bottom: 20px;
  }
  .wd_full_width_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    max-width: 80%;
  }
  .wd-electro-header .sb-menu li:not(:last-child) ul {
    list-style-type: none;
  }
  .wd-electro-header .sb-menu > ul li > a,
  .wd-electro-header .sb-menu > ul li > a:hover,
  .wd-electro-header .sb-menu li:not(:last-child) a,
  .wd-electro-header .sb-menu li:not(:last-child) a:hover {
    color: var(--wd-color-text);
  }
  .wd-electro-header .sb-menu li:not(:last-child) ul li a {
    line-height: 22px;
    padding-left: 50px;
  }
  .wd-electro-pro-box-wrapper .elementor-container {
    flex-wrap: wrap;
  }
  .wd-electro-pro-box {
    width: 100% !important;
  }
}
/*medium devices*/
@media (min-width: 768px) and (max-width: 991.98px) {
  /*==========Home Page 1==============*/
  .wd-header-primary .logo {
    float: unset;
  }
  .wd-owl-carousel .owl-nav button.owl-prev {
    left: -25px;
    width: 56px;
    height: 56px;
  }
  .wd-owl-carousel .owl-nav button.owl-next {
    right: -25px;
    width: 56px;
    height: 56px;
  }
  /*wd-featured-product*/
  .wd-pro-heading {
    font-size: var(--wd-font-size-30);
  }
  .wd-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-product-item .wd-pro-hover-btn {
    padding: 8px 35px;
  }
  .wd-hero-carousel {
    margin: 0px 25px 0 25px;
  }
  .wd-advertise-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  .wd-advertise-grid-wrapper .wd-advertise-grid-box:nth-child(1) {
    grid-column: 1 / -1;
  }
  /*collection-section*/
  .wd-collection-section {
    padding: 90px 0;
  }
  .wd-third-collection {
    margin-top: 25px;
  }
  .wd-second-collection {
    margin-top: 25px;
  }
  /*countdown-section*/
  .wd-deal-section .wd-deal-countdown-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-deal-section .wd-deal-countdown-container .wd-deal-countdown-desc {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wd-deal-section
    .wd-deal-countdown-container
    .wd-deal-countdown-desc
    .wd-deal-coundown-desc-inner {
    position: static;
    gap: 20px;
  }
  .wd-section-para {
    font-size: var(--wd-font-size-20);
  }
  .wd-deal-countdown-desc
    .wd-deal-countdown-desc-clock
    .wd-countdown-clock-div {
    width: 90px;
    height: 70px;
  }
  /*banner-section*/
  .wd-video-banner-section {
    padding-top: 90px;
  }
  .wd-banner-background .wd-banner-btn-svg {
    left: 169px;
  }
  .wd-banner-background .wd-banner-btn-svg {
    left: 15px;
    top: 15px;
  }
  .wd-banner-background .wd-banner-btn-svg svg {
    width: 100px;
    height: 100px;
  }
  .wd-banner-background .wd-banner-desc-section {
    right: 20px;
    top: 30px;
  }
  .wd-video-banner-section
    .wd-banner-background
    .wd-banner-desc-section
    .wd-banner-desc {
    gap: 0;
  }
  .wd-banner-desc .wd-banner-desc-title {
    font-size: var(--wd-font-size-14);
  }
  .wd-banner-desc .wd-banner-desc-heading {
    font-size: 17px;
  }
  .wd-banner-desc .wd-banner-desc-para {
    font-size: 15px;
  }
  .wd-sale-product-slider-wrapper {
    margin: 0 25px;
  }
  /*sale-product-carousel-section*/
  .wd-sale-products-section .wd-sale-product-container {
    flex-wrap: wrap;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    width: calc(50% - 18px);
  }
  .wd-sale-product-right-col {
    order: 3;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    order: 2;
  }
  .wd-sale-product-container .wd-sale-product-mid-col {
    order: 1;
    width: 100%;
  }
  .wd-right-col-item .wd-pro-desc-heading {
    width: 100%;
  }
  .wd-sale-products-section .wd-sale-product-container {
    gap: 78px 36px;
  }
  /*story-section*/
  .wd-story-section-inner .story-inner-svg {
    top: -3px;
    width: 100%;
  }
  .wd-story-section .wd-story-section-inner {
    padding: 40px 20px;
  }
  /*footer-section*/
  /*info-section*/
  .wd-company-info-section {
    padding: 30px 0 60px 0;
  }
  .wd-company-info-section .wd-company-info-desc {
    padding-top: 30px;
  }
  .wd-story-section {
    padding: 100px 0;
  }
  .wd-footer-desc-section .wd-company-info-desc {
    margin-top: 40px;
  }
  .wd-footer-sub-section {
    padding: 0;
  }
  .wd-footer-newsletter-section-outer {
    padding-left: 12px;
  }
  .wd-footer-app-section {
    padding: 60px 0;
  }
  .wd-footer-sub-section::before {
    width: 100%;
    height: 57%;
  }
  .wd-footer-app-security-section svg {
    max-width: 380px;
  }

  .wd-footer-checkbox-section .checkbox-label {
    width: calc(100% - 56px);
  }
  .wd-footer-newsletter-section {
    padding: 30px 0;
  }
  /*copywrite-section*/
  .wd-copywrite-section {
    gap: 20px;
  }
  /*==========Home Page 1 End==============*/
  /*==========Home Page 2 Start==============*/
  /*wd-ecommerce-products-section-start*/
  .wd-brcategory-container .wd-customer-service {
    padding-right: 60px;
  }
  .wd-brcategory-header .burger-menu {
    top: 22px;
    right: 0;
  }
  .wd-nav-container .wd-header-input-mail-section {
    display: none;
  }
  .wd-nav-container .wd-mobile-search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 3px;
    border: 0;
  }
  .wd-header-nav-section .wd-nav-container .wd-mobile-search-btn {
    padding: 0;
  } 
  .wd-header-section-form {
    width: auto;
    margin-left: auto;
  }
  .wd-ecommerce-products-section .wd-ecommerce-products-section-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .wd-ecommerce-product-item-img{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-product-item .wd-ecommerce-product-item-img img {
    width: 100px;
    height: 130px;
  }
  .wd-ecommerce-product-item .wd-ecommerce-product-item-desc-outer {
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-product-item-desc-outer .wd-ecommerce-product-item-desc-inner{
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-products-section .wd-ecommerce-product-item{
    padding: 15px;
  }
  .wd-ecommerce-product-item-desc-inner .wd-desc-title {
    font-size: var(--wd-font-size-14);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    width: 170px;
  }
  .wd-desc-price .wd-disc-price{
    font-size: 15px;
  }
  .wd-shop-by-category-section .wd-shop-by-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-support-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /*wd-ecommerce-products-section-end*/
  /*==========Home Page 2 End==============*/
  .wd-ecom-hero-section {
    padding-top: 90px;
    margin-bottom: 70px;
  }
  .wd-ecom-hero-section .wd-ecom-content-box > .sub-title {
    font-size: var(--wd-font-size-24);
  }
  .wd-ecom-hero-section .wd-ecom-content-box h1 {
    font-size: 40px;
    line-height: 60px;
  }
  .wd-ecom-ad-grid-wrapper {
    margin-top: 50px;
    margin-bottom: -70px;
    gap: 20px;
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
    height: 160px;
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box .wd-ecom-ad-content-box {
    top: 10px;
    bottom: 10px;
    right: 10px;
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box small {
    font-size: var(--wd-font-size-14);
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    font-size: var(--wd-font-size-22);
  }
  .wd-ecom-advertise-banner-section .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
    height: 180px;
  }
  .wd-grocery-hero-grid-wrapper {
    grid-template-columns: 2fr 1fr;
    margin-top: 0;
    margin-bottom: 0;
  }
  .wd-grocery-hero-grid-wrapper .wd-grocery-left-cards {
    order: 3;
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .wd-grocery-hero-grid-wrapper .wd-advertise-grid-box,
  .wd-grocery-hero-grid-wrapper .wd-grocery-main-banner .wd-ecom-ad-grid-box {
    height: 298px;
  }
  .wd-grocery-hero-grid-wrapper .wd-ecom-ad-grid-box {
    width: 100%;
  }
  .wd-trending-mini-product-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-trending-mini-product-wrapper-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-blog-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wdCategoryBannerSlider .wd-ecommerce-advertise-box {
    height: 170px;
  }
  .wd-detail-product-image-box {
    height: 350px;
  }
  .wd-detail-product-thumb-image-box {
    height: 60px;
  }
  .wd-about-product-content-box .wd-detail-product-call-to-action-box {
    flex-wrap: wrap;
  }
  .wd-about-product-content-box .wd-item-quantity-box {
    flex: 0 0 100%;
    justify-content: center;
    gap: 0 30px;
  }
  .wd-about-product-content-box .wd-ecom-button {
    flex: 0 0 calc(50% - 10px);
    justify-content: center;
  }
  .wd-product-specs-items-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-search-product-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-filter-dropdown-wrapper {
    min-width: 696px;
    grid-template-columns: repeat(2, 1fr);
    transform: translate(0px, 70px) !important;
  }
  .wd-filter-dropdown-wrapper .wd-dropdown-filter-box:nth-child(2n) {
    border-right: 0;
  }
  .wd-default-modal .modal-dialog {
    max-width: 690px;
  }
  .wd-about-product-content-box .wd-about-product-title {
    font-size: var(--wd-font-size-22);
    padding-right: 20px;
  }
  .wd-elec-advertise-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .wd-elec-advertise-container .wd-elec-left-panel {
    grid-column: 1;
    grid-row: 2;
  }
  .wd-elec-advertise-container .wd-elec-middle-panel {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 400px;
    background-size: cover;
    background-position: 57%;
  }
  .wd-elec-advertise-container .wd-elec-right-panel {
    grid-column: 2;
    grid-row: 2;
  }
  .wd-glasses-hero-section {
    background-position: 65%;
  }
  .wd-hero-category-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .wd-glasses-product-section .wd-elec-product-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .wd-glasses-product-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-glasses-product-slider-main {
    width: 100%;
  }
  .wd-auto-hero-content-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-auto-hero-content-wrapper .wd-auto-hero-slider-wrapper {
    width: 100%;
  }
  .wd-auto-hero-banner-box {
    height: 330px;
  }
  .wd-auto-hero-banner-box .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
    padding-bottom: 0;
  }
  .wd-auto-popular-picks-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-auto-popular-picks-wrapper .wd-auto-popular-picks-container {
    width: 100%;
  }
  .wd-auto-parts-product-list {
    padding: 10px;
    height: 162px;
    gap: 10px;
  }
  .wd-auto-parts-product-list .wd-pro-img-container {
    width: 120px;
    height: 140px;
  }
  .wd-auto-parts-product-list .wd-pro-img-container img {
    transform: scale(0.7);
  }
  .wd-auto-parts-product-list .wd-pro-desc-container {
    width: calc(100% - 170px);
  }
  .wd-auto-parts-product-list .wd-pro-quick-actions {
    right: 10px;
  }
  .wd-auto-parts-product-item .wd-pro-desc-container .wd-pro-item-rating {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .wd-auto-parts-product-items-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-auto-vertical-ad-banner-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .wd-auto-parts-grid-wrapper-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-pet-header .burger-menu {
    right: 30px;
  }
  .wd-pet-banner-content-box {
    height: 330px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta {
    height: 330px;
    width: 300px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta > span {
    font-size: var(--wd-font-size-18);
    line-height: 24px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta h1 {
    font-size: var(--wd-font-size-32);
    line-height: 42px;
  }
  .wd-pet-ad-banner-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .wd-pet-ad-banner-wrapper .wd-advertise-grid-box:first-child {
    grid-column: 1/3;
    grid-row: 1;
  }
  .wd-pet-ad-banner-wrapper .wd-advertise-grid-box:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .wd-pet-ad-banner-wrapper .wd-advertise-grid-box:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .wd-product-grid:has(.wd-cloth-fashion-product) {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .wd-cloth-fashion-product {
    min-width: 100%;
  }
  .wd-cloth-fashion-product .wd-pro-hover-btn {
    left: 20px;
    right: 20px;
    padding: 8px 12px;
  }
  .wd-cloth-fashion-deal-section .wd-deal-countdown-desc {
    margin-bottom: 0px;
  }
  .wd-cloth-fashion-ad-wrapper {
    margin-bottom: 0;
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  .wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box {
    height: 260px;
  }
  .wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box .wd-ecom-ad-content-box {
    right: 30px;
  }
  .wd-product-grid.columns_per_row_6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-product-grid.columns_per_row_5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-product-grid.columns_per_row_4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-product-grid.sub_columns_per_row_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-hero-grid .wd-product-hero-image {
    height: 260px;
  }
  .woocommerce-cart .wc-block-grid.has-4-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .wd-sales-items-wrapper {
    flex-wrap: wrap !important;
  }
  .wd-sales-left-item {
    width: 50% !important; 
    order: 2 !important;
  } 
  .wd-sales-middle-item {
    width: 100% !important;
    order: 1 !important;
  } 
  .wd-sales-right-item {
    width: 50% !important;
    order: 3 !important;
  }
  .wd_offer_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    max-width: 75%;
  }
  .wdCollectionHeroSlider .swiper-slide {
    padding: 40px 0 80px;
  }
  .wd-section-carousel-img {
    height: 400px;
  }
}

/*For small devices*/
@media (min-width: 576px) and (max-width: 767.98px) {
  .wd-section-title {
    margin-bottom: 30px;
  }
  /*==========Home Page 1==============*/
  /*hero-section*/
  .wd-hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .wd-hero-inner-text h1 {
    font-size: var(--wd-font-size-38);
  }
  .wd-owl-carousel .owl-nav button.owl-prev {
    left: -25px;
    width: 56px;
    height: 56px;
  }
  .wd-owl-carousel .owl-nav button.owl-next {
    right: -25px;
    width: 56px;
    height: 56px;
  }
  .wd-hero-carousel {
    padding-top: 60px;
    margin: 0px 25px 0 25px;
  }
  .wd-advertise-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  .wd-advertise-grid-wrapper .wd-advertise-grid-box:nth-child(1) {
    grid-column: 1 / -1;
  }
  /*wd-featured-product*/
  .wd-product-container {
    margin-top: 30px;
  }
  .wd-pro-heading {
    font-size: var(--wd-font-size-30);
  }
  .wd-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-sale-product-slider-wrapper {
    margin: 0 25px;
  }
  /*countdown-section*/
  .wd-deal-section .wd-deal-countdown-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-deal-section .wd-deal-countdown-container .wd-deal-countdown-desc {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wd-deal-section
    .wd-deal-countdown-container
    .wd-deal-countdown-desc
    .wd-deal-coundown-desc-inner {
    position: static;
    gap: 20px;
  }
  .wd-section-para {
    font-size: var(--wd-font-size-20);
  }
  .wd-deal-countdown-desc
    .wd-deal-countdown-desc-clock
    .wd-countdown-clock-div {
    width: 90px;
    height: 70px;
  }
  /*banner-section*/
  .wd-video-banner-section {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .wd-banner-background .wd-banner-btn-svg {
    left: 15px;
    top: 15px;
  }
  .wd-banner-background .wd-banner-btn-svg svg {
    width: 100px;
    height: 100px;
  }
  .wd-banner-background .wd-banner-desc-section {
    right: 20px;
    top: 30px;
  }
  .wd-video-banner-section
    .wd-banner-background
    .wd-banner-desc-section
    .wd-banner-desc {
    gap: 0;
  }
  .wd-banner-desc .wd-banner-desc-title {
    font-size: var(--wd-font-size-14);
  }
  .wd-banner-desc .wd-banner-desc-heading {
    font-size: 17px;
  }
  .wd-banner-desc .wd-banner-desc-para {
    font-size: 15px;
  }
  /*sale-product-carousel-section*/
  .wd-prod-owl-carousel {
    padding-top: 30px;
  }
  .wd-sale-products-section .wd-sale-product-container {
    flex-wrap: wrap;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    width: calc(50% - 18px);
  }
  .wd-right-col-item .wd-pro-desc-heading {
    width: 100%;
  }
  .wd-sale-product-right-col {
    order: 3;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    order: 2;
  }
  .wd-sale-product-container .wd-sale-product-mid-col {
    order: 1;
    width: 100%;
  }
  .wd-sale-products-section .wd-sale-product-container {
    gap: 78px 36px;
  }
  /*story-section*/
  .wd-story-section-inner .story-inner-svg {
    top: -3px;
    width: 100%;
  }
  .wd-story-section {
    padding: 60px 0;
  }
  .wd-story-section .wd-story-section-inner {
    padding: 40px 20px;
  }
  /*footer-section*/
  /*info-section*/
  .wd-company-info-section {
    padding: 30px 0 60px 0;
  }
  .wd-company-info-desc .wd-company-info-desc-list ul {
    gap: 10px;
  }
  .wd-company-info-section .wd-company-info-desc {
    padding-top: 30px;
  }
  .wd-footer-desc-section .wd-company-info-desc {
    margin-top: 40px;
  }
  .wd-footer-sub-section {
    padding: 0;
  }
  .wd-footer-newsletter-section-outer {
    padding-left: 12px;
  }
  .wd-footer-app-section {
    padding: 60px 0;
  }
  .wd-footer-sub-section::before {
    width: 100%;
    height: 53%;
  }
  .wd-footer-app-security-section svg {
    max-width: 380px;
  }
  .wd-footer-checkbox-section .checkbox-label {
    width: calc(100% - 56px);
  }
  .wd-footer-newsletter-section {
    padding: 30px 0;
  }
  .wd-footer-section {
    padding-top: 60px;
  }
  /*copywrite-section*/
  .wd-copywrite-section {
    gap: 20px;
  }
  /*==========Home Page 1 End==============*/
  /*==========Home Page 2 Start==============*/
  .wd-brcategory-header {
    border-bottom: 1px solid #e3e3e3;
  }
  .wd-brcategory-header::before {
    content: none;
  }
  .wd-brcategory-header .burger-menu {
    top: 22px;
    right: 0;
  }
  .wd-brcategory-container .wd-customer-service {
    display: none;
  }
  .wd-header-nav-section .wd-nav-container .wd-header-nav-actions {
    gap: 10px;
    padding-left: 15px;
  }
  /*wd-ecommerce-products-section-start*/
  .wd-nav-container .wd-header-input-mail-section {
    display: none;
  }
  .wd-nav-container .wd-mobile-search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 3px;
    border: 0;
  }
  .wd-header-nav-section .wd-nav-container .wd-mobile-search-btn {
    padding: 0;
  }
  .wd-header-section-form {
    width: auto;
    margin-left: auto;
  }
  .wd-ecommerce-products-section .wd-ecommerce-products-section-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .wd-ecommerce-product-item-img{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-product-item .wd-ecommerce-product-item-img img {
    width: 100px;
    height: 130px;
  }
  .wd-ecommerce-product-item .wd-ecommerce-product-item-desc-outer {
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-product-item-desc-outer .wd-ecommerce-product-item-desc-inner{
    align-items: center;
    justify-content: center;
  }
  .wd-ecommerce-products-section .wd-ecommerce-product-item{
    padding: 15px;
  }
  .wd-ecommerce-product-item-desc-inner .wd-desc-title {
    font-size: var(--wd-font-size-14);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    width: 140px;
  }
  .wd-ecommerce-product-item-desc-outer .wd-btn-secondary {
    padding: 6px 8px;
  }
  .wd-desc-price .wd-disc-price{
    font-size: 15px;
  }
  /*wd-ecommerce-products-section-end*/
  .wd-shop-by-category-section .wd-shop-by-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .wd-trending-item-section-grid .wd-advertise-grid-box {
    display: none;
  }
  .wd-trending-item-section-grid .wd-trending-item-left-section {
    width: 100%;
  }
  .wd-trending-item-section-reverse .trending-product-swiper-navigation {
    right: 0;
  }
  .wd-support-section-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .wd-double-banner-section-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  /*==========Home Page 2 End==============*/
  .wd-ecom-hero-section {
    padding-top: 90px;
    margin-bottom: 70px;
  }
  .wd-ecom-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .wd-ecom-hero-section .wd-ecom-content-box {
    position: relative;
    z-index: 1;
  }
  .wd-ecom-hero-section .wd-ecom-content-box > .sub-title {
    font-size: var(--wd-font-size-24);
    color: var(--wd-color-white);
  }
  .wd-ecom-hero-section .wd-ecom-content-box h1 {
    font-size: 32px;
    line-height: 40px;
    color: var(--wd-color-white);
  }
  .wd-ecom-hero-section .wd-ecom-content-box p {
    color: var(--wd-color-white);
  }
  .wd-ecom-ad-grid-wrapper {
    margin-top: 50px;
    margin-bottom: -70px;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
    height: 160px;
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box .wd-ecom-ad-content-box {
    top: 10px;
    bottom: 10px;
    right: 10px;
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box small {
    font-size: var(--wd-font-size-14);
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    font-size: var(--wd-font-size-22);
  }
  .wd-ecom-advertise-banner-section .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
    height: 180px;
  }
  .wd-ecom-latest-trends-section {
    padding-top: 60px;
  }
  .wd-ecom-latest-trend-content h2 {
    font-size: var(--wd-font-size-36);
    line-height: 48px;
  }
  .wd-ecom-latest-trend-content p {
    font-size: var(--wd-font-size-14);
    line-height: 24px;
  }
  .wd-load-more-box {
    margin-top: 30px;
  }
  .wd-deal-banner-section .wd-ecom-banner-background {
    height: 220px;
  }
  .wd-deal-banner-section {
    padding-top: 60px;
  }
  .wd-grocery-hero-grid-wrapper {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    margin-bottom: 0;
  }
  .wd-grocery-hero-grid-wrapper .wd-grocery-main-banner {
    order: 3;
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .wd-grocery-hero-grid-wrapper .wd-ecom-ad-grid-box {
    height: 154px;
  }
  .wd-grocery-hero-grid-wrapper .wd-advertise-grid-box {
    height: 328px;
  }
  .wd-grocery-hero-grid-wrapper .wd-grocery-main-banner .wd-ecom-ad-grid-box {
    height: 298px;
  }
  .wd-grocery-hero-grid-wrapper .wd-ecom-ad-grid-box {
    width: 100%;
  }
  .wd-grocery-trending-items-section .wd-ecom-ad-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-title-tags-list ul {
    justify-content: flex-start;
  }
  .wd-trending-mini-product-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-trending-mini-product-wrapper-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  } 
  .wd-trending-mini-thumb-product-style-2 .wd-pro-img-container {
    height: 100%;
  }
  .wd-pro-desc-container-wrapper {
    flex-direction: column;
  }
  .wd-trending-mini-thumb-product-style-2 .wd-pro-desc-container {
    width: 100%;
    text-align: center;
  }
  .wd-trending-mini-thumb-product-style-2 .wdProductThumbsItemSlider {
    width: 100%;
    margin-left: auto;
  }
  .wd-trending-mini-thumb-product-style-2 .wdProductThumbsItemSlider .swiper-wrapper .swiper-slide {
    justify-content: center;
  }
  .wd-blog-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-breadcrumb .breadcrumb li {
    font-size: var(--wd-font-size-14);
  }
  .wdCategoryBannerSlider .wd-ecommerce-advertise-box {
    height: 125px;
  }
  .wd-search-filter-button {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    justify-content: center;
    width: 120px;
    background-color: var(--wd-color-black);
    border-color: var(--wd-color-black);
    color: var(--wd-color-white);
  }
  .wd-search-result-bar-box {
    padding: 14px;
  }
  .wd-search-result-bar-box .wd-product-search-result {
    padding-left: 16px;
  }
  .wd-about-product-detail-area-wrapper {
    flex-direction: column;
  }
  .wd-about-product-slider-box {
    width: 100%;
  }
  .wd-about-product-content-box {
    width: 100%;
  }
  .wd-nav-pills {
    flex-direction: column;
  }
  .wd-nav-pills .wd-nav-pill-link::before {
    width: 3px;
    height: 100%;
  }
  .wd-product-specs-items-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-search-product-content-wrapper .wd-deal-banner-background .wd-deal-section-desc-inner {
    height: 200px;
  }
  .wd-filter-dropdown-wrapper {
    min-width: 516px;
    grid-template-columns: repeat(2, 1fr);
    transform: translate(0px, 70px) !important;
    gap: 20px;
  }
  .wd-filter-dropdown-wrapper .wd-dropdown-filter-box:nth-child(2n) {
    border-right: 0;
  }
  .wd-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls input {
    padding: 8px;
  }
  .wd-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls .wd-filter-price-btn {
    padding: 15px 16px;
  }
  .wd-projuct-multi-filter-bar .wd-search-result-bar-box {
    flex-direction: column;
  }
  .wd-cart-product-header {
    display: none;
  }
  .wd-cart-product-list {
    flex-wrap: wrap;
  }
  .wd-cart-product-list .wd-cart-pro-name {
    width: 100%;
    margin-bottom: 20px;
  }
  .wd-cart-product-list .wd-cart-price,
  .wd-cart-product-list .wd-cart-total-price {
    width: 20%;
  }
  .wd-cart-product-list .wd-cart-quantity {
    width: 35%;
  }
  .wd-cart-product-list .wd-cart-delete-box {
    width: 25%;
  }
  .wd-acc-coupon .wd-acc-inner > span {
    display: none;
  }
  .wd-terms {
    flex-direction: column;
  }
  .wd-acc-coupon .wd-acc-inner input {
    width: 100%;
  }
  .wd-checkout-form-box {
    padding: 20px;
  }
  .wd-about-us-experience-banner {
    height: 200px;
  }
  .wd-about-us-experience-cont {
    padding: 10px 30px;
    top: 20px;
  }
  .wd-about-us-experience-cont .experience-count {
    font-size: 36px;
    line-height: 40px;
  }
  .wd-about-us-experience-cont .exp-txt {
    font-size: var(--wd-font-size-14);
    line-height: 16px;
    width: 100px;
  }
  .wd-video-play-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .wd-video-play-btn > span {
    font-size: 28px;
  }
  .wd-choose-us-rating-box {
    bottom: 20px;
    gap: 10px;
  }
  .wd-choose-us-client-rating img {
    margin-left: -18px;
    width: 32px;
    height: 32px;
  } 
  .wd-choose-us-client-rating .wd-client-more-rating {
    width: 32px;
    height: 32px;
    margin-left: -18px;
  }
  .wd-choose-us-client-rating .wd-client-more-rating span {
    font-size: var(--wd-font-size-18);
  }
  .wd-choose-us-rating-box .wd-choose-us-rating-cont h6 {
    font-size: var(--wd-font-size-16);
    line-height: 20px;
  }
  .wd-choose-us-rating-box .wd-choose-us-rating-cont > span {
    font-size: var(--wd-font-size-12);
    line-height: 18px;
  } 
  .wd-default-modal .modal-dialog {
    max-width: 500px;
  }
  .wd-default-modal .wd-default-modal-close-btn {
    top: -10px;
    right: -10px;
    z-index: 2;
    padding: 2px;
    background-color: var(--wd-color-black);
    color: var(--wd-color-white);
    border-radius: var(--wd-radius-4);
    font-size: var(--wd-font-size-20);
  }
  .wd-compare-section {
    padding-top: 30px;
  }
  .wd-compare-items-wrapper {
    gap: 10px;
  }
  .wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-icon {
    width: 40px;
    height: 40px;
  }
  .wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-icon span {
    font-size: var(--wd-font-size-30);
  }
  .wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-txt {
    font-size: var(--wd-font-size-12);
  }
  .wd-compare-item-heading-sidebar .wd-ad-compare-btn-box {
    height: 275px;
  }
  .wd-compare-item-heading-box h6 {
    padding: 8px 10px;
    font-size: var(--wd-font-size-12);
  }
  .wd-compare-item-heading-sidebar,
  .wd-compare-item-detail-bar {
    min-width: 182px;
  }
  .wd-compare-item-detail-bar .wd-compare-item-meta-box {
    padding: 10px 10px 0 10px;
  }
  .wd-compare-item-detail-bar .wd-compare-item-meta-box .wd-compare-item-img-box {
    height: 165px;
  }
  .wd-compare-item-detail-bar .wd-compare-item-meta-box .wd-ecom-button {
    font-size: var(--wd-font-size-12);
    padding: 4px 4px 4px 12px;
  }
  .wd-compare-item-detail-bar .wd-compare-item-meta-box .wd-ecom-button .wd-ecom-btn-svg {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    font-size: var(--wd-font-size-18);
  }
  .wd-compare-item-detail-bar .wd-compare-item-box {
    padding: 4px 10px;
    height: 38px;
    font-size: var(--wd-font-size-12);
  }
  .wd-compare-item-detail-bar .wd-fea-pro-price .wd-pro-actual-price {
    font-size: var(--wd-font-size-12);
  }
  .wd-compare-item-detail-bar .wd-fea-pro-price .wd-pro-discounted-price {
    font-size: var(--wd-font-size-14);
  }
  .wd-compare-item-detail-bar .wd-stock-tag {
    font-size: var(--wd-font-size-12);
  }
  .wd-pagination-wrapper .wd-pagination-items {
    font-size: var(--wd-font-size-14);
  }
  .wd-pagination .wd-page-item .wd-page-link {
    font-size: var(--wd-font-size-14);
    padding: 8px 6px;
    min-width: 30px;
    height: 40px;
  }
  .wd-elec-advertise-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .wd-elec-advertise-container .wd-elec-left-panel {
    grid-column: 1;
    grid-row: 2;
  }
  .wd-elec-advertise-container .wd-elec-middle-panel {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 320px;
    background-size: cover;
    background-position: 57%;
  }
  .wd-elec-advertise-container .wd-elec-right-panel {
    grid-column: 2;
    grid-row: 2;
  }
  .wd-elec-advertise-content-box {
    top: 20px;
    left: 20px;
  }
  .wd-elec-advertise-content-box .sub-title {
    font-size: var(--wd-font-size-18);
    line-height: 22px;
  }
  .wd-elec-advertise-content-box .title {
    font-size: var(--wd-font-size-24);
    line-height: 32px;
  }
  .wd-elec-middle-panel .wd-deal-countdown-desc {
    bottom: 20px;
    right: 20px;
  }
  .wd-elec-left-panel .wd-ecommerce-advertise-box, 
  .wd-elec-right-panel .wd-ecommerce-advertise-box {
    height: 130px;
  }
  .wd-elec-product-grid-box {
    padding: 20px;
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box {
    height: 350px;
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box .wd-desc-title {
    font-size: var(--wd-font-size-18);
    margin-bottom: 15px;
  }
  .wd-glasses-header .wd-brcategory-container .wd-customer-service {
    display: flex;
  } 
  .wd-glasses-hero-section {
    padding-top: 60px;
    background-position: 65%;
  }
  .wd-glasses-hero-content {
    margin-bottom: 40px;
  }
  .wd-hero-category-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .wd-hero-category-grid-wrapper .wd-ecommerce-advertise-box {
    height: 120px;
  }
  .wd-glasses-product-section .wd-elec-product-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .wd-glasses-product-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-glasses-product-slider-main {
    width: 100%;
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductThumbsSlider {
    width: 60px;
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box {
    height: 200px;
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductItemSlider {
    width: calc(100% - 65px);
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductThumbsSlider .wd-vendor-product-main-item img,
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductItemSlider .wd-vendor-thumb-product-item img {
    transform: scale(0.7);
  }
  .wd-join-newsletter-box {
    padding: 20px;
  }
  .wd-address-box .wd-address-meta small {
    font-size: var(--wd-font-size-12);
  }
  .wd-address-box .wd-address-meta span {
    font-size: var(--wd-font-size-14);
    line-height: 24px;
  }
  .wd-auto-hero-content-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-auto-hero-content-wrapper .wd-auto-hero-slider-wrapper {
    width: 100%;
  }
  .wd-auto-hero-banner-box {
    height: 250px;
  }
  .wd-auto-hero-banner-box .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
    padding-bottom: 0;
  }
  .wd-auto-hero-banner-box .wd-auto-hero-content-box {
    top: 20px;
    left: 20px;
  }
  .wd-auto-hero-banner-box .wd-auto-hero-content-box span {
    font-size: var(--wd-font-size-16);
  }
  .wd-auto-hero-banner-box .wd-auto-hero-content-box h1 {
    font-size: var(--wd-font-size-24);
    margin-bottom: 10px;
  }
  .wd-auto-hero-banner-box .wd-deal-countdown-desc {
    bottom: 20px;
    left: 20px;
  }
  .wd-auto-swiper-pagination {
    bottom: 20px !important;
    right: 20px;
  }
  .wd-auto-parts-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-auto-popular-picks-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-auto-popular-picks-wrapper .wd-auto-popular-picks-container {
    width: 100%;
  }
  .wd-auto-parts-product-items-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-auto-vertical-ad-banner-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box {
    height: 360px;
  }
  .wd-auto-parts-grid-wrapper-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-pet-top-bar-section .wd-dropdown-section {
    justify-content: space-between;
    width: 100%;
  }
  .wd-pet-top-bar-section .wd-social-links::before {
    right: -3px;
  }
  .wd-pet-top-bar-section .wd-top-bar-links::before {
    left: -7px;
  }
  .wd-pet-header .wd-brcategory-container {
    padding: 18px 20px;
  }
  .wd-pet-header .burger-menu {
    right: 20px;
  }
  .wd-pet-header .sb-menu .navbar-items a {
    padding: 14px 20px !important;
  }
  .wd-pet-header .sb-menu .navbar-items:first-child a {
    padding-left: 20px !important;
  }
  .wd-pet-banner-content-box {
    height: 330px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta {
    height: 330px;
    width: 300px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta > span {
    font-size: var(--wd-font-size-16);
    line-height: 22px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta h1 {
    font-size: var(--wd-font-size-28);
    line-height: 32px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta p {
    font-size: var(--wd-font-size-14);
    margin-bottom: 10px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta .wd-ecom-button {
    font-size: var(--wd-font-size-12);
    padding: 4px 4px 4px 12px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta .wd-ecom-button .wd-ecom-btn-svg {
    width: 20px;
    height: 20px;
    font-size: var(--wd-font-size-18);
  }
  .wd-pet-swiper-pagination {
    transform: scale(0.7);
    transform-origin: bottom right;
    right: 10px;
    bottom: 20px !important;
  }
  .wd-pet-ad-banner-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
  .wd-pet-ad-banner-wrapper .wd-advertise-grid-box:first-child {
    grid-column: 1/3;
    grid-row: 1;
  }
  .wd-pet-ad-banner-wrapper .wd-advertise-grid-box:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .wd-pet-ad-banner-wrapper .wd-advertise-grid-box:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .wd-pet-latest-trend-section .wd-ecom-latest-trend-content h2 {
    font-size: var(--wd-font-size-36);
    line-height: 46px;
  }
  .wd-announcement-bar {
    height: 40px;
  }
  .wd-announcement-item {
    font-size: var(--wd-font-size-14);
  }
  .wd-announcement-icon {
    margin: 0 20px;
    font-size: var(--wd-font-size-18);
  }
  .wd-fashion-section-heading {
    font-size: var(--wd-font-size-28);
    line-height: 36px;
  }
  .wd-fashion-section-para {
    font-size: var(--wd-font-size-14);
    line-height: 24px;
  }
  .wd-fashion-view-all-btn {
    font-size: var(--wd-font-size-14);
  }
  .wd-pro-quick-actions {
    top: 10px;
    right: 10px;
    visibility: visible;
    opacity: 1;
    z-index: 1;
  }
  .wd-product-item .wd-pro-hover-btn {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
    font-size: var(--wd-font-size-12);
  }
  .wd-cloth-fashion-deal-section .wd-deal-countdown-desc {
    margin-bottom: 0px;
  }
  .wd-cloth-fashion-deal-section .wd-ecom-latest-trend-content > span {
    font-size: var(--wd-font-size-18);
  }
  .wd-cloth-fashion-deal-section .wd-ecom-latest-trend-content h2 {
    font-size: 28px;
    line-height: 42px;
  }
  .wd-cloth-fashion-ad-wrapper {
    margin-bottom: 0;
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  .wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box {
    height: 220px;
  }
  .wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box .wd-ecom-ad-content-box {
    right: 30px;
  }
  .wd-pro-wishlist, .wd-pro-compare {
    visibility: visible;
    opacity: 1;
  }
  .wd-pro-mobile-cart,
  .wd-pro-quickview {
    visibility: visible;
    opacity: 1;
    cursor: pointer;
  }
  .wd-product-item:hover .wd-fea-pro-price {
    display: block;
  }
  .wd-product-item:hover .wd-pro-cart-btn {
    display: none;
  }
  .wd-glasses-product-item-box .wd-pro-quick-actions {
    z-index: 2;
  }
  .wd-compare-item-modal .wd-compare-item-detail-bar {
    width: 182px;
  }
  .wd-compare-items-wrapper.wd-compare-2-items-wrapper {
    grid-template-columns: 182px auto;
  }
  .wd-product-grid.columns_per_row_6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.columns_per_row_5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.columns_per_row_4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.columns_per_row_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.sub_columns_per_row_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-contact-us-content .form-row {
    flex-direction: column;
  }
  .wd-contact-us-content .form-row .half-width {
    width: 100%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }
  .wd-product-hero-grid .wd-product-hero-image {
    height: 300px;
  }
  .woocommerce-cart .wc-block-grid.has-4-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .wd-header-primary .wd-search-dropdown .wd-dropdown-menu {
    inset: 0px -212px auto auto !important;
  }
  .wd-nav-container .wd-menu-dropdown {
    position: unset;
  }
  .wd-nav-container .wd-menu-dropdown .wd-dropdown-menu {
    inset: 0px 0px auto auto !important;
  }
  .wd-nav-container .wd-menu-dropdown .wd-dropdown-menu input {
    display: block;
  }
  .wd-ecom-ad-grid-box {
    padding: 15px; 
  }
  .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    font-size: var(--wd-font-size-16);
    line-height: 22px;
  }
  .wd-ecom-ad-content-box.flex-column .wd-ecom-title-box h3 {
    max-width: 100%;
  }
  .wd_middle_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    font-size: var(--wd-font-size-24);
    line-height: 32px;
  }
  .wdCollectionHeroSlider .swiper-slide {
    padding: 20px 0 60px;
  }
  .wd-section-carousel-desc h1 {
    font-size: var(--wd-font-size-32);
    line-height: 36px;
  }
  .wd-section-carousel-img {
    height: 400px;
  }
  .collection-hero-swiper-pagination {
    bottom: 20px !important;
  }
  .woocommerce {
    padding: 60px 0;
  }
  section:has(.wc-block-components-sidebar-layout.wc-block-cart) {
    padding: 60px 0 20px 0;
  }
  .wd-top-bar-section .wd-top-bar-content {
    align-items: flex-start;
    padding: 10px 0;
  }
  .wd-coral-red .wd-top-bar-section .wd-top-bar-content .wd-top-bar-text {
    width: 55%;
    font-size: var(--wd-font-size-12);
  }
  .wd-coral-red .wd-dropdown-section .wd-help-text,
  .wd-coral-red .wd-menu-dropdown .wd-menu-dropdown-toggle {
    font-size: var(--wd-font-size-12);
  }
  .wd-coral-red .wd-menu-dropdown .wd-menu-dropdown-toggle span {
    font-size: var(--wd-font-size-20);
  }
  .wd-coral-red .wd-top-bar-section .wd-top-bar-links::before {
    height: 14px;
  }
}
 

/*For extra small devices*/
/*==========Home Page 1 Start==============*/
@media (max-width: 575.98px) {
  .wd-section-title {
    margin-bottom: 30px;
  }
  .wd-section-primary-btn {
    padding: 6px;
    gap: 5px;
    height: 40px;
  }
  .wd-section-primary-btn span {
    font-size: 13px;
  }
  .wd-section-btn-svg {
    width: 25px;
    height: 25px;
  }
  .wd-pro-title {
    font-size: var(--wd-font-size-18);
  }
  .wd-top-bar-section .wd-top-bar-content .wd-top-bar-text,
  .wd-dropdown-section .wd-help-text,
  .wd-bar-dropdown .btn-primary {
    font-size: var(--wd-font-size-12);
  }
  .wd-coral-red .wd-menu-dropdown .wd-menu-dropdown-toggle {
    font-size: var(--wd-font-size-12);
  }
  .wd-coral-red .wd-menu-dropdown .wd-menu-dropdown-toggle span {
    font-size: var(--wd-font-size-20);
  }
  .wd-coral-red .wd-top-bar-section .wd-top-bar-links::before {
    height: 14px;
  }
  .wd-header-nav-actions .wd-sign-in,
  .wd-header-nav-actions .wd-register {
    display: none;
  }
  .wd-brcategory-header .sb-menu .navbar-items.wd-mobile-sign-in,
  .wd-brcategory-header .sb-menu .navbar-items.wd-mobile-register {
    display: block;
  }
  /*hero-section*/
  .wd-hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .wd-hero-inner-text .wd-btext {
    font-size: 17px;
  }
  .wd-hero-inner-text p {
    max-width: 480px;
    font-size: var(--wd-font-size-16);
  }
  .wd-hero-inner-text h1,
  .wd-section-carousel-desc h1 {
    font-size: var(--wd-font-size-32);
  }
  .wd-owl-carousel .owl-nav button.owl-next,
  .wd-owl-carousel .owl-nav button.owl-prev {
    position: static;
    width: 58px;
    height: 58px;
  }
  .wd-plus-icon {
    right: 11px;
    bottom: 79px;
    top: auto;
    width: 52px;
    height: 52px;
  }
  .wd-owl-des {
    font-size: var(--wd-font-size-16);
  }
  .wd-owl-pric-sec .wd-disc-price {
    font-size: var(--wd-font-size-16);
  }
  .wd-hero-carousel {
    padding-top: 60px;
  }
  .wdHeroSwiper {
    padding-bottom: 10px;
  }
  .wd-hero-swiper-navigation {
    top: 100%;
    justify-content: center;
    gap: 10px;
  }
  .wd-hero-swiper-navigation .hero-swiper-button-prev, 
  .wd-hero-swiper-navigation .hero-swiper-button-next {
    width: 48px;
    height: 48px;
  }
  .wd-hero-swiper-navigation .hero-swiper-button-prev {
    left: 0;
  }
  .wd-hero-swiper-navigation .hero-swiper-button-next {
    right: 0;
  }
  .wd-product-hero-grid .wd-owl-des,
  .wd-product-hero-grid .wd-owl-pric-sec .wd-disc-price {
    font-size: var(--wd-font-size-14);
  }
  .wd-product-hero-grid .wd-owl-pric-sec .wd-cut-price {
    font-size: var(--wd-font-size-12);
  }
  .wd-section-title .wd-pro-title {
    font-size: var(--wd-font-size-16);
    margin-bottom: 5px;
  }
  .wd-section-title .wd-pro-heading,
  .wd-deal-section .wd-deal-countdown-container .wd-deal-countdown-desc .wd-deal-countdown-desc-title h3 {
    font-size: var(--wd-font-size-28);
  }
  .wd-advertise-grid-wrapper {
    grid-template-columns: 1fr;
  }
  /*wd-featured-product*/
  .wd-product-container {
    margin-top: 30px;
  }
  .wd-pro-heading {
    font-size: var(--wd-font-size-28);
  }
  .wd-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid {
    gap: 24px;
  }
  .wd-pro-desc-heading {
    font-size: var(--wd-font-size-14);
  }
  .wd-product-item .wd-pro-hover-btn {
    padding: 8px 20px;
  }
  /*collection-section*/
  .wd-story-section {
    padding: 60px 0;
  }
  /*countdown-section*/
  .wd-deal-section .wd-deal-countdown-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-deal-section .wd-deal-countdown-container .wd-deal-countdown-desc {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wd-deal-section
    .wd-deal-countdown-container
    .wd-deal-countdown-desc
    .wd-deal-coundown-desc-inner {
    position: static;
    gap: 20px;
  }
  .wd-deal-countdown-desc
    .wd-deal-countdown-desc-clock
    .wd-countdown-clock-div {
    width: 49px;
    height: 57px;
  }
  .wd-section-para {
    font-size: var(--wd-font-size-18);
  }
  /*banner-section*/
  .wd-banner-background .wd-banner-btn-svg {
    left: 15px;
    top: 15px;
  }
  .wd-banner-background .wd-banner-btn-svg svg {
    width: 100px;
    height: 100px;
  }
  .wd-banner-background .wd-banner-desc-section {
    right: 20px;
    top: 30px;
  }
  .wd-video-banner-section
    .wd-banner-background
    .wd-banner-desc-section
    .wd-banner-desc {
    gap: 0;
  }
  .wd-banner-desc .wd-banner-desc-title {
    font-size: var(--wd-font-size-14);
  }
  .wd-banner-desc .wd-banner-desc-heading {
    font-size: 17px;
  }
  .wd-banner-desc .wd-banner-desc-para {
    font-size: 15px;
  }
  /*sale-product-carousel-section*/
  .wd-prod-owl-carousel {
    padding-top: 30px;
  }
  .wd-sale-products-section .wd-sale-product-container {
    flex-wrap: wrap;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    width: calc(50% - 8px);
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    overflow: hidden;
  }
  .wd-sale-product-right-col {
    order: 3;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    order: 2;
  }
  .wd-sale-product-container .wd-sale-product-mid-col {
    order: 1;
    width: 100%;
  }
  .wd-sale-product-left-col-desc .wd-sale-product-desc-offer {
    font-size: var(--wd-font-size-12);
  }
  .wd-right-col-item .wd-pro-desc-heading {
    width: 100%;
  }
  .wd-sale-product-container .wd-sale-product-right-col {
    gap: 10px;
    height: 270px;
  }
  .wd-sale-product-right-col .wd-right-col-item-inner-img {
    width: 38px;
    height: 38px;
  }
  .wd-right-col-item .wd-right-col-item-inner {
    padding: 11px;
  }
  .wd-sale-product-left-col-desc .wd-sale-product-desc-title {
    font-size: 15px;
  }
  .wd-sale-product-container .wd-sale-product-left-col {
    height: 270px;
  }
  .wd-sale-products-section .wd-sale-product-container {
    gap: 30px 10px;
  }
  .wd-sale-prod-owl-carousel .owl-nav button.owl-next,
  .wd-sale-prod-owl-carousel .owl-nav button.owl-prev {
    position: static;
    margin: 5px;
  }
  .wdSaleProductSlider {
    margin-bottom: 40px;
  }
  .wd-sale-product-swiper-navigation {
    top: unset;
    bottom: -50px;
    justify-content: center;
    gap: 20px;
  }
  .wd-sale-product-swiper-navigation .sale-product-swiper-button-prev {
    left: 0;
  }
  .wd-sale-product-swiper-navigation .sale-product-swiper-button-next {
    right: 0;
  }
  /*insta-section*/
  .wd-insta-carousel {
    margin-top: 30px;
  }
  .wd-insta-carousel .wd-insta-item-container {
    overflow: hidden;
  }
  .wd-section-para {
    line-height: normal;
  }
  .wd-insta-item-container .wd-insta-icon {
    width: 30px;
    height: 30px;
  }
  /*story-section*/
  .wd-story-section-inner .story-inner-svg {
    top: -3px;
    width: 100%;
  }
  .wd-story-section .wd-story-section-inner {
    padding: 40px 20px;
  }
  .wd-story-section-inner .wd-story-inner-content {
    gap: 20px;
  }
  /*footer-section*/
  /*info-section*/
  .wd-footer-section {
    padding-top: 60px;
  }
  .wd-company-info-desc .wd-company-info-desc-list ul {
    gap: 5px;
  }
  .wd-company-info-section {
    padding: 30px 0 60px 0;
  }
  .wd-footer-sub-section {
    padding: 0;
  }
  .wd-company-info-desc-list .wd-desc-item a {
    font-size: var(--wd-font-size-12);
  }
  .wd-company-info-section .wd-company-info-desc {
    padding-top: 30px;
  }
  .wd-footer-desc-section .wd-company-info-desc {
    margin-top: 30px;
  }
  .wd-footer-app-section {
    padding: 30px 0;
  }
  .wd-footer-sub-section::before {
    content: none;
  }
  .wd-footer-sub-section .col-lg-6:has(.wd-footer-app-section)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #191816;
    z-index: -1;
  }
  .wd-footer-app-security-section svg {
    max-width: 380px;
  }
  .wd-footer-checkbox-section .checkbox-label {
    width: calc(100% - 56px);
  }
  .wd-footer-newsletter-section {
    padding: 30px 0;
  }
  .wd-footer-section-newsletter-form input[type="email"] {
    width: 100%;
  }
  .wd-footer-input-mail-section {
    position: relative;
  }
  .wd-input-svg {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--wd-color-primary);
    width: 30px;
    height: 30px;
    padding: 3px;
    border-radius: var(--wd-radius-50);
    pointer-events: none;
  }
  .wd-bluish-green .wd-input-svg {
    background-color: var(--wd-color-petrol-blue);
  }
  .wd-green-theme .wd-input-svg {
    background-color: var(--wd-color-green-theme);
    color: var(--wd-color-white);
  }
  .wd-input-svg path {
    stroke: var(--wd-color-black);
  }
  .wd-bluish-green .wd-input-svg path,
  .wd-green-theme .wd-input-svg path {
    stroke: var(--wd-color-white);
  }
  .wd-rich-black .wd-input-svg {
    background-color: var(--wd-color-primary-blue);
  }
  .wd-rich-black .wd-input-svg path {
    stroke: var(--wd-color-white);
  }
  .wd-footer-newsletter-section-outer {
    padding: 0 12px;
  }
  .wd-footer-newsletter-section {
    gap: 30px;
  }
  .wd-footer-section-newsletter-form .wd-btn-primary {
    display: none;
  }
  /*copywrite-section*/
  .wd-copywrite-section {
    gap: 20px;
  }
  .wd-payment-acceptence-imgs {
    gap: 10px;
  }
  .wd-copywrite-tag,
  .wd-copywrite-section .wd-copywrite-text {
    font-size: var(--wd-font-size-14);
  }
  .wd-payment-method-img img {
    width: 90%;
  }
  /*==========Home Page 1 End==============*/
  /*==========Home Page 2 Start==============*/
  .wd-brcategory-header {
    border-bottom: 1px solid #e3e3e3;
  }
  .wd-brcategory-header::before {
    content: none;
  }
  .wd-brcategory-header .burger-menu {
    top: 22px;
    right: 0;
  }
  .wd-brcategory-container .wd-customer-service {
    display: none;
  }
  /*wd-ecommerce-products-section-start*/
  .wd-nav-container .wd-header-input-mail-section {
    display: none;
  }
  .wd-nav-container .wd-mobile-search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0px;
    border: 0;
  }
  .wd-header-nav-section .wd-nav-container .wd-mobile-search-btn {
    padding: 0;
  }
  .wd-header-section-form {
    width: auto;
    margin-left: auto;
  }
  .wd-ecommerce-products-section .wd-ecommerce-products-section-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-top-trending-section .wd-product-swiper-navigation {
    top: unset;
    bottom: -45px;
    width: 100%;
    justify-content: center;
    z-index: 1;
  }
  .wd-nav-container .wd-header-nav-actions {
    padding-left: 20px;
    gap: 20px;
  }
  .wd-header-nav-actions a {
    font-size: var(--wd-font-size-14);
  }
  .wd-header-nav-actions .wd-wishlist-action {
    gap: 5px;
  }
  .wd-header-nav-actions .wd-wishlist-action .txt,
  .wd-header-nav-actions .wd-logged-in .txt {
    display: none;
  }
  .wd-header-nav-actions a span {
    font-size: var(--wd-font-size-20);
  }
  .wd-header-nav-actions .wd-add-to-cart {
    font-size: 8px;
    padding: 1px 3px;
    width: 14px;
    height: 14px;
  }
  /*wd-ecommerce-products-section-end*/
  .wd-shop-by-category-section .wd-shop-by-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .wd-shop-by-category-item .wd-shop-category-outer {
    padding: 12px;
  }
  .wd-shop-by-category-inner .wd-shop-by-category-inner-img {
    width: 40px;
    height: 40px;
  }
  .wd-shop-by-category-inner .wd-shop-by-category-desc {
    width: calc(100% - 52px);
    gap: 0;
  }
  .wd-shop-by-category-inner .wd-shop-by-category-desc .wd-pro-desc-heading {
    font-size: var(--wd-font-size-14);
  }
  .wd-trending-item-section .wd-trending-item-section-grid {
    flex-direction: column;
  }
  .wd-trending-item-section-grid .wd-advertise-grid-box,
  .wd-trending-item-section-grid .wd-trending-item-left-section {
    width: 100%;
  }
  .trending-product-swiper-navigation {
    top: unset;
    bottom: -45px;
    justify-content: center;
    width: 100%;
    z-index: 1;
  }
  .wd-trending-item-section-reverse .trending-product-swiper-navigation {
    right: unset;
  }
  .wd-support-section-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .wd-double-banner-section-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  /*==========Home Page 2 End==============*/
  .wd-ecom-header .wd-nav-container {
    margin-right: 40px;
  }
  .wd-ecom-header .wd-nav-container .wd-header-nav-actions {
    padding-left: 10px;
    gap: 10px;
  }
  .wd-ecom-hero-section {
    padding-top: 60px;
    margin-bottom: 70px;
    background-position: 60% 0%;
  }
  .wd-ecom-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .wd-ecom-hero-section .wd-ecom-content-box {
    position: relative;
    z-index: 1;
  }
  .wd-ecom-hero-section .wd-ecom-content-box > .sub-title {
    font-size: var(--wd-font-size-24);
    color: var(--wd-color-white);
  }
  .wd-ecom-hero-section .wd-ecom-content-box h1 {
    font-size: 32px;
    line-height: 40px;
    color: var(--wd-color-white);
  }
  .wd-ecom-hero-section .wd-ecom-content-box p {
    color: var(--wd-color-white);
    font-size: var(--wd-font-size-14);
    line-height: 24px;
  }
  .wd-ecom-ad-grid-wrapper {
    margin-top: 30px;
    margin-bottom: -70px;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
    height: 160px;
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box .wd-ecom-ad-content-box {
    top: 10px;
    bottom: 10px;
    right: 10px;
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box small {
    font-size: var(--wd-font-size-14);
  }
  .wd-ecom-ad-grid-wrapper .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    font-size: var(--wd-font-size-22);
    line-height: 30px;
  }
  .wd-category-grid-card .category-content-box {
    border-radius: var(--wd-radius-4);
  }
  .wd-ecom-advertise-banner-section .wd-ecom-ad-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .wd-ecom-advertise-banner-section .wd-ecom-ad-grid-wrapper .wd-ecom-ad-grid-box {
    height: 180px;
  }
  .wd-ecom-latest-trends-section {
    padding-top: 60px;
  }
  .wd-ecom-latest-trend-content h2 {
    font-size: var(--wd-font-size-32);
    line-height: 40px;
  }
  .wd-ecom-latest-trend-content p {
    font-size: var(--wd-font-size-14);
    line-height: 24px;
  }
  .wd-load-more-box {
    margin-top: 30px;
  }
  .wd-deal-banner-section .wd-ecom-banner-background {
    height: 220px;
  }
  .wd-deal-banner-section {
    padding-top: 60px;
  }
  .wd-grocery-hero-grid-wrapper {
    margin-top: 0;
    margin-bottom: 0;
  }
  .wd-grocery-hero-grid-wrapper .wd-advertise-grid-box {
    height: 300px;
    display: block;
  }
  .wd-grocery-hero-grid-wrapper .wd-advertise-grid-box img {
    object-fit: contain;
  }
  .wd-grocery-hero-grid-wrapper .wd-grocery-main-banner .wd-ecom-ad-grid-box {
    height: 300px;
  }
  .wd-grocery-trending-items-section .wd-section-heading {
    padding-right: 60px;
  }
  .wd-grocery-trending-items-section .wd-product-swiper-outer-card .wd-section-heading {
    padding-right: 80px;
  }
  .wd-grocery-trending-items-section .wd-ecom-ad-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-title-tags-list ul {
    justify-content: flex-start;
  }
  .wd-trending-mini-product-wrapper {
    grid-template-columns: repeat(2, 1fr);
  } 
  .wd-trending-mini-product-wrapper-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-pro-desc-container-wrapper {
    flex-direction: column;
  }
  .wd-trending-mini-thumb-product-style-2 .wd-pro-img-container {
    height: 100%;
  }
  .wd-trending-mini-thumb-product-style-2 .wd-pro-desc-container {
    width: 100%;
    text-align: center;
  }
  .wd-trending-mini-thumb-product-style-2 .wdProductThumbsItemSlider {
    width: 100%;
    margin-left: auto;
  }
  .wd-trending-mini-thumb-product-style-2 .wdProductThumbsItemSlider .swiper-wrapper .swiper-slide {
    justify-content: center;
  }
  .wd-blog-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-blog-card .wd-blog-content-box {
    padding: 20px 10px;
  }
  .wd-blog-card .wd-blog-content-box .wd-pro-desc-heading {
    font-size: var(--wd-font-size-14);
  }
  .wd-advanced-footer .wd-footer-desc-section, 
  .wd-advanced-footer .wd-footer-newsletter-section {
    padding: 30px 0;
  }
  .wd-company-info-desc-wrapper {
    padding: 30px 0;
  }
  .wd-company-info-desc-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-breadcrumb .breadcrumb li {
    font-size: var(--wd-font-size-14);
  }
  .wdCategoryBannerSlider .wd-ecommerce-advertise-box {
    height: 125px;
    background-size: cover;
  }
  .wdCategoryBannerSlider .wd-ecommerce-advertise-box .title {
    top: 10px;
    left: 10px;
    font-size: var(--wd-font-size-14);
  }
  .wdCategoryBannerSlider .wd-ecommerce-advertise-box .subtitle {
    bottom: 10px;
    left: 10px;
    font-size: var(--wd-font-size-12);
  }
  .ecommerce-advertise-swiper-button-prev {
    left: -10px;
  }
  .ecommerce-advertise-swiper-button-next {
    right: -10px;
  }
  .wd-search-filter-button {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    justify-content: center;
    width: 120px;
    background-color: var(--wd-color-black);
    border-color: var(--wd-color-black);
    color: var(--wd-color-white);
  }
  .wd-search-result-bar-box {
    padding: 14px;
  }
  .wd-search-result-bar-box .wd-product-search-result {
    padding-left: 16px;
  }
  .wd-search-filters-sidebar-with-overlay {
    width: 300px;
  }
  .wd-about-product-detail-area-wrapper {
    flex-direction: column;
  }
  .wd-about-product-slider-box {
    width: 100%;
  }
  .wd-about-product-content-box {
    width: 100%;
  }
  .wd-nav-pills {
    flex-direction: column;
  }
  .wd-nav-pills .wd-nav-pill-link::before {
    width: 3px;
    height: 100%;
  }
  .wd-product-specs-items-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-review-box-outer .wd-review-box {
    align-items: flex-start;
  }
  .wd-review-box-outer .wd-review-box .wd-review-user-content ul {
    flex-direction: column;
  }
  .wd-review-box-outer .wd-review-box .wd-review-user-content ul li:first-child::before { 
    content: none;
  }
  .wd-rating-form-box .wd-form-field-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-about-product-content-box .wd-detail-product-call-to-action-box {
    flex-wrap: wrap;
  }
  .wd-about-product-content-box .wd-item-quantity-box {
    flex: 0 0 100%;
    justify-content: center;
    gap: 0 30px;
  }
  .wd-about-product-content-box .wd-detail-product-call-to-action-box .wd-ecom-button {
    flex: 0 0 calc(50% - 10px);
    justify-content: center;
  }
  .wd-search-product-content-wrapper .wd-deal-banner-background {
    background-size: cover;
  }
  .wd-search-product-content-wrapper .wd-deal-banner-background .wd-deal-section-desc-inner {
    height: 100%;
  }
  .wd-search-product-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-search-product-content-wrapper .wd-search-result-bar-box .wd-product-search-result {
    padding-left: 0;
  }
  .wd-filter-refresh-button {
    padding: 9px 0;
  }
  .wd-search-product-content-wrapper .wd-search-sort-box .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 14px;
  }
  .wd-search-product-sidebar-wrapper .wd-search-filters-sidebar-with-overlay {
    width: 300px;
  }
  .wd-up-sale-product-slider-wrapper {
    margin-bottom: 40px;
  }
  .wd-filter-dropdown-wrapper {
    min-width: auto;
    grid-template-columns: repeat(1, 1fr);
    transform: translate(0px, 70px) !important;
    gap: 20px;
    width: 300px;
    height: 50vh;
    overflow-y: scroll;
  }
  .wd-filter-dropdown-wrapper .wd-dropdown-filter-box {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 20px;
  }
  .wd-filter-dropdown-wrapper .wd-dropdown-filter-box:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
  }
  .wd-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls input {
    padding: 8px;
  }
  .wd-filter-dropdown-wrapper .wd-filter-item .wd-extra-controls .wd-filter-price-btn {
    padding: 15px 16px;
  }
  .wd-product-search-result-bar-style-2 .wd-search-result-bar-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .wd-projuct-multi-filter-bar .wd-search-result-bar-box {
    flex-direction: column;
  }
  .wd-cart-product-header {
    display: none;
  }
  .wd-cart-product-list {
    flex-wrap: wrap;
  }
  .wd-cart-product-list .wd-cart-pro-name {
    width: 100%;
    margin-bottom: 20px;
  }
  .wd-cart-product-list .wd-cart-price,
  .wd-cart-product-list .wd-cart-total-price {
    width: 20%;
  }
  .wd-cart-product-list .wd-cart-quantity {
    width: 35%;
  }
  .wd-cart-product-list .wd-cart-delete-box {
    width: 25%;
  }
  .wd-cart-product-list .wd-cart-price span, 
  .wd-cart-product-list .wd-cart-total-price span,
  .wd-cart-delete-btn {
    font-size: var(--wd-font-size-14);
  }
  .wd-cart-delete-btn span {
    font-size: var(--wd-font-size-20);
  }
  .wd-cart-product-list .wd-cart-quantity .wd-item-quantity-box {
    padding: 6px 8px;
    gap: 6px;
    font-size: var(--wd-font-size-14);
  }
  .wd-cart-product-list .wd-quantity-count-button {
    width: 20px;
    height: 20px;
  }
  .wd-cart-product-list .wd-quantity-count-button span {
    font-size: var(--wd-font-size-14);
  }
  .wd-acc-coupon .wd-acc-inner > span {
    display: none;
  }
  .wd-terms {
    flex-direction: column;
  }
  .wd-acc-coupon .wd-acc-inner input {
    width: 100%;
  }
  .wd-checkout-form-box {
    padding: 20px;
  }
  .wd-about-us-experience-banner {
    height: 200px;
  }
  .wd-about-us-experience-cont {
    padding: 10px 30px;
    top: 20px;
  }
  .wd-about-us-experience-cont .experience-count {
    font-size: 36px;
    line-height: 40px;
  }
  .wd-about-us-experience-cont .exp-txt {
    font-size: var(--wd-font-size-14);
    line-height: 16px;
    width: 100px;
  }
  .wd-video-play-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .wd-video-play-btn > span {
    font-size: 28px;
  }
  .wd-choose-us-rating-box {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .wd-choose-us-client-rating img {
    margin-left: -18px;
    width: 32px;
    height: 32px;
  } 
  .wd-choose-us-client-rating .wd-client-more-rating {
    width: 32px;
    height: 32px;
    margin-left: -18px;
  }
  .wd-choose-us-client-rating .wd-client-more-rating span {
    font-size: var(--wd-font-size-18);
  }
  .wd-choose-us-rating-box .wd-choose-us-rating-cont h6 {
    font-size: var(--wd-font-size-16);
    line-height: 20px;
  }
  .wd-choose-us-rating-box .wd-choose-us-rating-cont > span {
    font-size: var(--wd-font-size-12);
    line-height: 18px;
  } 
  .wd-choose-us-grid-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .wd-choos-us-grid-box:first-child,
  .wd-choos-us-grid-box:nth-child(2),
  .wd-choos-us-grid-box:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
  .wd-faqs-section .wd-accordion-style .btn-link {
    padding: 15px;
  }
  .wd-faqs-section .wd-accordion-style .btn-link span.text-theme-secondary {
    margin-right: 10px;
  }
  .wd-faqs-section .wd-accordion-style .btn-link::after,
  .wd-faqs-section .wd-accordion-style .btn-link.collapsed::after {
    font-size: var(--wd-font-size-22);
    right: 10px;
    top: 13px;
  }
  .wd-faqs-section .wd-accordion-style .btn-link .heading-txt {
    width: calc(100% - 55px);
  }
  .wd-faqs-section .wd-accordion-style .card-body {
    padding: 15px;
  }
  .wd-cart-item-sidebar {
    top: 10px;
    width: 300px;
  }
  .wd-cart-item-sidebar.show {
    right: 10px;
  }
  .wd-cart-action-box {
    gap: 10px;
  }
  .wd-cart-action-box .wd-ecom-button {
    font-size: var(--wd-font-size-12);
    width: auto;
  }
  .wd-default-modal .wd-default-modal-close-btn {
    top: 5px;
    right: 5px;
    z-index: 2;
    padding: 2px;
    background-color: var(--wd-color-black);
    color: var(--wd-color-white);
    border-radius: var(--wd-radius-4);
    font-size: var(--wd-font-size-20);
  }
  .wd-cart-item-sidebar .wd-sale-product-cart-right-col {
    height: 328px;
  }
  .wd-contact-us-section {
    padding-bottom: 60px;
  }
  .wd-contact-us-content .form-group {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-404-section {
    padding-top: 60px;
  } 
  .wd-compare-section {
    padding-top: 30px;
  }
  .wd-compare-items-wrapper {
    gap: 10px;
  }
  .wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-icon {
    width: 40px;
    height: 40px;
  }
  .wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-icon span {
    font-size: var(--wd-font-size-30);
  }
  .wd-compare-item-heading-sidebar .wd-ad-compare-btn-box .wd-compare-txt {
    font-size: var(--wd-font-size-12);
  }
  .wd-compare-item-heading-sidebar .wd-ad-compare-btn-box {
    height: 275px;
  }
  .wd-compare-item-heading-box h6 {
    padding: 8px 10px;
    font-size: var(--wd-font-size-12);
  }
  .wd-compare-item-heading-sidebar,
  .wd-compare-item-detail-bar {
    min-width: 182px;
  }
  .wd-compare-item-detail-bar .wd-compare-item-meta-box {
    padding: 10px 10px 0 10px;
  }
  .wd-compare-item-detail-bar .wd-compare-item-meta-box .wd-compare-item-img-box {
    height: 165px;
  }
  .wd-compare-item-detail-bar .wd-compare-item-meta-box .wd-ecom-button {
    font-size: var(--wd-font-size-12);
    padding: 4px 4px 4px 12px;
  }
  .wd-compare-item-detail-bar .wd-compare-item-meta-box .wd-ecom-button .wd-ecom-btn-svg {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    font-size: var(--wd-font-size-18);
  }
  .wd-compare-item-detail-bar .wd-compare-item-box {
    padding: 4px 10px;
    height: 38px;
    font-size: var(--wd-font-size-12);
  }
  .wd-compare-item-detail-bar .wd-fea-pro-price .wd-pro-actual-price {
    font-size: var(--wd-font-size-12);
  }
  .wd-compare-item-detail-bar .wd-fea-pro-price .wd-pro-discounted-price {
    font-size: var(--wd-font-size-14);
  }
  .wd-compare-item-detail-bar .wd-stock-tag {
    font-size: var(--wd-font-size-12);
  }
  .wd-pagination-wrapper .wd-pagination-items {
    font-size: var(--wd-font-size-14);
  }
  .wd-pagination .wd-page-item .wd-page-link {
    font-size: var(--wd-font-size-14);
    padding: 8px 6px;
    min-width: 30px;
    height: 40px;
  }
  .wd-back-to-top-button {
    bottom: 20px;
    right: 20px;
  }
  .wd-login-modal .modal-body {
    padding-top: 20px;
  }
  .wd-login-modal .wd-signup-content h4 {
    font-size: var(--wd-font-size-20);
    margin-bottom: 0;
  }
  .wd-login-modal .wd-signup-content p {
    font-size: var(--wd-font-size-14);
    margin-bottom: 20px;
  }
  .wd-login-modal .wd-signup-content .field-box {
    margin-bottom: 20px;
  }
  .wd-login-modal .wd-signup-content .bottom-content .break-block {
    margin-top: 20px;
  }
  .wd-login-modal .wd-signup-content .wd-footer-checkbox-section .checkbox-label,
  .wd-login-modal .wd-signup-content .field-box .forget-password a {
    font-size: var(--wd-font-size-12);
  }
  .wd-login-modal .wd-signup-content .bottom-content .break-block span::before, 
  .wd-login-modal .wd-signup-content .bottom-content .break-block span::after {
    width: 46px;
  }
  .wd-login-modal .wd-signup-content .bottom-content .social-links-main {
    margin: 20px 0;
  }
  .wd-login-modal .wd-signup-content .bottom-content .social-links-main .soical-link {
    width: 50px;
  }
  .wd-electro-brcategory-header.wd-brcategory-header {
    height: 40px;
  }
  .wd-electro-brcategory-header.wd-brcategory-header .wd-brcategory-container,
  .wd-electro-brcategory-header.wd-brcategory-header .wd-bc-btn {
    height: 38px;
  }
  .wd-electro-brcategory-header .wd-bc-btn .wd-br-icon {
    padding: 11px 9px 9px 9px;
  }
  .wd-electro-brcategory-header .wd-bc-btn .wd-br-icon span {
    font-size: 18px;
  }
  .wd-electro-brcategory-header .wd-bc-btn .wd-br-button {
    font-size: 12px;
    gap: 5px;
    padding: 9px 9px 9px 0px;
  }
  .wd-electro-brcategory-header.wd-brcategory-header .sb-header-container .wd-bc-sb-menu {
    width: calc(100% - 210px);
    margin-left: 10px;
  }
  .wd-electro-brcategory-header.wd-brcategory-header .wd-electronic-search-bar form input {
    height: 38px;
    font-size: var(--wd-font-size-12);
    padding: 15px 5px 15px 0;
  }
  .wd-top-bar-section .wd-top-bar-content {
    padding: 6px 0;
    gap: 5px;
    flex-wrap: wrap;
  }
  .wd-ecom-header .sb-header-container {
    height: auto;
    padding: 10px 0;
  }
  .wd-ecom-header .burger-menu {
    top: 13px;
  }
  .wd-ecom-header .sb-menu {
    top: 50px;
  }
  .wd-ecom-header .sb-menu > ul {
    padding-bottom: 5px;
  }
  .wd-ecom-header .sb-menu > ul > li > a {
    padding: 13px 15px;
  }
  .wd-elec-advertise-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
  .wd-elec-advertise-container .wd-elec-left-panel {
    grid-column: 1;
    grid-row: 2;
  }
  .wd-elec-advertise-container .wd-elec-middle-panel {
    grid-column: 1 / 2;
    grid-row: 1;
    height: 320px;
    background-size: cover;
    background-position: 57%;
  }
  .wd-elec-advertise-container .wd-elec-right-panel {
    grid-column: 1;
    grid-row: 3;
  }
  .wd-elec-advertise-content-box {
    top: 20px;
    left: 20px;
  }
  .wd-elec-advertise-content-box .sub-title {
    font-size: var(--wd-font-size-18);
    line-height: 22px;
  }
  .wd-elec-advertise-content-box .title {
    font-size: var(--wd-font-size-24);
    line-height: 32px;
  }
  .wd-elec-middle-panel .wd-deal-countdown-desc {
    bottom: 20px;
    right: 20px;
  }
  .wd-elec-left-panel .wd-ecommerce-advertise-box, 
  .wd-elec-right-panel .wd-ecommerce-advertise-box {
    height: 160px;
  }
  .wd-elec-product-grid-box {
    padding: 20px;
  }
  .wd-elec-product-grid-box h2 {
    font-size: var(--wd-font-size-20);
    line-height: 24px;
    margin-bottom: 15px;
  }
  .wd-elec-product-navigation {
    top: 18px;
    right: 20px;
  }
  .wd-elec-product-item-box .wd-elec-product-img-box {
    height: 200px;
  }
  .wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-meta {
    width: 100%;
  }
  .wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-btn {
    width: 32px;
    height: 32px;
    background-color: var(--wd-color-primary-blue);
    position: absolute;
    top: 158px;
    right: 10px;
  }
  .wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-btn span {
    font-size: var(--wd-font-size-20);
  }
  .wd-coral-red .wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-btn {    
    background-color: var(--wd-color-coral-red);
  }
  .wd-elec-product-item-box .wd-elec-product-content-box .wd-elec-product-btn span {
    color: var(--wd-color-white);
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box {
    height: 350px;
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box .wd-desc-title {
    font-size: var(--wd-font-size-16);
    margin-bottom: 10px;
  }
  .wd-top-bar-section .wd-top-bar-links a {
    font-size: var(--wd-font-size-12);
  }
  .wd-top-bar-section .wd-top-bar-links::before {
    top: 3px;
    height: 14px;
  }
  .wd-top-bar-section .wd-top-bar-links a span {
    font-size: var(--wd-font-size-18);
  }
  .wd-glasses-top-action-bar {
    padding: 10px 0;
  }
  .wd-glasses-topbar-search-side .wd-glasses-search-bar {
    width: calc(100% - 152px);
  }
  .wd-glasses-actions-side {
    gap: 20px 40px;
  }
  .wd-glasses-header,
  .wd-glasses-header .wd-brcategory-container {
    height: 44px;
  }
  .wd-glasses-header .wd-brcategory-container .wd-customer-service {
    display: flex;
  } 
  .wd-glasses-header .sb-menu ul {
    top: 44px
  }
  .wd-glasses-header .burger-menu {
    top: 14px;
  }
  .wd-glasses-hero-section {
    padding-top: 60px;
    background-position: 65%;
  }
  .wd-glasses-hero-content {
    margin-bottom: 40px;
  }
  .wd-hero-category-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .wd-hero-category-grid-wrapper .wd-ecommerce-advertise-box {
    height: 100px;
  }
  .wd-hero-category-grid-wrapper .wd-ecommerce-advertise-box .title {
    top: 10px;
    left: 10px;
  }
  .wd-hero-category-grid-wrapper .wd-ecommerce-advertise-box .subtitle {
    bottom: 10px;
    left: 10px;
  }
  .wd-glasses-product-section .wd-elec-product-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .wd-glasses-product-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .wd-glasses-product-wrapper .wd-advertise-grid-box {
    width: 100%;
  }
  .wd-glasses-product-slider-main {
    width: 100%;
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductThumbsSlider {
    width: 60px;
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box {
    height: 200px;
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductItemSlider {
    width: calc(100% - 65px);
  }
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductThumbsSlider .wd-vendor-product-main-item img,
  .wd-glasses-product-item-box .wd-elec-product-img-box .wdVendorProductItemSlider .wd-vendor-thumb-product-item img {
    transform: scale(0.7);
  }
  .wd-single-vendor-product-wrapper .wd-glasses-product-item-box .wd-elec-product-content-box .wd-elec-product-btn {
    position: unset;
  }
  .wd-single-vendor-box .wd-store-author-detail-box {
    padding: 10px;
    gap: 10px;
  }
  .wd-single-vendor-box .wd-store-author-detail-box .wd-store-author-content {
    gap: 10px;
  }
  .wd-single-vendor-box .wd-store-author-detail-box .wd-store-author-content .wd-store-author-logo {
    width: 65px;
    height: 51px;
  }
  .wd-single-vendor-box .wd-store-author-detail-box .wd-store-author-content .wd-store-author-meta h5 {
    font-size: var(--wd-font-size-14); 
    line-height: 20px;
  }
  .wd-single-vendor-box .wd-store-author-detail-box .wd-ecom-button {
    padding: 6px;
    gap: 5px;
    font-size: var(--wd-font-size-12);
  }
  .wd-single-vendor-box .wd-store-author-detail-box .wd-ecom-button .wd-ecom-btn-svg {
    width: 22px;
    height: 22px;
    font-size: var(--wd-font-size-16);
  }
  .wd-join-newsletter-box {
    padding: 20px;
  }
  .wd-join-newsletter-box .wd-join-newsletter-content {
    gap: 10px;
    align-items: flex-start;
  }
  .wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-icon {
    width: 40px;
    height: 40px;
  }
  .wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-icon span {
    font-size: 44px;
  }
  .wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-meta h4 {
    font-size: var(--wd-font-size-20);
    line-height: 32px;
  }
  .wd-join-newsletter-box .wd-join-newsletter-content .wd-join-newsletter-meta p {
    font-size: var(--wd-font-size-14);
  }
  .wd-address-box .wd-address-meta small {
    font-size: var(--wd-font-size-12);
  }
  .wd-address-box .wd-address-meta span {
    font-size: var(--wd-font-size-14);
    line-height: 24px;
    word-break: break-word;
  }
  .wd-auto-moto-slider-wrapper {
    margin: 0 20px;
  }
  .auto-motor-swiper-button-prev {
    left: -20px;
  }
  .auto-motor-swiper-button-next {
    right: -20px;
  }
  .wd-auto-hero-content-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-auto-hero-content-wrapper .wd-auto-hero-slider-wrapper {
    width: 100%;
  }
  .wd-auto-hero-banner-box {
    height: 250px;
  }
  .wd-auto-hero-full-banner-box {
    height: 200px;
    aspect-ratio: 21 / 7;
  }
  .wd-auto-hero-banner-box .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
    padding-bottom: 0;
  }
  .wd-auto-hero-banner-box .wd-auto-hero-content-box {
    top: 10px;
    left: 10px;
  }
  .wd-auto-hero-banner-box .wd-auto-hero-content-box span {
    font-size: var(--wd-font-size-16);
  }
  .wd-auto-hero-banner-box .wd-auto-hero-content-box h1 {
    font-size: var(--wd-font-size-24);
    margin-bottom: 10px;
  }
  .wd-auto-hero-banner-box .wd-deal-countdown-desc {
    bottom: 10px;
    left: 10px;
    transform: scale(0.7);
    transform-origin: bottom left;
  }
  .wd-auto-swiper-pagination {
    bottom: 10px !important;
    right: 10px;
    transform: scale(0.7);
    transform-origin: bottom right;
  }
  .wd-auto-parts-product-item {
    padding: 10px;
  }
  .wd-auto-parts-product-item .wd-pro-img-container {
    height: 140px;
  }
  .wd-auto-parts-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-auto-popular-picks-wrapper .wd-advertise-grid-box {
    display: none;
  }
  .wd-auto-popular-picks-wrapper .wd-auto-popular-picks-container {
    width: 100%;
  }
  .wd-auto-parts-product-list {
    padding: 10px;
    height: 162px;
    gap: 10px;
  }
  .wd-auto-parts-product-list .wd-pro-img-container {
    width: 142px;
    height: 142px;
  }
  .wd-auto-parts-product-list .wd-pro-desc-container {
    width: calc(100% - 190px);
  }
  .wd-auto-parts-product-list .wd-pro-quick-actions {
    right: 10px;
  }
  .wd-auto-parts-product-item .wd-pro-desc-container .wd-pro-item-rating {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .wd-auto-parts-product-items-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-auto-brand-logo-box {
    padding: 0;
  }
  .wd-auto-brand-logo-box .wd-pro-img-container {
    height: 100px;
  }
  .wd-auto-brand-logo-box .wd-pro-img-container img {
    transform: scale(1);
  }
  .wd-auto-vertical-ad-banner-wrapper {
    grid-template-columns: 1fr;
  }
  .wd-auto-vertical-ad-banner-wrapper .wd-advertise-grid-box {
    height: 460px;
  }
  .wd-auto-parts-grid-wrapper-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-auto-full-banner-pagination {
    transform-origin: center;
  }
  .wd-pet-top-bar-section .wd-social-links {
    padding-right: 0;
  }
  .wd-pet-top-bar-section .wd-social-links::before {
    content: none;
  }
  .wd-pet-top-bar-section .wd-social-links a svg {
    width: 16px;
    height: 16px;
  }
  .wd-pet-top-bar-section .wd-help-text {
    display: none;
  }
  .wd-pet-header .wd-brcategory-container {
    padding: 18px 20px;
  }
  .wd-pet-header .burger-menu {
    right: 20px;
  }
  .wd-pet-header .sb-menu .navbar-items a {
    padding: 14px 20px !important;
  }
  .wd-pet-header .sb-menu .navbar-items:first-child a {
    padding-left: 20px !important;
  }
  .wd-pet-banner-content-box {
    height: 330px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta {
    height: 330px;
    width: 300px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta > span {
    font-size: var(--wd-font-size-16);
    line-height: 22px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta h1 {
    font-size: var(--wd-font-size-28);
    line-height: 32px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta p {
    font-size: var(--wd-font-size-14);
    margin-bottom: 10px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta .wd-ecom-button {
    font-size: var(--wd-font-size-12);
    padding: 4px 4px 4px 12px;
  }
  .wd-pet-banner-content-box .wd-pet-banner-meta .wd-ecom-button .wd-ecom-btn-svg {
    width: 20px;
    height: 20px;
    font-size: var(--wd-font-size-18);
  }
  .wd-pet-swiper-pagination {
    transform: scale(0.7);
    transform-origin: bottom right;
    right: 10px;
    bottom: 20px !important;
  }
  .wd-pet-ad-banner-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
  .wd-pet-latest-trend-section .wd-ecom-latest-trend-content > span {
    font-size: var(--wd-font-size-18);
    margin-bottom: 10px;
  }
  .wd-pet-latest-trend-section .wd-ecom-latest-trend-content h2 {
    font-size: var(--wd-font-size-28);
    line-height: 36px;
  }
  .wd-announcement-bar {
    height: 40px;
  }
  .wd-announcement-item {
    font-size: var(--wd-font-size-14);
  }
  .wd-announcement-icon {
    margin: 0 20px;
    font-size: var(--wd-font-size-18);
  }
  .wd-fashion-section-heading {
    font-size: var(--wd-font-size-28);
    line-height: 36px;
  }
  .wd-fashion-section-para {
    font-size: var(--wd-font-size-14);
    line-height: 24px;
  }
  .wd-fashion-view-all-btn {
    font-size: var(--wd-font-size-14);
  }
  .wd-cloth-category-product-item .wd-pro-img-container {
    width: 120px;
    height: 120px;
  }
  .wd-cloth-fashion-product {
    min-width: 100%;
  }
  .wd-cloth-fashion-product .wd-pro-img-container {
    height: 300px;
  }
  .wd-cloth-fashion-product .wd-pro-hover-btn {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
  }
  .wd-pro-quick-actions {
    top: 10px;
    right: 10px;
    visibility: visible;
    opacity: 1;
    z-index: 1;
  }
  .wd-glasses-product-item-box .wd-pro-quick-actions {
    z-index: 2;
  }
  .wd-product-item .wd-pro-hover-btn {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
    font-size: var(--wd-font-size-12);
  }
  .wd-product-item .wd-pro-hover-btn span {
    font-size: var(--wd-font-size-18);
  }
  .wd-cloth-fashion-deal-section .wd-deal-countdown-desc {
    margin-bottom: 0px;
  }
  .wd-cloth-fashion-deal-section .wd-ecom-latest-trend-content > span {
    font-size: var(--wd-font-size-18);
  }
  .wd-cloth-fashion-deal-section .wd-ecom-latest-trend-content h2 {
    font-size: 28px;
    line-height: 42px;
  }
  .wd-cloth-fashion-ad-wrapper {
    margin-bottom: 0;
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  .wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box {
    height: 220px;
  }
  .wd-cloth-fashion-ad-wrapper .wd-ecom-ad-grid-box .wd-ecom-ad-content-box.wd-ecom-ad-content-left {
    left: 10px;
  }
  .wd-simple-primary-btn, .wd-simple-secondary-btn {
    font-size: var(--wd-font-size-12);
    line-height: 18px;
    padding: 8px 22px;
  }
  .wd-cherry-red .wd-input-svg {
    display: none;
  }
  .wd-pro-wishlist, .wd-pro-compare {
    visibility: visible;
    opacity: 1;
  }
  .wd-pro-mobile-cart,
  .wd-pro-quickview {
    visibility: visible;
    opacity: 1;
    cursor: pointer;
  }
  .wd-product-item:hover .wd-fea-pro-price {
    display: block;
  }
  .wd-product-item:hover .wd-pro-cart-btn {
    display: none;
  }
  .wd-compare-item-modal .modal-body {
    padding: 10px;
  }
  .wd-compare-item-modal .wd-compare-item-detail-bar {
    width: 182px;
  }
  .wd-compare-bar .wd-compare-left-cont p {
    font-size: var(--wd-font-size-12);
    line-height: 18px;
  }
  .wd-compare-bar .wd-compare-right-cont .wd-ecom-button {
    font-size: var(--wd-font-size-12);  
    line-height: 22px;
    padding: 4px 4px 4px 10px;
  }
  .wd-compare-bar .wd-compare-right-cont .wd-ecom-button .wd-ecom-btn-svg {
    width: 24px;
    height: 24px;
    font-size: var(--wd-font-size-18);
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list {
    padding: 10px;
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-pro-name {
    gap: 10px;
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-pro-name .wd-cart-pro-img {
    width: 40px;
    height: 40px;
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-pro-name a:has(h6) {
    width: calc(100% - 50px);
  }
  .wd-wishlist-items-wrapper .wd-cart-product-list .wd-cart-pro-name h6 {
    font-size: var(--wd-font-size-14);
  }
  .wd-wishlist-section .wd-section-heading {
    margin-bottom: 20px;
  }
  .wd-compare-items-wrapper.wd-compare-2-items-wrapper {
    grid-template-columns: 182px auto;
  }
  .wd-social-tags-box .wd-tags-list li a {
    font-size: var(--wd-font-size-14);
    line-height: 18px;
  }
  .wd-product-grid.columns_per_row_6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.columns_per_row_5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.columns_per_row_4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.columns_per_row_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.columns_per_row_2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.sub_columns_per_row_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-contact-us-content .form-row {
    flex-direction: column;
  }
  .wd-contact-us-content .form-row .half-width {
    width: 100%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }
  .woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
    float: unset;
  }
  .woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 100%;
  }
  .wd-product-hero-grid .wd-product-hero-image {
    height: 290px;
  }
  .woocommerce-cart .is-small table.wc-block-cart-items .wc-block-cart-items__row,
  .woocommerce-cart .is-mobile table.wc-block-cart-items .wc-block-cart-items__row {
    grid-template-columns: 100px calc(100% - 100px);
    border-top: 1px solid rgba(0, 0, 0, 0.10);
  }
  .woocommerce-cart .is-small table.wc-block-cart-items .wc-block-cart-items__row:first-child,
  .woocommerce-cart .is-mobile table.wc-block-cart-items .wc-block-cart-items__row:first-child {
    border-top: 0;
  }
  .woocommerce-cart .is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
  .woocommerce-cart .is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
  .woocommerce-cart .is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image,
  .woocommerce-cart .is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
    margin-bottom: 10px;
  }
  .woocommerce-cart .is-small table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product,
  .woocommerce-cart .is-mobile table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
    grid-column-start: 1;
    grid-row-start: 2;
    margin-bottom: 0;
  }
  .wd-header-primary .wd-search-dropdown .wd-dropdown-menu {
    inset: 0px -212px auto auto !important;
  }
  .wd-search-dropdown .wd-dropdown-menu {
    min-width: 280px;
  }
  .wd-header-primary .wd-actions span.wd-action-icon {
    top: 8px;
  }
  .wd-footer-contact-section h4,
  .wd-footer-contact-detail .wd-footer-contact-detail-name {
    font-size: var(--wd-font-size-16);
  }
  .wd-header-primary .sb-menu .wd-actions {
    margin-right: 25px;
  }
  .wd-nav-container .wd-menu-dropdown {
    position: unset;
  }
  .wd-nav-container .wd-menu-dropdown .wd-dropdown-menu {
    inset: 0px 0px auto auto !important;
  }
  .wd-nav-container .wd-menu-dropdown .wd-dropdown-menu input {
    display: block;
  }
  .wd-ecom-ad-grid-box {
    padding: 15px; 
  }
  .wd_middle_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    font-size: var(--wd-font-size-26);
    line-height: 36px;
  }
  .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    font-size: var(--wd-font-size-16);
    line-height: 22px;
  }
  .wd-ecom-ad-content-box.flex-column .wd-ecom-title-box h3 {
    max-width: 100%;
  }
  .wd_middle_banner .wd-ecom-ad-content-box .wd-ecom-title-box h3 {
    font-size: var(--wd-font-size-24);
    line-height: 32px;
  }
  .wdCollectionHeroSlider .swiper-slide {
    padding: 20px 0 60px;
  }
  .wd-section-carousel-desc h1 {
    font-size: var(--wd-font-size-28);
    line-height: 32px;
  }
  .wd-section-carousel-img {
    height: 300px;
  }
  .collection-hero-swiper-pagination {
    bottom: 20px !important;
  }
  .woocommerce {
    padding: 60px 0;
  }
  section:has(.wc-block-components-sidebar-layout.wc-block-cart) {
    padding: 60px 0 20px 0;
  }
  .wd-glasses-hero-content h1 {
    font-size: var(--wd-font-size-28);
    line-height: 46px; 
  }
  .wd-glasses-hero-content h3 {
    font-size: var(--wd-font-size-22);
    line-height: 32px; 
  }
}
@media (max-width: 420px) {
  /*==========Home Page 1==============*/
  /*wd-featured-product*/
  .wd-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-item {
    min-width: 124px;
  }
  /* .wd-pro-img-container {
    height: 167px;
  } */
  .wd-pro-total-reviews {
    font-size: 10px;
  }
  .wd-pro-item-rating {
    gap: 2px;
  }
  .wd-pro-item-rating .wd-pro-star-rating {
    gap: 0;
  }
  .wd-product-item .wd-pro-hover-btn {
    padding: 8px 8px;
  }
  /*collection-section*/

  .wd-collection-section {
    padding: 60px 0;
  }
  .wd-first-collection .wd-right-circle {
    width: 66.498px;
    height: 66.498px;
    bottom: 105px;
    left: 15.4px;
  }
  .wd-first-collection .wd-left-circle {
    width: 90.258px;
    height: 90.258px;
    top: 92px;
    right: 9.4px;
  }
  .wd-sale-product-container .wd-sale-product-left-col, 
  .wd-sale-product-container .wd-sale-product-right-col {
    width: 100%;
  }

  /*sale-section*/
  /* .wd-right-col-item .wd-pro-desc-heading {
    width: auto;
  } */
  /*countdown-section*/
  .wd-section-para {
    font-size: var(--wd-font-size-16);
  }
  .wd-deal-countdown-desc .wd-deal-countdown-desc-clock {
    gap: 15px;
  }
  .wd-products-carousel .owl-nav {
    position: static;
    display: block;
  }

  /*info-section*/
  .wd-company-info-section {
    padding: 0 0 30px 0;
  }
  /*footer-section*/
  .wd-footer-section {
    padding: 30px 0;
  }
  .wd-footer-app-img-section {
    gap: 12px;
  }
  .wd-footer-app-security-section svg {
    max-width: 300px;
  }
  .wd-footer-checkbox-section .checkbox-label {
    font-size: var(--wd-font-size-12);
  }
  .wd-footer-checkbox-section .checkbox-label a {
    font-size: var(--wd-font-size-12);
  }
  .wd-footer-newsletter-section .wd-footer-newsletter-para {
    font-size: var(--wd-font-size-14);
  }
  /*==========Home Page 1 End==============*/
  /*==========Home Page 2 Start==============*/
  /*wd-ecommerce-products-section-start*/
  .wd-ecommerce-products-section .wd-ecommerce-products-section-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .wd-ecommerce-product-item .wd-ecommerce-product-item-img img {
    min-width: 120px;
    height: 110px;
    width: 0;
  }
  .wd-ecommerce-product-item .wd-ecommerce-product-item-desc-outer {
    gap: 10px;
  }
  .wd-ecommerce-products-section .wd-ecommerce-product-item{
    padding: 15px;
  }
  .wd-ecommerce-product-item-desc-inner .wd-desc-title {
    font-size: var(--wd-font-size-14);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: end;
  }
  .wd-desc-price .wd-disc-price{
    font-size: 15px;
  }
  .wd-ecommerce-product-item-desc-outer .wd-btn-secondary {
    padding: 6px 4px;
  }
  /*wd-ecommerce-products-section-end*/
  .wd-detail-product-image-box {
    height: 350px;
  }
  .wd-detail-product-thumb-image-box {
    height: 80px;
  }
  /*==========Home Page 2 End==============*/
  .wd-product-specs-item-box {
    flex-direction: column;
  }
  .wd-product-specs-item-box .wd-product-spec-name,
  .wd-product-specs-item-box .wd-product-spec-detail {
    width: 100%;
  }
  .wd-glasses-search-bar .wd-glasses-search-box input {
    height: 32px;
    padding: 8px 12px;
    font-size: var(--wd-font-size-12);
  }
  .wd-glasses-search-bar .wd-glasses-search-box .wd-ecom-btn-svg {
    width: 24px;
    height: 24px;
    font-size: 18px;
    top: 4px;
    right: 4px;
  }
  .wd-glasses-actions-side {
    gap: 20px;
  }
  .wd-hotline-box .wd-hotline-meta a {
    font-size: var(--wd-font-size-12);
  }
  .wd-glasses-quick-actions {
    gap: 15px;
  }
  .wd-glasses-quick-actions .wd-glasses-action-item span {
    font-size: var(--wd-font-size-18);
  }
  .wd-glasses-header .wd-brcategory-container .wd-customer-service {
    gap: 10px;
  }
  .wd-glasses-header .wd-customer-service .wd-daily-deal span, 
  .wd-glasses-header .wd-order-tracking span {
    font-size: var(--wd-font-size-18);
  }
  .wd-customer-service .wd-daily-deal a,
  .wd-glasses-header .wd-order-tracking a {
    font-size: var(--wd-font-size-12);
  }
  .wd-customer-service .wd-daily-deal a {
    padding-right: 10px;
  }
  .wd-single-vendor-product-wrapper {
    flex-direction: column;
  }
  .wd-single-vendor-product-wrapper .wd-glasses-product-item-box {
    width: 100%;
  }
  .wd-auto-parts-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-auto-parts-product-list {
    flex-direction: column;
    height: auto;
  }
  .wd-auto-parts-product-list .wd-pro-img-container {
    width: 100%;
  }
  .wd-auto-parts-product-list .wd-pro-desc-container {
    width: 100%;
  }
  .wd-auto-parts-product-list .wd-pro-quick-actions {
    justify-content: flex-start;
    right: 15px; 
  }
  .wd-pet-header .wd-glasses-quick-actions {
    gap: 20px;
  }
  .wd-pet-header .wd-glasses-quick-actions .wd-glasses-action-item::before {
    top: 1px;
    left: -10px;
  }
  .wd-pet-header .wd-glasses-quick-actions .wd-glasses-action-item span.wd-add-to-cart {
    left: 10px;
  }
  .wd-product-grid.columns_per_row_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wd-product-grid.sub_columns_per_row_3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-product-hero-grid .wd-product-hero-image {
    height: 200px;
  }
  .wd-header-primary .wd-actions span.wd-action-icon {
    height: auto;
    width: auto;
    padding: 0;
    background-color: transparent;
    border: 0;
  }
  .wd-primary-header-mobile-menu {
    top: 12px;
  }
  .wd-header-primary .wd-actions .wd-action-icon ~ .wd-add-to-cart {
    top: 0px;
    right: -10px;
  }
  .wd-header-primary .wd-search-dropdown .wd-dropdown-menu {
    inset: 0px -150px auto auto !important;
    transform: translate(0, 26px) !important;
  }
  .wd-header-primary .wd-search-dropdown .wd-dropdown-menu input {
    max-width: 260px;
  }
  .wd-nav-container .wd-menu-dropdown .wd-dropdown-menu input {
    width: 260px;
  }
  .wd-pet-top-bar-section .wd-social-links {
    display: none;
  }
  .wd-top-bar-section .wd-top-bar-links::before {
    content: none;
  }
}
@media (max-width: 380px) {
  .wd-trending-mini-product-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-trending-mini-product-wrapper-grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-blog-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-search-product-grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-elec-featured-pro-wrapper .wd-advertise-grid-box {
    width: 100%;
  }
  .wd-elec-featured-pro-wrapper .wd-elec-product-grid-box {
    order: unset;
  }
  .wd-glasses-product-section .wd-elec-product-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-about-product-content-box .variations_form .variations select {
    max-width: 180px;
  }
  .wd-product-grid.columns_per_row_6 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-product-grid.columns_per_row_5 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-product-grid.columns_per_row_4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-product-grid.columns_per_row_3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .wd-product-grid.columns_per_row_2 {
    grid-template-columns: repeat(1, 1fr);
  }
}