@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap");

/* hasokey font  */
@font-face {
  font-family: "Haskoy";
  src: url("../fonts/haskoy/Haskoy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Haskoy";
  src: url("../fonts/haskoy/Haskoy-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Haskoy";
  src: url("../fonts/haskoy/Haskoy-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Haskoy";
  src: url("../fonts/haskoy/Haskoy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Haskoy";
  src: url("../fonts/haskoy/Haskoy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Haskoy";
  src: url("../fonts/haskoy/Haskoy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --clr-F6EEE4: #f6eee4;
  --clr-760606: #760606;
  --clr-C0392B: #c0392b;
  --clr-EFEFEF80: #efefef80;
  --clr-C0BDBD: #c0bdbd;
  --clr-5C5C5C: #5c5c5c;
  --clr-1D1916: #1d1916;

  --clr-0433791A: #0433791a;
  --clr-00000033: #00000033;

  --clr-white: #ffffff;
  --clr-black: #000000;

  --font-haskoy: "Haskoy", sans-serif;
  --font-gabarito: "Gabarito", sans-serif;

  --fs-50: 35px;
  --fs-40: 30px;
  --fs-30: 24px;
  --fs-25: 22px;
  --fs-22: 20px;
  --fs-20: 18px;
  --fs-18: 16px;
  --fs-16: 15px;

  --spc-100: 100px;
  --spc-50: 50px;
  --spc-30: 50px;
}

@media (max-width: 1399.98px) {
  :root {
    --fs-50: 32px;
    --fs-40: 28px;
    --fs-30: 23px;

    --spc-100: 80px;
    --spc-50: 40px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --fs-50: 30px;
    --fs-40: 27px;
    --fs-30: 22px;

    --spc-100: 70px;
    --spc-50: 35px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --fs-50: 28px;
    --fs-40: 26px;
    --fs-30: 21px;
    --fs-25: 20px;
    --fs-22: 19px;
    --fs-20: 18px;
    --fs-18: 15.5px;

    --spc-100: 60px;
    --spc-50: 30px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --fs-50: 26px;
    --fs-40: 25px;
    --fs-30: 20px;
    --fs-25: 19px;
    --fs-22: 18px;
    --fs-20: 16px;
    --fs-18: 15px;
    --fs-16: 14px;

    --spc-100: 40px;
    --spc-50: 30px;
    --spc-30: 20px;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-gabarito);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:is(h1, h2, h3, h4, h5, h6, a, p, li) {
  margin: 0;
  padding: 0;
}

p {
  font-size: var(--fs-20);
  line-height: 1.5;
  color: var(--clr-5C5C5C);
}

p + p {
  margin-top: 1rem;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--clr-1D1916);
}

a:hover {
  color: var(--clr-760606);
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

:is(p, li) {
  font-family: var(--font-haskoy);
}

.custom_container {
  max-width: 1820px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
}

/* for spacing */
.pt_100 {
  padding-top: var(--spc-100);
}

.pb_100 {
  padding-bottom: var(--spc-100);
}

.pt_50 {
  padding-top: var(--spc-50);
}

.pb_50 {
  padding-bottom: var(--spc-50);
}

.mt_100 {
  margin-top: var(--spc-100);
}

.mb_100 {
  margin-bottom: var(--spc-100);
}

.mt_50 {
  margin-top: var(--spc-50);
}

.mb_50 {
  margin-bottom: var(--spc-50);
}

.primary_btn {
  position: relative;
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: 0.75;
  padding: 20px 80px 20px 40px;
  border-radius: 30px;
  border: 1px solid rgba(221, 19, 33, 0.3);
  background: linear-gradient(
    90deg,
    rgba(221, 19, 33, 0.05) 0.18%,
    rgba(221, 19, 33, 0.15) 99.77%
  );
  transition: all 0.4s ease;
  color: var(--clr-DD1321);
}

.primary_btn:hover {
  color: var(--clr-white);
  background-color: var(--clr-73000E);
}

.primary_btn.dark_bg {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.25) 0.24%,
    rgba(255, 255, 255, 0.12) 71.12%
  );
  color: var(--clr-white);
}

.sec_hdng {
  position: relative;
  font-size: var(--fs-50);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-1D1916);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sec_subhdng {
  display: block;
  font-size: var(--fs-16);
  font-weight: 600;
  letter-spacing: 5.4px;
  text-transform: uppercase;
  color: var(--clr-5C5C5C);
  margin-bottom: 10px;
}

@media (max-width: 1199.98px) {
  .custom_container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767.98px) {
  .sec_hdng {
    margin-bottom: 20px;
  }

  .custom_container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 470px) {
  .sec_hdng {
    margin-bottom: 10px;
  }
}

body .relative_header {
  padding-top: var(--headerHeight);
}

/* header css start */
.site_header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.site_header .inner_wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.site_header .logo_wrapper {
  position: relative;
}

.site_header .primary_menu {
  display: flex;
  gap: 30px;
  align-items: center;
  /* padding: 20px 40px; */
}

.site_header .primary_menu > li > a {
  color: var(--clr-white);
  line-height: 1;
  font-weight: 400;
  font-size: var(--fs-18);
  transition: all 0.4s ease;
  position: relative;
  padding: 15px 25px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.custom-special-page .site_header .primary_menu > li > a {
  color: var(--clr-1D1916);
}

.site_header .primary_menu > li > a:hover,
.site_header .primary_menu > li.active > a {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.custom-special-page .site_header .primary_menu > li > a:hover,
.custom-special-page .site_header .primary_menu > li.active > a {
  background: rgba(29, 25, 22, 0.05);
  backdrop-filter: blur(4px);
}

.site_header .right_icon_menu {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
}

.site_header .right_icon_menu a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: all 0.4s;
}
.custom-special-page .site_header .right_icon_menu a {
  background: rgba(29, 25, 22, 0.05);
}
.custom-special-page .site_header .right_icon_menu a img {
  filter: invert(1);
}

.site_header .right_icon_menu a:hover,
.site_header .right_icon_menu .xoo-wsc-sc-bkcont:hover {
  background: rgba(0, 0, 0, 0.8);
}
.custom-special-page
  .site_header
  .right_icon_menu
  .xoo-wsc-sc-bkcont:hover
  .xoo-wsc-sc-bki {
  color: #fff;
}
.custom-special-page .site_header .right_icon_menu a:hover img {
  filter: unset;
}

.hemburger {
  width: 40px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
  cursor: pointer;
  display: none;
}

.hemburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--clr-white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.custom-special-page .hemburger span {
  background-color: var(--clr-1D1916);
}

.hemburger span:nth-child(1) {
  top: 0px;
}

.hemburger span:nth-child(2) {
  top: 13px;
}

.hemburger span:nth-child(3) {
  top: 26px;
}

.hemburger.open span:nth-child(1) {
  top: 15px;
  transform: rotate(135deg);
}

.hemburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hemburger.open span:nth-child(3) {
  top: 15px;
  transform: rotate(-135deg);
}

.site_header.black-header {
  position: relative;
}

.site_header.black-header .primary_menu > li > a {
  color: var(--clr-black);
}

.site_header.black-header .right_icon_menu a {
  background-color: #1d19160d;
}

.site_header.black-header .right_icon_menu a img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%)
    hue-rotate(343deg) brightness(105%) contrast(107%);
}

.site_header.black-header .right_icon_menu a:hover {
  background-color: var(--clr-1D1916);
}

.site_header.black-header .right_icon_menu a:hover img {
  filter: unset;
}

.site_header.black-header .custom_container .inner_wrapper {
  border-bottom: 1px solid #b5b5b580;
}

/* Single product page — header logo #760606 */
body.custom-special-page .site_header .logo_wrapper img,
body.custom-special-page .site_header .custom-logo-link img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(27%) saturate(7344%)
    hue-rotate(351deg) brightness(73%) contrast(104%);
}

@media (max-width: 1199.98px) {
  .site_header nav {
    display: none;
    order: 4;
    width: 100%;
  }

  .site_header nav .primary_menu {
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 100%
    );
    padding: 15px;
  }

  .site_header nav .primary_menu > li + li {
    margin-top: 10px;
  }

  .site_header .primary_menu > li > a {
    padding: 5px 10px;
  }
  .custom-special-page .site_header .primary_menu > li > a {
    color: var(--clr-white);
  }

  .hemburger {
    display: block;
  }

  .site_header .logo_wrapper img {
    width: 150px;
  }

  .site_header .inner_wrapper {
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  .site_header .logo_wrapper img {
    width: 100px;
  }

  .site_header .right_icon_menu a {
    width: 35px;
    height: 35px;
  }

  .site_header .right_icon_menu a img {
    width: 15px;
    height: 15px;
  }

  .hemburger {
    width: 30px;
    height: 20px;
  }

  .hemburger span:nth-child(2) {
    top: 10px;
  }

  .hemburger span:nth-child(3) {
    top: 20px;
  }

  .hemburger.open span:nth-child(1) {
    top: 10px;
  }

  .hemburger.open span:nth-child(3) {
    top: 10px;
  }
}

/* header css end */

.hero-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-section.inner_banner {
  height: 100%;
}

.hero-section.inner_banner .inner_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
}

.hero-section.inner_banner .breadcrumb {
  font-size: var(--fs-20);
  display: flex;
  gap: 5px;
  color: var(--clr-white);
}

.hero-section.inner_banner .breadcrumb a {
  color: var(--clr-white);
}

section.hero-section::before {
  content: "";
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  position: absolute;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .logo img {
    max-width: 140px;
  }

  .hero-section {
    height: 70vh;
  }
}

@media (max-width: 576px) {
  .logo img {
    max-width: 120px;
  }

  .hero-section {
    height: 70vh;
  }
}

/* brand section  */

.brand-section {
  background: var(--clr-black);
  padding: 20px 0;
}

.brand-section .container {
  width: 1450px;
  max-width: 100%;
  padding: 0 50px;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;

  animation: marquee 18s linear infinite;
}

.brand-item {
  color: var(--clr-white) !important;
  font-size: var(--fs-16);
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  min-width: 250px;
  text-align: center;
  flex-shrink: 0;
}
.facetwp-facet .fwp-color-palette {
    gap: 15px 20px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .brand-item {
    min-width: 120px;
  }
}

@media (max-width: 576px) {
  .brand-item {
    min-width: 70px;
  }
}

/* new week section  */

.product_sec {
  background: var(--clr-white);
  padding: var(--spc-100) 0;
}

.product_sec .filter_text {
  color: var(--clr-5C5C5C);
}

.product-card {
  cursor: pointer;
}

.product-image {
  position: relative;
  overflow: hidden;
  background: #f0eff2;
  text-align: center;
}

.after-hov {
  display: none;
}

.product-card:hover .before-hov {
  display: none;
}

.product-card:hover .after-hov {
  display: block;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s;
}

.product-actions {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  visibility: visible;
}

.product-card .product-actions .cart-btn {
  flex: 1;
  height: 60px;
  border: 1px solid var(--clr-1D1916) !important;
  background: var(--clr-1D1916);
  color: var(--clr-white);
  font-size: var(--fs-18);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.product-card .product-actions .cart-btn:hover {
  background: var(--clr-black);
  color: var(--clr-white);
}
.product-info span del {
  color: #760606;
}
.product-info span del span {
  color: #760606;
  font-size: var(--fs-16);
}

.product-card .product-actions .wish-btn {
  width: 60px;
  height: 60px;
  border: 1px solid var(--clr-1D1916) !important;
  background: var(--clr-white) !important;
  cursor: pointer;
  font-size: var(--fs-22);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.product-card .product-actions .wish-btn img {
  width: 40px;
  height: 40px;
}

.product-info {
  padding-top: 15px;
}

.product-info h6 {
  font-size: var(--fs-14);
  font-weight: 600;
  letter-spacing: 4.2px;
  color: var(--clr-5C5C5C);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-info p {
  font-size: var(--fs-20);
  line-height: 1.4;
  font-weight: 400;
  color: var(--clr-1D1916);
  margin-bottom: 15px;
}

.product-info span {
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--clr-1D1916);
}

@media (max-width: 992px) {
  .product-image img {
    width: 100%;
    height: 100%;
  }
}

/* category section  */
.category-section {
  background: #f6eee433;
  padding: var(--spc-100) 0;
}

/* Category Card */
.category-section .category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-section .category-card img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

/* Overlay */
.category-section .category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.12) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-section .category-card:hover::after {
  opacity: 1;
}

.category-section .category-name {
  position: absolute;
  left: 25px;
  bottom: 25px;
  margin: 0;
  font-size: var(--fs-25);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clr-1D1916);
  text-transform: uppercase;
}

/* features section  */
.features-section {
  padding-top: var(--spc-50);
  padding-bottom: var(--spc-100);
}

.feature-item {
  text-align: center;
  padding: 15px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--clr-EFEFEF80);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 28px;
  color: #222;
}

.feature-title {
  font-size: var(--fs-22);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--clr-1D1916);
}

.feature-text {
  font-size: var(--fs-18);
  /* line-height: 1.2; */
  color: var(--clr-5C5C5C);
  max-width: 330px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .features-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .feature-item {
    margin-bottom: 15px;
  }

  .feature-icon {
    margin: 0 auto 15px;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 40px 0 20px 0;
  }
}

/* newsletter section   */

.newsletter-section {
  background: var(--clr-F6EEE4);
  padding: var(--spc-100) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.newsletter-wrapper {
  width: 100%;
}

.newsletter-title {
  font-size: var(--fs-40);
  font-weight: 700;
  color: var(--clr-1D1916);
  margin-bottom: 10px !important;
  text-transform: uppercase;
  line-height: 1.1;
}

.newsletter-subtitle {
  font-size: var(--fs-25);
  color: var(--clr-1D1916);
  margin-bottom: 25px;
  font-weight: 400;
}

.newsletter-form {
  width: 600px;
  margin: auto;
}

.newsletter-form .form-control {
  height: 60px;
  border: 1px solid #c9c2bb;
  border-right: none;
  border-radius: 2px 0 0 2px;
  background: transparent;
  font-size: var(--fs-16);
  box-shadow: none;
  border-radius: 8px;
  padding: 25px;
  color: var(--clr-1D1916);
}

.newsletter-form .form-control::placeholder {
  color: var(--clr-5C5C5C);
  font-family: "Haskoy", sans-serif;
  font-size: var(--fs-14);
  opacity: 0.5;
  font-weight: 400;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  border-color: #c9c2bb;
}

.newsletter-form .btn {
  width: 200px;
  height: 60px;
  border: none;
  border-radius: 0 2px 2px 0;
  background: var(--clr-1D1916);
  color: var(--clr-white);
  font-size: var(--fs-16);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid var(--clr-1D1916);
}

.newsletter-form .btn:hover {
  background-color: transparent;
  color: var(--clr-black);
}

@media (max-width: 991px) {
  .newsletter-form {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .newsletter-form {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .newsletter-form {
    width: 90%;
  }

  .newsletter-form .form-control {
    height: 45px;
    padding: 15px;
  }

  .newsletter-form .btn {
    width: 120px;
    height: 45px;
  }

  .newsletter-section {
    min-height: 250px;
  }
}

/* footer section   */

.footer {
  background: rgba(29, 25, 22, 1);
  color: var(--clr-white);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.01);
}

/* Top Row */
.footer-top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  max-height: 45px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-nav a {
  color: var(--clr-white);
  text-decoration: none;
  font-size: var(--fs-16);
  font-weight: 500;
  transition: all 0.5s;
}

.footer-nav a:hover {
  color: var(--clr-5C5C5C);
}

/* Social */
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  text-decoration: none;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* Bottom */
.footer-bottom {
  padding-top: 16px;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-14);
}

.developer {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-14);
  text-align: right;
}

.developer span {
  color: var(--clr-white);
}

.dev-logo {
  margin-left: 6px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .footer-nav {
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .copyright,
  .developer {
    text-align: center;
    margin-top: 10px;
  }
}

/* ==========================================
         RELUXE LIVE AUCTION
      ========================================== */

.reluxe-live-auction {
  padding: 20px 0px 90px 0px;
}

/* Header */

.reluxe-live-auction .rlx-header {
  margin-bottom: 20px;
}

.reluxe-live-auction .rlx-title h1 {
  font-size: var(--fs-40);
  font-weight: 700;
  display: inline-block;
}

.reluxe-live-auction .rlx-live-badge {
  display: inline-block;
  background: var(--clr-C0392B);
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: var(--fs-16);
  margin-left: 30px;
  font-weight: 600;
  margin-top: 12px;
}

.reluxe-live-auction .rlx-watchers {
  text-align: right;
  font-size: 14px;
  color: #555;
  font-weight: 600;
  padding-top: 10px;
}

/* Main Banner */

.reluxe-live-auction .rlx-video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 500px;
  background: #ddd;
}

.reluxe-live-auction .rlx-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reluxe-live-auction .rlx-facebook-live {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--clr-C0392B);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: var(--fs-16);
  font-weight: 600;
}

.reluxe-live-auction .rlx-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.reluxe-live-auction .rlx-play-button:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 28px;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.reluxe-live-auction .rlx-host {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
}

.reluxe-live-auction .rlx-host span {
  display: block;
  font-size: var(--fs-18);
}

.reluxe-live-auction .rlx-host h4 {
  margin: 0;
  font-size: var(--fs-25);
  font-weight: 700;
}

.reluxe-live-auction .rlx-share {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #222;
  color: #fff;
  line-height: 1;
  padding: 11px 22px;
  border-radius: 5px;
  font-size: 14px;
}

/* Sidebar */

.reluxe-live-auction .rlx-sidebar {
  background: #faf8f5;
  border-radius: 4px;
  padding: 15px;
  height: 500px;
  overflow-y: auto;
}

.reluxe-live-auction .rlx-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #666;
  margin-bottom: 15px;
}

.reluxe-live-auction .rlx-product-item {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
}

.reluxe-live-auction .rlx-product-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 3px;
}

.reluxe-live-auction .rlx-product-info h6 {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.reluxe-live-auction .rlx-product-info p {
  font-size: 12px;
  margin-bottom: 8px;
  color: #666;
}

.reluxe-live-auction .rlx-price {
  font-size: 14px;
  font-weight: 700;
}

/* Now Showing */

.reluxe-live-auction .rlx-section-title {
  margin: 25px 0 15px;
  font-size: 15px;
  font-weight: 700;
  color: #666;
}

.reluxe-live-auction .rlx-feature-box {
  background: #f0ebe6;
  padding: 25px;
  border-radius: 4px;
}

.reluxe-live-auction .rlx-feature-image img {
  width: 100%;
  border-radius: 4px;
}

.reluxe-live-auction .rlx-feature-badge {
  display: inline-block;
  background: var(--clr-C0392B);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 15px;
}

.reluxe-live-auction .rlx-brand {
  font-size: 12px;
  letter-spacing: 4px;
  color: #666;
  margin-bottom: 10px;
}

.reluxe-live-auction .rlx-product-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.reluxe-live-auction .rlx-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.reluxe-live-auction .rlx-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reluxe-live-auction .rlx-big-price {
  font-size: 48px;
  font-weight: 700;
}

.reluxe-live-auction .rlx-actions {
  display: flex;
  gap: 12px;
}

.reluxe-live-auction .rlx-btn-outline {
  border: 1px solid #999;
  background: #fff;
  padding: 14px 25px;
  cursor: pointer;
}

.reluxe-live-auction .rlx-btn-dark {
  border: none;
  background: #222;
  color: #fff;
  padding: 14px 25px;
  cursor: pointer;
}

.xoo-wsc-cart-trigger span.xoo-wsc-sc-subt {
  display: none;
}
.xoo-wsc-cart-trigger .xoo-wsc-sc-bkcont {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.custom-special-page .xoo-wsc-cart-trigger .xoo-wsc-sc-bkcont {
  background: rgba(29, 25, 22, 0.05);
}
.xoo-wsc-cart-trigger .xoo-wsc-sc-bki {
  font-size: 20px;
  color: #fff;
  opacity: 0.9;
}
.custom-special-page .xoo-wsc-cart-trigger .xoo-wsc-sc-bki {
  color: #1d1916;
}
.xoo-wsc-cart-trigger span.xoo-wsc-sc-count,
.xoo-wsc-cart-trigger span.xoo-wsch-items-count {
  right: 0;
  top: 0;
}
body .xoo-wsc-basket[style*="block"] {
  display: none !important;
}
body .xoo-wsc-container .xoo-wsc-basket {
  display: none !important;
}
.product-info p a {
  color: var(--clr-1D1916);
}
.product-image .after-hov,
.product-image .after-hov a,
.product-image .before-hov a {
  aspect-ratio: 1;
  width: 100%;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section.inner_banner .inner_text {
  text-align: center;
}
button.wish-btn .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.woocommerce-page .site-main {
  max-width: 1320px;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
}
.single-product .site-main,
.page-id-13 .site-main {
  max-width: 1820px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
}

button.cg-nav {
  background: transparent !important;
  box-shadow: none !important;
  color: #1d1916 !important;
  font-size: var(--fs-30);
}
.ast-article-single figure,
.ast-article-single img:not(figure img) {
  box-shadow: none !important;
}
.cg-main-swiper-wrap .cg-main-swiper .swiper-slide {
  background: linear-gradient(
    180deg,
    rgba(102, 102, 102, 0) 0%,
    rgba(0, 0, 0, 0.2) 99.73%
  );
}
.cg-product-gallery .cg-thumb-swiper {
  background: linear-gradient(
    0deg,
    rgba(102, 102, 102, 0) 0%,
    rgba(0, 0, 0, 0.2) 99.73%
  );
  margin: 0;
  padding-top: 10px;
}
.cg-product-gallery .cg-thumb-slide.active,
.cg-product-gallery .cg-thumb-slide:hover {
  opacity: 1;
  border-color: #760606;
}
.cg-main-swiper .swiper-slide img {
  mix-blend-mode: multiply;
}
.woocommerce-js .woocommerce-breadcrumb {
  font-size: var(--fs-16);
  color: #5c5c5c;
}
h2.product-title {
  font-size: var(--fs-30);
  color: #1d1916;
  font-weight: 700;
  margin-bottom: 3px;
}
.product-brand {
  margin-bottom: 20px;
}
span.yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.ast-article-single .cg-brand-share-row .product-brand span {
  font-size: var(--fs-18);
  font-weight: 600;
  text-transform: uppercase;
  color: #5c5c5c;
  letter-spacing: 5.4px;
}
.ast-article-single .summary span.woocommerce-Price-amount.amount {
  color: #760606;
  font-size: var(--fs-30);
  font-weight: 700;
}
.woocommerce-js .ast-article-single.product p.price del .amount {
  font-size: var(--fs-25);
  color: #5c5c5c;
}
/* .woocommerce-page input[type="number"] {
  border: 1px solid #7d7d7d;
  border-radius: 5px;
} */
.ast-article-single button.single_add_to_cart_button {
  background: transparent !important;
  padding: 18px !important;
  font-size: var(--fs-16) !important;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #1d1916 !important;
  color: #1d1916;
  transition: all 0.3s;
}
a.cg-buy-now-btn {
  font-size: var(--fs-16);
  font-weight: 500;
  text-transform: uppercase;
}
.ast-article-single button.single_add_to_cart_button:hover {
  background: #1d1916 !important;
  color: #fff;
}
.woocommerce-js .ast-article-single.product form.cart .variations {
  border-bottom: none;
  margin-bottom: 0;
}
.woocommerce-js .ast-article-single.product .product_meta {
  border-top: none;
}
.single_variation_wrap > div {
  margin: 0;
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
}
.product_meta a {
  color: #760606;
}
.woocommerce .star-rating,
.woocommerce .comment-form-rating .stars a,
.woocommerce .star-rating::before {
  color: #f7c81a;
}
a.woocommerce-review-link {
  color: #7d7d7d;
}
.woocommerce-js .star-rating span::before {
  font-family: star, serif !important;
}
.ast-article-single form.cart {
  display: flex;
  /* flex-direction: column; */
  margin-top: 15px;
  align-items: normal !important;
  gap: 0 !important;
  margin-bottom: 15px;
}
.woocommerce-js div.product form.cart .variations th.label {
  margin-bottom: 0;
}
form.woocommerce-ordering select {
  font-size: var(--fs-18);
  color: #5c5c5c;
}
p.woocommerce-result-count {
  font-size: var(--fs-20);
  font-weight: 400;
  color: #5c5c5c;
  margin: 0 !important;
}
.woocommerce-js .woocommerce-ordering {
  margin: 0 !important;
}
.facet-group {
  position: relative;
  border-radius: 5px;
  border: 1px solid rgba(102, 102, 102, 0.1);
  padding: 15px;
}
.facet-group .facet-group {
  background: rgba(102, 102, 102, 0.03);
  position: static;
}
.facet-group .facet-group:last-child {
  width: 0;
  height: 0;
  margin: 0;
  background: transparent;
  border: none;
  padding: 0;
}
.facet-group h2 {
  font-size: var(--fs-30);
  color: #5c5c5c;
  font-weight: 600;
  text-transform: uppercase;
}
.facet-group h4 {
  font-size: var(--fs-20);
  color: #5c5c5c;
  font-weight: 700;
  margin-bottom: 10px;
}
.facet-group .facetwp-checkbox {
  font-size: var(--fs-18);
  font-weight: 400;
  color: #5c5c5c;
  font-family: var(--font-haskoy);
  margin-bottom: 7px;
  background: url(https://reluxe-collective.elvirainfotech.live/wp-content/uploads/2026/06/check.png)
    0 50% no-repeat;
}
.fwp-color-palette .fwp-color-swatch {
  width: 48px;
  height: 48px;
}
.facet-group .facetwp-checkbox.checked {
  font-weight: 500;
  background-image: url("https://reluxe-collective.elvirainfotech.live/wp-content/uploads/2026/06/check-mark.png");
}
.facet-group .facet-group + .facet-group {
  margin-top: 10px;
}
.facet-group .facetwp-facet {
  margin-bottom: 0;
}
.facet-group .facetwp-display-value {
  font-family: var(--font-haskoy);
  text-transform: capitalize;
}
.facet-group .facetwp-counter {
  font-family: var(--font-haskoy);
}
input.facetwp-slider-reset {
  background: #760606 !important;
  padding: 7px 15px;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1;
  border-radius: 5px;
}
.facetwp-reset {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent !important;
  color: #b5b5b5 !important;
  font-size: var(--fs-16);
  font-weight: 600;
  padding: 10px;
}
button.facetwp-reset::before {
  content: "";
  width: 15px;
  height: 15px;
  background: red;
  position: absolute;
  left: -5px;
  top: 14px;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B5B5B5'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  background-size: 10px;
}
.facet-group .noUi-target {
  background: rgba(118, 6, 6, 0.1);
  border: none;
}
.facet-group .noUi-horizontal {
  height: 5px;
}
.facet-group .noUi-horizontal .noUi-handle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.facet-group .noUi-handle {
  border: 1px solid #760606;
  background: #760606;
}
.facet-group .noUi-connect {
  background: #760606;
}
.facetwp-facet-price_range.facetwp-type-slider {
  margin-top: 15px;
}
.ast-article-single .summary .woocommerce-product-details__short-description p {
  font-size: var(--fs-16);
  color: #1d1916;
}
.ast-article-single .summary .cg-product-condition--summary p,
.ast-article-single .summary .cg-product-condition--summary p strong {
  font-size: var(--fs-16);
  font-family: var(--font-haskoy);
  font-weight: 600;
  text-transform: uppercase;
  color: #760606;
}
.ast-article-single .summary .cg-product-condition--summary p strong {
  color: #1d1916;
}
.ast-article-single .summary .cg-rating-wrap {
  background: #f3f3f3;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 5px;
  flex-direction: row-reverse;
  margin-top: 15px;
}
.ast-article-single .summary .cg-rating-wrap .star-rating {
  vertical-align: text-top;
}
.ast-article-single .summary .cg-product-condition--summary {
  margin: 20px 0 20px;
}
.ast-article-single .summary .cg-swatch-label {
  font-size: var(--fs-16);
  font-weight: 400;
  text-transform: capitalize;
  color: #282424;
  font-family: var(--font-haskoy);
  margin: 0;
}
.ast-article-single .summary .cg-swatch-item {
  border: none;
}
.ast-article-single .summary .cg-swatch-item.active,
.cg-swatch-item:hover {
  border-color: #282424;
}
.ast-article-single .summary .cg-qty-btn {
  border: 1px solid #7d7d7d;
  color: #7d7d7d !important;
  background-color: #fff !important;
}
.woocommerce
  div.product.ast-article-single
  form.cart
  .quantity
  input[type="number"] {
  border-color: #7d7d7d !important;
}
.ast-article-single button.cg-qty-btn.cg-qty-minus {
  border-right: 0 !important;
}
.ast-article-single button.cg-qty-btn.cg-qty-plus {
  border-left: 0 !important;
}
.ast-article-single .cg-swatch-item img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  border: 1px solid #282424;
}
.woocommerce
  div.product.ast-article-single
  form.cart
  .button.single_add_to_cart_button {
  flex-grow: 1 !important;
}
.woocommerce-js
  div.product.ast-article-single
  form.cart
  .single_variation_wrap
  .single_variation {
  margin-bottom: 0;
}
.woocommerce-js div.product.ast-article-single form.cart div.quantity {
  margin-bottom: var(--spc-30);
}
.ast-article-single .yith-add-to-wishlist-button-block--single {
  margin: 0;
  width: 50px;
  border-radius: 5px;
  align-items: center;
  border: 1px solid;
  margin-left: 10px;
}
.cg-share-toggle span {
  font-size: var(--fs-18);
  font-family: var(--font-haskoy);
}
.custom-special-page header.site_header + div {
  padding-top: var(--headerHeight) !important;
  margin: 0 !important;
  padding-bottom: 0 !important;
}
.custom-special-page header.site_header {
  /*     height: 170px; */
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b5b5b580;
  background: #fafafa;
  padding: 25px 0;
}
.custom-special-page header.site_header .custom_container {
  width: 100%;
}
.custom-special-page .site-main {
  padding-top: var(--spc-50);
}
.custom-special-page.page-id-13 .site-main {
  padding-top: 20px !important;
}
.summary .cg-brand-share-row {
  margin-bottom: 20px;
}
.summary .cg-brand-share-row {
  margin-bottom: 20px;
}

.summary .price {
  margin-top: 15px !important;
}
.cg-below-product-wrap {
  position: relative;
  margin-top: var(--spc-50);
}
.cg-below-product-wrap .cg-tab-btn {
  font-size: var(--fs-18);
  font-weight: 400;
  color: #1d1916;
  background: transparent;
}
.cg-below-product-wrap .cg-tab-btn:hover {
  border-bottom-color: #1d1916 !important;
}
.cg-tab-panel h3 {
  font-size: var(--fs-18);
  color: #1d1916;
  font-weight: 700;
  margin-bottom: 10px;
}
.cg-tab-panel h3:not(:first-of-type) {
  margin-top: 20px;
}

.cg-tab-panel p {
  font-size: var(--fs-16);
  color: #5c5c5c;
  margin-top: 0px;
}
.cg-tab-panel p strong {
  color: var(--clr-1D1916);
  font-size: var(--fs-18);
}
.cg-model-image-wrap {
  aspect-ratio: 16/9;
}
.cg-model-image-wrap img {
  height: 100% !important;
}
span.xoo-wsc-pname a {
  color: #760606 !important;
  font-size: var(--fs-18) !important;
  line-height: 1.2;
}
.cg-reviews-section {
  position: relative;
  margin-top: 0 !important;
}
.cg-reviews-section h2.cg-reviews-heading {
  font-size: var(--fs-40);
  font-weight: 400;
  margin-bottom: var(--spc-30);
}
.cg-reviews-section .cg-big-avg {
  font-size: var(--fs-20);
  font-weight: 400;
  color: #282424;
}
.cg-reviews-section .cg-based-on {
  font-size: var(--fs-20);
  color: #282424;
}
.cg-reviews-section .cg-review-carousel-wrap {
  flex: 2 !important;
  width: 100%;
}

.cg-reviews-section .cg-rating-breakdown {
  flex: 1 !important;
  width: 100%;
}
.cg-reviews-section .cg-review-stars {
  border-radius: 5px;
  background: #f3f3f3;
  padding: 0px 10px;
  display: flex;
}
.cg-reviews-section .cg-rev-nav {
  background: transparent;
  border: none;
  width: 15px;
  height: 58px;
  font-size: var(--fs-25);
  color: #1d1916;
  box-shadow: none;
  padding: 0;
}
.cg-reviews-section .cg-review-date {
  font-size: var(--fs-16);
  font-weight: 400;
  color: #b5b5b5;
}
.cg-reviews-section .cg-review-body {
  font-size: var(--fs-20);
  color: #000;
  margin-top: var(--spc-30);
}
.cg-reviews-section .cg-star-on {
  color: #f7c81a;
}
.cg-reviews-section .cg-review-author {
  margin-top: var(--spc-30);
}
.cg-reviews-section .cg-review-author strong {
  font-size: var(--fs-20);
  color: #1d1916;
  text-transform: capitalize;
}
.cg-reviews-section .cg-review-card {
  border: 1px solid rgba(181, 181, 181, 0.5);
}
/* =========================
   Reviews Wrapper
========================= */

.woocommerce-Reviews-title,
.comment-reply-title {
  display: block;
  margin-bottom: 5px;
  color: #1d1916;
  font-size: var(--fs-25) !important;
  font-weight: 500 !important;
  line-height: 1.2;
}
.cg-reviews-section .cg-review-form-wrap {
  margin-top: 10px;
  padding-top: 10px;
  border-top: none;
  padding-bottom: var(--spc-50);
}
.woocommerce-noreviews {
  color: #760606;
  font-size: var(--fs-16);
  margin-bottom: 10px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comment-form label,
.comment-form-rating label {
  display: block;
  margin-bottom: 8px;
  color: var(--clr-5C5C5C);
  font-size: var(--fs-18) !important;
  font-weight: 500 !important;
}

.required {
  color: #1d1916;
}

.comment-form select {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #1d1916;
  font-size: var(--fs-16);
  outline: none;
  transition: 0.3s;
}
.comment-form-author,
.comment-form-email {
  width: 100% !important;
}
.woocommerce-js div.product .stock {
    color: #760606 !important;
}
body .wc-block-grid .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title {
    font-size: 16px;
    color: #760606;
}
body .wc-block-grid .wc-block-grid__products .wc-block-grid__product .price {
    font-size: 14px;
}
body .wc-block-grid .wc-block-grid__products .wc-block-grid__product .wp-block-button__link {
    font-size: 14px;
    font-weight: 500;
}
p.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
}
p.comment-form-cookies-consent label {
  margin: 0;
}

.comment-form select:focus {
  border-color: #1d1916;
}

.comment-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 15px;
  border: 1px solid #d8d8d8;
  resize: vertical;
  background: #fff;
  color: #1d1916;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.comment-form textarea:focus {
  border-color: #1d1916;
}

#review_form .comment-form .submit {
  min-width: 180px;
  border: 1px solid #1d1916;
  background: #1d1916 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: 0.3s;
}

#review_form .comment-form .submit:hover {
  background: #000 !important;
}

#cancel-comment-reply-link {
  color: #5c5c5c;
  font-size: 14px;
  text-decoration: none;
}

#cancel-comment-reply-link:hover {
  color: #1d1916;
}
.woocommerce-js #reviews .comment-form-rating {
  flex-direction: column;
}

.custom-special-page ul.products.row {
  display: flex;
  column-gap: normal;
  row-gap: 30px;
}
section.related.products {
  padding: var(--spc-50) 0;
}
section.related.products h2 {
  font-size: var(--fs-50);
  color: #1d1916;
  text-align: center;
  margin-bottom: 10px;
}
div#lcm-wrap {
  max-width: 100%;
  padding-bottom: var(--spc-100);
}
.lcm-wrap .lcm-topbar {
  gap: 20px;
}
.lcm-topbar .lcm-session-title {
  font-size: var(--fs-40);
  color: #1d1916;
  flex: unset;
}
.lcm-topbar .lcm-live-pill {
  margin-right: auto;
}
.lcm-topbar .lcm-watching {
  font-size: var(--fs-18);
  color: #5c5c5c;
  text-transform: uppercase;
}
.lcm-topbar .lcm-watching svg {
  opacity: 1;
}
@media (min-width: 1199.98px) {
  body .lcm-grid {
    grid-template-columns: 1fr 450px;
  }
}

.lcm-grid .lcm-now-label {
  font-size: var(--fs-20);
  color: #5c5c5c;
  font-weight: 600;
  margin-top: var(--spc-30);
}
.lcm-grid .lcm-card-brand {
  font-size: var(--fs-20);
  color: #5c5c5c;
  font-weight: 600;
}
.lcm-grid .lcm-card-name {
  font-size: var(--fs-30);
  font-weight: 700;
  color: #1d1916;
  font-family: var(--font-haskoy);
}
.lcm-grid .lcm-card-desc {
  font-size: 18px;
  color: #5c5c5c;
  font-family: var(--font-haskoy);
  line-height: 1.3;
}
.lcm-grid .lcm-color-row {
  margin-top: 20px;
}
.lcm-grid .now-shwoing-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.lcm-live-pill {
  text-transform: none !important;
}

.lcm-grid .lcm-color-label {
  font-size: var(--fs-20);
  color: #5c5c5c;
}
.lcm-grid .lcm-swatch {
  width: 35px;
  height: 35px;
}
.lcm-product-card .lcm-price .woocommerce-Price-currencySymbol {
  font-size: var(--fs-25);
  font-weight: 700;
  color: #1d1916;
}
.lcm-product-card span.woocommerce-Price-amount.amount {
  font-size: var(--fs-40);
}
div#lcm-product-card {
  border-radius: 5px;
  background: #f6eee4;
  border: none;
}
.lcm-btn-row .lcm-btn {
  text-decoration: none !important;
  padding: 12px 30px;
  font-size: var(--fs-16);
  text-transform: uppercase;
}
.lcm-sidebar .lcm-sidebar-title {
  font-size: var(--fs-20);
  font-weight: 600;
  color: #5c5c5c;
  border-bottom: 1px solid #b5b5b580;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
button#lcm-video-share-toggle {
  font-size: var(--fs-18);
  border-radius: 5px;
  padding: 10px 22px;
  font-weight: 600;
  font-family: var(--font-haskoy);
  background: #1d1916;
  line-height: 1.3;
}
.lcm-sidebar .lcm-sidebar-subtitle {
  font-size: var(--fs-16);
  color: #5c5c5c;
}
.lcm-sidebar .lcm-sitem {
  border-radius: 5px;
  background: #f6eee4 !important;
  margin-bottom: 15px;
  padding: 10px !important;
  flex: 1;
}
.xoo-wsc-footer,
.xoo-wsc-footer a,
.xoo-wsc-footer .amount {
  font-size: var(--fs-18) !important;
}
.xoo-wsch-section .xoo-wsch-text {
  font-size: var(--fs-22);
}
@media (min-width: 1299.98px) {
  .lcm-sidebar .lcm-sitem {
    grid-template-columns: 100px 1fr;
  }
  .lcm-sidebar .lcm-sitem-img {
    width: 100px;
    height: 100%;
  }
}
.lcm-sidebar .lcm-sitem-brand {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4.2px;
  color: #5c5c5c;
}
.lcm-sidebar .lcm-sitem-name {
  font-size: var(--fs-16);
  font-weight: 600;
  font-family: var(--font-haskoy);
  color: #1d1916;
}
.lcm-sidebar .lcm-sitem-price {
  font-size: var(--fs-18);
  font-weight: 700;
  color: #1d1916;
  margin-top: 10px;
}
.lcm-sidebar .lcm-sitem-price del {
  color: var(--clr-760606);
}
.fb-video.fb_iframe_widget.fb_iframe_widget_fluid_desktop,
.fb-video.fb_iframe_widget.fb_iframe_widget_fluid_desktop span,
.fb-video.fb_iframe_widget.fb_iframe_widget_fluid_desktop span iframe {
  width: 100% !important;
}
.lcm-btn-row {
  flex-wrap: wrap;
}
.ast-article-single .cg-reviews-section {
  width: 100%;
  padding-top: var(--spc-50);
  border-top: 0;
}
.cg-bar-row .cg-bar-star {
  font-size: var(--fs-25);
  width: 70px;
  color: #f7c81a;
  font-weight: 400;
}
.cg-bar-row .cg-bar-fill {
  background: #f7c81a;
}
.cg-bar-row .cg-bar-count {
  font-size: var(--fs-25);
  color: #f7c81a;
}
.mailpoet_form_columns_container {
  max-width: 650px;
  margin: 0 auto;
}
.newsletter-section .mailpoet_form_column:first-child {
  flex: 2;
}
.newsletter-section .mailpoet_form_column:last-child {
  flex: 1;
  margin: 0 !important;
}
.newsletter-section #mailpoet_form_1 .mailpoet_paragraph {
  margin: 0;
  height: 100%;
  display: flex;
  line-height: normal;
  flex-wrap: wrap;
}
.newsletter-section #mailpoet_form_1 .mailpoet_paragraph input {
  padding: 20px !important;
  height: 55px;
  border-color: #1d191680;
}
.newsletter-section #mailpoet_form_1 .mailpoet_paragraph input[type="email"] {
  background: transparent;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.newsletter-section #mailpoet_form_1 .mailpoet_paragraph input[type="submit"] {
  font-size: var(--fs-16);
  font-weight: 500;
  text-transform: uppercase;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body .lcm-fw,
body .lcm-fw.minimized {
  border-radius: 5px;
  border: 1px solid #c0392b;
  background: #fff !important;
  max-width: 400px;
  width: 100%;
}
.lcm-fw .lcm-fw-header {
  background: #fff;
  border: none;
}
.lcm-fw .lcm-fw-title {
  color: #1d1916;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-haskoy);
}
.lcm-fw-btn {
  background: transparent !important;
  color: #5c5c5c80 !important;
  font-size: 24px !important;
}
.lcm-fw-btn:hover {
  background: #cfcfcf !important;
}
.single-product .woocommerce-variation-price span.price {
  display: none;
}
@media (max-width: 767.98px) {
  .lcm-sidebar .lcm-sitem {
    flex: unset;
    width: 100%;
  }
  .lcm-sidebar .lcm-sitem-img {
    width: auto;
    height: 200px;
  }
  .lcm-sidebar .lcm-sitem-img img {
    object-fit: contain;
  }
  .custom-special-page header.site_header {
    padding: 5px 0;
  }
  .single-product .site-main,
  .page-id-13 .site-main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .comment-form .submit {
    width: 100%;
  }
  .woocommerce div.product {
    gap: 0 !important;
  }
  .lcm-fw {
    width: 280px;
  }
  .newsletter-section #mailpoet_form_1 .mailpoet_paragraph input[type="email"] {
    border-radius: 5px;
  }
  .newsletter-section
    #mailpoet_form_1
    .mailpoet_paragraph
    input[type="submit"] {
    border-radius: 5px;
  }
  body .lcm-fw,
  body .lcm-fw.minimized {
    max-width: 320px;
  }
  .product-card .product-actions .cart-btn {
    height: 50px;
  }
  .product-card .product-actions .wish-btn {
    height: 50px;
  }
  .summary .cg-brand-share-row {
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .fb-video.fb_iframe_widget.fb_iframe_widget_fluid_desktop,
  .fb-video.fb_iframe_widget.fb_iframe_widget_fluid_desktop span,
  .fb-video.fb_iframe_widget.fb_iframe_widget_fluid_desktop span iframe {
    height: 100% !important;
  }
  .footer-nav {
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {
  body .lcm-fw,
  body .lcm-fw.minimized {
    max-width: 250px;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* woocommerce css start */
.woocommerce-page main#main thead th {
  background: #1d1916 !important;
  visibility: visible;
  color: #fff;
  padding: 10px 15px;
  font-size: var(--fs-16);
  text-align: left;
}
.woocommerce-page main#main tbody {
  background: #fff;
}
.woocommerce-page main#main tbody td {
  border-top: none;
}
.woocommerce-page main#main tbody td a {
  color: #760606;
  font-size: var(--fs-16);
  text-decoration: none;
}
.woocommerce-page main#main tbody td .price {
  font-size: 15px;
}
.woocommerce-page main#main tbody td.wc-block-cart-item__total .price {
  font-size: var(--fs-16);
  font-weight: 600;
}
.woocommerce-page main#main tbody td p {
  font-size: 14px;
}
.woocommerce-page main#main tbody td input {
  font-size: var(--fs-16);
}
.woocommerce-page main#main tbody tr + tr {
  border-top: 1px solid #d9d9d9;
}

.woocommerce-page main#main .wc-block-cart {
  justify-content: flex-end;
}
.woocommerce-page main#main .wc-block-cart .wc-block-cart__main {
  width: 100%;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #1d1916;
  background: #1d1916;
}
.woocommerce-js a.remove:before {
  top: 1px;
}
td.product-remove a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 700 !important;
  line-height: 1 !important;
}
.woocommerce-page main#main .wc-block-cart .wc-block-cart__main > table {
  border-bottom: none !important;
}
.woocommerce-page main#main .wc-block-cart .wc-block-cart__sidebar {
  height: auto;
  background: #fff3f3;
  padding: 010px 20px;
  border-radius: 8px;
  border: 1px solid #1d1916;
  margin-top: 30px;
}
.woocommerce-page
  main#main
  .wc-block-cart
  .wc-block-cart__sidebar
  .wc-block-cart__totals-title {
  font-size: var(--fs-18);
  display: block;
  padding: 10px 0;
  color: #760606;
}
.woocommerce-page
  main#main
  .wc-block-cart
  .wc-block-cart__sidebar
  .wc-block-components-panel__button {
  font-size: var(--fs-16);
}
.woocommerce-page
  main#main
  .wc-block-cart
  .wc-block-cart__sidebar
  .wc-block-cart__submit-container
  a {
  font-size: var(--fs-16);
  background: #1d1916;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.4s ease;
}
.woocommerce-page
  main#main
  .wc-block-cart
  .wc-block-cart__sidebar
  .wc-block-cart__submit-container
  a:hover {
  background: #000;
  color: #fff;
}
form.wc-block-checkout__form input,
form.wc-block-checkout__form select,
form.wc-block-checkout__form textarea {
  border: none !important;
  background: #fff3f3 !important;
}
.woocommerce-page.woocommerce-checkout main#main .entry-title {
  margin-bottom: 10px;
  text-transform: capitalize;
  background: linear-gradient(45deg, #1d19164f, transparent);
  padding: 10px 20px;
  border-left: 5px solid #1d1916;
  border-radius: 4px;
}

.woocommerce-page.woocommerce-checkout
  main#main
  .wc-block-components-checkout-place-order-button {
  background: #000;
  border-color: #000;
  color: #fff;
  font-weight: 500;
  transition: all 0.4s ease;
}
.woocommerce-page.woocommerce-checkout
  main#main
  .wc-block-components-checkout-place-order-button:hover {
  opacity: 0.7;
}
.woocommerce-page.woocommerce-checkout
  main#main
  .wp-block-woocommerce-checkout-order-summary-totals-block,
.woocommerce-page.woocommerce-checkout
  main#main
  .wc-block-components-totals-wrapper {
  font-size: var(--fs-16);
}
.woocommerce-page.woocommerce-checkout
  main#main
  .wc-block-components-checkout-return-to-cart-button {
  padding: 13px 20px 13px 40px;
  background: #1d1916;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.woocommerce-page.woocommerce-checkout
  main#main
  .wc-block-components-checkout-return-to-cart-button
  svg {
  left: 10px;
}
.woocommerce-page nav.woocommerce-breadcrumb {
  font-size: var(--fs-16);
}
.woocommerce-page nav.woocommerce-breadcrumb a {
  font-weight: 700;
  transition: all 0.3s;
}
.woocommerce-page nav.woocommerce-breadcrumb a:hover {
  color: #1d1916;
}
.woocommerce-page .woocommerce-ordering {
  position: relative;
  z-index: 9;
}
.woocommerce-page .woocommerce-ordering select.orderby {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  /*   border: 1px solid #ced4da; */
  border-radius: 0.25rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.woocommerce-MyAccount-navigation {
  width: 250px;
  background: #fff3f3;
  border-radius: 10px;
  padding: 20px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation-link {
  margin-bottom: 10px;
  border: none !important;
}

.woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 12px 15px;
  color: #4a4a4a;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-size: var(--fs-18);
  background: #fff;
}
.woocommerce-page .site-main .woocommerce {
  max-width: 100%;
}

.woocommerce-MyAccount-navigation-link a:hover {
  background: #1d1916;
  color: #fff;
}

.woocommerce-MyAccount-navigation-link.is-active a {
  background: #1d1916 !important;
  color: #fff;
  font-weight: bold;
}

.woocommerce-MyAccount-content {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.woocommerce-MyAccount-content p strong {
  color: #1d1916;
}

.woocommerce-MyAccount-content a {
  color: #73000e;
  font-weight: 500;
  text-decoration: none !important;
}

.woocommerce-MyAccount-content a:hover {
  color: #1d1916;
}
.woocommerce-info {
  border-top-color: #1d1916;
}
.woocommerce-info::before {
  color: #1d1916;
}

.woocommerce-cart .entry-title {
  text-align: center;
  font-size: var(--fs-30);
}
p.wc-block-components-checkout-order-summary__title-text {
  color: #760606;
}

.wp-block-woocommerce-checkout.alignwide.wc-block-checkout {
  margin-bottom: var(--spc-100);
}
.u-columns.woocommerce-Addresses.col2-set.addresses {
  margin-top: 20px;
}
header.woocommerce-Address-title.title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  justify-content: space-between;
}
header.woocommerce-Address-title.title::before,
header.woocommerce-Address-title.title::after {
  display: none !important;
}
header.woocommerce-Address-title.title h2 {
  font-size: var(--fs-25);
}
.woocommerce-account .woocommerce-MyAccount-content form {
  position: relative;
}
.woocommerce-account .woocommerce-MyAccount-content form h2 {
  margin-bottom: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content form label {
  font-size: var(--fs-16);
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  font-size: var(--fs-16);
  padding: 15px;
  border: none;
  background: #fff3f3;
  outline-color: #5e020a;
  border-radius: 8px;
}
:where(.woocommerce)
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  font-size: var(--fs-16);
}
:where(.woocommerce) .select2-container .select2-dropdown,
:where(.woocommerce) .select2-container .select2-selection {
  border: none;
  background: #fff3f3;
  padding: 8px;
  border-radius: 8px;
}
.woocommerce-MyAccount-content button[type="submit"] {
  margin-top: 20px;
}
legend {
  margin: 10px 0;
}
span#account_display_name_description em {
  font-size: var(--fs-16);
}
h2.woocommerce-column__title,
h2.woocommerce-order-details__title {
  margin-bottom: 15px;
}
.menu-toggle,
button,
.ast-button,
.ast-custom-button,
.button,
input#submit,
input[type="button"],
input[type="submit"],
input[type="reset"],
#comments .submit,
.search .search-submit,
form[CLASS*="wp-block-search__"].wp-block-search
  .wp-block-search__inside-wrapper
  .wp-block-search__button,
body .wp-block-file .wp-block-file__button,
.search .search-submit,
.woocommerce-js a.button,
.woocommerce button.button,
.woocommerce .woocommerce-message a.button,
.woocommerce #respond input#submit.alt,
.woocommerce input.button.alt,
.woocommerce input.button,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover,
.woocommerce #respond input#submit,
.woocommerce button.button.alt.disabled,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link,
.wc-block-grid__product-onsale,
[CLASS*="wc-block"] button,
.woocommerce-js
  .astra-cart-drawer
  .astra-cart-drawer-content
  .woocommerce-mini-cart__buttons
  .button:not(.checkout):not(.ast-continue-shopping),
.woocommerce-js
  .astra-cart-drawer
  .astra-cart-drawer-content
  .woocommerce-mini-cart__buttons
  a.checkout,
.woocommerce button.button.alt.disabled.wc-variation-selection-needed,
[CLASS*="wc-block"] .wc-block-components-button {
  border-color: #1d1916;
  background-color: #1d1916;
}
button:focus,
.menu-toggle:hover,
button:hover,
.ast-button:hover,
.ast-custom-button:hover .button:hover,
.ast-custom-button:hover,
input[type="reset"]:hover,
input[type="reset"]:focus,
input#submit:hover,
input#submit:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
form[CLASS*="wp-block-search__"].wp-block-search
  .wp-block-search__inside-wrapper
  .wp-block-search__button:hover,
form[CLASS*="wp-block-search__"].wp-block-search
  .wp-block-search__inside-wrapper
  .wp-block-search__button:focus,
body .wp-block-file .wp-block-file__button:hover,
body .wp-block-file .wp-block-file__button:focus,
.woocommerce-js a.button:hover,
.woocommerce button.button:hover,
.woocommerce .woocommerce-message a.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce input.button:hover,
.woocommerce button.button.alt.disabled:hover,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link:hover,
[CLASS*="wc-block"] button:hover,
.woocommerce-js
  .astra-cart-drawer
  .astra-cart-drawer-content
  .woocommerce-mini-cart__buttons
  .button:not(.checkout):not(.ast-continue-shopping):hover,
.woocommerce-js
  .astra-cart-drawer
  .astra-cart-drawer-content
  .woocommerce-mini-cart__buttons
  a.checkout:hover,
.woocommerce button.button.alt.disabled.wc-variation-selection-needed:hover,
[CLASS*="wc-block"] .wc-block-components-button:hover,
[CLASS*="wc-block"] .wc-block-components-button:focus {
  background-color: #000;
  border-color: #000;
}
.wishlist-title-container {
  display: none;
}
.woocommerce-page main#main td.product-add-to-cart a {
  color: black;
  background: #1d1916;
  border-radius: 5px;
  color: #fff;
  padding: 7px 10px;
  font-size: 14px;
}
.woocommerce-page main#main td.product-add-to-cart a:hover {
  background: #000;
}
.woocommerce-wishlist h1.entry-title,
.woocommerce-account h1.entry-title {
  text-align: center;
  color: #1d1916;
}
.wp-block-woocommerce-cart.alignwide,
.wp-block-woocommerce-checkout.alignwide.wc-block-checkout {
  margin: 0 !important;
}
@media (max-width: 991.98px) {
  .woocommerce-page main#main tbody tr {
    padding: 16px;
  }
  .woocommerce-page main#main thead > tr {
    display: table-row;
  }
  .woocommerce-page main#main thead .wc-block-cart-items__header-product {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .wp-block-woocommerce-checkout {
    padding-top: 5px !important;
  }
  .sec_hdng {
    margin-bottom: 20px;
  }
  .woocommerce-page main#main .entry-title {
    margin-bottom: 20px;
  }
  .woocommerce-MyAccount-content {
    margin-top: 20px;
  }

  .woocommerce-MyAccount-navigation {
    padding: 10px;
    width: 100%;
  }
  .woocommerce-page main#main tbody tr {
    display: table-row;
  }
  .woocommerce-page main#main tbody tr > td {
    padding: 10px;
    vertical-align: middle;
  }
  .woocommerce ul.order_details {
    margin: 0 !important;
  }
  .woocommerce-MyAccount-content {
    padding: 15px;
  }
}
@media (max-width: 470px) {
  .sec_hdng {
    margin-bottom: 10px;
  }
  .woocommerce-page main#main .wc-block-cart .wc-block-cart__main {
    overflow-x: auto;
  }
}
p.woocommerce-noreviews {
  display: none;
}
/* woocommerce css end */

#photoswipe-fullscreen-dialog {
    display: none;
}
@media(max-width: 767.98px){
body .facet-group {
    position: fixed;
    z-index: 9999;
    background: #FFF;
    inset: 0;
    padding-top: 10px;
	display: none;
}
	.facetwp-reset {
    top: 35px;
}
.btn-close {
    margin-left: auto;
    background-color: #fff !important;
    opacity: 1;
}
	button.facetwp-reset::before {
    top: 12.3px;
}
	.facet-group h2 {
    padding-top: 10px;
}
	button.filter_mob {
    border-radius: 5px;
    padding: 10px 20px;
		margin-bottom: 10px;
}
}
