/*!
Theme Name: Comic Concepts 2026 Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  color: #1c1540;
  border: 1px solid #1c1540;
  height: 59px;
  padding: 0 20px;
  outline: none !important;
}

input:focus {
  box-shadow: none;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  color: #1c1540;
  border: 1px solid #1c1540;
  padding: 25px 20px;
  width: 100%;
  height: 168px;
  outline: none !important;
}

select {
  border: 1px solid #1c1540;
  color: #1c1540;
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #ffb040;
  color: #1c1540;
  text-transform: uppercase;
  height: 45px;
  box-shadow: 3px 3px 0 #1c1540;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 10px 42px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: #1c1540;
  color: #ffb040;
  box-shadow: 0 0 0 #ffb040;
}

::-webkit-input-placeholder {
  color: #48445e;
}

:-ms-input-placeholder {
  color: #48445e;
}

::-moz-placeholder {
  color: #48445e;
}

:-moz-placeholder {
  color: #48445e;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {

    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {

} */
.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* navbar*/

body:not(.pt-0) .main-head {
  background: #000;
}

.search-wrp {
  position: relative;
  cursor: pointer;
}

.search-bar {
  width: 250px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 999;
}

.search-wrp a.active .search-icon {
  display: none;
}

.search-wrp a.active .cross-icon {
  display: block;
}

.search-wrp a.active {
  background: #ffb040;
  border-color: #ffb040;
}

.search-wrp a.active img {
  filter: brightness(1);
}

.search-wrp a .cross-icon {
  display: none;
}

.search-bar input {
  width: 100%;
  background: #fff;
  height: 45px;
  padding-right: 40px;
}

.search-bar input[type="submit"] {
  background: url(./images/search.svg) no-repeat center, transparent;
  font-size: 0;
  outline: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.main-head {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 0 10px;
}

.navbar-brand {
  padding: 0;
  margin: 0 0 0 0;
  width: 210px;
  display: inline-block;
}

.navbar-brand img {
  width: 100%;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 15px;
  position: relative;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: #ffb040;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 160px;
  padding: 0;
}

.sub-menu>li>a {
  color: #1c1540;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
}

.sub-menu>li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  background: #ffb040;
  color: #fff;
}


.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

.navbar-right-part {
  margin-left: 16px;
}

.navbar-right-part ul {
  display: flex;
  align-items: center;
}

.navbar-right-part ul li {
  margin-right: 15px;
}

.navbar-right-part ul li:last-child {
  margin-right: 0;
}

.navbar-right-part ul li a {
  border: 1px solid #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.navbar-right-part ul li a img {
  max-width: 20px;
  filter: brightness(0) invert(1);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.navbar-right-part ul li a:hover {
  background-color: #ffb040;
  border-color: #ffb040;
}

.navbar-right-part ul li a:hover img {
  filter: none;
}

.container-fluid {
  max-width: 1500px;
}

/* for push-menu end*/
/* Global Style */

.cmn-btn {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540;
  border-radius: 10px;
  padding: 19px 38px 17px;
  min-width: 180px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540;
}

.cmn-btn:hover {
  background: #1c1540;
  color: #ffb040;
  box-shadow: 0 0 0 #1c1540;
}

.cmn-btn img {
  margin-left: 10px;
  margin-bottom: 1px;
}

.cmn-btn:hover img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(16%) saturate(6965%) hue-rotate(327deg) brightness(105%) contrast(105%);
}

.cmn-gap2 {
  padding: 80px 0;
}

.cmn-gap {
  padding: 100px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 45px;
}

.sec-head h2 {
  text-transform: capitalize;
}

.sec-head.white h2 {
  color: #fff;
}

.slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-dots li {
  margin-right: 10px;
  line-height: 1;
}

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

.slick-dots li button {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  border: none;
  padding: 0;
  font-size: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.slick-dots li.slick-active button,
.slick-dots li:hover button {
  background: #ffb040;
}

/* Global Style */

/* Hero Section Begin */

.hero-sec {
  position: relative;
  overflow: hidden;
}

.hero-item-inr {
  position: relative;
  padding: 100px 0 151px;
  /* min-height: 800px; */
  min-height: 800px;
  /* height: 100%; */
  display: flex;
  align-items: flex-end;
}

.hero-sec .slick-next {
  right: 0;
}

.hero-sec .slick-prev {
  left: 0;
}

.bnr-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

.bnr-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #001863 30%, rgba(0, 24, 99, 0) 77%);
  z-index: -1;
  opacity: 0.8;
}

.bnr-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: -2;
}

.hero-inr {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-inr p {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 33px;
  max-width: 550px;
}

/* End Of Hero Section */

/* Brands Section Begin */

.brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}

.brands-slider .slick-track {
  display: flex;
}

.brands-slider .slick-slide {
  height: inherit;
}

.brands-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(./images/brnd-slider-arrow.svg) no-repeat center;
  background-size: 100% 100%;
  width: 13px;
  height: 25px;
  font-size: 0;
  color: transparent;
  background-color: transparent;
  cursor: pointer;
  pointer-events: all;
  border: 0;
  outline: none;
}

.brands-slider .slick-arrow::before {
  background: url(./images/brnd-slider-arrow.svg) no-repeat center;
}

/* .brands-slider .slick-arrow:hover{
    background: url(./images/brnd-slider-arrow.png) no-repeat center;
} */
.brands-slider .slick-arrow.slick-prev {
  left: -30px;
  transform: rotate(180deg) translateY(50%);
}

.brands-slider .slick-arrow.slick-next {
  right: -30px;
}

.brands-sec {
  padding: 45px 0;
}

.cmn-btn-wrp {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* End Of Brands Section */

/* Partner Section Begin */

.partner-sec {
  position: relative;
  overflow: hidden;
}

.pt-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pt-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000 0%, #101010 62%, #202020 100%);
}

.pt-bg img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  position: absolute;
  bottom: -30px;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.pt-card {
  border-radius: 10px;
  overflow: hidden;
}

.pt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.ptcd-btn a {
  color: #ffb040;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Archivo", sans-serif;
}

.ptcd-btn a span {
  line-height: 1;
}

.ptcd-btn a:hover {
  color: #fff;
}

.ptcd-btn a:hover img {
  filter: brightness(0) invert(1);
}

.ptcd-btn a img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(16%) saturate(6965%) hue-rotate(327deg) brightness(105%) contrast(105%);
  margin-left: 5px;
}

.pt-card {
  position: relative;
  /* box-shadow: 3px 3px 0 #fff; */
  border: 3px solid #fff;
  height: 100%;
  min-height: 281px;
}

.pt-img {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}

.partner-col .pt-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #000 30%, #00000000 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  border: 1px solid #fff;
  border-radius: 10px;
}

.partner-col:nth-child(5n - 4) .pt-card::before {
  background: linear-gradient(45deg, #000 30%, #00000000 100%);
}

.partner-col:nth-child(5n - 3) .pt-card::before {
  background: linear-gradient(45deg, #000 30%, #00000000 100%);
}

.partner-col:nth-child(5n - 2) .pt-card::before {
  background: linear-gradient(45deg, #2c0000 30%, #2c000000 100%);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.partner-col:nth-child(5n - 1) .pt-card::before {
  background: linear-gradient(45deg, #2c0000 30%, #36030300 100%);
  opacity: 0.9;
}

.partner-col:nth-child(5n - 0) .pt-card::before {
  background: linear-gradient(45deg, #000000 30%, #00000000 100%);
  opacity: 0.9;
}

.pt-cd-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 25px 18px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.pt-cd-content p {
  color: #fff;
  margin-bottom: 6px;
}

.pt-cd-content h3 {
  color: #fff;
  margin-bottom: 15px;
}

.partner-row {
  margin-bottom: 30px;
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  justify-content: center;
}

.partner-row .partner-col:nth-child(5n - 3) {
  flex: 0 0 auto;
  width: 66.66666667%;
}

/* End Of Partner Section */

/* NTO Sec Begin */

.nto-img {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

.nto-item-inr:hover .nto-img a img {
  transform: scale(1.06);
}

.nto-img a {
  display: block;
}

.nto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.sale-price {
  color: #bebebe;
  text-decoration: line-through;
}

.float-tags {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 9px 8px;
}

.float-tags .tag {
  color: #fff;
  background: #5724cd;
  border-radius: 5px;
  padding: 4px 10px 2px;
  min-width: 76px;
  font-size: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  text-align: center;
}

.float-tags .tag:last-child {
  margin-bottom: 0;
}

.float-tags .tag.low {
  background: #ffb040;
}

.float-tags .tag.sale {
  background: #fa2c5d;
}

.float-tags .tag.new {
  background: #0169fe;
}

.product-desc {
  color: #48445e;
  letter-spacing: 0.01em;
  font-size: 14px;
  margin-bottom: 5px;
}

.nto-cd-content h3 a {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.nto-btm {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nto-btns {
  margin-left: auto;
  padding-left: 10px;
}

.nto-btns ul {
  display: flex;
  align-items: center;
}

.nto-btns ul li {
  margin-right: 17px;
  margin-left: 0;
  line-height: 1;
}

.nto-btns ul li a:hover img {
  filter: brightness(0) saturate(100%) invert(89%) sepia(35%) saturate(3166%) hue-rotate(325deg) brightness(101%) contrast(101%);
}

.nto-btns ul li:last-child {
  margin-right: 0;
}

.nto-btm p {
  color: #0057e5;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.nto-slider-item {
  padding: 0 5px;
}

.nto-slider .slick-list {
  overflow: visible;
}

.new-to-order-section {
  overflow: hidden;
}

.new-to-order-section .slick-arrow {
  top: 35%;
}

.slick-arrow {
  font-size: 0;
  background-color: #ffb040;
  border-radius: 5px;
  border: 1px solid #1c1540;
  outline: 0;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  z-index: 2;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(./images/slider-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 14px;
  height: 20px;
}

.slick-prev {
  left: -20px;
  transform: translateY(-50%) rotate(180deg);
}

.slick-next {
  right: -20px;
}

.slick-arr-wt .slick-arrow:hover::before {
  background-image: url(./images/slider-arrow-white.svg);
}

.slick-arr-wt .slick-arrow:hover {
  background-color: #1c1540;
  border-color: #fff;
}

.nto-inr .cmn-btn-wrp {
  margin-top: 70px;
}

/* End Of NTO Sec */

/* Shpping Section Begin */

.sp-slide-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
}

.tags-wrp {
  margin-bottom: 10px;
  position: absolute;
  top: 10px;
  right: 3px;
  z-index: 2;
}

.tag-wrp {
  margin-bottom: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 61px;
  height: 44px;
}

.tag-wrp .tg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tag-wrp .tag-txt {
  font-size: 13px;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  text-transform: capitalize;
}

.sp-slide-img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
}

.sp-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}

.sp-slide-img:hover>img {
  transform: scale(1.05);
}

.sp-slide-content .desc {
  color: #9992ba;
  font-size: 14px;
}

.sp-slide-content h3 a {
  color: #fff;
}

.cmnty-content h3 a {
  text-transform: capitalize;
}

.sp-slide-content h3 a,
.cmnty-content h3 a {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.sp-slide-content h3:hover a {
  color: #ffb040;
}

.sp-slide-content .price {
  color: #ffb040;
}

.sp-slide {
  padding: 0 15px;
}

.shipping-slider .slick-list {
  margin: 0 -15px;
}

.shipping-slider .slick-arrow {
  top: 40%;
}

.shipping-slider .slick-prev {
  left: -64px;
}

.shipping-slider .slick-next {
  right: -64px;
}

.shipping-slider .slick-arrow:hover {
  background-color: #0b0b0c;
}

.shipping-slider .slick-track {
  display: flex;
}

.shipping-slider .slick-slide {
  height: inherit;
}

.quick-view-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
}

.sp-slide-inr {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
}

/* End of Shpping Section */

/* Community Section Begin */

.cmnty-img {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  position: relative;
}

.cmnty-slider .slick-list {
  margin: 0 -15px;
}

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

.cmnty-img .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.cmnty-over-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.cmnty-slide-inr:hover .cmnty-img .play-icon {
  opacity: 0;
  pointer-events: none;
}

.cmnty-slide-inr:hover .cmnty-over-content {
  opacity: 1;
  visibility: visible;
}

.cmnty-over-content img {
  width: 35px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cmnty-slide-inr {
  border-radius: 10px;
  position: relative;
  display: flex;
}

.cmnty-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #1c1540;
  border-radius: 0 0 10px 10px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.cmnty-over-content p {
  position: absolute;
  bottom: 60px;
  left: 0;
  color: #fff;
  padding: 15px;
}

.cmnty-slide {
  padding: 0 15px;
}

.cmnty-slider .slick-list {
  overflow: visible;
}

.community-sec {
  overflow: hidden;
}

.cmty-inr .cmn-btn-wrp {
  margin-top: 30px;
}

/* End Of Community Section */

/* WSCC Section Begin */

.wscc-img {
  width: 100px;
  height: 100px;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1c1540;
  box-shadow: 4px 4px 0 #1c1540;
  margin-bottom: 25px;
}

.wscc-img img {
  max-height: 42px;
}

.wscc-col:nth-child(4n - 3) .wscc-img {
  background: #5724cd;
}

.wscc-col:nth-child(4n - 2) .wscc-img {
  background: #55bcd6;
}

.wscc-col:nth-child(4n - 1) .wscc-img {
  background: #0057e5;
}

.wscc-col:nth-child(4n - 0) .wscc-img {
  background: #1c1540;
}

.wscc-row {
  max-width: 930px;
  margin: 0 auto;
  --bs-gutter-y: 30px;
}

.wscc-col-inr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.wscc-content {
  text-align: center;
  max-width: 250px;
}

.wscc-content h3 {
  text-transform: capitalize;
  line-height: 1.2;
}

.wscc-sec {
  background: #ffb040;
}

.wscc-sec .sec-head {
  margin-bottom: 20px;
}

/* End Of WSCC Section */

/* Footer Section Begin */

footer {
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

.ftr-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.ftr-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000 0%, #101010 62%, #202020 100%);
}

.ftr-logo {
  width: 220px;
  display: block;
  margin-bottom: 30px;
}

.ftr-logo img {
  width: 100%;
}

.ftrwdgt-inr p {
  color: #fff;
  margin-bottom: 27px;
}

.social-links ul {
  display: flex;
  align-items: center;
}

.social-links ul li {
  margin-right: 10px;
}

.social-links ul li:last-child {
  margin-right: 0;
}

.social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffb040;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid #ffb040;
}

.social-links ul li a:hover {
  background: transparent;
  border-color: #fff;
}

.social-links ul li a img {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.social-links ul li a:hover img {
  filter: brightness(0) invert(1);
}

.footer-inr {
  padding-bottom: 93px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ftr-links ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ftr-links ul li {
  width: 50%;
  /* padding: 0 12px; */
  margin-bottom: 8px;
}

.ftr-links ul li:nth-last-child(2) {
  margin-bottom: 0;
}

.ftr-links ul li:last-child,
.ftr-widget:last-child .ftr-links ul li:last-child {
  margin-bottom: 0;
}

.ftr-links ul li a {
  color: #fff;
}

.ftr-links ul li.current-menu-item a {
  color: #ffb040;
}

.ftr-links ul li a:hover {
  color: #ffb040;
}

.ftrwdgt-title {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: "Archivo", sans-serif;
}

.ftr-widget:first-child {
  width: 41%;
  padding-top: 0;
}

.ftr-widget:first-child .ftrwdgt-inr {
  max-width: 333px;
}

.ftr-widget:nth-child(2) {
  width: 37%;
  /* padding-top: 50px; */
}

.ftr-widget:last-child {
  width: 22%;
  /* padding-top: 50px; */
}

.ftr-widget:last-child .ftr-links ul li {
  width: 100%;
  margin-bottom: 8px;
}

.copyright {
  padding: 29px 0;
}

.copyright p,
.copyright a {
  color: #fff;
  text-align: center;
}

.copyright a:hover {
  color: #ffb040;
}

/* End of Footer Section */

/* Products Page Begin */

.pr-filter {
  margin-bottom: 26px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.applied-filters ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 0;
  margin: 0;
}

.applied-filters ul li {
  margin-right: 6px;
  border-radius: 6px;
  background: #5724cd;
  padding: 5px 10px;
  color: #fff;
  /* line-height: 1; */
  display: flex;
  align-items: center;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

.applied-filters ul li:last-child {
  margin-right: 0;
}

.applied-filters ul li .cross-icon {
  margin-right: 10px;
  display: block;
  line-height: 0;
  cursor: pointer;
}

.filter-sort {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 10px;
  margin: -6px;
}

.filtre-open {
  /* width: 45px; */
  min-width: 45px;
  height: 45px;
  border: 1px solid #1c1540;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-left: 15px; */
  display: none;
  padding: 5px;
  transition: all ease-in-out 0.3s;
}

.fltr-sort-form-wrp {
  flex-shrink: 0;
  flex-grow: 1;
}

.filter-sort>* {
  padding: 6px;
}

.filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.filter-btn i {
  margin-right: 10px;
}

.filtre-open.open {
  background: #ffb040;
}

.filtre-open .filter-close {
  display: none;
}

.filtre-open.open .filter-close {
  display: block;
}

.filter-sort .form-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.filter-sort .form-group label {
  margin-right: 20px;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  color: #0c0c0c;
}

.filter-sort .form-group select {
  width: 157px;
  height: 45px;
  background-image: url(./images/select-arrow.png);
  background-size: auto;
  background-position: calc(100% - 14px) center;
  background-repeat: no-repeat;
  color: #48445e;
  padding: 10px 25px;
}

.fltr-control {
  display: flex;
  align-items: center;
  /* margin-bottom: 20px; */
}

.filters-form-wrp {
  padding-top: 17px;
}

.fltr-control .h3-title {
  color: #1c1540;
  margin: 0 10px 0 0;
}

.open-fltr-btn {
  margin-left: auto;
  cursor: pointer;
  transform: rotate(0);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.open-fltr-btn.close {
  transform: rotate(180deg);
}

.filters-wrp {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 26px 10px;
}

.products-filter-wrp {
  display: block;
  width: 20%;
}

.products-filter-wrp .filtre-open {
  display: none;
}

.products-filter-wrp.opened .filtre-open {
  position: absolute;
  top: 10px;
  right: 10px;
  width: auto;
  display: flex;
  z-index: 2;
}

.products-wrp-right {
  width: 80%;
}

.filtrs-wrp-inr {
  padding: 0 10px 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filtrs-wrp-inr:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.filters-wrp .input-grp label {
  color: #48445e;
  cursor: pointer;
}

.filters-wrp .input-grp label small {
  margin-left: 6px;
  font-size: 11px;
  font-weight: 400;
}

.filters-wrp .input-grp {
  margin-bottom: 5px;
  /* transition: all ease-in-out .3s; */
}

.filters-wrp .input-grp:last-child {
  margin-bottom: 0;
}

.filters-wrp .input-grp input {
  accent-color: #1c1540;
  -webkit-appearance: initial;
  appearance: initial;
  position: relative;
  width: 13px;
  height: 13px;
  background: #fff;
  border: 1px solid #1c1540;
  border-radius: 2px;
}

.filters-wrp .input-grp input:checked {
  background: #1c1540;
}

.filters-wrp .input-grp input:checked::after {
  content: "";
  color: #fff;
  position: absolute;
  width: 7px;
  height: 5px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(./images/tick.svg) no-repeat center;
  background-size: cover;
}

.show-opt-fltrs {
  color: #5724cd;
  text-decoration: underline;
  margin-top: 15px;
  cursor: pointer;
}

.price-range {
  position: relative;
  width: 100%;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 16px; */
}

.price-range-input-wrp .noUi-target,
.price-range-input-wrp .noUi-connects {
  position: relative;
  width: 100%;
  height: 2px;
  background: #d9d9d9;
  border-radius: 10px;
  z-index: 1;
  margin-top: 10px;
}

.price-range-input-wrp .noUi-connect {
  background: #1c1540;
  border-radius: 10px;
  top: -1px;
  height: 2px;
}

.price-range-input-wrp .noUi-handle {
  width: 11px;
  height: 11px;
  background-color: #1c1540 !important;
  border: 2px solid #fff !important;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  box-shadow: none;
  left: -5px;
}

.price-range-input-wrp .noUi-handle:before {
  content: none;
}

.price-range-input-wrp .noUi-handle::after {
  display: none;
}

/* .example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
    background: -o-linear-gradient(top, white, black);
    background: linear-gradient(to bottom, white, black);
} */
.prducts-inr-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.products-wrp-right .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 40px;
}

/*Start - 06/02/2025*/
body.woocommerce-cart span.select2.select2-container.select2-container--default {
  color: #1c1540;
  border: 1px solid #1c1540;
  border-radius: 10px;
}

body.woocommerce-cart span.select2.select2-container.select2-container--default .select2-selection__arrow {
  top: 0;
}

body.woocommerce-cart span.select2.select2-container.select2-container--default .select2-selection__rendered {
  padding-top: 15px;
}

body.woocommerce-cart .select2-container .select2-search__field {
  background: #ffffff;
}

body.woocommerce-cart .cart-collaterals table tr th {
  font-size: 18px;
}

body.woocommerce-cart .cart-collaterals table tr td,
body.woocommerce-cart .cart-collaterals table tr td p.woocommerce-shipping-contents small,
body.woocommerce-cart .cart-collaterals table tr td a.shipping-calculator-button {
  font-size: 16px !important;
}

/* Hide the duplicate package-contents line under each shipping rate in
   the checkout order review. The product name is already shown in the
   left "Shipment X — ..." label. */
.woocommerce-checkout .woocommerce-checkout-review-order-table p.woocommerce-shipping-contents {
  display: none !important;
}

body.woocommerce-cart .general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn {
  width: 30%;
  float: right;
}

body.woocommerce-cart button.cmn-btn {
  padding: 12px 25px !important;
  min-height: 0 !important;
}

body.woocommerce-cart dl.variation .variation-PaymentPlan,
body.woocommerce-cart .variation .variation-PaymentPlan select,
body.woocommerce-cart .product-quantity input[type="number"] {
  font-size: 16px !important;
}

/* --------------------------------------------------------------------------
 * Cart totals — boxed card layout (matches legacy twentytwentyone design)
 *
 * Each totals row becomes its own card with border + padding. Subtext like
 * "(Non-Refundable Deposit)" and "(Excludes shipping)" — injected by
 * renameDepositLabels() in cc-woocommerce/assets/js/frontend.js — inherits
 * muted styling.
 * ------------------------------------------------------------------------ */

body.woocommerce-cart .cart-collaterals .cart_totals > h2 {
  margin-bottom: 18px;
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table {
  border: 1px solid #e0e0e0;
  border-collapse: collapse;
  width: 100%;
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr {
  background: #fff;
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th,
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
  border-top: 1px solid #e0e0e0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  padding: 16px 18px;
  vertical-align: top;
  background: #fff;
}

/* First row: no top border (the outer table border handles it) */
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr:first-child th,
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr:first-child td {
  border-top: none;
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
  font-weight: 700;
  width: 40%;
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td {
  text-align: right;
}

/* Muted subtext for "(Non-Refundable Deposit)" / "(Excludes shipping)" */
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th small,
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table td small {
  display: block;
  margin-top: 4px;
  font-size: 12px !important;
  font-weight: 400;
  color: #6c6c6c;
}

/* Emphasise the "Due today" / order-total rows */
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total th,
body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td {
  font-size: 17px;
}

/* Proceed-to-checkout button spacing */
body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
  margin-top: 18px;
}

/* --------------------------------------------------------------------------
 * Per-line deposit switcher (CC_Cart_Deposit_Switcher)
 * ------------------------------------------------------------------------ */

.cc-cart-deposit-switcher {
  margin: 10px 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cc-cart-deposit-switcher__label {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.cc-cart-deposit-switcher__select {
  padding: 10px 0 10px 10px;
  font-size: 13px;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  background-color: #fff;
  min-width: 220px;
  max-width: 100%;
}

.cc-cart-deposit-switcher__select:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Override parent/WC-core width:auto on notice banners */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
  width: 100%;
}

/*End - 06/02/2025*/

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  #price-range-input {
    background: #d9d9d9;
  }
}

/* End Of Products Page */

/* Contact Page Begin */

.contact-inr {
  max-width: 750px;
  margin: 0 auto;
}

.contact-inr .sec-head h1 {
  margin-bottom: 15px;
  color: #1c1540;
}

.contact-inr .sec-head strong {
  margin-bottom: 5px;
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
}

.contact-inr .sec-head p {
  font-size: 14px;
  color: #48445e;
}

.contact-inr .sec-head {
  margin-bottom: 40px;
}

.contact-form .row .form-group input,
.contact-form .row .form-group textarea {
  background: #f5f5f5;
  resize: none;
}

.contact-form .row .form-group label {
  text-transform: uppercase;
  color: #1c1540;
  margin-bottom: 13px;
  display: block;
}

.contact-form .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.frm-btm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.capctha {
  width: 240px;
  margin-right: 10px;
  flex-shrink: 0;
}

.pegination ul {
  display: flex;
  align-items: center;
}

.pegination ul li {
  margin-right: 10px;
}

.pegination ul li:last-child a {
  padding: 5px 17px;
}

.pegination ul li a {
  border: 1px solid #1c1540;
  border-radius: 4px;
  min-width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: all ease-in-out 0.3s;
}

.pegination ul li a:hover {
  background: #0c0c0c;
}

.pegination ul li a:hover {
  color: #fff;
}

.pegination ul li.active a {
  color: #fff;
  background: #0c0c0c;
}

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

.pegination ul li a img {
  margin-left: 5px;
  display: inline-block;
}

.pegination ul li a {
  color: #48445e;
}

.pegination ul li:hover a img {
  filter: brightness(0) invert(1);
}

.pegination {
  margin-top: 60px;
}

/* End of Contact Page */

.navbar-nav .clickD {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url(images/sort-down.svg) center center no-repeat;
  display: block;
  background-size: 10px;
  cursor: pointer;
  transition: all ease-in-out 0.1s;
}

/* sd starts 04.11.2024  */
.brands-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

/* sd ends 04.11.2024  */

/* 11.11.2024 css start */
.partner-col .pt-card::before {
  display: none;
}

.product-intro-outer {
  max-width: 100%;
  margin: 0 auto 50px;
  /* background: #5624cd1c; */
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid rgba(86, 36, 205, 0.14);
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.06);
}

.product-intro-wraper {
  margin: -15px -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  /* text-align: center; */
}

.product-left {
  width: 350px;
  padding: 15px;
}

.product-right {
  width: calc(100% - 350px);
  padding: 15px;
}

.product-intro-wraper h1 {
  color: #000;
  font-size: 52px;
}

.product-left a {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.product-left a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 11.11.2024 css end */

/* 14.11.2024 css start */

.now-shipping-sec .pt-bg img {
  bottom: 0;
}

.ftr-btn-shp {
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.ftr-btn-shp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 14.11.2024 css end */

/* SM 22_11_24 */

.hero-sec .hero-slider {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* SM 22_11_24 end */
/* CSS Modification 27.11.24 */
.main-head .search-wrp {
  position: static;
}

.main-head .search-wrp .search-bar {
  width: 50%;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.dgwt-wcas-suggestions-wrapp.dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.nto-slider .nto-item-inr .nto-img {
  position: relative;
  z-index: 1;
}

.nto-slider .nto-item-inr .nto-img::before {
  content: "";
  padding-top: 95.64%;
  display: block;
}

.nto-slider .nto-item-inr .nto-img img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.nto-btns ul .yith-wcwl-add-to-wishlist .yith-wcwl-add-button span {
  display: none;
}

.nto-btns ul .yith-wcwl-add-to-wishlist {
  margin-top: 0;
}

.nto-btns ul .yith-wcwl-add-to-wishlist {
  font-size: 0;
  position: relative;
}

.nto-btns ul .yith-wcwl-add-to-wishlist i {
  font-size: 15px;
  margin-right: 0;
}

.nto-slider .nto-item-inr .nto-btm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.nto-slider .nto-item-inr .nto-btm .nto-btns ul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.nto-slider .nto-item-inr .nto-btm .nto-btns {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}

.nto-slider .nto-item-inr .nto-btm p {
  text-align: left;
}

.nto-btns ul .yith-wcwl-add-to-wishlist .feedback+a {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
}

.nto-btns ul .yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon {
  color: #ffb040;
  margin-right: 0;
}

#rd-share-modal-cont {
  display: none;
}

#rd-share-modal-cont h1 {
  color: #1c1540;
  font-size: 24px;
}

.general-container-wrap .woocommerce .cart_item .product-remove {
  vertical-align: top;
}

.general-container-wrap .woocommerce .cart_item .product-remove a.remove {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540;
  border-radius: 100%;
  color: #1c1540 !important;
}

.general-container-wrap .woocommerce .woocommerce-cart-form__cart-item.cart_item {
  font-size: 14px;
}

.general-container-wrap .woocommerce .cart_item .product-remove a.remove:hover {
  background: #1c1540;
  color: #fff !important;
}

.general-container-wrap .woocommerce .cart_item .product-thumbnail {
  width: 120px;
  vertical-align: top;
}

.general-container-wrap .woocommerce .cart_item .variation-PaymentPlan:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding-top: 10px;
}

.general-container-wrap .woocommerce .cart_item .variation-PaymentPlan select {
  height: 44px;
  font-size: 12px;
  background-image: url(images/sort-down-blue.svg);
  background-size: 12px;
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 10px;
}

.general-container-wrap .woocommerce table.cart td.actions .coupon input[type="text"].input-text {
  width: 180px;
  padding: 0 20px;
  font-size: 12px;
  height: 54px;
}

.general-container-wrap .woocommerce button.cmn-btn,
.general-container-wrap .woocommerce button.cmn-btn[disabled],
.general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn,
.woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.cmn-btn {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540;
  border-radius: 10px;
  padding: 19px 38px 17px;
  min-width: 180px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-height: 54px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.general-container-wrap .woocommerce button.cmn-btn:hover,
.general-container-wrap .woocommerce button.cmn-btn[disabled]:hover,
.general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn:hover,
.woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.cmn-btn:hover {
  color: #fff;
  background: #1c1540;
}

.general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn {
  width: 100%;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.cmn-btn {
  margin-left: 10px;
}

.general-container-wrap h1 {
  color: #1c1540;
  text-align: center;
  margin-bottom: 20px;
}

.nto-slider .nto-item-inr .nto-cd-content {
  text-align: left;
}

/* CSS Modification 27.11.24 */
/* CSS Modification 28.11.24 */
.general-container-wrap .woocommerce .product .summary {
  width: 100%;
  float: none;
  font-size: 16px;
}

.general-container-wrap .summary h1 {
  font-size: 24px;
  text-align: left;
}

.prdct_img_wrppr {
  position: relative;
}

.prdct_img_wrppr .labels {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 9px 8px;
}

.prdct_img_wrppr .preOrder {
  color: #fff;
  background: #5724cd;
  border-radius: 5px;
  padding: 4px 10px 2px;
  min-width: 76px;
  font-size: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  display: block;
  text-align: center;
}

.general-container-wrap .summary .atrributeList .botomTitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.general-container-wrap .summary .atrributeList .botomTitle .catName {
  padding-right: 5px;
}

.general-container-wrap .summary .posted_in.product_brand_posted_in {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 600;
}

.general-container-wrap .summary .posted_in.product_brand_posted_in img {
  height: 100% !important;
  max-height: 60px !important;
  max-width: 60px !important;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 0;
  margin-right: 10px;
}

.general-container-wrap .summary .posted_in.product_brand_posted_in a {
  font-size: 14px;
  margin-top: 8px;
}

.general-container-wrap .summary .posted_in.product_brand_posted_in a {
  font-weight: 400;
}

.general-container-wrap .prdct_img_wrppr .rtwpvg-slider-wrapper {
  width: 100%;
}

.general-container-wrap .prdct_img_wrppr .rtwpvg-slider-wrapper .rtwpvg-slider {
  padding-top: 0;
}

.general-container-wrap .prdct_img_wrppr .rtwpvg-slider-wrapper .rtwpvg-slider .rtwpvg-single-image-container img {
  width: 100%;
}

.general-container-wrap .product .entry-header .entry-title {
  display: none;
}

.general-container-wrap .woocommerce .summary .price {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1c1540;
}

.general-container-wrap .summary .woocommerce-product-details__short-description {
  margin-bottom: 12px;
}

.general-container-wrap .summary .wc-deposits-wrapper .wc-deposits-option {
  font-size: 14px;
}

.general-container-wrap .summary .wc-points-rewards-product-message {
  display: block;
}

.general-container-wrap .summary .wc-deposits-wrapper.wc-deposits-optional .wc-deposits-payment-plans:before {
  top: -1px;
}

.general-container-wrap .summary .wc-deposits-wrapper.wc-deposits-optional .wc-deposits-payment-plans:after {
  top: 0;
}

.general-container-wrap .summary .quantity {
  width: 80px;
  margin-right: 10px;
}

.general-container-wrap .summary .quantity input {
  height: 54px;
  width: 100%;
}

.general-container-wrap .woocommerce .summary .stock {
  color: #ffb040;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.general-container-wrap .woocommerce .product .summary .variations select {
  height: 44px;
  font-size: 14px;
  background-image: url(images/sort-down-blue.svg);
  background-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-right: 0;
  line-height: 1;
}

.general-container-wrap .summary .product_meta {
  display: none;
}

.general-container-wrap .woocommerce .summary .cart .reset_variations {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 1.5px 1.5px 0 #1c1540;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-top: 12px;
  line-height: 1;
}

.general-container-wrap .woocommerce .summary .cart .reset_variations:hover {
  background: #1c1540;
  color: #fff;
}

.single-product #comments,
.single-product .navigation.post-navigation {
  display: none;
}

.general-container-wrap .summary .compare.cmn-btn {
  padding: 0;
  background: transparent;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  min-width: auto;
  font-weight: 600;
  color: #1c1540;
  margin-right: 5px;
  font-family: "Varela Round", sans-serif;
  margin-bottom: 6px;
}

.general-container-wrap .summary .compare.cmn-btn::before {
  content: "\f012";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: inherit;
  font-size: 14px;
  margin-right: 8px;
}

.general-container-wrap .summary .yith-wcwl-add-to-wishlist {
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0;
  margin-right: 5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.general-container-wrap .summary .compare.cmn-btn:hover {
  color: #ffb040;
}

.general-container-wrap .summary .rd-share-friend-btn {
  background: transparent;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.general-container-wrap .summary .rd-share-friend-btn:hover {
  color: #1c1540;
}

.general-container-wrap .summary .rd-share-friend-btn i {
  margin-right: 8px;
}

.general-container-wrap .woocommerce .product .product .summary .cart {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #cfc8d8;
}

.general-container-wrap .woocommerce .product .wc-tabs-wrapper h2,
.general-container-wrap .rd-product-tabs-cont .rd-tab h2 {
  font-size: 24px;
}

.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid #cfc8d8;
  padding: 0;
  overflow: visible;
}

.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs li::before,
.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs::before,
.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs::before .general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs li {
  padding: 0;
}

.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs li {
  border: 0;
  padding: 0;
}

.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs li::after {
  left: 0;
  right: 0;
  border: 0;
  width: 100%;
  bottom: -2px;
  height: 4px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50px;
}

.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs a {
  padding: 8px 15px;
}

.general-container-wrap .woocommerce .product .woocommerce-tabs ul.tabs li.active::after {
  background: #1c1540;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #1c1540 !important;
}

.general-container-wrap .rd-product-tabs-cont dl dt {
  padding-bottom: 8px;
}

.general-container-wrap .rd-product-tabs-cont .rd-tab {
  padding-top: 15px;
  padding-bottom: 20px;
}

.woocommerce .product .single_pr_related_products .nto-slider .nto-btm .price {
  color: #0057e5;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.general-container-wrap .rd-product-tabs-cont .product-content__detail-table {
  width: 100%;
}

.general-container-wrap .rd-product-tabs-cont .product-content__detail-table th,
.general-container-wrap .rd-product-tabs-cont .product-content__detail-table td {
  padding: 10px 15px;
}

.general-container-wrap .rd-product-tabs-cont .product-content__detail-table th {
  padding-left: 0;
}

.general-container-wrap .rd-product-tabs-cont .product-content__detail-table td {
  padding-right: 0;
}

.general-container-wrap .rd-product-tabs-cont .product-content__detail-table th h3 {
  font-size: 24px;
}

.general-container-wrap .new-to-order-section.single_pr_related_products .slick-arrow.slick-prev {
  left: 10px;
}

.general-container-wrap .new-to-order-section.single_pr_related_products .slick-arrow.slick-next {
  right: 10px;
}

.general-container-wrap .rd-product-tabs-cont .rd-tab-btn {
  font-weight: 500;
  padding: 12px 0 12px 0;
  border-top: 1px solid #cfc8d8;
  width: 100%;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.general-container-wrap .rd-product-tabs-cont .rd-tab-btn.rd-tab-selected,
.general-container-wrap .rd-product-tabs-cont .rd-tab-btn:hover {
  color: #1c1540;
}

.general-container-wrap .rd-product-tabs-cont .rd-tab ul li {
  position: relative;
  padding-left: 15px;
}

.general-container-wrap .rd-product-tabs-cont .rd-tab ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #1c1540;
}

.general-container-wrap .rd-product-tabs-cont .rd-tab ul li:not(:last-child) {
  margin-bottom: 10px;
}

.woocommerce-wishlist .general-container-wrap .yith_wcwl_wishlist_footer .yith-wcwl-share {
  float: none;
}

/* CSS Modification 28.11.24 */
/* CSS Modification 29.11.24 */
.slick-arrow::before {
  background-color: transparent !important;
  font-size: 0;
}

.main-head .search-wrp .search-bar,
.wishlist_table .wishlist-items-wrapper .yith-wcwl-add-to-wishlist {
  display: none;
}

.woocommerce .wishlist_table a.add_to_cart.button.alt:not(.yith-wcwl-themed-button-style),
.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-add-to-cart a.add_to_cart.cmn-btn {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540 !important;
  border-radius: 10px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540;
  min-height: 44px;
  text-decoration: none !important;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-remove {
  vertical-align: top;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-remove a.remove {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540;
  border-radius: 100%;
  color: #1c1540 !important;
}

.woocommerce .wishlist_table a.add_to_cart.button.alt:not(.yith-wcwl-themed-button-style):hover,
.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-remove a.remove:hover {
  background: #1c1540;
  color: #fff !important;
}

.general-container-wrap .woocommerce .review-order .rd-loading-icon {
  max-width: 20px;
  margin-left: 0;
}

.general-container-wrap .checkout .select2-container .select2-selection--single {
  height: 59px !important;
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 10px;
  color: #1c1540;
  border: 1px solid #1c1540;
  padding: 0 14px;
  outline: none !important;
  padding-right: 40px;
}

.general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 59px;
}

.general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #1c1540;
}

.general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 57px;
  width: 30px;
  border: 0;
}

.general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url(images/sort-down-blue.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-left: -10px;
  border: 0;
}

.general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::before,
.general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
}

.general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::before {
  left: 0;
  pointer-events: none;
  user-select: none;
  border: 1px solid #1c1540;
  border-radius: 50%;
}

.general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::after {
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #1c1540;
  background-color: #1c1540;
  opacity: 0;
  transition: opacity 0.3s;
}

.general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::after {
  top: 10px;
}

.general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]:checked+label::after {
  opacity: 1;
}

.general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method {
  position: relative;
  padding-left: 32px;
}

.general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order ul.wc_payment_methods,
.general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order {
  background: #fff;
  border: 2px solid #1c1540 !important;
  margin-bottom: 15px !important;
  border-radius: 20px;
}

.general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order {
  margin-bottom: 0 !important;
}

.general-container-wrap .checkout .woocommerce-checkout-review-order .woocommerce-checkout-payment {
  background: transparent !important;
  margin-top: 15px;
}

.woocommerce-page .general-container-wrap form.checkout .form-row-first,
.woocommerce-page .general-container-wrap form.checkout .form-row-last {
  width: 49%;
}

.general-container-wrap form.checkout .col2-set .porto-checkbox {
  padding: 0 3px;
}

.general-container-wrap form.checkout .col2-set .porto-checkbox label {
  padding-left: 16px !important;
}

/* CSS Modification 29.11.24 */

/* SM 06_12_24 */

.new-to-order-section .nto-slider .nto-item-inr .nto-btm {
  justify-content: space-between;
  flex-direction: row;
}

.new-to-order-section .nto-slider .nto-item-inr .nto-btm p {
  width: calc(100% - 95px);
  padding-right: 10px;
}

.new-to-order-section .nto-slider .nto-item-inr .nto-btm .nto-btns {
  width: 95px;
}

.cmnty-slide-inr .cmnty-img {
  width: 100%;
  display: inline-block;
  position: relative;
  padding: 152% 0 0;
}

.cmnty-slide-inr .cmnty-img img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmnty-slide-inr .cmnty-img .play-icon {
  width: 52px;
  height: 52px;
}

.cmnty-slide-inr .cmnty-over-content img {
  width: 35px !important;
  height: auto !important;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* for banner */
.hero-inr {
  margin: 0 auto;
  text-align: center;
}

.hero-item-inr {
  align-items: center;
}

.woocommerce .products ul {
  margin-bottom: 0 !important;
}

.products-inr .woocommerce .nto-item-inr .nto-img a {
  width: 100%;
  display: inline-block;
  padding-top: 91%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.products-inr .woocommerce .nto-item-inr .nto-img a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* filter */
.filters-form-wrp {
  padding-top: 0;
}

.bapf_head.bapf_colaps_togl h3.bapf_hascolarr {
  color: #1c1540;
  margin: 0 10px 0 0;
  font-weight: 600;
  font-size: 20px;
}

.bapf_body {
  padding-top: 17px;
}

.bapf_body li label {
  color: #48445e;
  cursor: pointer;
  font-family: "Varela Round", sans-serif;
  font-size: 16px;
}

.filtrs-wrp-inr .bapf_body li {
  margin-bottom: 5px !important;
}

.filtrs-wrp-inr .bapf_body li:last-child {
  margin-bottom: 0px !important;
}

.bapf_ckbox_sqchck input[type="checkbox"] {
  appearance: initial;
  position: relative;
  width: 13px;
  height: 13px;
  background: #fff;
  border: 1px solid #1c1540;
  border-radius: 2px;
}

.bapf_ckbox_sqchck input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1c1540;
}

.bapf_ckbox_sqchck input[type="checkbox"]:checked:after {
  content: "";
  width: 4px;
  height: 8px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 4px;
  transform: rotate(45deg);
}

.woocommerce-ordering {
  display: flex;
  align-items: center;
}

.woocommerce-ordering label {
  margin-right: 20px;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  color: #0c0c0c;
  flex-shrink: 0;
}

.woocommerce-ordering select {
  width: 157px;
  height: 45px;
  background-image: url(./images/select-arrow.png);
  background-size: auto;
  background-position: calc(100% - 14px) center;
  background-repeat: no-repeat;
  color: #48445e;
  padding: 10px 25px;
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 1em;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
}

.bapf_sfilter .bapf_ochild {
  font-size: 10px;
  top: 5px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin-right: 0;
  border: none;
  margin-left: 0;
}

.hero-content {
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
  border: 1px solid #1c1540;
  border-radius: 4px;
  min-width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: all ease-in-out 0.3s;
}

.woocommerce nav.woocommerce-pagination {
  text-align: left;
  margin-top: 60px;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  color: #fff;
  background: #0c0c0c;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers:hover {
  color: #fff;
  background: #0c0c0c;
}

.hero-inr p {
  width: 100%;
  max-width: 100%;
}

/* SM 06_12_24 end */

/* SM 11_12_24 */

.hero-sec .container {
  max-width: 100%;
}

.hero-sec .hero-inr {
  max-width: 100%;
}

.hero-content {
  text-align: left;
}

.hero-item-inr {
  align-items: flex-end;
}

.hero-inr {
  padding: 0 50px;
}

.woocommerce .products ul {
  margin-bottom: 0;
}

.float-tags .tag.low {
  background: #027400;
}

.float-tags .tag.stock {
  background: #0057e5;
}

.float-tags .tag.waitlist {
  background: #0057e5;
  color: #fff;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-remove a.remove {
  box-shadow: none;
  font-size: 0px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  border: 1px solid #1c1540;
  justify-content: center;
  background-image: url(./images/close.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  transition: unset;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-add-to-cart a.add_to_cart.cmn-btn {
  box-shadow: none;
  line-height: 1.4;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-remove a.remove:hover {
  background-color: #1c1540;
  background-image: url(./images/close-icon-hv.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}

td.product-thumbnail {
  width: 112px;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-add-to-cart a.add_to_cart.cmn-btn:hover {
  background-color: #1c1540;
  color: #fff;
}

/* dtl-page */

body.single-product .general-container-wrap {
  padding-top: 90px;
}

body.single-product .rtwpvg-single-image-container {
  border-radius: 10px;
  overflow: hidden;
}

body.single-product .rtwpvg-thumbnail-image {
  border-radius: 10px;
  overflow: hidden;
}

body.single-product .rtwpvg-images .rtwpvg-wrapper .rtwpvg-container {
  gap: 0;
}

body.single-product .woocommerce div.product .product_title {
  font-size: 30px;
  font-weight: 600;
  color: #1c1540;
  line-height: 1.3;
  margin-bottom: 15px;
}

body.single-product .general-container-wrap .summary .atrributeList .botomTitle {
  margin-bottom: 16px;
  color: #48445e;
  text-transform: capitalize;
  font-weight: 400;
}

body.single-product .general-container-wrap .woocommerce .summary .price {
  font-family: "Archivo", sans-serif;
  color: #1c1540;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}

body.single-product .prdct-dtls-shrt-txt {
  margin-bottom: 7px;
}

.product-price {
  text-align: center;
}

.prdcct_col_rght .yith-wcwl-wishlistexistsbrowse span {
  font-size: 0px;
}

.prdcct_col_rght .yith-wcwl-wishlistexistsbrowse span i {
  font-size: 16px !important;
}

.prdcct_col_rght .yith-wcwl-wishlistexistsbrowse a {
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.prdcct_col_rght .yith-wcwl-wishlistexistsbrowse {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  padding: 5px;
}

body.single-product .yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon {
  margin-right: 0;
  color: #ffb040;
}

.prdcct_col_rght .yith-wcwl-wishlistexistsbrowse:hover {
  opacity: 0.7;
}

body.single-product .woo-variation-swatches .variable-items-wrapper {
  max-width: 456px;
}

body.single-product .variable-items-wrapper:not(.color-variable-items-wrapper) .variable-item:not(.radio-variable-item) {
  background-color: transparent !important;
  color: #000 !important;
  text-align: center !important;
  display: block;
  padding: 3px 15px;
  border: 1px solid #1c1540;
  border-radius: 10px !important;
  transition: all 0.3s ease-in-out;
  height: auto;
  outline: none;
  box-shadow: none !important;
  width: 48% !important;
}

body.single-product .variable-items-wrapper:not(.color-variable-items-wrapper) .variable-item:not(.radio-variable-item):hover {
  background-color: #1c1540 !important;
  color: #fff !important;
}

.prime-section-tab-content-in h2 {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Varela Round", sans-serif;
}

.prime-section-tab-content-in table.product-content__detail-table {
  width: 100%;
  color: #fff !important;
}

.prime-section-tab-content-in table.product-content__detail-table tr th {
  padding-bottom: 33px;
}

.prime-section-tab-content-in table.product-content__detail-table tr:last-child th {
  padding-bottom: 0;
}

.prime-section-tab-content-in table.product-content__detail-table tr th h3 {
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
}

.prime-section-tab-content-in table.product-content__detail-table tr td {
  text-align: right !important;
}

body.single-product .prime-section-content {
  margin-bottom: 0;
}

body.single-product .variable-items-wrapper:not(.color-variable-items-wrapper) .variable-item.button-variable-item.selected {
  background-color: #1c1540 !important;
  color: #fff !important;
}

.prdcct_col_rght .add_to_wishlist.single_add_to_wishlist {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  padding: 5px;
}

.prdcct_col_rght .add_to_wishlist.single_add_to_wishlist span {
  font-size: 0 !important;
}

.prdcct_col_rght .add_to_wishlist.single_add_to_wishlist i {
  margin-right: 0;
}

.prime-section-tab-content-in ul li {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.prime-section-tab-content-in ul li:last-child {
  margin-bottom: 0;
}

.prime-section-tab-sec dl {
  margin-bottom: 33px;
}

.prime-section-tab-sec dl dt {
  font-weight: 700;
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
  padding-bottom: 10px;
}

.prime-section-tab-sec dl dd {
  color: #fff;
}

body.single-product .summary.entry-summary .yith-wcwl-add-button,
body.single-product .summary.entry-summary .yith-wcwl-wishlistexistsbrowse,
body.single-product .prdcct_col_lft .prdct_img_wrppr>.labels {
  display: none;
}

.product_details__artists p,
.product_details__artists h6,
.product_details__artists h5,
.product_details__artists h4,
.product_details__artists h3,
.product_details__artists h2,
.product_details__artists {
  color: #fff;
}

/* SM 11_12_24 end */

/* 12.12.24 Css Start */
.contact-form .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.contact-form .wpforms-field-container .wpforms-field {
  width: 50%;
  padding: 15px !important;
}

.contact-form .wpforms-field-container .wpforms-field.wpforms-field-textarea {
  width: 100%;
}

.contact-form .wpforms-field-container .wpforms-field-label {
  text-transform: uppercase;
  color: #1c1540;
  margin-bottom: 13px;
  display: block;
  font-weight: 400;
}

.contact-form .wpforms-field-container input[type="text"],
.contact-form .wpforms-field-container input[type="tel"],
.contact-form .wpforms-field-container input[type="password"],
.contact-form .wpforms-field-container input[type="email"],
.contact-form .wpforms-field-container textarea {
  background-color: #f5f5f5 !important;
  width: 100% !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  border-radius: 10px !important;
  color: #1c1540 !important;
  border: 1px solid #1c1540 !important;
  height: 59px !important;
  padding: 0 20px !important;
  outline: none !important;
  max-width: 100% !important;
  resize: none !important;
}

.contact-form .wpforms-field-container input[type="text"]:focus,
.contact-form .wpforms-field-container input[type="tel"]:focus,
.contact-form .wpforms-field-container input[type="password"]:focus,
.contact-form .wpforms-field-container input[type="email"]:focus,
.contact-form .wpforms-field-container textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

.contact-form .wpforms-field-container textarea {
  padding: 25px 20px !important;
  height: 168px !important;
  outline: none !important;
}

.contact-form .wpforms-submit-container button[type="submit"],
.contact-form .wpforms-submit-container input[type="submit"] {
  background: #ffb040 !important;
  color: #000 !important;
  text-transform: uppercase;
  height: 45px;
  box-shadow: 3px 3px 0 #1c1540;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 10px 33px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-form .wpforms-submit-container button[type="submit"]:hover,
.contact-form .wpforms-submit-container input[type="submit"]:hover {
  background: #1c1540 !important;
  color: #ffb040 !important;
  box-shadow: 0 0 0 #ffb040;
}

/*  12.12.24 Faq Css start */
.inr-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.inr-banner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(101.23deg,
      #000000 14.28%,
      rgba(0, 0, 0, 0) 80.85%);
  opacity: 0.8;
  z-index: -1;
}

.faq-inr {
  max-width: 945px;
  margin: 0 auto;
}

.faq-accordian-head {
  position: relative;
  padding: 17px 40px 17px 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  cursor: pointer;
}

.faq-accordian-item.active .faq-accordian-head {
  background-color: #000;
}

.faq-accordian-head h3 {
  margin: 0;
  line-height: 1.4;
}

.faq-accordian-item.active .faq-accordian-head h3 {
  color: #fff;
}

.faq-accordian-head i {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.faq-accordian-item:not(:last-child) {
  margin-bottom: 15px;
}

.faq-accordian-head i img {
  width: 15px;
}

.acc-minus {
  display: none;
}

.faq-accordian-head.active i .acc-minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq-accordian-head.active i .acc-plus {
  display: none;
}

.faq-accordian-body {
  padding: 33px 40px 30px 18px;
  display: none;
}

.faq-accordian-body p {
  font-size: 16px;
  color: #48445e;
  line-height: 1.6;
}

.faq-accordian-body p .red-txt {
  color: #c95100;
}

.faq-accordian-body strong {
  font-size: 16px;
  font-weight: 700;
  color: #48445e;
  margin-bottom: 10px;
  display: block;
}

/*  */
.payment-wpr h2 {
  font-size: 40px;
  line-height: 1.2;
}

.payment-wpr h3 {
  font-size: 35px;
  line-height: 1.2;
}

.payment-wpr h4 {
  font-size: 30px;
  line-height: 1.2;
}

.payment-wpr h5 {
  font-size: 25px;
  line-height: 1.2;
}

.payment-wpr h6 {
  font-size: 20px;
  line-height: 1.2;
}

.payment-wpr p a:hover {
  color: #ffb040;
}

.payment-wpr ol {
  list-style: decimal;
}

.payment-wpr li {
  font-size: 18px;
  margin-bottom: 15px;
  list-style-position: inside;
}

.payment-wpr ul {
  list-style: disc;
}

figure img {
  width: 100%;
}

/* .page-template-default.page-template-payment-plan */
body.page-template-faq,
.page-template-default:not(.woocommerce-page) {
  padding-top: 0 !important;
}

.custom_btn_captcha_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px !important;
  align-items: center;
}

.custom_btn_captcha_wrapper .wpforms-recaptcha-container {
  max-width: 300px !important;
}

.error-wrap {
  max-width: 500px;
  margin: 0 auto;
  padding-top: 50px;
}

.wpforms-confirmation-container-full {
  text-align: center;
  width: fit-content !important;
  border-radius: 5px !important;
  border: 0 !important;
  background: #ffb040 !important;
}

.payment-wpr a,
.payment-wpr p a {
  text-decoration: underline !important;
}

.payment-sec {
  padding: 60px 0;
}

/*  12.12.24 Faq Css End */

/* SM 13_12_24 */

.woocommerce-account .general-container-wrap {
  padding: 50px 0 0;
}

.woocommerce-account .entry-header {
  padding-bottom: 0 !important;
}

/* Legacy My Account nav block removed — canonical styling lives at the #44-46 block near line 11800. */

.woocommerce-account .woocommerce-MyAccount-content {
  border: 3px solid #000;
  padding: 30px !important;
  border-radius: 10px;
}

.woocommerce-account .woocommerce-MyAccount-content p>a {
  text-decoration: underline !important;
  font-weight: 500;
  color: #1c1540;
  transition: all 0.3s ease-in-out;
}

.woocommerce-account .woocommerce-MyAccount-content p>a:hover {
  color: #ffb040;
}

.woocommerce-account .woocommerce-info {
  border-top-color: #000;
}

.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
  padding: 10px 10px;
  position: relative;
  background-color: #ffb03f;
  color: #000;
}

.woocommerce-account .woocommerce-info p,
.woocommerce-account .woocommerce-message p {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
}

.woocommerce-account .woocommerce-info::before {
  color: #000;
  font-size: 20px;
  left: 20px;
}

.order-again .button.cmn-btn,
.woocommerce-MyAccount-content .button.cmn-btn,
.woocommerce-account .order-again .button.cmn-btn,
.woocommerce-account .woocommerce-Button.button.btn-v-dark.btn-go-shop.cmn-btn {
  background-color: #1c1540;
  color: #fff;
  font-size: 16px;
  padding: 14px 19px;
  min-width: auto;
  border-radius: 10px;
  text-decoration: none !important;
}

.order-again .button.cmn-btn:hover,
.woocommerce-MyAccount-content .button.cmn-btn:hover,
.woocommerce-account .order-again .button.cmn-btn:hover,
.woocommerce-account .woocommerce-Button.button.btn-v-dark.btn-go-shop.cmn-btn:hover {
  background-color: #ffb040;
  color: #1c1540;
}

.woocommerce-account .woocommerce-MyAccount-content table {
  width: 100%;
  border-spacing: 0;
  border: 1px solid #000;
  font-size: 14px;
}

.woocommerce-account .woocommerce-MyAccount-content table thead tr th {
  padding: 10px;
  background-color: #000;
  color: #fff;
  text-transform: capitalize;
}

.woocommerce-account .woocommerce-MyAccount-content table tbody tr td {
  padding: 10px;
}

.woocommerce-account .u-column2.col-2.woocommerce-Address,
.woocommerce-account .u-column1.col-1.woocommerce-Address {
  background-color: #ffb040;
  border-top: 2px solid #000;
  padding: 20px;
  color: #000;
  border-radius: 0;
}

.woocommerce-account .addresses .title h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0;
}

.woocommerce-Address-title.title .edit {
  background-color: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  min-width: 60px;
  min-height: 28px;
  text-decoration: none;
  padding: 4px 10px !important;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
  flex-shrink: 0;
}

.woocommerce-Address-title.title .edit:hover {
  background-color: #fff;
  color: #000;
}

.u-column2.col-2.woocommerce-Address address,
.u-column1.col-1.woocommerce-Address address {
  margin-bottom: 0;
  font-size: 15px;
}

.woocommerce-Address-title.title {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-account .woocommerce-MyAccount-content label {
  text-transform: uppercase;
  color: #1c1540;
  margin-bottom: 13px;
  display: block;
  font-weight: 400;
  line-height: 1.4;
}

.woocommerce-account .woocommerce form .form-row {
  margin: 0 0 15px;
}

.select2-container--default .select2-selection--single {
  border-radius: 10px !important;
  color: #1c1540;
  border: 1px solid #1c1540;
  height: 59px !important;
  padding: 0 20px;
  outline: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #1c1540;
  line-height: 28px;
  font-size: 16px;
  padding: 15px 40px 14px 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000000 transparent transparent transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 14px;
  right: 15px;
}

.woocommerce-account .woocommerce-MyAccount-content table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-image {
  width: 100px;
  margin-bottom: 15px;
}

.woocommerce-account .woocommerce-table__product-name.product-name a {
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 18px;
}

.woocommerce-account .woocommerce-MyAccount-content table .woocommerce-button.button.wc-action-btn.px-4.view.cmn-btn {
  display: inline-flex;
  min-width: auto;
  padding: 10px 7px;
  background-color: #ffb040;
  background: #ffb040;
  color: #1c1540;
  border: 1px solid #1c1540;
}

.woocommerce-account .woocommerce-MyAccount-content table .woocommerce-button.button.wc-action-btn.px-4.view.cmn-btn:hover {
  background: #1c1540;
  color: #ffb040;
}

.woocommerce-account .woocommerce-MyAccount-content table .woocommerce-table__product-name.product-name img {
  max-width: 100px !important;
  margin-bottom: 15px;
}

.woocommerce-account .wc-item-meta {
  margin-top: 12px;
}

.woocommerce-account .wc-item-meta li {
  margin-bottom: 6px;
}

.woocommerce-account .wc-item-meta li:last-child {
  margin-bottom: 0;
}

.woocommerce-table__product-total.product-total .woocommerce-Price-amount.amount small,
.woocommerce-table__product-total.product-total .woocommerce-Price-amount.amount bdi,
.woocommerce-table__product-total.product-total .woocommerce-Price-amount.amount span {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
}

.woocommerce-table__product-total.product-total .woocommerce-Price-amount.amount span {
  margin-bottom: 5px;
}

.woocommerce-account .woocommerce-table__product-name.product-name {
  width: 70%;
}

.woocommerce-account .woocommerce-table__product-total.product-total {
  vertical-align: top;
  padding-top: 32px;
}

.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 h2,
.woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 h2 {
  font-weight: 600;
  font-size: 20px;
}

.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 address,
.woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 address {
  background-color: #ffb040;
  border: none;
  border-top: 2px solid #000;
  padding: 20px;
  color: #000;
  border-radius: 0;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-size: 28px;
}

.woocommerce-account .woocommerce-PaymentMethod.woocommerce-PaymentMethod--actions.payment-method-actions .button.delete.cmn-btn {
  background: #ffb040;
  color: #1c1540;
  border: 1px solid #1c1540;
}

.woocommerce-account .woocommerce-PaymentMethod.woocommerce-PaymentMethod--actions.payment-method-actions .button.delete.cmn-btn:hover {
  background-color: #1c1540;
  color: #fff;
}

.woocommerce-account .woocommerce-message {
  color: #000;
  border-color: #000;
  padding-left: 40px;
}

.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message::before {
  color: #000000;
  left: 15px;
  top: 9px;
}

label.mailchimp_woocommerce_is_subscribed {
  font-weight: 600;
}

.woocommerce-account .woocommerce-form__input.woocommerce-form__input-radio.input-radio {
  margin-right: 10px;
  margin-top: 4px;
}

.woocommerce-orders-table__cell.woocommerce-orders-table__cell-notification-actions .cmn-btn {
  font-size: 10px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 7px 8px;
  border-radius: 7px;
}

.woocommerce-orders-table__cell.woocommerce-orders-table__cell-notification-actions .cmn-btn:last-child {
  margin: 0px 0 0 3px;
}

.main-head {
  z-index: 9999;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: -7px;
  min-width: 20px;
  min-height: 20px;
  background: #ffb040;
  color: #1c1540 !important;
  padding: 3px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.woocommerce-info,
.woocommerce-message {
  border-top-color: #000;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #1c1540;
}

/* card popup */
.custom-cart-modal.left .modal-dialog,
.custom-cart-modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 370px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.custom-cart-modal.left .modal-content,
.custom-cart-modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
  border-radius: 0px;
  border: none;
}

.custom-cart-modal.left .modal-body,
.custom-cart-modal.right .modal-body {
  padding: 15px 15px 80px;
}

.custom-cart-modal.right.fade .modal-dialog {
  right: 0px;
  align-items: end;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

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

.custom-cart-modal {
  z-index: 99999;
}

.custom-cart-modal .modal-body {
  height: 100vh;
  overflow: auto;
  padding: 80px 15px 100px !important;
}

.custom-cart-modal .modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  background: #fff;
}

.custom-cart-modal .modal-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  background: #fff;
}

.custom-cart-modal .my-custom-cart-item .row {
  --bs-gutter-x: 10px;
}

.custom-cart-modal .my-custom-cart-item .cart-item-prod-title a {
  font-size: 14px;
}

.cart-item-prod-quant,
.cart-item-prod-date,
.cart-item-prod-pre-order {
  font-size: 13px;
  font-weight: 400;
}

.custom-cart-modal .cart-item-prod-date,
.custom-cart-modal .cart-item-prod-pre-order {
  margin: 0 0 1px 0;
}

#modal-cart-content hr {
  border-top: 1px solid #1c1540;
}

.custom-cart-modal .modal-footer {
  justify-content: center;
}

.custom-cart-modal .modal-footer .cmn-btn {
  padding: 9px 17px;
  min-width: auto;
}

.cmn-btn.custm-modal-viewcart-btn {
  background-color: #1c1540;
  color: #fff;
  box-shadow: 3px 3px 0 #ffb040;
}

.cmn-btn.custm-modal-viewcart-btn:hover {
  background-color: #ffb040;
  box-shadow: none;
  color: #1c1540;
}

.custom-cart-modal .btn-close {
  background-color: #ffb040;
  opacity: 1;
  box-shadow: 3px 3px 0 #1c1540;
  transition: all 0.3s ease-in-out;
}

.custom-cart-modal .btn-close:hover {
  background-color: #1c1540;
  box-shadow: none;
  background-image: url(./images/hv-close.svg);
}

.custom-cart-modal .modal_cart_subtotal {
  background-color: #1c1540;
  padding: 10px 0px;
  text-align: center;
  color: #fff;
}

/* Order received */

.woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-total.product-total {
  width: 300px;
}

.woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name img {
  max-width: 100px !important;
  margin-right: 15px;
}

.woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name ul {
  max-width: 110px;
  margin: 0 15px;
}

.woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name a {
  max-width: 210px;
  margin-right: 15px;
}

.woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name bdi {
  font-size: 16px;
}

#rd_cancel_modal_wrap {
  display: none;
}

.woocommerce-PaymentMethod.woocommerce-PaymentMethod--actions.payment-method-actions {
  text-align: right;
}

/* card popup end */

/* SM 13_12_24 end */
/* SM 16_12_24 */

footer {
  width: 100%;
  display: block;
}

/* My Account layout (float rule moved into canonical block near line 11800) */

.woocommerce-account .woocommerce-MyAccount-content p {
  margin: 0 0 15px 0;
  color: #1c1540;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Varela Round", sans-serif;
  font-weight: normal;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  margin: 0 0 15px 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content p:last-child {
  margin: 0 0 0px 0 !important;
}

.woocommerce-MyAccount-content .account-sub-title.d-none.d-md-block.mb-3.mt-2 {
  margin-top: 0 !important;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions {
  padding: 10px !important;
}

.woocommerce-account .woocommerce-PaymentMethod.woocommerce-PaymentMethod--actions.payment-method-actions .button.delete.cmn-btn,
.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a {
  padding: 6px 11px !important;
  font-size: 10px;
  width: auto;
  background-color: #ffb040 !important;
  color: #1c1540 !important;
  box-shadow: 3px 3px 0 #1c1540;
}

.woocommerce-account .woocommerce-PaymentMethod.woocommerce-PaymentMethod--actions.payment-method-actions .button.delete.cmn-btn {
  width: 72px;
  margin-left: auto;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a+a {
  margin-left: 0;
  margin-top: 10px;
}

.woocommerce-MyAccount-content .button.cmn-btn:hover,
.woocommerce-account .woocommerce-PaymentMethod.woocommerce-PaymentMethod--actions.payment-method-actions .button.delete.cmn-btn:hover,
.woocommerce-account .woocommerce-Button.button.btn-v-dark.btn-go-shop.cmn-btn:hover,
.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a:hover {
  background-color: #1c1540 !important;
  color: #ffb040 !important;
  box-shadow: 0 0 0 #1c1540 !important;
}

.woocommerce-MyAccount-content .button.cmn-btn,
.woocommerce-account .woocommerce-Button.button.btn-v-dark.btn-go-shop.cmn-btn {
  background-color: #ffb040 !important;
  color: #1c1540 !important;
  box-shadow: 3px 3px 0 #1c1540;
}

.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
  background-color: #1c1540;
  color: #ffffff;
  margin: 0 0 10px;
}

.woocommerce-account .woocommerce-info {
  border-top-color: #ffb040;
}

.woocommerce-order-details .featured-boxes {
  padding-top: 0 !important;
}

.woocommerce-account .woocommerce-MyAccount-content table {
  border: none !important;
  box-shadow: 0 0 0 1px #000;
  border-radius: 5px;
  overflow: hidden;
}

.woocommerce-table--order-details tfoot tr td,
.woocommerce-table--order-details tfoot tr th {
  padding: 7px 7px;
}

.woocommerce-table--order-details tfoot tr th h4 {
  font-size: 14px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title h3 {
  margin-top: 0 !important;
  font-size: 17px;
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 0 !important;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields input {
  color: #1c1540;
  border: 1px solid #1c1540;
  font-size: 16px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields label {
  text-transform: uppercase;
  color: #1c1540;
  margin-bottom: 13px;
  display: block;
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-selection {
  border: 1px solid #1c1540;
  padding-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-selection__arrow {
  position: absolute;
  top: 14px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-PaymentBox p {
  font-size: 16px;
}

ul.woocommerce_error.woocommerce-error.wc-stripe-error {
  border-top-color: #ffb040;
  background-color: #1c1540;
}

.woocommerce-error li {
  padding: 10px;
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-PaymentBox label {
  font-size: 16px;
}

#add_payment_method .wc-stripe-elements-field {
  border: 1px solid #1c1540;
  height: 59px;
  padding: 18px 20px;
  border-radius: 10px;
}

#add_payment_method .ElementsApp input {
  color: #1c1540 !important;
  font-size: 16px;
}

#add_payment_method .ElementsApp input::placeholder {
  color: #1c1540 !important;
  opacity: 1 !important;
}

.woocommerce form span em {
  font-size: 12px;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset {
  margin-bottom: 30px;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset:last-child {
  margin-bottom: 0px;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset p {
  margin-bottom: 20px !important;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-add-to-cart a.add_to_cart.cmn-btn {
  display: inline-block !important;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-add-to-cart a.add_to_cart.cmn-btn:hover {
  text-decoration: none !important;
}

.woocommerce-wishlist table.wishlist_table {
  font-size: 14px;
  box-shadow: 0 0 0 1px #000;
  border-radius: 5px;
  overflow: hidden;
}

.woocommerce-wishlist table.wishlist_table th.product-stock-status {
  width: 110px;
}

.woocommerce-wishlist table.wishlist_table thead tr th {
  background-color: #000;
  color: #fff;
  border: none;
}

.woocommerce-wishlist table.wishlist_table tbody tr {
  border-bottom: 1px solid #000;
}

.woocommerce-wishlist table.wishlist_table tbody tr:last-child {
  border-bottom: none;
}

.general-container-wrap .wishlist_table .wishlist-items-wrapper .product-remove {
  vertical-align: middle;
  padding: 10px 10px;
  text-align: center;
}

/* dashboard new thm end */

/* SM 16_12_24 end */
/* SM 17_12_24 */

.single-product .prdcct_col_rght .summary.entry-summary {
  width: 100%;
  margin-top: 0 !important;
}

.single-product .prdcct_col_rght .product_title.entry-title {
  font-size: 30px;
  font-weight: 600;
  color: #1c1540;
  line-height: 1.3;
  margin-bottom: 15px;
  font-family: "Archivo", sans-serif;
  text-transform: capitalize;
}

.single-product .prdcct_col_rght .atrributeList .botomTitle {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 16px;
  color: #48445e;
  text-transform: capitalize;
  font-weight: 400;
}

.single-product .prdcct_col_rght .summary .atrributeList .botomTitle .catName {
  padding-right: 5px;
}

.single-product .prdcct_col_rght .posted_in.product_brand_posted_in {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 600;
}

.single-product .prdcct_col_rght .posted_in.product_brand_posted_in a {
  font-size: 14px;
  font-weight: 400;
}

.single-product .prdcct_col_rght .posted_in.product_brand_posted_in a img {
  margin: 10px 6px 0 0 !important;
  height: 100% !important;
  max-height: 60px !important;
  max-width: 60px !important;
}

.single-product .prdcct_col_rght .summary .price {
  font-family: "Archivo", sans-serif;
  color: #1c1540;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.single-product .prdcct_col_rght .atrributeList+.product_title.entry-title {
  display: none;
}

.single-product .prdcct_col_lft .rtwpvg-wrapper .rtwpvg-slider-wrapper .rtwpvg-trigger {
  top: 40px;
}

.single-product div.product form.cart .variations {
  margin-bottom: 1em;
  border: 0;
  width: 100%;
}

body.single-product .variable-items-wrapper:not(.color-variable-items-wrapper) .variable-item:not(.radio-variable-item) {
  padding: 8px 15px;
}

body.single-product .variable-items-wrapper:not(.color-variable-items-wrapper) .variable-item.selected:not(.no-stock) {
  background-color: #1c1540 !important;
  color: #fff !important;
}

.reset_variations {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 1.5px 1.5px 0 #1c1540;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-top: 12px;
  line-height: 1;
}

.reset_variations:hover {
  background: #1c1540;
  color: #fff;
}

.prdcct_col_rght .woocommerce-variation-availability p {
  color: #ffb040;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.prdcct_col_lft .woocommerce-breadcrumb {
  margin-bottom: 0;
}

.single-product .woocommerce-variation-price {
  margin-bottom: 0;
}

.price .woocommerce-Price-amount.amount {
  display: inline-block;
  margin-top: 10px;
}

.single-product .prdcct_col_rght .quantity input {
  height: 54px;
  width: 100%;
  text-align: center;
}

.single-product .prdcct_col_rght .single_add_to_cart_button.cmn-btn,
.single-product .prdcct_col_rght .single_add_to_cart_button {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540;
  border-radius: 10px;
  padding: 19px 38px 17px;
  min-width: 180px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-height: 54px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.single-product .prdcct_col_rght .single_add_to_cart_button.cmn-btn:hover {
  box-shadow: none;
  color: #ffb040;
  background-color: #1c1540;
}

.single-product .prdcct_col_rght .rd-share-friend-btn,
.single-product .prdcct_col_rght .compare.cmn-btn {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  border: none;
  min-width: auto;
  border-radius: 0;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.single-product .prdcct_col_rght .rd-share-friend-btn {
  margin-left: 8px;
}

.single-product .prdcct_col_rght .rd-share-friend-btn:hover,
.single-product .prdcct_col_rght .compare.cmn-btn:hover {
  text-decoration: none !important;
}

.single-product .woocommerce-tabs ul {
  border-bottom: 1px solid #cfc8d8;
  padding: 0;
  overflow: visible;
}

.single-product .woocommerce-tabs ul li a {
  padding: 8px 15px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
}

.single-product .woocommerce-tabs ul li.active a {
  background-color: #fff;
}

.single-product .woocommerce-Tabs-panel h2 {
  font-size: 24px !important;
  margin-bottom: 40px;
  color: #fff;
}

.rtwpvg-product.product {
  padding-top: 55px;
}

/* cart */

.woocommerce-cart .shop_table.shop_table_responsive {
  width: 100%;
  border: none !important;
  box-shadow: 0 0 0 1px #000;
  border-radius: 5px;
  overflow: hidden;
}

.woocommerce-cart .shop_table.shop_table_responsive thead tr th {
  padding: 10px;
  background-color: #000;
  color: #fff;
  text-transform: capitalize;
}

.woocommerce-cart .shop_table.shop_table_responsive tbody tr td {
  padding: 10px;
  font-size: 12px;
}

.general-container-wrap .woocommerce .cart_item .product-remove a.remove {
  box-shadow: none;
  font-size: 0px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  border: 1px solid #1c1540;
  justify-content: center;
  background-image: url(./images/close.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  transition: unset;
}

.general-container-wrap .woocommerce .cart_item .product-remove a.remove:hover {
  background-color: #1c1540;
  background-image: url(./images/close-icon-hv.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}

.woocommerce-cart .shop_table.shop_table_responsive tbody tr td.product-name {
  text-align: left;
}

.woocommerce-cart .shop_table.shop_table_responsive tbody tr td.product-name a {
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}

.woocommerce-cart .shop_table.shop_table_responsive tbody tr {
  border-bottom: 1px solid #000;
}

.woocommerce-cart .shop_table.shop_table_responsive tbody tr:last-child {
  border-bottom: none;
}

.woocommerce-cart .shop_table.shop_table_responsive .product-thumbnail {
  max-width: 100px;
}

.variation-PaymentPlan {
  font-weight: 600;
}

.variation-PaymentPlan.rd-deposits-hide {
  padding-top: 0;
}

.woocommerce-cart .general-container-wrap .woocommerce .cart_item .variation-PaymentPlan select {
  margin-top: 0;
}

.woocommerce-cart .shop_table.shop_table_responsive thead tr th.product-price,
.woocommerce-cart .shop_table.shop_table_responsive thead tr th.product-quantity,
.woocommerce-cart .shop_table.shop_table_responsive thead tr th.product-subtotal {
  width: 150px;
  text-align: center;
}

.woocommerce-cart .entry-content .cart_totals {
  width: 100%;
  margin-top: 4px;
}

.woocommerce-cart .entry-content .cart_totals h2 {
  margin-bottom: 25px;
  text-transform: capitalize;
}

.woocommerce-cart .entry-content .cart_totals table {
  margin-bottom: 25px;
}

.woocommerce-cart .entry-content .cart_totals table tbody tr td,
.woocommerce-cart .entry-content .cart_totals table tbody tr th {
  padding: 10px;
}

span.cart_count_header {
  display: inline-block;
  min-width: 24px;
  height: 24px;
}

.general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn:hover {
  text-decoration: none !important;
}

/* cart end */
/* checkout */
.woocommerce-checkout .shop_table {
  border: none !important;
  box-shadow: 0 0 0 1px #000;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

.woocommerce-checkout .shop_table tbody tr {
  border-bottom: 1px solid #000 !important;
}

.woocommerce-checkout h3#order_review_heading {
  margin-bottom: 0;
}

.woocommerce-checkout .shop_table tbody tr {
  border-bottom: 1px solid #000;
}

.woocommerce-checkout .shop_table tfoot tr {
  border-top: 1px solid #000 !important;
}

.woocommerce-checkout .shop_table tfoot tr:first-child {
  border-top: none !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order ul {
  margin: 0;
}

.woocommerce-checkout .shop_table tfoot tr th {
  padding: 1rem 0.5em;
}

.woocommerce-checkout .shop_table .tbody tr:last-child {
  border-bottom: none;
}

.variation-PaymentPlan .rd-depostit-label {
  margin-bottom: 5px;
  display: inline-block;
}

.woocommerce-checkout #customer_details.col2-set {
  width: 50%;
  padding: 0 20px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
  width: 50% !important;
  padding: 0 20px !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3 {
  font-size: 30px;
  margin-top: 0;
}

.general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 18px 6px;
  line-height: normal;
}

.general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 10px;
  top: 24px;
}

#ship-to-different-address {
  margin: 0 0;
}

.woocommerce-checkout .form-row.form-row-wide label span {
  display: inline-block;
  padding-left: 16px !important;
}

.woocommerce-checkout h3#order_review_heading {
  width: 50%;
  padding-left: 20px;
  font-size: 30px;
  margin-top: 0;
}

.woocommerce-checkout .general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order,
.woocommerce-checkout .general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order ul.wc_payment_methods {
  padding: 10px;
  border: 1px solid #1c1540 !important;
  background-color: transparent;
}

.woocommerce-checkout .general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order {
  padding: 20px 15px;
}

.woocommerce-checkout .general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::before {
  border: none;
  box-shadow: 0 0 0 1px #000;
  background-color: transparent !important;
  top: 0;
}

.woocommerce-checkout .general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::before {
  background-color: transparent !important;
}

.woocommerce-checkout .general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::after {
  top: 6px;
  left: 8px;
}

.woocommerce-checkout .wc_payment_method .payment_box fieldset {
  padding: 0;
  margin-top: 10px;
  background-color: transparent;
}

.woocommerce-checkout .wc_payment_method .payment_box input[type="checkbox"] {
  width: auto !important;
}

.woocommerce-checkout .general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order p {
  font-size: 16px;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 15px;
}

.woocommerce-cart .general-container-wrap,
.woocommerce-checkout .general-container-wrap {
  padding-top: 80px;
}

/* checkout end */

.custom-cart-modal .align-items-center {
  align-items: flex-start !important;
}

.woocommerce-cart .woocommerce-checkout ul li,
.woocommerce-cart .woocommerce-error li {
  padding: 10px;
  color: #1c1540;
}

.woocommerce-checkout .woocommerce-error li,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
  padding: 15px 20px;
}

.woocommerce-checkout ul.woocommerce-error li {
  margin: 0;
  color: #1c1540;
}

.woocommerce-checkout .checkout.woocommerce-checkout {
  position: relative;
  z-index: 1;
  background-color: #ececec;
  padding: 50px 0px;
}

.woocommerce-checkout .checkout.woocommerce-checkout::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #dbdbdb;
  z-index: -1;
}

.wc_payment_method .payment_box {
  padding: 10px;
}

.wc_payment_method .payment_box p {
  font-size: 14px;
}

.woocommerce-info {
  justify-content: flex-start;
  display: inline-block;
  width: 100%;
}

/* card */

.nto-img a {
  position: relative;
  padding-top: 90.9%;
}

.nto-img a>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item.my-custom-cart-item .row {
  position: relative;
}

.cart-item.my-custom-cart-item .remove-item {
  border: none;
  background: #ffb03f;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -8px;
  line-height: 1.1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
}

.cart-item.my-custom-cart-item .remove-item:hover {
  background-color: #1c1540;
  color: #ffb040;
}

.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
  text-transform: capitalize;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
}

.woocommerce .woocommerce-result-count,
.sidebar-overlay.active,
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  width: auto;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  margin-left: auto;
}

/* for footer gap */
#shadow-host-companion {
  display: none;
}

/* card end */

/* feedback 15_12_24 */

.bnr-bg::after {
  background: none;
}

/* feedback 15_12_24 end */
.bapf_sfilter {
  margin-bottom: 0;
}

img.footer-left-img {
  position: absolute;
  bottom: 26px;
  z-index: 1;
  max-width: 273px;
  left: 0;
  pointer-events: none;
  user-select: none;
}

img.footer-right-img {
  position: absolute;
  bottom: -1px;
  z-index: 1;
  right: 0;
  max-width: 443px;
  pointer-events: none;
  user-select: none;
}

.sidebar-overlay.active,
.woocommerce .woocommerce-result-count {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.float-tags .tag.low {
  background: #ffb040;
}

.woocommerce-tabs {
  margin: 0;
}

.products-wrp-right {
  margin-top: 0;
}

/* SM 17_12_24 end */

/* support starts 18.12.2024  */
footer {
  background: transparent !important;
}

.navbar-nav>li>a {
  font-size: 18px;
}

.navbar-right-part ul li a {
  width: 42px;
  height: 42px;
}

.sub-menu>li>a {
  font-size: 20px;
}

.sub-menu {
  width: 230px;
}

.product-sec-custom-gap {
  padding-top: 75px;
}

.my-custom-cart-item a,
.my-custom-cart-item a img {
  height: auto;
}

.tab-table {
  margin-top: 0 !important;
}

.float-tags .tag.instock {
  background: #027400;
}

.pt-img img {
  transition: all 0.3s ease-in-out;
}

.pt-card:hover img {
  transform: scale(1.09);
}

.pt-cd-content h3 {
  transition: all 0.3s ease-in-out;
}

.pt-card:hover .pt-cd-content h3 {
  color: #ffb040;
}

.pt-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(67.79deg, #000000 25.4%, rgba(0, 0, 0, 0) 93.6%);
  opacity: 0.4;
  z-index: 1;
}

.pt-cd-content {
  max-width: 320px;
}

.general-container-wrap .woocommerce .cart_item .product-remove a.remove {
  border: 0;
  font-size: 17px;
  transition: all 0.3s ease-in-out;
}

.prime-section-tab-content-in table.product-content__detail-table tr td {
  text-align: left !important;
  width: 50%;
}

.tag.onsale {
  top: auto;
  right: auto;
  /* background: #ff000073; */
  background: #ed3972;
}

.tag.onsale::before {
  display: none;
}

.my-custom-cart-item .modal-cart-deposit-select {
  height: 44px;
  font-size: 12px;
  background-image: url(images/sort-down-blue.svg);
  background-size: 12px;
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 0;
}

.prime-section h2,
.prime-section h3,
.prime-section h4,
.prime-section h5,
.prime-section ul li {
  color: #fff;
}

.woocommerce-cart-form__cart-item.cart_item .rd-loading-icon {
  width: 15px;
}

/* support ends 18.12.2024  */
body.class-stock-status-pre-order square-placement,
body.class-stock-status-pre-order .affirm-as-low-as {
  display: none;
}

.custom-social-share-div-wrpr {
  margin-top: 15px;
}

.custom-social-share-div-wrpr span.heateor_sss_svg {
  padding: 7px !important;
}

/* SM 19_12_24 */

.float-tags .onsale {
  position: relative !important;
}

.pt-card {
  display: flex;
  flex-direction: column;
  align-items: self-start;
}

.navbar-right-part {
  position: relative;
}

.dp-dwn-menu {
  position: absolute;
  top: 70px;
  background-color: #fff;
  box-shadow: 0 0 10px #0000004d;
  width: 150px;
  right: 0;
  border-top: 2px solid #ffb03f;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.dp-dwn-menu.active {
  opacity: 1;
  top: 57px;
  visibility: visible;
}

.dp-dwn-menu ul {
  flex-wrap: wrap;
  padding: 5px;
}

.dp-dwn-menu ul li {
  width: 100%;
  margin: 0 !important;
}

.dp-dwn-menu ul li a {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 5px;
  border-radius: 0px;
}

.dp-dwn-menu ul li a span {
  max-width: 15px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
}

.hvr-img {
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  transform: translate(0%, -50%);
}

.dp-dwn-menu ul li a span img {
  filter: unset !important;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.dp-dwn-menu ul li a:hover {
  background-color: #ffb040;
  color: #fff;
}

.dp-dwn-menu ul li a:hover span img {
  filter: unset !important;
  opacity: 0;
}

.dp-dwn-menu ul li a:hover span img.hvr-img {
  opacity: 1 !important;
}

/* SM 19_12_24 end */

/* 23-12-2024 New Shop Page "Quick View" Popup Design Start */
a.acoqvw_quickview_button.button.acoqvw_quickview_modal {
    color: #000;
}
.nto-img #sp-wqv-view-button.sp-wqv-view-button.button {
  position: absolute;
  top: 50%;
  padding: 10px 0;
  width: 120px;
  box-shadow: none;
  border-radius: 10px;
  min-width: auto;
  font-size: 14px;
  left: 50%;
  border: 1px solid #ffffff;
  transform: translate(-50%, -50%);
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  text-decoration: none !important;
}

.nto-item-inr:hover .nto-img #sp-wqv-view-button.sp-wqv-view-button.button {
  opacity: 1;
  visibility: visible !important;
}

.mfp-wrap .wqv-product-images {
  /* margin-top: auto;
  margin-bottom: auto; */
  padding-left: 30px;
}

.wqv-product-images-slider {
  width: 100%;
  height: 100%;
}

.mfp-wrap #wqv-quick-view-content.sp-wqv-content {
  background-color: #fff;
  position: relative;
  padding-bottom: 50px;
  padding-top: 30px;
  border-radius: 10px;
}

.custm-modal-prod-details-btn-wrp {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

.mfp-wrap #wqv-quick-view-content .wqv-product-info {
  padding: 0 20px 10px;
}

.mfp-wrap #wqv-quick-view-content .wqv-product-info .price,
#wqv-quick-view-content .wqv-product-info .price .amount {
  color: #0057e5;
}

.mfp-wrap #wqv-quick-view-content .wqv-product-info .product_title {
  color: #1c1540;
}

.woo-variation-swatches .variable-items-wrapper .variable-item {
  font-size: 12px !important;
  box-shadow: none !important;
  border: 1px solid #1c1540 !important;
  border-radius: 4px !important;
}

.woo-variation-swatches .variable-items-wrapper:not(.color-variable-items-wrapper) .variable-item.selected {
  background-color: #1c1540 !important;
  color: #fff !important;
}

.mfp-wrap .wqv-product-info .single_add_to_cart_button {
  margin-right: 5px !important;
  margin-bottom: 4px !important;
  font-size: 17px !important;
  min-width: 250px;
  text-transform: uppercase !important;
  line-height: 40px !important;
}

.mfp-wrap .wqv-product-info .quantity .qty {
  height: 42px;
  text-align: center;
  padding-left: 18px;
  border-radius: 4px;
  border: 1px solid #919191;
  background: #fff;
}

.mfp-wrap #wqv-quick-view-content .wqv-product-info .product_meta>span {
  color: #717171;
  text-transform: uppercase;
  vertical-align: middle;
  font-size: 14px;
}

.mfp-wrap #wqv-quick-view-content .wqv-product-info .product_meta>span :where(span, a) {
  text-transform: initial;
  color: #1c1540;
}

.mfp-wrap #wqv-quick-view-content .wqv-product-info .product_meta>span.posted_in :where(span, a) {
  vertical-align: middle;
}

.mfp-wrap #wqv-quick-view-content .wqv-product-info .product_meta>span .attachment-product_brand {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  object-fit: contain;
  border-radius: 100%;
  background-color: #717171;
}

.mfp-wrap .wc-deposits-wrapper .wc-deposits-option li {
  padding: 10px 20px;
  line-height: normal;
  text-align: center;
  background: #1c154014;
  border: 1px solid #f1f1f1;
  box-shadow: none;
}

.woo-variation-swatches .mfp-wrap .variable-items-wrapper {
  display: inline-flex;
}

.mfp-wrap table.variations {
  width: 100% !important;
}

.custom-redirect-product-details-btn {
  text-decoration: underline !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.mfp-wrap .wc-deposits-wrapper .wc-deposits-option li input {
  margin-right: 7px !important;
}

.mfp-wrap .wc-deposits-wrapper {
  margin-top: 10px;
}

.mfp-wrap .wc-deposits-wrapper .wc-deposits-payment-plans li.wc-deposits-payment-plan input {
  margin: 4px 0 0 0;
  display: inline-block;
  vertical-align: top;
}

.wc-deposits-wrapper .wc-deposits-payment-plans li.wc-deposits-payment-plan .wc-deposits-payment-plan-description {
  font-size: 12px;
}

.mfp-wrap .wqv-product-info form.cart {
  margin-bottom: 25px;
  overflow: visible;
}

.mfp-wrap .product_meta {
  display: none;
}

.mfp-wrap .wqv-product-images img {
  min-height: 400px;
  max-height: inherit !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px !important;
}

.wqv-product-images-slider>span {
  width: 100%;
  display: block;
  height: 100%;
}

.wqv-product-images-slider>span a {
  width: 100%;
  height: 100%;
}

.mfp-wrap [data-wvstooltip]:before {
  font-size: 11px;
}

.mfp-wrap .reset_variations {
  padding: 5px 10px;
  font-size: 12px;
  min-height: 30px;
}

[type="radio"] {
  accent-color: #1c1540;
}

/* Custom deposit radio buttons — hide native input, draw black-filled circle */
.wc-deposits-wrapper .wc-deposits-option li,
.wc-deposits-wrapper .wc-deposits-payment-plans li.wc-deposits-payment-plan {
  position: relative;
}

.wc-deposits-wrapper .wc-deposits-option li label,
.wc-deposits-wrapper .wc-deposits-payment-plans li.wc-deposits-payment-plan label {
  position: relative;
  padding-left: 30px !important;
  cursor: pointer;
}

.wc-deposits-wrapper .wc-deposits-option li input[type="radio"],
.wc-deposits-wrapper .wc-deposits-payment-plans li input[type="radio"] {
  position: absolute !important;
  z-index: -1 !important;
  opacity: 0 !important;
}

.wc-deposits-wrapper .wc-deposits-option li label::before,
.wc-deposits-wrapper .wc-deposits-payment-plans li.wc-deposits-payment-plan label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}

.wc-deposits-wrapper .wc-deposits-option li label::after,
.wc-deposits-wrapper .wc-deposits-payment-plans li.wc-deposits-payment-plan label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wc-deposits-wrapper .wc-deposits-option li input[type="radio"]:checked + label::after,
.wc-deposits-wrapper .wc-deposits-payment-plans li input[type="radio"]:checked + label::after {
  opacity: 1;
}

.wc-deposits-wrapper .wc-deposits-option li input[type="radio"]:checked + label,
.wc-deposits-wrapper .wc-deposits-payment-plans li input[type="radio"]:checked + label {
  font-weight: 700;
}

.mfp-wqv #wqv-quick-view-content .mfp-close {
  border-radius: 100%;
  background: #ffb040;
  margin: -15px;
  border: 1px solid #ffffff66 !important;
}

.mfp-wqv #wqv-quick-view-content .mfp-close:hover {
  background: #1c1540;
  font-size: 0;
  border-radius: 100%;
}

.mfp-wqv #wqv-quick-view-content .mfp-close:before {
  color: #fff;
}

.mfp-wqv .mfp-content {
  padding: 18px;
}

/* 23-12-2024 New Shop Page "Quick View" Popup Design End */

/* 03-01-2025 New Shop Page "Quick View" Popup Design Start */
.acoqvw_quickview_container .acoqvw_quickview {
  max-height: 100% !important;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_close {
  top: 30px !important;
  z-index: 1 !important;
  right: -10px !important;
  background-color: #ffb040 !important;
}

#acoqvw_quickview_modal_window .acoqvw_quickview {
  max-width: 1000px !important;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_imageSec ul.acoqvw_sliders li>a {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}

.acoqvw_quickview_container {
  z-index: 9999 !important;
  padding: 10px 14px;
}

#acoqvw_quickview_modal_window .acoqvw_inner {
  background-color: #fff;
  position: relative;
  padding: 30px 30px 50px 30px;
  border-radius: 10px;
  max-height: 80vh;
  height: 570px;
  overflow: hidden;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_imageSec {
  height: 100%;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_imageSec .labels {
  display: none;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec {
  padding: 0 0 0 40px !important;
  position: static !important;
  overflow: auto;
  overflow-x: hidden;
  height: 100%;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .acoqvw_contentInner {
  overflow: initial !important;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .product_title {
  font-size: 24px;
  line-height: 32px;
  text-align: left;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c1540;
  margin-left: 0;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .product_title::after {
  height: 3px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 30px;
  content: "";
  margin-top: 8px;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .price span.woocommerce-Price-amount {
  color: #0057e5;
  font-size: 20px;
  line-height: 22px;
  text-align: left;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}

[data-wvstooltip]:before {
  font-size: 11px;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .woocommerce-product-details__short-description {
  display: none;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .reset_variations {
  margin-left: 0;
}

.acoqvw_quickview_container .wc-deposits-wrapper .wc-deposits-option li {
  padding: 10px 20px;
  line-height: normal;
  text-align: center;
  background: #1c154014;
  border: 1px solid #f1f1f1;
  box-shadow: none;
}

.acoqvw_quickview_container .wc-deposits-wrapper .wc-deposits-option {
  margin-top: 10px;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .cart .quantity {
  float: left;
  display: inline;
  width: auto;
  min-width: inherit !important;
  border: none;
  padding: 0;
  margin: 0;
  line-height: 35px;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .cart .quantity .qty {
  height: 42px;
  text-align: center;
  padding-left: 18px;
  border-radius: 4px;
  border: 1px solid #919191;
  background: #fff;
}

.acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .cart .single_add_to_cart_button {
  color: #1c1540;
  background: #ffb040;
  padding: 3px 16px;
  line-height: 35px;
  border: none;
  border-radius: 3px;
  margin-left: 10px;
  min-width: 240px;
}

.acoqvw_inner .acoqvw_contentSec .cart .acoqvw_view_details_button {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  max-width: fit-content;
  right: 0;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  text-decoration: underline !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 0;
}

.nto-item-inr .acoqvw_trigger_outer,
.sp-slide-inr .acoqvw_trigger_outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  width: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
}

.nto-item-inr .acoqvw_trigger_outer .acoqvw_quickview_modal,
.sp-slide-inr .acoqvw_trigger_outer .acoqvw_quickview_modal {
  padding: 7px 9px;
  border-radius: 10px;
  min-width: auto;
  font-size: 12px;
  border: 1px solid #ffffff;
  background: #ffffff;
  text-decoration: none !important;
  box-shadow: 0 5px 10px 0 #00000024;
}

.nto-item-inr .acoqvw_quickview_button span.acoqvw_trigger_icon,
.sp-slide-inr .acoqvw_quickview_button span.acoqvw_trigger_icon {
  width: 19px;
  flex-shrink: 0;
}

.nto-item-inr .acoqvw_trigger_outer .acoqvw_quickview_modal:hover,
.sp-slide-inr .acoqvw_trigger_outer .acoqvw_quickview_modal:hover {
  background: #1c1540;
  color: #ffb040;
}

.nto-item-inr .acoqvw_trigger_outer .acoqvw_quickview_modal:hover svg,
.sp-slide-inr .acoqvw_trigger_outer .acoqvw_quickview_modal:hover svg {
  fill: #fff !important;
}

.nto-item-inr:hover .acoqvw_trigger_outer,
.sp-slide-inr:hover .acoqvw_trigger_outer {
  opacity: 1;
  visibility: visible;
}

.woo-variation-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item {
  min-height: 30px !important;
  height: auto !important;
  padding: 4px 2px !important;
}

/* 03-01-2025 New Shop Page "Quick View" Popup Design End */

/* 24.12.24 start */

body.single-product .custom-stock-status {
  margin-bottom: 15px;
  margin-top: 10px;
}

/* body.single-product .yith-wcwl-add-to-wishlist {
  margin-top: 20px;
} */

.woocommerce-tabs #tab-description iframe {
  width: 100% !important;
  max-width: 560px;
}

.new-to-order-section.single_pr_related_products {
  overflow: visible;
}

.new-to-order-section.single_pr_related_products .nto-slider .slick-list {
  overflow: hidden;
}

.single-product div.product {
  padding-top: 40px;
}

/* 24.12.24 end */

/* SMv 10.01.25 Start */
.woocommerce-checkout .checkout.woocommerce-checkout::before {
  background-color: #f5f5f5;
}

.woocommerce-checkout .checkout.woocommerce-checkout {
  background-color: #fafafa;
}

/* SMv 10.01.25 End */

/* support starts 15.01.2025  */
.payment-img-outer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -10px 20px;
}

.payment-img-innr {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cmn-logo-size {
  max-width: 100px;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}

.cmn-logo-size img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row.col-1,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row.col-2,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row.col-1,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row.col-2 {
  width: 50%;
  padding: 0 10px;
}

/* ---- Checkout form alignment fixes ---- */
/* Uniform bottom spacing so row pairs line up horizontally across the grid. */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}

/* Normalize input + select2 heights so col-1 and col-2 pairs align visually. */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .input-text,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .input-text,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .select2-container .select2-selection--single {
  height: 48px;
  line-height: 1.4;
  box-sizing: border-box;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
  /* line-height pinned to 46px assumed a 46px-tall select2 container; the
     new theme renders these inputs at ~54px so the text was floating high.
     Centering via flex (on the rendered span's parent) plus a normal
     line-height keeps the label vertically aligned regardless of the
     container's actual height. padding-left removed — the parent input's
     own padding already handles the left inset, and stacking another
     12px on top pushed the label too far right. */
  line-height: normal;
  display: flex;
  align-items: center;
  height: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__arrow,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
  height: 46px;
}

/* Push input wrapper to fill available row space so label+field stack cleanly. */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
/* ---- End checkout form alignment fixes ---- */

#ship-to-different-address {
  margin-bottom: 20px;
}

/* support ends 15.01.2025  */

/*support pp.c 16/1/2025*/
body.home .hero-slider .slick-slide img.dsktop-bnrimg {
  display: block;
}

body.home .hero-slider .slick-slide img.mb-bnrimg {
  display: none;
}

.woocommerce-checkout .woocommerce-form-login-toggle .showlogin {
  color: #1c1540;
}

.woocommerce-checkout .woocommerce-form-login-toggle .showlogin:hover {
  color: #ffb040;
}

.woocommerce-checkout .checkout.woocommerce-checkout {
  background-color: transparent;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
  background-color: #f5f5f5;
}

.woocommerce-checkout form.woocommerce-form-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #f5f5f5;
  padding: 20px;
  margin-bottom: 30px;
}

.woocommerce-checkout form.woocommerce-form-login p {
  width: 100%;
}

.woocommerce-checkout form.woocommerce-form-login .form-row-first,
.woocommerce-checkout form.woocommerce-form-login .form-row-last {
  width: 47%;
}

.woocommerce-checkout form.woocommerce-form-login input[type="text"],
.woocommerce-checkout form.woocommerce-form-login input[type="email"],
.woocommerce-checkout form.woocommerce-form-login input[type="password"],
.woocommerce-checkout form.woocommerce-form-login input[type="tel"] {
  border: 1px solid #dadada;
  background-color: #fff;
  border-radius: 5px;
  padding: 12px 11px 12px 11px !important;
  height: 51px;
  font-size: 15px;
}

.woocommerce-checkout form.checkout input[type="text"],
.woocommerce-checkout form.checkout input[type="tel"],
.woocommerce-checkout form.checkout input[type="password"],
.woocommerce-checkout form.checkout input[type="email"],
.woocommerce-checkout form.checkout select {
  border: 1px solid #dadada;
  background-color: #fff;
  border-radius: 5px;
  padding: 12px 11px 12px 11px !important;
  height: 51px;
  font-size: 15px;
}

.woocommerce-checkout form.checkout textarea {
  border: 1px solid #dadada;
  border-radius: 5px;
  background-color: #fff;
}

.woocommerce-checkout form.checkout input[type="text"]:focus,
.woocommerce-checkout form.checkout input[type="tel"]:focus,
.woocommerce-checkout form.checkout input[type="password"]:focus,
.woocommerce-checkout form.checkout input[type="email"]:focus,
.woocommerce-checkout form.checkout select:focus {
  box-shadow: 0 0 0 1px #2e2d2d;
  border-color: #2e2d2d;
}

.woocommerce-checkout form.checkout .select2-container .select2-selection--single {
  border: 1px solid #dadada;
  background-color: #fff;
  border-radius: 5px !important;
  padding: 0px 30px 0 11px !important;
  height: 51px !important;
  border-radius: 13px 11px;
}

.general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 14px 0 !important;
}

.woocommerce-checkout form.checkout .col2-set .form-row {
  position: relative;
}

.woocommerce-checkout form.checkout .col2-set .form-row.col-1 label,
.woocommerce-checkout form.checkout .col2-set .form-row.col-2 label {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 8px;
  left: 22px;
  font-size: 10px;
  text-transform: capitalize;
  font-weight: 500;
}

.woocommerce-checkout form .shop_table {
  border: none;
  box-shadow: none;
}

.woocommerce-checkout form .shop_table .pr_img_cls {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  border: 1px solid #dadada;
  background-color: #f5f5f5;
  position: relative;
}

.woocommerce-checkout form .shop_table .pr_img_cls img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.woocommerce-checkout form .shop_table {
  border: none;
}

.woocommerce-checkout form .shop_table td {
  vertical-align: top;
}

.woocommerce-checkout form .shop_table .pr_qty {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #303030;
  color: #fff;
  top: -5px;
  right: -5px;
  font-size: 11px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-checkout form .form-row.woocommerce-invalid input.input-text {
  border: 1px solid #dadada;
}

.woocommerce-checkout .checkout.woocommerce-checkout::before {
  box-shadow: -2px 0 0 0 #dadada;
}

.woocommerce-checkout .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0;
  right: 2px;
  height: 100%;
}

.woocommerce-checkout .checkout .mailchimp-newsletter .input-checkbox,
.woocommerce-checkout #ship-to-different-address .input-checkbox,
.woocommerce-checkout form.login .woocommerce-form__input-checkbox {
  display: none;
}

.woocommerce-checkout #ship-to-different-address,
.woocommerce-checkout #cc-newsletter-optin,
.woocommerce-checkout .mailchimp-newsletter {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 8px;
}
.woocommerce-checkout #cc-newsletter-optin .woocommerce-form__label-for-checkbox,
.woocommerce-checkout .mailchimp-newsletter .woocommerce-form__label-for-checkbox,
.woocommerce-checkout .mailchimp-newsletter label,
.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox {
  padding-left: 0 !important;
  margin: 0 !important;
  cursor: pointer;
}
.woocommerce-checkout #cc-newsletter-optin .woocommerce-form__label-for-checkbox span,
.woocommerce-checkout .mailchimp-newsletter .woocommerce-form__label-for-checkbox span,
.woocommerce-checkout .mailchimp-newsletter label span,
.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span {
  cursor: pointer;
}

.woocommerce-checkout .checkout .mailchimp-newsletter label.woocommerce-form__label-for-checkbox span,
.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span,
.woocommerce-checkout form.login .woocommerce-form__label-for-checkbox span {
  position: relative;
  padding-left: 30px !important;
  font-weight: 700;
}

/* Vertically center the checkbox and "Remember me" text on login forms. */
label.woocommerce-form-login__rememberme {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
}
label.woocommerce-form-login__rememberme .woocommerce-form__input-checkbox {
  margin: 0 !important;
}
label.woocommerce-form-login__rememberme span {
  line-height: 1;
}

.woocommerce-checkout .checkout .mailchimp-newsletter label.woocommerce-form__label-for-checkbox span::before,
.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span::before,
.woocommerce-checkout form.login .woocommerce-form__label-for-checkbox span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}

.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span::before {
  box-sizing: border-box;
}

.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span::after {
  border-radius: 0;
  right: 0;
}

.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox {
  padding-left: 0 !important;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox span::after,
.woocommerce-checkout .checkout .mailchimp-newsletter label.woocommerce-form__label-for-checkbox span::after,
.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span::after,
.woocommerce-checkout form.login .woocommerce-form__label-for-checkbox span::after {
  content: "";
  position: absolute;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  transform: rotate(45deg);
  display: none;
}

/* :checked → checkmark visibility.
   Ship-to-different-address has the input OUTSIDE the label (input + label
   siblings, span nested in label), so we target `~ label span`.
   Mailchimp for WooCommerce wraps both input and span INSIDE one label, so
   the input and span are direct siblings — `~ span` is the correct combinator
   there. Mixing the two patterns produced a broken selector that never
   matched MC4WC's markup, leaving the box visually inert on click. */
.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox:checked~span::after,
.woocommerce-checkout .checkout .mailchimp-newsletter .input-checkbox:checked~span:after,
.woocommerce-checkout .checkout .mailchimp-newsletter input[type="checkbox"]:checked~span:after,
.woocommerce-checkout #ship-to-different-address .input-checkbox:checked~label span:after,
.woocommerce-checkout form.login .woocommerce-form__label-for-checkbox input[type="checkbox"]:checked~span:after {
  display: block;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox:checked~span::before,
.woocommerce-checkout .checkout .mailchimp-newsletter .input-checkbox:checked~span::before,
.woocommerce-checkout .checkout .mailchimp-newsletter input[type="checkbox"]:checked~span::before,
.woocommerce-checkout #ship-to-different-address .input-checkbox:checked~label span::before,
.woocommerce-checkout form.login .woocommerce-form__label-for-checkbox input[type="checkbox"]:checked~span::before {
  background-color: #161616;
}

.woocommerce-checkout .chkout-subtotaltble {
  width: 100%;
  font-size: 15px;
}

.woocommerce-checkout .shop_table tfoot tr th,
.woocommerce-checkout .chkout-subtotaltble td {
  padding: 6px 0;
  color: #1c1540;
  font-weight: 400;
}

.woocommerce-checkout .chkout-subtotaltble tfoot td {
  text-align: right;
  padding-left: 5px;
}

.woocommerce-checkout .chkout-subtotaltble th h4,
.woocommerce-checkout .chkout-subtotaltble td h4 {
  margin: 0 !important;
  font-size: 15px;
  color: #1c1540;
  font-weight: 400;
}

.woocommerce-checkout .chkout-subtotaltble .order-total th,
.woocommerce-checkout .chkout-subtotaltble .order-total h4,
.woocommerce-checkout .chkout-subtotaltble .order-total .amount {
  font-size: 19px;
  color: #1c1540;
  font-weight: 700;
}

.woocommerce-checkout form #order_review .woocommerce-checkout-review-order-table tfoot {
  border-top: 1px solid #e5e5e5 !important;
}

/* Even row heights across the entire checkout summary (cart items + totals
   block). Two-line rows like "Shipment 1 — Estimated shipping…" set the
   floor; single-line rows expand to match so spacing reads uniform.
   Table rows ignore min-height directly, so we set `height` on the cells —
   in a table context this behaves like a minimum and lets taller content
   still expand the row. */
.woocommerce-checkout-review-order-table tbody tr > td,
.woocommerce-checkout-review-order-table tbody tr > th,
.woocommerce-checkout-review-order-table tfoot tr > td,
.woocommerce-checkout-review-order-table tfoot tr > th {
  vertical-align: middle;
  padding-top: 10px;
  padding-bottom: 10px;
}

.woocommerce-checkout .shop_table tfoot tr {
  border-top: none !important;
}

.woocommerce-checkout .checkout .shop_table tbody tr {
  border-bottom: none !important;
}

.woocommerce-checkout .general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order,
.woocommerce-checkout .general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order ul.wc_payment_methods {
  background-color: #fff;
  border: 1px solid #dadadf !important;
}

.woocommerce-checkout .checkout .wc_payment_method .payment_box {
  background: transparent;
}

.woocommerce-checkout .general-container-wrap {
  padding-bottom: 80px;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout h3#order_review_heading {
  text-transform: capitalize;
}

.woocommerce-checkout .chkout-subtotaltble .order-total small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.woocommerce-checkout .shop_table .product-total {
  text-align: right;
}

.woocommerce-checkout .shop_table .img_content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.woocommerce-checkout .shop_table .content_part_cart_item_data {
  width: calc(100% - 64px);
  padding-left: 15px;
}

.woocommerce-checkout .cart_item .variation-PaymentPlan:last-child {
  padding-top: 0;
}

.content_part_cart_item_data {
  font-weight: 600;
}

.content_part_cart_item_data .variation {
  color: #696969;
}

.woocommerce-checkout .general-container-wrap .woocommerce .cart_item .variation-PaymentPlan select {
  background: none;
  height: auto;
  width: auto;
  margin-top: 0;
  border: none;
  padding: 0 !important;
  pointer-events: none;
  color: #696969;
  font-weight: 600;
  font-size: 15px;
}

.woocommerce-checkout .content_part_cart_item_data .variation-PaymentPlan .rd-depostit-label {
  display: none;
}

.woocommerce-checkout .general-container-wrap .woocommerce .cart_item .variation-PaymentPlan select:focus {
  border: none;
}

.woocommerce-checkout .general-container-wrap .woocommerce .cart_item .variation-PaymentPlan.rd-deposits-hide:last-child {
  display: inline-flex;
  width: auto;
  padding-top: 0;
  padding-left: 3px;
}

.woocommerce-checkout .content_part_cart_item_data .variation-PaymentPlan.rd-deposits-hide {
  display: inline-flex;
  width: auto;
  margin-right: 0;
}

.chkout-subtotaltble td {
  text-align: right;
}

/*support pp.c 16/1/2025*/

/* sg-20-jan-2025 */

.nto-img>img {
  transition: all 0.3s ease-in-out;
}

.nto-img:hover>img {
  transform: scale(1.1);
}

.bnr-bg a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.bnr-bg {
  z-index: 1;
  pointer-events: initial;
}

.hero-inr {
  text-align: left;
  display: inline-block;
}

.hero-item-inr {
  text-align: left;
}

.nto-img.nto-img-home>a {
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.woocommerce .prducts-inr-row nav.woocommerce-pagination ul {
  text-align: center;
}

.woocommerce .products-wrp-right ul.products {
  margin-top: -20px;
}

.product-sec.product-sec-custom-gap {
  padding-top: 35px;
}

.products-wrp-right>.row {
  align-items: center;
}

.stock-avblty-tag:has(.preOrder) {
  background: #5724cd;
}

footer .menu-item-69112 {
  display: none;
}

/* sg-20-jan-2025 */
/*support pp.c 23/1/2025*/
.single-pr-status .labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.single-pr-status .preOrder,
.single-pr-status .lowStock,
.single-pr-status .in-stock,
.single-pr-status .out-of-stock,
.single-pr-status .onsalee {
  font-family: "Archivo", sans-serif;
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
  line-height: 1;
  margin-right: 4px;
  margin-bottom: 3px;
}

.single-pr-status .onsalee {
  background-color: #ed3972;
}

.single-pr-status .lowStock {
  background-color: #ffb040;
}

.single-pr-status .preOrder {
  background-color: #5724cd;
}

.single-pr-status .in-stock {
  background-color: #027400;
}

.single-pr-status .out-of-stock {
  background-color: #0057e5;
}

.single-product .entry-summary .in-stock {
  font-family: "Archivo", sans-serif;
  color: #fff !important;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #027400;
}

.single-product .entry-summary .out-of-stock {
  font-family: "Archivo", sans-serif;
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  background-color: #0057e5;
}

.single-product .prime-section-content .woocommerce-Tabs-panel--description {
  color: #fff;
}

.single-product .rtwpvg-single-image-container {
  margin-top: 5px;
}

.single-product .pswp .pswp__caption__center {
  display: none;
}

.woocommerce-wishlist .wishlist-items-wrapper .product-name .yith-wcqv-button {
  display: none;
}

.woocommerce-wishlist .general-container-wrap {
  padding: 60px 0;
}

.woocommerce-wishlist .wishlist_table {
  width: 100%;
}

/*support pp.c 23/1/2025*/

/* sg27-jan-2025 */
.yith-woocompare-popup table.compare-list thead tr th:first-child {
  width: 10%;
}

.yith-woocompare-popup table.compare-list thead tr th:last-child {
  width: 90%;
}

body.yith-woocompare-popup h1 {
  background: #000;
}

.general-container-wrap .woocommerce table.cart td.actions .coupon input[type="text"].input-text,
.woocommerce-cart .shop_table.shop_table_responsive tbody tr td.product-subtotal,
.woocommerce-cart .shop_table.shop_table_responsive tbody tr td.product-price,
.woocommerce-cart .shop_table.shop_table_responsive tbody tr td.product-name a {
  font-size: 15px;
}

.woocommerce-cart .entry-header h1 {
  font-size: 68px;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 42px;
}

.woocommerce-cart .general-container-wrap {
  padding: 40px 0 50px;
}

.general-container-wrap .woocommerce button.cmn-btn,
.general-container-wrap .woocommerce button.cmn-btn[disabled],
.general-container-wrap .woocommerce button.cmn-btn {
  padding: 19px 25px 17px;
  min-width: 120px;
}

.shipping-calculator-button {
  color: #ffb040;
  text-decoration: underline !important;
  font-size: 13px;
}

.shipping-calculator-button:hover {
  color: #000;
  text-decoration: none !important;
}

.DTFC_LeftBodyWrapper,
.DTFC_LeftBodyWrapper .DTFC_LeftBodyLiner>table.DTFC_Cloned {
  display: none;
}

.dataTables_scrollBody table tbody tr th {
  width: 17% !important;
}

#yith-woocompare table.dataTable.compare-list tbody td h2 {
  font-size: 16px;
  font-weight: 400;
}

.dataTables_scrollHeadInner {
  display: none;
}

#yith-woocompare table.dataTable.compare-list tbody th {
  border-left: 1px solid #e7e7e7;
}

table.compare-list .remove a span {
  display: none;
}

table.compare-list .remove a {
  color: #ffb040;
}

table.compare-list .remove a:hover {
  color: #000;
}

#yith-woocompare table.dataTable.compare-list tbody td {
  text-align: left;
}

table.compare-list .remove {
  text-align: right;
}

table.compare-list .image-wrap {
  width: 100%;
  margin-bottom: 20px;
}

table.compare-list .product_title {
  width: 100%;
  padding-left: 0;
}

table.compare-list .add_to_cart_wrap {
  margin-top: 20px;
}

.yith-wcwl-add-to-wishlist {
  margin-top: 20px;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.yith-wcwl-wishlistexistsbrowse .feedback {
  display: block;
  margin-bottom: 10px;
}

.yith-wcwl-wishlistexistsbrowse {
  margin-bottom: 10px;
}

table.compare-list .product_info a {
  text-decoration: none !important;
  flex-wrap: wrap;
}

table.compare-list .add_to_cart_wrap .add-links-wrap .add-links a,
table.compare-list .add_to_cart_wrap > a.button,
table.compare-list .add_to_cart_wrap > a[class*="product_type_"] {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540;
  border-radius: 10px !important;
  padding: 9px 18px 9px;
  min-width: 140px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-height: 38px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

table.compare-list .add_to_cart_wrap .add-links-wrap .add-links a:hover,
table.compare-list .add_to_cart_wrap > a.button:hover,
table.compare-list .add_to_cart_wrap > a[class*="product_type_"]:hover {
  color: #fff;
  background: #1c1540;
}

#yith-woocompare-share a {
  display: flex;
  width: 33px;
  height: 42px;
}

.woocommerce.yith-woocompare-related {
  padding: 60px 0 0;
  display: none;
}

#yith-woocompare-related h3.yith-woocompare-related-title {
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  text-align: center;
  color: #1c1540;
  margin-bottom: 45px;
}

.yith-woocompare-related-wrapper ul li a {
  display: block;
  text-decoration: none !important;
}

.ralated-product .product-image {
  position: relative;
  padding-top: 95%;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.ralated-product .product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

#yith-woocompare-related ul li {
  text-align: left;
}

#yith-woocompare-related ul li h3 {
  font-size: 20px;
  color: #1c1540;
  margin-top: 0;
  margin-bottom: 10px;
}

#yith-woocompare-related ul li div.product-image {
  margin-bottom: 20px;
}

.product-image .labels {
  position: absolute;
  z-index: 2;
  right: 5px;
  bottom: 5px;
}

.product-image .labels .onsale {
  font-size: 14px;
  position: static;
  margin-bottom: 5px;
}

.product-image>.stock {
  position: absolute;
  z-index: 2;
  right: 5px;
  bottom: 5px;
  background: #5724cd;
  color: #fff;
  border-radius: 5px;
  padding: 4px 10px 2px;
  min-width: 76px;
  font-size: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  display: block;
  text-align: center;
}

.product-image .lowStock {
  background: #ffb040;
  color: #fff;
  border-radius: 5px;
  padding: 4px 10px 2px;
  min-width: 76px;
  font-size: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  display: block;
  text-align: center;
}

.ralated-product .product-price {
  text-align: left;
}

.woocommerce.add-to-cart .add-links-wrap .add-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yith-wcwl-add-button a span {
  display: none !important;
}

#yith-woocompare-related .related-products .button {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540;
  border-radius: 10px;
  padding: 5px 6px;
  min-width: 180px;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-height: 31px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

#yith-woocompare-related .related-products .button:hover {
  text-decoration: none !important;
  color: #ffffff;
  background-color: #303030;
}

#yith-woocompare-related .related-slider-nav div.related-slider-nav-prev {
  right: auto;
  left: -5%;
  background-image: initial;
}

#yith-woocompare-related .related-slider-nav div {
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  background-color: #ffb040;
  border-radius: 5px;
  border: 1px solid #1c1540;
  outline: 0;
  width: 44px;
  height: 44px;
  padding: 5px;
  z-index: 2;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

#yith-woocompare-related .related-slider-nav div:hover {
  background-color: #0b0b0c;
  border-color: #fff;
}

#yith-woocompare-related .related-slider-nav div.related-slider-nav-next {
  right: -5%;
  background-image: initial;
  background-position: center;
}

#yith-woocompare-related .related-slider-nav div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  width: 14px;
  height: 20px;
}

#yith-woocompare-related .related-slider-nav div.related-slider-nav-next::before {
  background-image: url(./images/slider-arrow.svg);
}

#yith-woocompare-related .related-slider-nav div.related-slider-nav-prev::before {
  background-image: url(./images/slider-arrow.svg);
  transform: translate(-50%, -50%) rotate(180deg);
}

#yith-woocompare-related .related-slider-nav div:hover::before {
  filter: brightness(0) invert(1);
}

.yith-wcwl-wishlistexistsbrowse .feedback i {
  display: none;
}

.woocommerce-checkout .general-container-wrap {
  padding-top: 30px;
}

.woocommerce-checkout .woocommerce-SavedPaymentMethods-new input[type="radio"].woocommerce-SavedPaymentMethods-tokenInput+label {
  color: #ffb040;
  transition: all 0.3s ease-in-out;
}

.woocommerce-checkout .woocommerce-SavedPaymentMethods-new input[type="radio"].woocommerce-SavedPaymentMethods-tokenInput+label:hover {
  color: #1c1540;
}

.rd-tos-checkbox a {
  color: #ffb040;
}

.rd-tos-checkbox a:hover {
  color: #1c1540;
}

.woocommerce-checkout .payment-img-outer {
  display: none;
}

.woocommerce-cart .return-to-shop a.button {
  float: initial;
}

.woocommerce-account .general-container-wrap article.type-page.status-publish {
  max-width: 1000px;
  margin: 0 auto;
}

.woocommerce-account .general-container-wrap {
  padding: 50px 0 80px;
}

.woocommerce-account footer.entry-footer {
  padding-top: 50px;
}

.woocommerce-orders-table.woocommerce-MyAccount-orders tbody tr td {
  width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-content table .woocommerce-button.button.wc-action-btn.px-4.view.cmn-btn {
  font-size: 12px;
}

.woocommerce-orders .woocommerce-MyAccount-content .account-sub-title {
  font-size: 25px;
}

.woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders .woocommerce-orders-table__header-order-total,
.woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders .woocommerce-orders-table__header-order-date,
.woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders .woocommerce-orders-table__header-image {
  width: 20%;
}

.woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders .woocommerce-orders-table__header-order-number {
  width: 10%;
}

.woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders .woocommerce-orders-table__header-order-actions,
.woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders .woocommerce-orders-table__header-order-status {
  width: 15%;
}

.woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders {
  table-layout: fixed;
}

.woocommerce-account .entry-header {
  padding-bottom: 0 !important;
}

.woocommerce-wishlist .general-container-wrap {
  padding: 30px 0 60px;
}

.woocommerce-wishlist .entry-header {
  display: none;
}

.shop_table.wishlist_table thead tr .product-thumbnail {
  width: 15%;
}

.wishlist_table tr td.product-thumbnail a {
  max-width: 100%;
}

.shop_table.wishlist_table tbody tr td {
  font-size: 16px;
}

.wishlist_table .product-add-to-cart a.button {
  padding: 6px 10px !important;
  min-width: 150px;
}

.woocommerce-orders .woocommerce-MyAccount-content h3.account-sub-title {
  display: none !important;
}

.prime-section-product-video {
  background: linear-gradient(0deg, #000000 0%, #101010 61.5%, #202020 100%);
  padding-bottom: 80px;
}

.prime-video-wrapper {
  position: relative;
  padding-top: 56.25%;
}

.prime-video-wrapper video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.woocommerce-backinstock table.wc-bis-notifications-activity-table,
.woocommerce-backinstock table.wc-bis-pending-notifications-table {
  table-layout: fixed;
}

table.wc-bis-pending-notifications-table thead tr th:first-child {
  width: 10%;
}

table.wc-bis-pending-notifications-table thead tr th:nth-child(5),
table.wc-bis-pending-notifications-table thead tr th:nth-child(2) {
  width: 25%;
}

table.wc-bis-pending-notifications-table thead tr th:nth-child(3),
table.wc-bis-pending-notifications-table thead tr th:nth-child(4) {
  width: 20%;
}

table.wc-bis-notifications-activity-table thead tr th:first-child {
  width: 15%;
}

table.wc-bis-notifications-activity-table thead tr th:nth-child(2) {
  width: 85%;
}

/* sg27-jan-2025 */

/* 30-1-25 Css Start */
.woocommerce-checkout .checkout.woocommerce-checkout::before,
.woocommerce-checkout .woocommerce-checkout-review-order {
  background-color: transparent;
}

.filterOpener {
  display: none;
}

/* 30-1-25 Css Start */

/* 3/2/25 work start */
.main-head .search-wrp {
  position: relative;
}

.main-head .search-wrp .search-bar {
  right: calc(100% + 140px) !important;
}

.custom-menu-trigger {
  display: none;
}

.custom-menu-container-mobile {
  display: none;
}

/* 3/2/25 work end */
body.single-product .yith-wcwl-wishlistexistsbrowse span.feedback i {
  display: block;
}

/* 4/2/25 work start */
body.single-product .yith-wcwl-wishlistexistsbrowse .feedback {
  margin: 0px;
}

.single-product .prdcct_col_rght .custom-social-share-div-wrpr {
  display: inline-block;
  margin: 0px 0px -14px 15px;
}

.single-product .prdcct_col_rght .custom-social-share-div-wrpr span.heateor_sss_svg {
  border-radius: 0px !important;
  transition: all 0.3s ease-in-out;
}

.single-product .prdcct_col_rght .custom-social-share-div-wrpr span.heateor_sss_svg:hover {
  border-radius: 100% !important;
}

.single-product .prdcct_col_rght .compare.button.cmn-btn:before {
  content: "";
  margin-right: 0.25rem;
  font-size: 1.125rem;
}

.single-product .prdcct_col_rght .compare.button.cmn-btn:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(./images/compare-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(2px);
  filter: brightness(0);
  margin-right: 5px !important;
  transition: all 0.3s ease-in-out;
}

.single-product .prdcct_col_rght .compare.button.cmn-btn:hover:before {
  filter: none;
}

.single-product .prdcct_col_rght .rd-share-friend-btn {
  text-transform: uppercase;
}

/* 4/2/25 work end */

/* 07-02-25 Suppport Css Start */
.hero-sec .hero-inr {
  width: 100%;
}

.nto-slider .nto-item-inr .nto-btm p {
  font-size: 14px;
}

.wscc-col-inr .wscc-content h3,
.wscc-img img {
  transition: 0.2s;
}

/* Hover color flip removed — cards are no longer linked, so flipping the
   heading to white made the text disappear against the orange section
   background on mouseover. Image scale kept for the subtle zoom effect. */
.wscc-col-inr:hover .wscc-img img {
  transform: scale(1.1);
}

.nto-slider .nto-item-inr .nto-btm .nto-btns ul li {
  line-height: 0.8;
}

.hm-bnr-btn-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -5px;
}

.hm-bnr-btn-list li {
  padding: 5px;
}

.new-to-order-section .nto-slider .nto-item-inr .nto-btm {
  align-items: center;
}

.price .woocommerce-Price-amount.amount {
  margin: 0;
}

.main-head .navbar {
  flex-direction: column;
}

.main-head-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 5px;
}

.main-head-bttm {
  width: 100%;
}

.head-new-search {
  flex: 1;
  max-width: 810px;
}

/* .head-new-search .dgwt-wcas-sf-wrapp input[type="search"]{
  background-color:#000 !important;
} */
.custm_rgt_btn {
  margin-left: auto;
}

.custm_mid_btn {
  margin: 0 auto;
}

/* .main-head{
  background-color:#000;
} */

body.woocommerce-order-received .woocommerce-thankyou-order-received {
  font-size: 22px;
}

body.woocommerce-order-received .woocommerce-order-overview {
  margin-bottom: 0;
}

body.woocommerce-order-received .woocommerce-order-overview li {
  margin-bottom: 10px;
  font-size: 18px;
}

body.woocommerce-order-received .woocommerce-order-overview li:last-child {
  margin-bottom: 0;
}

body.woocommerce-order-received .featured-boxes .card-sub-title {
  font-size: 30px;
}

body.woocommerce-order-received .woocommerce-table thead>tr>.woocommerce-table__product-name {
  padding: 0 15px;
  font-size: 25px;
}

body.woocommerce-order-received .woocommerce-table tbody .woocommerce-table__line-item td {
  padding: 15px;
  font-size: 16px;
}

body.woocommerce-order-received .woocommerce-table__product-name.product-name a {
  font-size: 16px;
}

body.woocommerce-order-received .wc-item-meta li {
  margin-bottom: 5px;
  font-size: 16px;
}

body.woocommerce-order-received .woocommerce-table__product-total small {
  font-size: 16px;
}

body.woocommerce-order-received .woocommerce-table tfoot th,
body.woocommerce-order-received .woocommerce-table tfoot tr {
  height: inherit !important;
}

body.woocommerce-order-received .woocommerce-table tfoot th {
  padding: 15px;
}

body.woocommerce-order-received .woocommerce-table tfoot th h4 {
  font-size: 20px;
}

body.woocommerce-order-received .woocommerce-table tfoot .woocommerce-Price-amount {
  font-size: 16px;
}

body.woocommerce-order-received .woocommerce-table tfoot tr td {
  width: 45%;
}

/* 07-02-25 Suppport Css End */

/*support pp.c 10/2/2025*/

.archive .product-intro-wraper {
  align-items: flex-start;
}

.woocommerce-account .woocommerce-form-register .mailchimp-newsletter label {
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text {
  margin-bottom: 15px;
}

.woocommerce-account .general-container-wrap article.type-page.status-publish.entry {
  max-width: 100%;
}

.hero-slider .hero-item-inr {
  height: 100vh;
  min-height: auto;
}

.brands-sec .brand-logo a {
  height: 200px;
}

.brands-sec .brand-logo a img {
  object-fit: contain;
  height: 100%;
}

.archive .product-intro-outer {
  margin-bottom: 30px;
}

/*support pp.c 10/2/2025*/

/* sg-11-02-2024 */
.hero-slider .hero-item-inr {
  height: 92vh;
}

.head-new-search {
  max-width: 1020px;
}

.woocommerce-checkout .woocommerce.dgwt-wcas-search-wrapp,
.dgwt-wcas-search-wrapp {
  max-width: 800px;
  margin-bottom: 15px;
}

.navbar-brand {
  width: 240px;
}

.home .brands-sec .brands-slider {
  padding: 0;
}

.home .brands-sec .cmn-btn-wrp {
  margin-top: 20px;
}

.brand-logo {
  padding: 0 10px;
}

.woocommerce-cart .product-thumbnail {
  position: relative;
}

.woocommerce .woocommerce-cart-form .product-thumbnail .attachment-woocommerce_thumbnail {
  height: 100% !important;
  object-fit: cover;
}

.woocommerce-cart .general-container-wrap .woocommerce .cart_item .variation-PaymentPlan select {
  max-width: 300px;
}

.woocommerce-checkout .general-container-wrap .woocommerce .cart_item .variation-PaymentPlan select {
  font-size: 14px;
}

.general-container-wrap .woocommerce .cart_item .variation-PaymentPlan:last-child {
  padding-top: 1px;
}

.woocommerce-cart .shop_table.shop_table_responsive .product-thumbnail {
  max-width: 200px;
  width: 200px;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox {
  text-transform: uppercase;
  color: #1c1540;
  margin-bottom: 13px;
  display: block;
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox .input-checkbox {
  display: none;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox span {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  display: block;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox span::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox span::after {
  content: "";
  position: absolute;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  transform: rotate(45deg);
  display: none;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox .input-checkbox:checked+span::before {
  background-color: #161616;
}

.woocommerce-checkout .woocommerce-shipping-fields .woocommerce-form__label-for-checkbox .input-checkbox:checked+span::after {
  display: block;
}

/* sg-11-02-2024 */

/* SM-12-02-25 */
.hero-slider .hero-item-inr {
  height: 95vh;
}

.woocommerce-order-received .wc-item-meta>* {
  display: flex;
  white-space: nowrap;
}

.on-sale-filter {
  margin-top: 5px;
}

.on-sale-filter input[type="checkbox"] {
  appearance: initial;
  position: relative;
  width: 13px;
  height: 13px;
  background: #fff;
  border: 1px solid #1c1540;
  border-radius: 2px;
  margin-right: 5px;
}

.on-sale-filter input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1c1540;
}

.on-sale-filter input[type="checkbox"]:checked:after {
  content: "";
  width: 4px;
  height: 8px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 4px;
  transform: rotate(45deg);
}

.on-sale-filter label {
  color: #48445e;
  cursor: pointer;
  font-family: "Varela Round", sans-serif;
  font-size: 16px;
}

/* SM-12-02-25 */

/* SM-14-02-25 */
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  text-transform: capitalize;
}

.woocommerce-page table.shop_table .wishlist-items-wrapper .product-thumbnail {
  width: 20%;
}

.woocommerce-page table.shop_table .wishlist-items-wrapper td {
  font-size: 20px;
}

.woocommerce-page table.shop_table .woocommerce-orders-table__row--status-scheduled-payment.order td {
  width: auto;
}

.woocommerce-wishlist .general-container-wrap .wishlist_table .wishlist-items-wrapper .product-add-to-cart a.add_to_cart.cmn-btn {
  display: inline-flex !important;
  padding-bottom: 6px !important;
  align-items: center;
}

/* SM-14-02-25 */

/* 19/2/25 work start */
.hero-slider .hero-item-inr {
  height: 85vh;
}

.woocommerce-checkout .shop_table {
  margin-top: 25px;
}

.woocommerce-checkout form .shop_table .product-subtotal {
  text-align: right;
}

.woocommerce-checkout td.product-name {
  display: flex;
  align-items: center;
}

.woocommerce-checkout td.product-name img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 10px;
}

.woocommerce-checkout tr.order_item td {
  vertical-align: middle !important;
}

.woocommerce-checkout td.product-name {
  margin-right: 10px;
  padding: 6px 0px;
}

.woocommerce-checkout .box-content a[data-bs-toggle] {
  background: #ffb040;
  color: #1c1540;
  text-transform: uppercase;
  height: 38px;
  box-shadow: 3px 3px 0 #1c1540;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 8px 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3sease-in-out;
  transition: all 0.3sease-in-out;
  min-width: auto;
  width: auto;
}

.woocommerce-checkout .box-content a[data-bs-toggle]:hover {
  background: #1c1540;
  color: #ffb040;
  box-shadow: 0 0 0 #ffb040;
}

.woocommerce-checkout td.product-total {
  padding: 6px 0px;
}

.woocommerce-account .post-edit-link,
.woocommerce-checkout .post-edit-link {
  background: #ffb040;
  color: #1c1540;
  text-transform: uppercase;
  height: 38px;
  box-shadow: 3px 3px 0 #1c1540;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 8px 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3sease-in-out;
  transition: all 0.3sease-in-out;
  min-width: auto;
  width: auto;
}

.woocommerce-account .post-edit-link:hover,
.woocommerce-checkout .post-edit-link:hover {
  background: #1c1540;
  color: #ffb040;
  box-shadow: 0 0 0 #ffb040;
}

footer.entry-footer.default-max-width {
  overflow: visible;
}

/* 19/2/25 work end */

/* 27-02-2025 M.M Css Start */
.yith-wcwl-add-to-wishlist svg.yith-wcwl-icon-svg,
.yith-wcwl-add-to-wishlist .add_to_wishlist img {
  color: #ffb040 !important;
}

.yith-wcwl-wishlistaddedbrowse {
  font-size: 0;
}

.single-product .entry-summary .yith-wcwl-add-to-wishlist {
  display: none !important;
}

.single-product .yith-wcwl-add-button .single_add_to_wishlist .yith-wcwl-icon-svg {
  margin-right: 0;
}

.single-product .yith-wcwl-wishlistaddedbrowse {
  position: relative;
}

.single-product .yith-wcwl-wishlistaddedbrowse>a {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  position: relative;
  z-index: 3;
}

.woocommerce-account footer.entry-footer.default-max-width {
  overflow: auto;
  padding-top: 20px;
  padding-bottom: 10px;
}

.woocommerce-cart .woocommerce form .form-row .input-text,
.woocommerce-cart .woocommerce form .form-row select,
.woocommerce-account .woocommerce form .form-row .input-text,
.woocommerce-account .woocommerce form .form-row select {
  height: 59px;
}

.sngle_prdct_row .prdcct_col_rght form.cart {
  margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-form__label .woocommerce-form__input {
  display: none;
}

/* 27-02-2025 M.M Css Start */

/* 03-03-2025 KM start */
.footer-inr {
  border-bottom: none;
}

.yith-wcwl-add-to-wishlist svg.yith-wcwl-icon-svg,
.yith-wcwl-add-to-wishlist .add_to_wishlist img {
  width: 22px;
  margin-top: -1px;
  margin-right: 0 !important;
}

/* 03-03-2025 KM end */

/* 4/3/25 start */

.product-sec.product-sec-custom-gap,
.single-product div.product,
.woocommerce-cart .general-container-wrap,
.general-container-wrap,
.page-template-temp-brand_listing .contact-sec.cmn-gap,
.page-template-temp-contact .contact-sec.cmn-gap,
.woocommerce-account .general-container-wrap {
  padding-top: 20px !important;
}

/* 4/3/25 end */

/* support starts 17.03.2025   */
.product-new .product-intro-wraper {
  align-items: center;
}

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

.logo-center {
  max-width: 350px;
  margin: 0 auto;
  width: 100%;
}

/* support ends 17.03.2025   */

.woocommerce-error li {
  color: #b22222;
}

.woocommerce-error li a {
  color: #1c1540;
}

.woocommerce-error li a:hover {
  color: #ffb040;
}

/* S.Mv Css Start 14-04-25 */
.main-head {
  z-index: 999;
}

.woocommerce-order-pay .woocommerce-SavedPaymentMethods li input[type="radio"] {
  display: none !important;
}

/* S.Mv Css End 14-04-25 */

/* .hero-slider .slick-track, */
.hero-sec .hero-slider>.hero-item:not(:first-child) {
  position: absolute;
}

/* support starts 08.05.2025  */
.admin-bar .main-head {
  top: 32px;
}

/* support starts 08.05.2025  */


/* Support start 13-06-25 */

.sngle_prdct_row .prdcct_col_rght .woocommerce-variation-availability .button.wc_bis_send_form {
  background: #ffb040;
  color: #1c1540;
  box-shadow: 3px 3px 0 #1c1540;
  border-radius: 10px;
  padding: 19px 38px 17px;
  min-width: 180px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  border: 1px solid #1c1540;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}

.sngle_prdct_row .prdcct_col_rght .woocommerce-variation-availability .button.wc_bis_send_form:hover {
  background: #1c1540;
  color: #ffb040;
  box-shadow: 0 0 0 #1c1540;
}

/* Support end 13-06-25 */


.price del span{text-decoration: line-through !important;}
/* ========== responsive css =========== */

@media only screen and (min-width: 768px) {
  .products-filter-wrp {
    display: block !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 68%;
  }

  .woocommerce.woocommerce-account table.shop_table tbody tr,
  .woocommerce-page table.shop_table tbody tr {
    font-size: 14px;
  }
}

@media (min-width: 1199px) {
  .container {
    max-width: 1170px;
    padding: 0 15px;
  }
}

@media (min-width: 1499px) {
  .home .brands-sec .container {
    max-width: 1420px;
  }
}

@media (min-width: 1025px) {

  /* navbar*/
  /* .navbar-nav .clickD {
        display: none;
    } */
  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }

  .navbar-nav li.menu-item-has-children:hover .clickD {
    filter: brightness(0) saturate(100%) invert(88%) sepia(16%) saturate(6965%) hue-rotate(327deg) brightness(105%) contrast(105%);
  }

  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
    transition: all ease-in-out 0.1s;
  }

  .navbar-nav .clickD.toggled,
  .navbar-nav li.menu-item-has-children:hover .clickD {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1399px) {
  .nto-btm p {
    font-size: 14px;
  }

  .nto-btns ul li {
    margin-right: 12px;
    margin-left: 0;
  }

  .navbar-nav>li>a {
    font-size: 16px;
  }

  .sub-menu>li>a {
    font-size: 16px;
  }

  #yith-woocompare-related .related-slider-nav div.related-slider-nav-prev {
    left: 2%;
  }

  #yith-woocompare-related .related-slider-nav div.related-slider-nav-next {
    right: 2%;
  }

  /* sg 11-02-2025 */
  .navbar-brand {
    width: 160px;
  }

  /* sg 11-02-2025 */
}

@media only screen and (max-width: 1280px) {
  .brands-slider .slick-arrow.slick-prev {
    left: -20px;
  }

  .brands-slider .slick-arrow.slick-next {
    right: -20px;
  }

  .shipping-slider .slick-prev {
    left: -12px;
  }

  .shipping-slider .slick-next {
    right: -12px;
  }

  .navbar-nav>li {
    margin: 0 10px;
  }
}

@media (max-width: 1199px) {
  .navbar-right-part {
    margin-left: 6px;
  }

  .navbar-nav>li {
    margin: 0 10px;
  }

  .navbar-nav>li>a {
    font-size: 14px;
  }

  .navbar-right-part ul li a {
    width: 35px;
    height: 35px;
  }

  .navbar-right-part ul li {
    margin-right: 10px;
  }

  .navbar-brand {
    width: 130px;
  }

  .hero-item-inr {
    min-height: 550px;
  }

  h1,
  .h1-title {
    font-size: 62px;
  }

  .hero-inr {
    max-width: 500px;
  }

  .hero-inr p {
    font-size: 22px;
    margin-bottom: 25px;
  }

  /* 11.11.2024 css start */
  .product-intro-wraper h1 {
    font-size: 42px;
  }

  /* 11.11.2024 css end */

  /* 14.11.2024 css start */
  .pt-bg img {
    bottom: -18px;
  }

  /* 14.11.2024 css end */
  /* SM 13_12_24 */
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name img {
    max-width: 70px !important;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-total.product-total {
    width: 270px;
  }

  /* SM 13_12_24 end */

  /* SM 16_12_24 */
  .woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions a+a {
    margin: 0 0 0;
  }

  img.footer-left-img {
    max-width: 163px;
  }

  img.footer-right-img {
    bottom: 9px;
    max-width: 263px;
  }

  /* SM 16_12_24 end */

  /* support starts 18.12.2024  */
  .product-sec-custom-gap {
    padding-top: 55px;
  }

  /* support ends 18.12.2024  */
  /* SM 19_12_24 */

  .dp-dwn-menu.active {
    top: 48px;
  }

  .dp-dwn-menu ul li a {
    display: flex;
    width: 100% !important;
    height: auto !important;
    justify-content: start;
  }

  .dp-dwn-menu ul li a span {
    flex-shrink: 0;
  }

  /* SM 19_12_24 end */

  /* 4/2/25 work start */
  .single-product .prdcct_col_rght .custom-social-share-div-wrpr {
    margin-left: 1px;
  }

  /* 4/2/25 work end */
  /*support pp.c 10/2/2025*/
  .hero-slider .hero-item-inr {
    min-height: 550px;
    height: 100%;
  }

  .main-head .head-new-search {
    max-width: 610px;
  }

  /*support pp.c 10/2/2025*/

  /* sg-11-02-2025 */
  .main-head .head-new-search {
    max-width: 710px;
  }

  /* sg-11-02-2025 */
  /*support pp.c 28/2/2025*/
  body.woocommerce-cart .general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn {
    width: 45%;
  }

  /*support pp.c 28/2/2025*/
}

@media (max-width: 1024px) {

  /* navbar*/

  .sub-menu.show {
    display: block;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:after,
  .navbar-nav>li.menu-item-has-children>a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/

  .nto-btns {
    padding-left: 5px;
  }

  .nto-btns ul li {
    margin-right: 10px;
    margin-left: 0;
  }

  .filtrs-wrp-inr {
    padding: 0 0 30px;
  }

  /* 23-12-2024 */
  .mfp-wqv .sp-wqv-content {
    max-width: 100%;
  }

  .mfp-wrap .wqv-product-images {
    padding-left: 0;
  }

  .mfp-wrap #wqv-quick-view-content.sp-wqv-content {
    padding: 30px 30px 50px 30px;
  }

  .mfp-wrap #wqv-quick-view-content .wqv-product-info {
    padding: 20px 0 0;
  }

  .custm-modal-prod-details-btn-wrp {
    position: static;
    margin-top: 15px;
  }

  .mfp-wrap .wqv-product-info .quantity .qty {
    width: 80px;
    padding-left: 5px;
  }

  .mfp-wrap .wqv-product-images img {
    min-height: auto;
  }

  .nto-img #sp-wqv-view-button.sp-wqv-view-button.button {
    visibility: hidden !important;
    opacity: 1;
    transform: none !important;
    left: 7px;
    bottom: 8px;
    top: auto;
    padding: 10px;
    font-size: 0;
    border-radius: 100%;
    min-width: auto;
    width: 25px;
    height: 25px;
    background: #ffffff;
  }

  .nto-img #sp-wqv-view-button.sp-wqv-view-button.button::before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f06e";
    color: #353535;
  }
}

/* pro 4/3/25 start */
@media only screen and (max-width: 992px) {
  .single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-sm-columns-2 {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* pro 4/3/25 end */

@media (max-width: 991px) {

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    transform: rotate(45deg) translate(42px, -28px);
    background: #000;
    left: 2px;
  }

  .stick.open:after {
    transform: rotate(-45deg) translate(42px, 28px);
    background: #000;
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    filter: brightness(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
    color: #000;
    font-size: 16px;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    /* height: 100%; */
    overflow: hidden;
  }

  /* push nav end */

  .main-head {
    padding: 10px 0;
  }

  .cmn-gap2 {
    padding: 60px 0;
  }

  h1,
  .h1-title {
    font-size: 48px;
  }

  .hero-inr {
    max-width: 400px;
  }

  .hero-inr p {
    font-size: 18px;
  }

  .cmn-btn {
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 150px;
  }

  .hero-item-inr {
    min-height: auto;
  }

  .pt-cd-content {
    padding: 12px;
  }

  .cmn-gap {
    padding: 80px 0;
  }

  h2,
  .h2-title {
    font-size: 42px;
  }

  .sec-head {
    margin-bottom: 30px;
  }

  .nto-btm p {
    font-size: 13px;
  }

  .nto-inr .cmn-btn-wrp {
    margin-top: 40px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
  }

  .cmnty-content {
    height: auto;
    padding: 12px;
  }

  .cmnty-img .play-icon {
    width: 35px;
  }

  .cmnty-over-content p {
    bottom: 46px;
  }

  .cmnty-over-content img {
    width: 25px;
    top: 40%;
  }

  .slick-arrow {
    width: 35px;
    height: 35px;
    padding: 10px;
    background-size: 12px;
  }

  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }

  .wscc-img {
    width: 80px;
    height: 80px;
    padding: 12px;
    margin-bottom: 20px;
  }

  h3,
  .h3-title {
    font-size: 18px;
  }

  footer {
    padding-top: 60px;
  }

  .ftrwdgt-inr p {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .ftr-widget:nth-child(2) {
    width: 38%;
  }

  .ftr-widget:first-child {
    width: 40%;
  }

  .ftrwdgt-title {
    margin-bottom: 20px;
  }

  .ftr-logo {
    width: 180px;
    margin-bottom: 20px;
  }

  .footer-inr {
    padding-bottom: 60px;
  }

  .social-links ul li a {
    width: 40px;
    height: 40px;
    padding: 5px;
  }

  .copyright {
    padding: 20px 0;
  }

  .products-wrp-right .row {
    --bs-gutter-y: 20px;
  }

  .filtrs-wrp-inr {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .hero-item-inr {
    padding-bottom: 100px;
  }

  .cmnty-slider .slick-list {
    margin: 0 -12px;
  }

  .products-filter-wrp {
    display: block;
    width: 33.33333333%;
  }

  .products-wrp-right {
    width: 66.66666667%;
  }

  /* 11.11.2024 css start */
  .product-intro-outer {
    margin: 0 auto 40px;
    padding: 20px 15px;
  }

  .product-left {
    width: 300px;
  }

  .product-right {
    width: calc(100% - 300px);
  }

  .product-intro-wraper h1 {
    font-size: 36px;
  }

  /* 11.11.2024 css end */

  /* 14.11.2024 css start */
  .pt-bg img {
    bottom: -14px;
  }

  /* 14.11.2024 css end */
  /* CSS Modification 28.11.24 */
  .general-container-wrap .woocommerce button.cmn-btn,
  .general-container-wrap .woocommerce button.cmn-btn[disabled],
  .general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn,
  .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.cmn-btn {
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 150px;
    min-height: 45px;
  }

  .general-container-wrap .woocommerce table.cart td.actions .coupon input[type="text"].input-text {
    width: 150px;
    height: 45px;
  }

  .main-head .search-wrp .search-bar {
    width: 100%;
    right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .ftr-widget .ftrwdgt-inr .sub-menu {
    display: none;
  }

  /* CSS Modification 28.11.24 */
  /* CSS Modification 29.11.24 */
  .general-container-wrap .summary .quantity input {
    height: 45px;
  }

  .general-container-wrap .woocommerce .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order button.cmn-btn {
    float: none !important;
  }

  .general-container-wrap form.checkout .col2-set>* {
    width: 100%;
    float: none;
  }

  /* CSS Modification 29.11.24 */

  /* Sm 11_12_24 */
  body.single-product .general-container-wrap {
    padding-top: 70px;
  }

  /* SM 11_12_24 */

  /* 14.11.2024 css start */
  .pt-bg img {
    bottom: -14px;
  }

  /* 14.11.2024 css end */

  /* 12.12.24 Css start */
  .inr-banner {
    min-height: 360px;
  }

  .error-wrap {
    padding-top: 10px;
  }

  /* 12.12.24 Css End */
  /* SM 13_12_24 */
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 15px;
  }

  .woocommerce-account .woocommerce-MyAccount-content table tbody tr td,
  .woocommerce-account .woocommerce-MyAccount-content table thead tr th {
    padding: 7px 5px;
  }

  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2,
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1 {
    width: 100%;
  }

  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    margin-top: 15px;
  }

  .woocommerce ul.order_details li {
    margin-bottom: 2em;
  }

  .woocommerce-orders-table__cell.woocommerce-orders-table__cell-notification-actions .cmn-btn:last-child {
    margin: 3px 0 0 0;
  }

  /* SM 13_12_24 end */
  /* SM 17_12_24 */

  .rtwpvg-single-image-container img {
    width: 100%;
  }

  .rtwpvg-images .rtwpvg-wrapper .rtwpvg-slider-wrapper {
    width: 100%;
  }

  .woocommerce-cart .shop_table.shop_table_responsive thead tr th.product-price,
  .woocommerce-cart .shop_table.shop_table_responsive thead tr th.product-quantity,
  .woocommerce-cart .shop_table.shop_table_responsive thead tr th.product-subtotal {
    width: auto;
  }

  .woocommerce-cart .general-container-wrap,
  .woocommerce-checkout .general-container-wrap {
    padding-top: 30px;
  }

  /* SM 17_12_24 end */

  /* support starts 18.12.2024  */
  .product-sec-custom-gap {
    padding-top: 50px;
  }

  .nto-img #sp-wqv-view-button.sp-wqv-view-button.button {
    visibility: visible !important;
    display: block !important;
  }

  /* support ends 18.12.2024  */

  /* 03-01-2025 New Shop Page "Quick View" Popup Design Start */
  .acoqvw_quickview_container .wc-deposits-wrapper .wc-deposits-option li {
    font-size: 14px;
  }

  .wc-deposits-wrapper .wc-deposits-option li input {
    margin-right: 10px;
  }

  .acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .cart .single_add_to_cart_button {
    min-width: auto;
  }

  /* Mobile Quick View — small icon-only button anchored to the bottom-
     LEFT corner of the product image. The full pill with text felt too
     "in your face" on small screens; the icon-only variant matches the
     desktop hover affordance pattern without overlapping the bottom-
     right status tags. */
  .nto-item-inr .acoqvw_trigger_outer,
  .sp-slide-inr .acoqvw_trigger_outer {
    opacity: 1;
    visibility: visible;
    left: 8px;
    bottom: 8px;
    top: auto;
    right: auto;
    transform: none;
    width: auto;
    height: auto;
    /* Sit above the image's click area so the QV icon is tappable, but
       leave the rest of the image clickable to the product page. */
    z-index: 3;
  }

  /* Show the eye icon (it was hidden in the previous full-pill version).
     Constrain both the wrapper span and the SVG inside it explicitly —
     the SVG markup has no width/height attributes and no fill, so
     without these rules it can render at 0 size or invisible. */
  .nto-item-inr .acoqvw_quickview_button span.acoqvw_trigger_icon,
  .sp-slide-inr .acoqvw_quickview_button span.acoqvw_trigger_icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
  }

  .nto-item-inr .acoqvw_quickview_button span.acoqvw_trigger_icon svg,
  .sp-slide-inr .acoqvw_quickview_button span.acoqvw_trigger_icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #1c1540;
  }
  .nto-item-inr .acoqvw_quickview_button span.acoqvw_trigger_icon svg circle,
  .nto-item-inr .acoqvw_quickview_button span.acoqvw_trigger_icon svg path,
  .sp-slide-inr .acoqvw_quickview_button span.acoqvw_trigger_icon svg circle,
  .sp-slide-inr .acoqvw_quickview_button span.acoqvw_trigger_icon svg path {
    fill: #1c1540;
  }

  /* Hide the "Quick View" text node inside the link without touching the
     SVG inside the icon span. `font-size: 0` collapses the text node,
     and the SVG's CSS width/height are unaffected by font-size. */
  .nto-item-inr .acoqvw_trigger_outer .acoqvw_quickview_modal,
  .sp-slide-inr .acoqvw_trigger_outer .acoqvw_quickview_modal {
    font-size: 0;
    line-height: 0;
    padding: 0;
    width: 36px;
    height: 36px;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #1c1540;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 10px rgba( 0, 0, 0, 0.25 );
    text-decoration: none !important;
  }

  /* Stock-status pills (Low stock, Now Shipping, Pre-Order, Waitlist)
     inside the product card were wrapping their text onto two lines on
     narrow screens — "Low stock" rendering as "Low" / "stock". Force a
     single line so each pill stays compact and readable. */
  .float-tags .tag,
  .float-tags .tag.low,
  .float-tags .tag.lowStock,
  .float-tags .tag.instock,
  .float-tags .tag.in-stock,
  .float-tags .tag.preOrder,
  .float-tags .tag.preorder,
  .float-tags .tag.onsale,
  .float-tags .tag.new,
  .float-tags .tag.stock.out-of-stock {
    white-space: nowrap !important;
  }

  /* Anchor the status-tag stack to the bottom-RIGHT of the product image
     on mobile. The base rule sets right: 0 but something in the cascade
     was floating the stack to the left edge on narrow viewports. Setting
     left: auto explicitly + right: 0 with !important pins the container
     to the right side, and text-align: right keeps each pill flush with
     the right edge of its parent so they line up cleanly under each other. */
  /* Pin the tag stack to the bottom-right of the image and right-align
     each pill. The `.tag` children are `display: block` with `min-width:
     76px`, so they were stretching to fill the parent and `text-align:
     right` couldn't shrink them. Switching the container to flex column
     with `align-items: flex-end` shrinks each pill to its content and
     aligns them flush right.

     The Now Shipping section is a special case: its template puts
     `.float-tags` *inside* `<a class="sp-slide-img">` (the image link),
     not as a sibling like New To Order does. The `.sp-slide-img a` parent
     selectors below target that exact nested case. The `.shipping-slider`
     and `.now-shipping-sec` selectors provide higher specificity to win
     over any section-specific override. */
  /* Tag-stack container is fixed at 110px wide and pinned to the
     bottom-right of the image. With an explicit width on the container
     (not the children), `width: 100%` on each tag reliably resolves to
     110px — none of the intrinsic-width gymnastics from the previous
     inline-flex approach. Every pill ends up the same size, stacked
     vertically, flush right, with a small gap between them. */
  .nto-item-inr .float-tags,
  .sp-slide-inr .float-tags,
  .prdct_img_wrppr .float-tags,
  .sp-slide-img .float-tags,
  a.sp-slide-img .float-tags,
  .shipping-slider .float-tags,
  .now-shipping-sec .float-tags,
  .float-tags {
    position: absolute !important;
    left: auto !important;
    top: auto !important;
    right: 8px !important;
    bottom: 8px !important;
    width: 110px !important;
    max-width: 110px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    z-index: 2;
  }
  .float-tags .tag,
  .sp-slide-img .float-tags .tag,
  .shipping-slider .float-tags .tag,
  .now-shipping-sec .float-tags .tag {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* 03-01-2025 New Shop Page "Quick View" Popup Design End */

  /* support starts 15.01.2025  */
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row.col-1,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row.col-2,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row.col-1,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row.col-2 {
    width: 100%;
  }

  .woocommerce-checkout #customer_details.col2-set {
    width: 100%;
  }

  .woocommerce-checkout form #order_review,
  .woocommerce-checkout form #order_review_heading {
    width: 100% !important;
  }

  .woocommerce-checkout .checkout.woocommerce-checkout::before {
    width: 100%;
  }

  /* support ends 15.01.2025  */
  /*support pp.c 16/1/2025*/
  .woocommerce-checkout form.checkout .col2-set .col-2 {
    margin-top: 0;
  }

  .woocommerce-checkout .general-container-wrap {
    padding: 50px 0;
  }

  /*support pp.c 16/1/2025*/
  /* sg-20-jan-2025 */
  .hero-item-inr {
    min-height: 365px;
  }

  .woocommerce-ordering select {
    width: 130px;
    padding: 10px 26px 10px 15px;
  }

  .woocommerce .woocommerce-result-count {
    font-size: 16px;
  }

  .woocommerce .products-wrp-right ul.products {
    margin-top: 0;
  }

  .woocommerce nav.woocommerce-pagination ul li {
    margin-bottom: 10px;
  }

  /* sg-20-jan-2025 */
  /*support pp.c 23/1/2025*/
  .woocommerce-wishlist .general-container-wrap {
    padding: 50px 0;
  }

  /*support pp.c 23/1/2025*/

  /* sg-21-01-2025 */
  .woocommerce-cart .entry-header h1 {
    font-size: 48px;
  }

  .woocommerce.yith-woocompare-related {
    padding: 30px 0 0;
  }

  #yith-woocompare-related h3.yith-woocompare-related-title {
    font-size: 42px;
  }

  .woocommerce-checkout .general-container-wrap {
    padding: 20px 0 40px;
  }

  .woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders tbody tr td {
    width: 100% !important;
  }

  .woocommerce-orders .woocommerce-orders-table.woocommerce-MyAccount-orders tbody tr td img {
    max-width: 50% !important;
  }

  .woocommerce-wishlist .general-container-wrap {
    padding: 20px 0 50px;
  }

  .wishlist_table.mobile li .item-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .wishlist_table.mobile li .item-wrapper .product-thumbnail {
    display: block;
    max-width: initial;
    width: 22%;
    margin: 0;
  }

  .wishlist_table.mobile li .item-wrapper .item-details {
    display: block;
    width: 78%;
    padding-left: 20px;
  }

  .wishlist_table.mobile .product-add-to-cart .add-links {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .wishlist_table.mobile .product-add-to-cart .yith-wcwl-add-to-wishlist {
    margin-top: 0;
    flex: 1;
    padding-left: 20px;
  }

  .wishlist_table .product-add-to-cart a {
    display: table !important;
    margin: 0 !important;
  }

  .wishlist_table.mobile .additional-info-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove {
    width: 100%;
  }

  .prime-section-product-video {
    padding-bottom: 50px;
  }

  /* sg-21-01-2025 */

  /* 3/2/25 work start */
  .navbar-brand {
    margin-right: auto;
    margin-left: 15px;
  }

  .custom-menu-container-mobile {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100svh;
    max-width: 100%;
    width: 100%;
    padding: 0;
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 9;
  }

  .custom-menu-container-mobile-inner {
    max-width: 360px;
    background: #000;
    padding: 0px 0px 25px;
    height: 100svh;
    overflow: auto;
  }

  .custom-menu-container-mobile.open {
    transform: translateX(0%);
  }

  .cmn-tab-pane {
    display: none;
  }

  .cmn-tab-pane.active {
    display: block;
  }

  .cust-menu-close-btn {
    position: absolute;
    left: 380px;
    top: 27px;
    color: #fff;
    font-size: 16px;
    font-family: "FontAwesome";
  }

  .cmn-tabs-container {
    margin-top: 30px;
  }

  .cmn-tabs {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }

  .cmn-tabs li {
    list-style: none;
  }

  .cmn-tabs li::marker {
    content: "";
  }

  .cmn-tabs>* {
    flex-grow: 1;
    text-align: center;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding: 7px;
    font-weight: 700;
  }

  .cmn-tab.active {
    color: #ffb040;
    border-color: #ffb040;
  }

  .custom-menu-trigger {
    background: transparent;
    border: 0;
    padding: 0px;
    color: #fff;
    font-size: 25px;
  }

  .cmn-tab-pane .social-links {
    padding: 15px;
    display: flex;
    justify-content: center;
  }

  .search-mble {
    padding: 135px 20px 0px;
  }

  .mbl-nav,
  .mbl-nav ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
  }

  .mbl-nav li {
    list-style: none;
  }

  .mbl-nav li::marker {
    content: "";
  }

  .mbl-nav li a {
    padding: 16px 20px;
    font-size: 16px;
    display: block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
  }

  .mbl-nav li:not(:last-child) {
    border-bottom: 1px solid #242527;
  }

  .mbl-nav li a:hover,
  .mbl-nav li.current-menu-item a {
    background: #fff;
    color: #ffb040;
  }

  .custom-menu-trigger {
    display: block;
  }

  .custom-menu-container-mobile {
    display: block;
  }

  .navbar-right-part .search-wrp {
    display: none;
  }

  /* 3/2/25 work end */

  /* 4/2/25 work start */
  .single-product .prdcct_col_rght .custom-social-share-div-wrpr {
    margin-left: 10px;
  }

  /* 4/2/25 work end */

  /* 07-02-25 SM Css Start */
  .head-new-search {
    display: none;
  }

  /* 07-02-25 SM Css End */

  /* 07-02-25 Suppport Css End */

  body.woocommerce-order-received .woocommerce ul.order_details li {
    margin-bottom: 10px !important;
  }

  /* 07-02-25 Suppport Css End */

  /*support pp.c 10/2/2025*/
  .hero-slider .hero-item-inr {
    min-height: 365px;
  }

  .main-head-top {
    margin-bottom: 0;
  }

  /*support pp.c 10/2/2025*/
  /* 11-02-2025 */
  .brands-sec .brand-logo a {
    height: 100px;
  }

  /* 11-02-2025 */

  /* support starts 17.03.2025  */
  .logo-center {
    max-width: 300px;
  }

  /* support ends 17.03.2025  */
}

@media (max-width: 768px) {

  /* For Woocommerce Only */
  /* CSS Modification 28.11.24 */
  .general-container-wrap .woocommerce table.cart td.actions .coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  .general-container-wrap .woocommerce table.cart td.actions .coupon input[type="text"].input-text {
    width: 50%;
    margin-right: 15px;
  }

  .general-container-wrap .woocommerce table.cart td.actions .coupon button.cmn-btn {
    width: calc(100% - 50% - 15px);
  }

  .general-container-wrap .woocommerce .cart_item .product-thumbnail {
    width: 100%;
    text-align: center !important;
    display: block !important;
  }

  .general-container-wrap .woocommerce .cart_item .product-thumbnail img {
    max-width: 120px !important;
  }

  .general-container-wrap .woocommerce .cart_item .product-thumbnail::before {
    display: none;
  }

  .general-container-wrap .woocommerce .cart_item .product-remove a.remove {
    margin-left: auto;
  }

  .general-container-wrap .woocommerce .cart_item .product-name {
    text-align: left !important;
  }

  .general-container-wrap .woocommerce .cart_item .product-name::before {
    display: block;
    width: 100%;
  }

  .general-container-wrap .woocommerce .cart_item .product-name .variation {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #d9d9d9;
  }

  /* CSS Modification 28.11.24 */
  /* CSS Modification 29.11.24 */
  .general-container-wrap .woocommerce .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order button.cmn-btn {
    width: auto !important;
  }

  .general-container-wrap .woocommerce .woocommerce-checkout-review-order th,
  .general-container-wrap .woocommerce .woocommerce-checkout-review-order td,
  .general-container-wrap .woocommerce .woocommerce-checkout-review-order tr {
    display: block;
  }

  img.footer-left-img {
    bottom: 0;
  }

  img.footer-right-img {
    bottom: 9px;
    max-width: 213px;
  }

  /* CSS Modification 29.11.24 */

  /*support pp.c 28/2/2025*/
  .archive .products .float-tags .onsale {
    right: auto !important;
  }

  .woocommerce-cart .rd-shipping-calculator td::before {
    display: none;
  }

  .woocommerce-cart .cart_totals .rd-shipping-calculator .button.cmn-btn {
    background-color: #ffb040 !important;
  }

  .woocommerce-cart .cart_totals .rd-shipping-calculator .button.cmn-btn:hover {
    background-color: #1c1540 !important;
    color: #fff !important;
  }

  /*support pp.c 28/2/2025*/
}

@media (max-width: 767px) {

  .woocommerce-privacy-policy-text {
    text-align: center;
  }

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .hero-inr p {
    font-size: 16px;
  }

  h1,
  .h1-title {
    font-size: 42px;
  }

  .hero-inr {
    max-width: 360px;
  }

  .hero-item-inr {
    padding: 100px 0 60px;
  }

  .navbar-brand {
    width: 120px;
  }

  .brand-logo {
    padding: 0 12px;
  }

  .cmn-gap2 {
    padding: 50px 0;
  }

  .cmn-gap {
    padding: 60px 0;
  }

  h2,
  .h2-title {
    font-size: 32px;
  }

  .slick-prev {
    left: -10px;
  }

  .slick-next {
    right: -10px;
  }

  .wscc-img {
    /* width: 100px;
        height: 100px; */
    /* padding: 25px; */
  }

  .wscc-img img {
    max-height: 32px;
  }

  .ftr-widget:first-child {
    width: 100%;
  }

  .social-links ul {
    justify-content: center;
  }

  .ftr-widget:first-child .ftrwdgt-inr {
    margin: 0 auto 20px;
    text-align: center;
  }

  .ftr-logo {
    width: 150px;
    margin: 0 auto 20px;
  }

  .ftr-widget:last-child {
    width: 47%;
    padding-top: 0;
  }

  .ftr-widget:nth-child(2) {
    width: 53%;
    padding-top: 0;
  }

  .footer-inr {
    padding-bottom: 40px;
  }

  footer {
    padding-top: 50px;
  }

  .pegination {
    margin-top: 40px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    padding: 10px;
    height: 50px;
  }

  .contact-form .row .form-group label {
    margin-bottom: 6px;
  }

  .contact-form .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  textarea {
    padding: 15px;
    height: 100px;
  }

  .frm-btm {
    justify-content: center;
  }

  .capctha {
    width: 300px;
    margin-bottom: 15px;
  }

  .partner-row .partner-col:nth-child(5n - 3) {
    width: 50%;
  }

  .filtre-open {
    display: flex;
  }

  .pt-card {
    min-height: 200px;
  }

  .products-wrp-right,
  .products-filter-wrp {
    width: 100%;
  }

  .contact-inr .sec-head strong {
    font-size: 16px;
  }

  .search-bar input {
    padding-right: 35px;
  }

  .slick-arrow::before {
    background-size: 11px;
  }

  .products-filter-wrp {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    /* overflow: auto; */
    min-height: 100vh;
    z-index: 999999;
    padding: 0;
    margin: 0;
    transition: all ease-in-out 0.3s;
  }

  .products-filter-wrp.opened {
    left: 0;
  }

  .products-filter-wrp .overlay-fl {
    position: absolute;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s 0.3s;
  }

  .products-filter-wrp.opened .overlay-fl {
    opacity: 1;
  }

  .filters-wrp {
    border-radius: 0;
    overflow: auto;
    height: 100%;
    padding-top: 26px;
    display: none;
  }

  /* 11.11.2024 css start */
  .product-intro-wraper {
    flex-direction: column;
  }

  .product-right {
    width: 100%;
    text-align: center;
  }

  .product-intro-wraper h1 {
    font-size: 30px;
  }

  /* 11.11.2024 css end */
  /* 14.11.2024 css start */
  .pt-bg img {
    bottom: -10px;
  }

  .ftr-btn-shp {
    bottom: -40px;
  }

  /* 14.11.2024 css end */
  /* CSS Modification 27.11.24 */
  #rd-share-modal-cont h1 {
    font-size: 20px;
  }

  /* CSS Modification 27.11.24 */
  /* CSS Modification 28.11.24 */
  .general-container-wrap .woocommerce-notices-wrapper .woocommerce-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.cmn-btn {
    width: 100%;
    margin-top: 15px;
    float: none;
    margin-left: 0;
  }

  /* CSS Modification 28.11.24 */
  /* CSS Modification 29.11.24 */
  .general-container-wrap .summary h1,
  .general-container-wrap .woocommerce .summary .price,
  .general-container-wrap .woocommerce .product .wc-tabs-wrapper h2,
  .general-container-wrap .rd-product-tabs-cont .rd-tab h2,
  .general-container-wrap .rd-product-tabs-cont .product-content__detail-table th h3 {
    font-size: 22px;
  }

  .general-container-wrap .checkout .select2-container .select2-selection--single {
    height: 50px !important;
  }

  .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
  }

  .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #1c1540;
  }

  .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
  }

  /* CSS Modification 29.11.24 */
  /* Sm 11_12_24 */
  body.single-product .general-container-wrap {
    padding-top: 50px;
  }

  /* SM 11_12_24 */

  /* 12.12.24 Cssv Start */
  .contact-form .wpforms-field-container textarea {
    height: 100px !important;
  }

  .contact-form .wpforms-field-container input[type="text"],
  .contact-form .wpforms-field-container input[type="tel"],
  .contact-form .wpforms-field-container input[type="password"],
  .contact-form .wpforms-field-container input[type="email"] {
    height: 50px !important;
  }

  .contact-form .wpforms-field-container .wpforms-field {
    padding: 10px !important;
  }

  .contact-form .wpforms-field-container {
    margin: -10px;
  }

  /* 12.12.24 Cssv End */
  /* 12.12.24 Css Start */
  .payment-wpr h2 {
    font-size: 32px;
  }

  .payment-wpr h3 {
    font-size: 30px;
  }

  .payment-wpr h4 {
    font-size: 26px;
  }

  .payment-wpr h5 {
    font-size: 22px;
  }

  .payment-wpr h6 {
    font-size: 18px;
  }

  /* SM 13_12_24 */

  .woocommerce-account .woocommerce-MyAccount-content table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-image {
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-content table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-image img {
    max-width: 100px !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-image::before {
    margin-bottom: 10px;
  }

  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    border-bottom: 1px solid #000;
  }

  .woocommerce table.shop_table_responsive tr:last-child,
  .woocommerce-page table.shop_table_responsive tr:last-child {
    border-bottom: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 30px;
  }

  .woocommerce-account .general-container-wrap {
    padding: 30px 0 0;
  }

  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    width: 100%;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 10px 0;
  }

  .select2-container--default .select2-selection--single {
    height: 50px !important;
    padding: 0 10px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
    right: 11px;
  }

  .woocommerce-orders-table__cell.woocommerce-orders-table__cell-notification-actions .cmn-btn:last-child {
    margin: 0 0 0 7px;
  }

  .woocommerce-PaymentMethod.woocommerce-PaymentMethod--actions.payment-method-actions .button.delete.cmn-btn,
  .woocommerce-orders-table__cell.woocommerce-orders-table__cell-notification-actions .cmn-btn {
    font-size: 12px;
    padding: 11px 12px;
  }

  .custom-cart-modal.left .modal-dialog,
  .custom-cart-modal.right .modal-dialog {
    width: 320px;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name img {
    max-width: 100px !important;
    margin: 0 0 15px;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name ul {
    max-width: unset;
    margin: 10px 0 0;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-total.product-total {
    width: 230px;
  }

  /* SM 13_12_24 end */
  /* SM 16_12_24 */
  .woocommerce-account .woocommerce-MyAccount-navigation {
    float: unset;
    width: 100% !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    float: unset;
    width: 100%;
  }

  .push-top.text-center {
    margin-top: 15px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation li {
    padding: 0;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-selection__arrow {
    top: 11px;
  }

  .woocommerce-account .woocommerce-MyAccount-content h2 {
    font-size: 20px;
  }

  .woocommerce-account .woocommerce-MyAccount-content table {
    margin-bottom: 15px !important;
  }

  #add_payment_method .wc-stripe-elements-field {
    height: 50px;
    padding: 15px 20px;
  }

  /* wishlist table mobile */

  .shop_table li .yith-wcwl-wishlistexistsbrowse {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    padding: 5px;
  }

  .shop_table li .yith-wcwl-wishlistexistsbrowse span {
    font-size: 0px;
  }

  .shop_table li .yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon {
    margin-right: 0;
    color: #ffb040;
    font-size: 16px;
  }

  .shop_table li .yith-wcwl-wishlistexistsbrowse a {
    font-size: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
  }

  .add-links.no-effect.clearfix {
    display: flex;
    flex-wrap: wrap;
  }

  .wishlist_table .product-add-to-cart a.button {
    padding: 9px 25px !important;
  }

  .wishlist_table .product-add-to-cart a.button {
    margin: 0 !important;
  }

  .add-links.no-effect.clearfix .yith-wcwl-add-to-wishlist {
    margin-top: 0;
  }

  .shop_table li .yith-wcwl-wishlistexistsbrowse {
    margin-left: 15px;
  }

  .product-remove .remove_from_wishlist {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #1c1540;
    transition: all 0.3s ease-in-out;
    border-radius: 100px;
  }

  .product-remove .remove_from_wishlist i {
    color: #fff;
  }

  .additional-info-wrapper .product-add-to-cart {
    width: 70%;
    float: left;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove {
    width: 30%;
    float: left;
  }

  .wishlist_table.mobile li {
    background-color: #e9e9e9;
    padding: 10px 10px;
    display: inline-block;
    width: 100%;
  }

  /* wishlist end */
  /* SM 16_12_24 end */
  /* SM 17_12_24 */

  .prdcct_col_rght .entry-summary {
    margin-bottom: 2em;
  }

  .rtwpvg-product.product {
    padding-top: 0;
  }

  .woocommerce-cart .shop_table.shop_table_responsive tbody tr {
    border: none;
  }

  .woocommerce .woocommerce-cart-form input.qty {
    width: 52px;
    padding: 5px 0;
  }

  .woocommerce table.shop_table_responsive tr td.product-quantity::before,
  .woocommerce-page table.shop_table_responsive tr td.product-quantity::before {
    padding-top: 0;
  }

  .woocommerce-checkout .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 14px 0;
    line-height: normal !important;
  }

  .woocommerce-checkout .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto;
  }

  /* SM 17_12_24 end */

  .woocommerce-checkout .checkout.woocommerce-checkout {
    padding: 0 0;
  }

  .woocommerce-checkout .checkout.woocommerce-checkout::before {
    display: none;
  }

  .woocommerce-checkout #customer_details.col2-set {
    width: 100%;
    padding: 30px 20px !important;
    background-color: #dbdbdb;
  }

  .woocommerce-checkout .woocommerce-checkout-review-order {
    width: 100% !important;
    padding: 0 20px 30px !important;
  }

  .woocommerce-checkout h3#order_review_heading {
    width: 100%;
    padding: 20px 0 0 20px;
  }

  /* support starts 18.12.2024  */
  .product-sec-custom-gap {
    padding-top: 40px;
  }

  /* support ends 18.12.2024  */

  /* 03-01-2025 New Shop Page "Quick View" Popup Design Start */
  .acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec {
    padding: 20px 0 0 !important;
  }

  .acoqvw_inner .acoqvw_contentSec .cart .acoqvw_view_details_button {
    position: static;
    display: block;
    margin: 20px auto 0;
  }

  #acoqvw_quickview_modal_window .acoqvw_inner {
    padding: 20px;
    height: auto;
  }

  .wc-deposits-wrapper .wc-deposits-payment-plans li.wc-deposits-payment-plan input {
    margin-right: 0;
  }

  .acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .cart .quantity .qty {
    padding-left: 9px;
  }

  .acoqvw_quickview_container .wc-deposits-wrapper .wc-deposits-option li {
    padding: 10px;
  }

  .wc-deposits-wrapper .wc-deposits-payment-plans li.wc-deposits-payment-plan label {
    line-height: normal;
  }

  /* 03-01-2025 New Shop Page "Quick View" Popup Design End */

  /* SMv 10.01.25 Start */
  .woocommerce-checkout #customer_details.col2-set {
    width: 100%;
    padding: 30px 20px !important;
    background-color: #fafafa;
  }

  .woocommerce-checkout .checkout.woocommerce-checkout::before {
    background-color: #f5f5f5;
  }

  .woocommerce-checkout .checkout.woocommerce-checkout {
    background-color: #fafafa;
  }

  /* SMv 10.01.25 End */

  /* support starts 15.01.2025  */
  .payment-img-outer {
    justify-content: center;
  }

  /* support ends 15.01.2025  */
  /*support pp.c 16/1/2025*/
  body.home .hero-slider .slick-slide img.dsktop-bnrimg {
    display: none;
  }

  body.home .hero-slider .slick-slide img.mb-bnrimg {
    display: block;
  }

  body.home .hero-slider .hero-item-inr {
    height: 100vh;
  }

  .woocommerce-checkout .woocommerce-shipping-fields {
    margin-bottom: 0;
  }

  .woocommerce-checkout .woocommerce-billing-fields h3,
  .woocommerce-checkout h3#order_review_heading {
    font-size: 20px;
  }

  .woocommerce-checkout h3#order_review_heading {
    padding: 0 0 0 10px;
  }

  .woocommerce-checkout form .shop_table .pr_img {
    width: auto;
  }

  .woocommerce-checkout .chkout-subtotaltble td {
    text-align: right;
  }

  .woocommerce-checkout form table tbody td.product-total,
  .woocommerce-checkout form table tfoot .cart-subtotal td,
  .woocommerce-checkout form table tfoot .order-total td {
    text-align: right;
  }

  .woocommerce-checkout-review-order-table td {
    padding: 11px;
  }

  .woocommerce-checkout .chkout-subtotaltble .order-total th,
  .woocommerce-checkout .chkout-subtotaltble .order-total h4,
  .woocommerce-checkout .chkout-subtotaltble .order-total .amount {
    font-size: 17px;
  }

  .woocommerce-checkout .woocommerce-checkout-review-order {
    padding: 0 !important;
  }

  .woocommerce-checkout .general-container-wrap .woocommerce .cart_item .product-name .variation {
    border-top: none;
  }

  .woocommerce-checkout form .woocommerce-shipping-fields {
    margin-bottom: 0 !important;
  }

  .woocommerce-checkout .general-container-wrap .woocommerce .woocommerce-checkout-review-order th,
  .woocommerce-checkout .general-container-wrap .woocommerce .woocommerce-checkout-review-order td,
  .woocommerce-checkout .general-container-wrap .woocommerce .woocommerce-checkout-review-order tr {
    display: revert;
  }

  /*support pp.c 16/1/2025*/

  .yith-wcwl-wishlistexistsbrowse .feedback {
    margin: 10px 0;
  }

  .add-links.no-effect.clearfix .yith-wcwl-add-to-wishlist {
    margin-top: 10px;
  }

  /* sg-28-01-2025 */
  .wishlist_table.mobile li .additional-info-wrapper .product-remove {
    width: 100%;
    float: initial;
  }

  /* sg-28-01-2025 */

  /* SM-29-01-25 */
  .products-filter-wrp {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: initial;
    z-index: initial;
  }

  /* 30/1/25 work start */
  .products-filter-wrp .filtre-open,
  .filtre-open .filter-close {
    /* display: none; */
    display: block;
  }

  /* 30/1/25 work start */

  /* 30-1-25 Css Start */
  .woocommerce-checkout #customer_details.col2-set,
  .woocommerce-checkout .checkout.woocommerce-checkout {
    background-color: transparent;
  }

  /* 30-1-25 Css end */

  /* SM-29-01-25 */

  /* 3-2-25 work start */
  .products-filter-wrp {
    padding: 12px;
  }

  .filtre-open {
    margin-bottom: 15px;
    border-radius: 0px;
    text-align: center;
    display: flex !important;
    align-items: center;
    background: #1c1540;
    color: #fff;
  }

  .filtre-open .filter-close {
    display: none;
  }

  .prod-show-hide-fltr-txt {
    padding-right: 5px;
  }

  /* 3-2-25 work end */

  /* 07-02-25 Suppport Css Start */
  body.woocommerce-order-received .woocommerce-table,
  body.woocommerce-order-received .woocommerce-table tbody {
    display: block;
  }

  body.woocommerce-order-received .woocommerce-order-received table tr {
    height: auto !important;
  }

  body.woocommerce-order-received .woocommerce-table tbody tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto !important;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name a {
    max-width: 100%;
    margin-right: 0;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-total.product-total {
    width: 100% !important;
    text-align: left;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name {
    gap: 10px;
  }

  body.woocommerce-order-received .woocommerce-table tbody .woocommerce-table__line-item {
    padding: 20px 0 15px;
  }

  body.woocommerce-order-received .woocommerce-table tbody .woocommerce-table__line-item td {
    padding: 0 15px;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name ul {
    margin-top: 0 !important;
  }

  body.woocommerce-order-received .woocommerce-table--order-details tfoot tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 14px 15px 5px;
  }

  body.woocommerce-order-received .woocommerce-table tfoot th {
    padding: 0;
  }

  body.woocommerce-order-received .woocommerce-table tfoot tr td {
    width: 100%;
    padding: 0;
  }

  body.woocommerce-order-received table tfoot {
    display: block;
    padding-bottom: 20px;
  }

  body.woocommerce-order-received .woocommerce-table tfoot th h4 {
    padding-bottom: 8px;
  }

  /* 07-02-25 Suppport Css End */

  /* 19/2/25 work start */
  .prime-section-tab-sec {
    margin-top: 30px;
  }

  /* 19/2/25 work end */
  /* 27-02-2025 M.M Css Start */
  .woocommerce-cart .woocommerce form .form-row .input-text,
  .woocommerce-cart .woocommerce form .form-row select,
  .woocommerce-account .woocommerce form .form-row .input-text,
  .woocommerce-account .woocommerce form .form-row select {
    height: 50px;
  }

  /* 27-02-2025 M.M Css End */
  /*support pp.c 28/2/2025*/
  .woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message .cmn-btn {
    margin-bottom: 15px;
  }

  body.woocommerce-cart .general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn {
    width: 55%;
  }

  /*support pp.c 28/2/2025*/

  .sngle_prdct_row .prdcct_col_rght .woocommerce-variation-availability .button.wc_bis_send_form {
    padding: 14px 19px 14px;
    min-width: 160px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {

  /* Checkout order review cart-item: stack the image ABOVE the title
     inside the product-name column. Keep the price column on the right
     as-is. Both image and title use full width of the product-name td. */

  /* Force table-layout: fixed and explicit column widths so the
     product-name column gets the majority of the row (image + title)
     and the price column is narrower on the right. */
  div#order_review table.woocommerce-checkout-review-order-table {
    table-layout: fixed !important;
    width: 100% !important;
  }
  /* Column widths via <colgroup> — works with table-layout: fixed even
     when the thead uses a single colspan cell. */
  div#order_review table.woocommerce-checkout-review-order-table col.cc-col-product-name {
    width: 70% !important;
  }
  div#order_review table.woocommerce-checkout-review-order-table col.cc-col-product-total {
    width: 30% !important;
  }
  div#order_review table.woocommerce-checkout-review-order-table tr.cart_item td.product-name {
    display: table-cell !important;
    vertical-align: top !important;
  }
  div#order_review table.woocommerce-checkout-review-order-table tr.cart_item td.product-total {
    display: table-cell !important;
    vertical-align: top !important;
    text-align: right !important;
    word-break: break-word !important;
  }
  div#order_review table.woocommerce-checkout-review-order-table tr.cart_item td.product-total small {
    display: inline-block !important;
    line-height: 1.3 !important;
    font-size: 12px !important;
  }

  div#order_review table.woocommerce-checkout-review-order-table tr.cart_item td.product-name .img_content_wrap {
    display: block !important;
    width: 100% !important;
  }
  div#order_review table.woocommerce-checkout-review-order-table tr.cart_item td.product-name .pr_img_cls {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 10px 0 !important;
  }
  div#order_review table.woocommerce-checkout-review-order-table tr.cart_item td.product-name .pr_img_cls img {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }
  div#order_review table.woocommerce-checkout-review-order-table tr.cart_item td.product-name .content_part_cart_item_data {
    display: block !important;
    width: 100% !important;
    padding-left: 0 !important;
    word-break: break-word !important;
  }


  .slick-arrow,
  .brands-slider .slick-arrow,
  .new-to-order-section .slick-arrow,
  .shipping-slider .slick-arrow {
    top: calc(100% + 15px);
  }

  .slick-arrow,
  .brands-slider .slick-arrow {
    transform: translateY(0);
  }

  .slick-prev,
  .shipping-slider .slick-prev {
    left: calc(50% - 40px);
    transform: translateY(0) rotate(180deg);
  }

  .slick-next,
  .shipping-slider .slick-next {
    right: calc(50% - 40px);
  }

  .brands-slider .slick-arrow.slick-prev {
    transform: rotate(180deg) translateY(0%);
    left: calc(50% - 25px);
  }

  .brands-slider .slick-arrow.slick-next {
    right: calc(50% - 25px);
  }

  .cmn-btn-wrp,
  .nto-inr .cmn-btn-wrp {
    margin-top: 60px;
  }

  .nto-slider .slick-list {
    overflow: hidden;
  }

  .cmnty-over-content p {
    bottom: 45px;
    padding: 12px;
  }

  .ftr-widget:last-child {
    width: 35%;
  }

  .ftr-widget:nth-child(2) {
    width: 65%;
  }

  .ftrwdgt-title {
    margin-bottom: 15px;
  }

  .copyright {
    padding: 15px 0;
  }

  .sp-slide {
    padding: 0 12px;
  }

  .shipping-slider .slick-list {
    margin: 0;
  }

  .partner-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .partner-sec:not(.slick-arr-wt) .cmn-btn-wrp {
    margin-top: 30px;
  }

  .contact-inr .sec-head h2 {
    margin-bottom: 10px;
  }

  .contact-inr .sec-head {
    margin-bottom: 30px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    border-radius: 7px;
    height: 45px;
  }

  textarea {
    border-radius: 7px;
  }

  .partner-row .partner-col:nth-child(5n - 3) {
    width: 100%;
  }

  .wscc-col {
    width: 50%;
  }

  .wscc-img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .wscc-content h3 {
    font-size: 15px;
  }

  .applied-filters {
    width: 100%;
    margin-bottom: 12px;
  }

  input[type="submit"] {
    padding: 10px 20px;
  }

  .cmn-btn {
    padding: 6px 12px;
    font-size: 13px;
    box-shadow: 2px 2px 0;
    min-width: 120px;
  }

  .cmn-btn img {
    margin-left: 5px;
  }

  .brands-slider .slick-arrow {
    width: 10px;
    height: 15px;
    padding: 0;
  }

  .brands-slider .slick-arrow::before {
    background-size: 0;
  }

  .nto-btns ul li {
    margin-right: 5px;
  }

  .nto-btns {
    margin-left: 0;
    margin-top: 5px;
    padding-left: 0;
    width: 100%;
  }

  .float-tags .tag {
    border-radius: 3px;
    padding: 4px 6px 2px;
    min-width: 50px;
    font-size: 10px;
  }

  .tag-wrp {
    padding: 5px;
    width: 41px;
    height: 28px;
  }

  .tag-wrp .tag-txt {
    font-size: 10px;
  }

  .sp-slide-content .desc {
    margin-bottom: 8px;
  }

  .sp-slide-content .price {
    font-size: 13px;
  }

  .cmnty-slide {
    padding: 0 6px;
  }

  .cmnty-slider .slick-list {
    margin: 0;
  }

  .ptcd-btn a span {
    font-size: 14px;
  }

  .filter-sort {
    padding-left: 0;
  }

  .products-wrp-right .row>* {
    width: 50%;
  }

  .filtre-open {
    min-width: 40px;
    height: 40px;
  }

  .filter-sort .form-group select {
    height: 40px;
    padding: 5px 25px 5px 5px;
  }

  .filter-sort .form-group select {
    background-position: calc(100% - 10px) center;
  }

  /* CSS Modification 28.11.24 */
  .general-container-wrap .woocommerce button.cmn-btn,
  .general-container-wrap .woocommerce button.cmn-btn[disabled],
  .general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn,
  .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.cmn-btn {
    padding: 6px 12px;
    font-size: 13px;
    box-shadow: 2px 2px 0;
    min-width: 120px;
    min-height: 33px;
  }

  .general-container-wrap .woocommerce table.cart td.actions .coupon input[type="text"].input-text {
    height: 33px;
    padding: 0 12px;
  }

  .general-container-wrap .woocommerce .cart_item .variation-PaymentPlan select {
    height: 38px;
    background-size: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  /* CSS Modification 28.11.24 */
  /* CSS Modification 29.11.24 */
  .general-container-wrap .summary .quantity input {
    height: 33px;
    font-size: 15px;
  }

  .general-container-wrap .new-to-order-section.single_pr_related_products .slick-arrow {
    top: 100%;
  }

  .general-container-wrap .new-to-order-section.single_pr_related_products .slick-arrow.slick-prev {
    left: calc(50% - 40px);
  }

  .general-container-wrap .new-to-order-section.single_pr_related_products .slick-arrow.slick-next {
    right: calc(50% - 40px);
  }

  .general-container-wrap .checkout .select2-container .select2-selection--single {
    height: 45px !important;
  }

  .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
  }

  .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px;
  }

  .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-size: 10px;
  }

  /* CSS Modification 29.11.24 */

  /* SM 6_12_24 */
  .products-inr .woocommerce {
    width: 100%;
  }

  .woocommerce .woocommerce-result-count {
    font-size: 14px;
  }

  .woocommerce-ordering label {
    margin-right: 10px;
  }

  .woocommerce-ordering {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  /* SM 6_12_24 end */

  /* 12.12.24 Cssv Start */
  .contact-form .wpforms-field-container input[type="text"],
  .contact-form .wpforms-field-container input[type="tel"],
  .contact-form .wpforms-field-container input[type="password"],
  .contact-form .wpforms-field-container input[type="email"] {
    height: 45px !important;
  }

  .contact-form .wpforms-field-container .wpforms-field {
    width: 100%;
  }

  .error-wrap .cmn-btn-wrp {
    margin-top: 30px;
  }

  /* 12.12.24 Cssv End */

  /* SM 13_12_24 */

  .woocommerce-account .woocommerce-table__product-name.product-name a {
    font-size: 16px;
  }

  .woocommerce-table__product-total.product-total .woocommerce-Price-amount.amount small,
  .woocommerce-table__product-total.product-total .woocommerce-Price-amount.amount bdi,
  .woocommerce-table__product-total.product-total .woocommerce-Price-amount.amount span {
    font-size: 16px;
  }

  .woocommerce-account .woocommerce-table__product-total.product-total {
    padding-top: 10px;
  }

  .woocommerce-account .entry-header {
    padding-bottom: 0 !important;
  }

  .woocommerce-account .general-container-wrap {
    padding: 0;
  }

  .select2-container--default .select2-selection--single {
    height: 45px !important;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 7px 0;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 9px;
  }

  .woocommerce-account .woocommerce-MyAccount-content label {
    margin-bottom: 6px;
  }

  .shop_table tr.woocommerce-table__line-item.order_item {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody,
  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark {
    display: block;
  }

  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-total.product-total,
  .woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details.text-v-dark tbody tr td.woocommerce-table__product-name.product-name {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* SM 13_12_24 end */
  .woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button.cmn-btn,
  .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order {
    height: 45px !important;
  }

  .additional-info-wrapper .product-add-to-cart {
    width: 66%;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove {
    width: 34%;
  }

  .add-links.no-effect.clearfix {
    align-items: center;
  }

  .shop_table li .yith-wcwl-wishlistexistsbrowse {
    margin-left: 9px;
  }

  .woocommerce .woocommerce-result-count,
  .sidebar-overlay.active,
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    width: 100%;
  }

  .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce nav.woocommerce-pagination {
    width: 100%;
  }

  .woocommerce ul.products {
    min-width: 100%;
  }

  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    width: 100%;
    margin-bottom: 0;
  }

  /* 23-12-2024 */
  .mfp-wrap #wqv-quick-view-content.sp-wqv-content {
    padding: 20px 15px 20px 15px;
    width: 100%;
  }

  .custm-modal-prod-details-btn-wrp {
    margin-top: 0;
  }

  .mfp-wrap .wqv-product-info .single_add_to_cart_button {
    min-width: auto;
  }

  .mfp-wrap .wc-deposits-wrapper .wc-deposits-option li {
    padding: 10px 5px;
    font-size: 15px;
  }

  /* support starts 15.01.2025  */
  .payment-img-outer {
    margin: 0 -6px 20px;
  }

  .payment-img-innr {
    padding: 0 6px;
  }

  /* support ends 15.01.2025  */
  /*support pp.c 16/1/2025*/
  body.home .hero-slider .hero-item-inr {
    height: 80vh;
  }

  /*support pp.c 16/1/2025*/

  /* sg-20-01-2025 */
  .page-template-faq .inr-banner {
    background-position: right 15% center;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove {
    width: 100%;
  }

  /* sg-20-01-2025 */

  /* SM-29-01-25 */
  .prducts-inr-row .woocommerce-notices-wrapper {
    display: none;
  }

  .prducts-inr-row .woocommerce-result-count,
  .prducts-inr-row .filterOpener {
    width: 49%;
  }

  /* SM-29-01-25 */
  /* 4/2/25 work start */
  .single-product .prdcct_col_rght .rd-share-friend-btn {
    font-size: 13px;
  }

  /* 4/2/25 work end */

  /* 11-02-2025 */
  .home .brands-sec .cmn-btn-wrp {
    margin-top: 60px;
  }

  /* 11-02-2025 */
  /* 27-02-2025 M.M Css Start */
  .woocommerce-cart .woocommerce form .form-row .input-text,
  .woocommerce-cart .woocommerce form .form-row select,
  .woocommerce-account .woocommerce form .form-row .input-text,
  .woocommerce-account .woocommerce form .form-row select {
    height: 45px;
  }

  /* 27-02-2025 M.M Css End */

  /*support pp.c 28/2/2025*/
  .archive .nto-btns .yith-wcwl-add-to-wishlist .yith-wcwl-icon-svg {
    width: 20px;
  }

  .archive .nto-btns ul li img {
    max-width: 20px;
  }

  body.woocommerce-cart .general-container-wrap .woocommerce .cart_totals .button.checkout-button.cmn-btn {
    width: 100%;
  }

  /*support pp.c 28/2/2025*/

  /* 03-03-2025 start KM */
  .yith-wcwl-add-to-wishlist svg.yith-wcwl-icon-svg,
  .yith-wcwl-add-to-wishlist .add_to_wishlist img {
    width: 22px !important;
    margin-top: 1px;
    position: relative;
    top: 1px;
  }

  .nto-btns ul li {
    margin-right: 10px;
  }

  .archive .nto-btns ul li img {
    max-width: 16px;
  }

  .new-to-order-section .nto-slider .nto-item-inr .nto-btm .nto-btns {
    width: auto !important;
  }

  /* 03-03-2025 end KM */

  /* pro 4/3/25 start */
  .single-product .rtwpvg-images.rtwpvg-has-product-thumbnail .rtwpvg-wrapper .rtwpvg-thumbnail-wrapper .rtwpvg-thumbnail-slider:not(.slick-initialized).rtwpvg-thumbnail-sm-columns-2 {
    grid-template-columns: repeat(4, 1fr);
  }

  /* pro 4/3/25 end */
}

@media (max-width: 479px) {

  h3,
  .h3-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .navbar-right-part ul li a img {
    max-width: 15px;
  }

  .navbar-right-part ul li a {
    width: 30px;
    height: 30px;
  }

  .navbar-brand {
    width: 100px;
  }

  .hero-inr {
    max-width: 100%;
    text-align: center;
  }

  h1,
  .h1-title {
    font-size: 30px;
    margin: 0 auto 10px;
  }

  .brands-sec {
    padding: 35px 0;
  }

  .cmn-gap2 {
    padding: 40px 0;
  }

  .sec-head {
    margin-bottom: 25px;
  }

  .wscc-sec .sec-head {
    margin-bottom: 15px;
  }

  .cmn-gap {
    padding: 40px 0;
  }

  h2,
  .h2-title {
    font-size: 26px;
  }

  .cmnty-over-content img {
    top: 50%;
  }

  .ftr-widget:nth-child(2) {
    margin-bottom: 20px;
  }

  .ftr-widget:nth-child(2),
  .ftr-widget:last-child {
    width: 100%;
  }

  .footer-inr {
    padding-bottom: 30px;
  }

  .copyright p,
  .copyright a {
    font-size: 14px;
  }

  .social-links ul li a {
    width: 35px;
    height: 35px;
  }

  footer {
    padding-top: 40px;
  }

  .applied-filters ul li {
    padding: 4px 6px;
  }

  .applied-filters ul li .cross-icon {
    margin-right: 8px;
  }

  .filter-sort .form-group select {
    padding: 5px 25px 5px 5px;
    flex-grow: 1;
    width: auto;
    height: 35px;
  }

  .filter-sort .form-group select {
    background-position: calc(100% - 10px) center;
    width: 100%;
  }

  .filter-sort .form-group label {
    margin-bottom: 5px;
    margin-right: 0;
    width: 100%;
  }

  .filter-sort {
    width: 100%;
  }

  .filters-form-wrp {
    padding-top: 0px;
  }

  .filtrs-wrp-inr {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  input[type="submit"] {
    height: 40px;
  }

  .search-bar {
    right: -100%;
  }

  .applied-filters ul li {
    font-size: 12px;
  }

  .filtre-open {
    min-width: 40px;
    height: 35px;
  }

  .filter-sort {
    align-items: flex-end;
    margin: -6px 0;
  }

  .filter-sort>*:first-child {
    padding-left: 0;
  }

  .filter-sort>*:last-child {
    padding-right: 0;
  }

  .fltr-sort-form-wrp {
    width: 230px;
    flex-shrink: initial;
    flex-grow: initial;
  }

  .products-wrp-right .row {
    --bs-gutter-x: 12px;
  }

  /* 11.11.2024 css strat */
  .wscc-img img {
    max-height: 28px;
  }

  .product-left {
    width: 100%;
  }

  .product-intro-wraper h1 {
    font-size: 26px;
  }

  .product-intro-outer {
    padding: 20px 12px;
  }

  /* 11.11.2024 css end */

  /* 14.11.2024 css start */
  .pt-bg img {
    bottom: -5px;
  }

  /* 14.11.2024 css end */
  /* CSS Modification 28.11.24 */
  .general-container-wrap .woocommerce .cart_item .variation-PaymentPlan select {
    max-width: unset;
  }

  .general-container-wrap .woocommerce table.cart td.actions .coupon input[type="text"].input-text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .general-container-wrap .woocommerce table.cart td.actions .coupon button.cmn-btn {
    width: 100%;
  }

  .general-container-wrap .woocommerce table.cart td.actions .coupon {
    padding-bottom: 15px;
  }

  /* CSS Modification 28.11.24 */
  /* CSS Modification 29.11.24 */
  .general-container-wrap .summary h1,
  .general-container-wrap .woocommerce .summary .price,
  .general-container-wrap .woocommerce .product .wc-tabs-wrapper h2,
  .general-container-wrap .rd-product-tabs-cont .rd-tab h2,
  .general-container-wrap .rd-product-tabs-cont .product-content__detail-table th h3 {
    font-size: 20px;
  }

  .general-container-wrap .summary .yith-wcwl-add-to-wishlist,
  .general-container-wrap .summary .compare.cmn-btn,
  .general-container-wrap .summary .rd-share-friend-btn {
    font-size: 15px;
  }

  .general-container-wrap .summary h1 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .general-container-wrap .woocommerce .product .summary .variations select {
    height: 40px;
    font-size: 13px;
    background-size: 10px;
  }

  .general-container-wrap .woocommerce .summary .variations th,
  .general-container-wrap .rd-product-tabs-cont .product-content__detail-table th,
  .general-container-wrap .rd-product-tabs-cont .product-content__detail-table td,
  .general-container-wrap .woocommerce .summary .variations td {
    display: block;
  }

  .general-container-wrap .woocommerce .summary .cart .reset_variations {
    padding: 8px 15px;
    font-size: 13px;
  }

  .general-container-wrap .rd-product-tabs-cont .product-content__detail-table td {
    padding-left: 0;
  }

  .general-container-wrap .rd-product-tabs-cont .product-content__detail-table br {
    display: none;
  }

  .general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::before {
    width: 16px;
    height: 16px;
  }

  .general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method {
    padding-left: 26px;
  }

  .general-container-wrap .checkout .woocommerce-checkout-review-order .wc_payment_methods .wc_payment_method input[type="radio"]+label::after {
    top: 10px;
    width: 8px;
    height: 8px;
  }

  .woocommerce-page .general-container-wrap form.checkout .form-row-first,
  .woocommerce-page .general-container-wrap form.checkout .form-row-last {
    width: 100%;
  }

  /* CSS Modification 29.11.24 */
  /*  */
  .woocommerce-ordering {
    width: 100%;
  }

  .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce nav.woocommerce-pagination ul li {
    margin-bottom: 10px;
  }

  /* SM 11_12_24 */
  .new-to-order-section .nto-slider .nto-item-inr .nto-btm .nto-btns {
    width: 60px;
    margin-top: 0;
  }

  .new-to-order-section .nto-slider .nto-item-inr .nto-btm p {
    width: calc(100% - 60px);
    padding-right: 5px;
  }

  .nto-btns ul li {
    display: flex;
    align-items: center;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .new-to-order-section .nto-slider .nto-item-inr .nto-btm p {
    line-height: 1.1;
  }

  .new-to-order-section .nto-slider .nto-item-inr .nto-btm {
    align-items: center;
  }

  .prime-section-tab-content-in table.product-content__detail-table tr th {
    padding-bottom: 16px;
  }

  .prime-section-tab-sec dl {
    margin-bottom: 20px;
  }

  /* SM 11_12_24 end */

  /* 12.12.24 Css Start */
  .inr-banner {
    min-height: 250px;
  }

  .payment-wpr h2 {
    font-size: 26px;
  }

  .payment-wpr h3 {
    font-size: 25px;
  }

  .payment-wpr h4 {
    font-size: 24px;
  }

  .payment-wpr li {
    font-size: 16px;
  }

  .wpforms-submit-container {
    text-align: center;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .custom_btn_captcha_wrapper {
    justify-content: center;
  }

  .custom_btn_captcha_wrapper {
    margin-top: 15px !important;
  }

  .woocommerce-account .u-column2.col-2.woocommerce-Address,
  .woocommerce-account .u-column1.col-1.woocommerce-Address {
    padding: 10px;
  }

  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .select2-selection__arrow {
    top: 8px;
  }

  #add_payment_method .wc-stripe-elements-field {
    height: 45px;
    padding: 12px 20px;
  }

  /* 12.12.24 Css end */
  /* SM 17_12_24 */

  .single-product .prdcct_col_rght .quantity input {
    height: 46px;
    width: 46px !important;
  }

  .single-product .prdcct_col_rght .single_add_to_cart_button.cmn-btn {
    padding: 19px 28px 17px;
    min-width: 150px;
    font-size: 14px;
    min-height: 45px;
  }

  .single-product .woocommerce-Tabs-panel h2 {
    font-size: 20px !important;
    margin-bottom: 10px;
  }

  .woocommerce-checkout .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 12px 0;
  }

  .woocommerce-checkout .general-container-wrap .checkout .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 22px;
  }

  .woocommerce ul.products {
    min-width: 100%;
  }

  .woocommerce nav.woocommerce-pagination ul li .page-numbers {
    min-width: 30px;
    height: 30px;
  }

  .woocommerce nav.woocommerce-pagination ul li {
    margin-right: 3px;
  }

  .woocommerce nav.woocommerce-pagination {
    width: 100%;
  }

  .woocommerce .woocommerce-result-count,
  .sidebar-overlay.active,
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    width: 100%;
  }

  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    margin-bottom: 0;
  }

  .hero-item-inr {
    height: 80vh;
  }

  .hero-inr {
    padding: 0 20px;
  }

  .products-wrp-right {
    margin-top: 30px;
  }

  /* SM 17_12_24 end */

  /* SM 19_12_24 */
  .dp-dwn-menu.active {
    top: 40px;
  }

  /* SM 19_12_24 end */

  /* SMv 10.01.25 Start */
  #ship-to-different-address label span {
    text-align: left;
    padding-right: 0;
  }

  #ship-to-different-address {
    display: flex;
  }

  .mailchimp-newsletter label {
    display: flex !important;
  }

  /* SMv 10.01.25 End */

  /* supports starts  15.01.2025  */
  .payment-img-innr {
    padding: 0 6px 10px;
  }

  /* supports ends  15.01.2025  */
  /*support pp.c 16/1/2025*/
  .woocommerce-checkout form .shop_table .pr_img_cls {
    width: 50px;
    height: 50px;
  }

  .woocommerce-checkout .shop_table .content_part_cart_item_data {
    width: calc(100% - 50px);
    padding-left: 10px;
    font-size: 14px;
  }

  .woocommerce-checkout .chkout-subtotaltble {
    font-size: 14px;
  }

  .woocommerce-checkout .general-container-wrap .checkout.woocommerce-checkout .woocommerce-checkout-review-order .place-order p,
  .woocommerce-checkout .form-row label,
  .woocommerce-checkout form .form-row label {
    font-size: 14px;
  }

  .woocommerce-checkout .woocommerce-checkout-payment .place-order br {
    display: none;
  }

  .woocommerce-checkout .general-container-wrap .woocommerce .woocommerce-checkout-review-order th,
  .woocommerce-checkout .general-container-wrap .woocommerce .woocommerce-checkout-review-order td,
  .woocommerce-checkout .general-container-wrap .woocommerce .woocommerce-checkout-review-order tr {
    display: block;
  }

  .woocommerce-checkout .chkout-subtotaltble td {
    text-align: left;
  }

  .woocommerce-checkout form table tbody td.product-total,
  .woocommerce-checkout form table tfoot .cart-subtotal td,
  .woocommerce-checkout form table tfoot .order-total td {
    text-align: left;
  }

  /*support pp.c 16/1/2025*/

  /* sg-20-1-2025 */
  .hero-content {
    text-align: center;
  }

  body.home .hero-slider .hero-item-inr {
    text-align: center;
  }

  .product-sec.product-sec-custom-gap {
    padding-top: 0;
  }

  .product-intro-outer {
    margin: 0 auto 10px;
  }

  /* sg-21-01-2025 */
  .woocommerce-cart .general-container-wrap {
    padding: 30px 0;
  }

  .woocommerce-cart .entry-header h1 {
    font-size: 30px;
  }

  .general-container-wrap .woocommerce table.cart td.actions .coupon input[type="text"].input-text,
  .woocommerce-cart .shop_table.shop_table_responsive tbody tr td.product-subtotal,
  .woocommerce-cart .shop_table.shop_table_responsive tbody tr td.product-price,
  .woocommerce-cart .shop_table.shop_table_responsive tbody tr td.product-name a {
    font-size: 14px;
  }

  .woocommerce-cart .entry-content .cart_totals {
    margin-top: 40px;
  }

  .woocommerce-cart .cart_totals h2 {
    font-size: 25px;
  }

  .shipping-calculator-button {
    font-size: 11px;
  }

  table.compare-list .add_to_cart_wrap .add-links-wrap .add-links a {
    padding: 7px 14px 8px;
    min-width: 140px;
    font-size: 14px;
  }

  .woocommerce-account .general-container-wrap {
    padding: 0 0 30px;
  }

  .order-again .button.cmn-btn,
  .woocommerce-MyAccount-content .button.cmn-btn,
  .woocommerce-account .order-again .button.cmn-btn,
  .woocommerce-account .woocommerce-Button.button.btn-v-dark.btn-go-shop.cmn-btn {
    font-size: 13px;
    padding: 11px 13px;
  }

  .woocommerce-account table.account-orders-table .button {
    margin: 0 0 10px 0;
    width: 70%;
  }

  .wishlist_table.mobile li .item-wrapper {
    width: 100%;
  }

  .wishlist_table.mobile li .item-wrapper .item-details {
    padding-left: 13px;
  }

  .product-remove .remove_from_wishlist {
    width: 30px;
    height: 30px;
  }

  .wishlist_table .product-add-to-cart a.button {
    padding: 9px 10px !important;
    min-width: 120px;
  }

  .prime-section-product-video {
    padding-bottom: 40px;
  }

  /* sg-21-01-2025 */

  /* SM-29-01-25 */
  .brands-slider .brand-item .brand-logo a {
    display: block;
  }

  .brands-slider .brand-item .brand-logo img {
    max-width: 120px;
  }

  .page-template-index .brands-sec {
    padding-top: 15px;
  }

  .brands-inr .brands-slider {
    padding: 0 !important;
  }

  .page-template-temp-brand_listing .contact-sec {
    padding-top: 20px;
  }

  .page-template-temp-brand_listing .contact-sec .sec-head .h2-title {
    font-size: 40px;
  }

  .all-brands-outer-wppr .brands-row>* {
    width: 50%;
  }

  .prducts-inr-row .woocommerce-result-count,
  .prducts-inr-row .filterOpener {
    width: 49%;
  }

  .woocommerce-ordering {
    padding-top: 15px !important;
  }

  .single-product div.product {
    padding-top: 20px;
  }

  .rtwpvg-images {
    margin-bottom: 0 !important;
  }

  body.single-product .yith-wcwl-add-to-wishlist {
    margin-top: 0;
  }

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

  .prdcct_col_rght {
    position: relative;
  }

  .prdct-dtls-top-wpr {
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 14px;
  }

  .single-product .prdcct_col_rght .rd-share-friend-btn {
    width: 70%;
    justify-content: right;
  }

  .price .woocommerce-Price-amount.amount {
    margin-top: 0;
  }

  .new-to-order-section .nto-slider .nto-item-inr .nto-btm {
    align-items: flex-start;
    flex-direction: column;
  }

  .woocommerce-account .woocommerce-MyAccount-content table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-image::before {
    display: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-image {
    text-align: center !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content table .woocommerce-orders-table__cell.woocommerce-orders-table__cell-image img {
    max-width: 180px !important;
  }

  .wishlist_table.mobile li .item-wrapper .product-thumbnail {
    width: 100%;
  }

  .wishlist_table.mobile li .item-wrapper .item-details {
    width: 100%;
    padding-left: 0;
    padding-top: 10px;
    padding-right: 15px;
  }

  .wishlist_table.mobile li .item-details h3 {
    line-height: 1.2;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove {
    position: absolute;
    top: 53%;
    right: 10px;
    transform: translateY(-50%);
  }

  .wishlist_table.mobile li {
    position: relative;
  }

  .wishlist_table.mobile .product-add-to-cart .yith-wcwl-add-to-wishlist {
    padding-left: 0;
  }

  .woocommerce-backinstock .woocommerce-orders-table__cell,
  .woocommerce-backinstock .woocommerce table.shop_table_responsive tr td,
  .woocommerce-backinstock .woocommerce-page table.shop_table_responsive tr td {
    position: relative;
    padding-top: 30px !important;
    text-align: left !important;
    padding-left: 10px !important;
  }

  .woocommerce-backinstock .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-backinstock .woocommerce-page table.shop_table_responsive tr td::before {
    position: absolute;
    left: 10px;
    top: 5px;
  }

  .woocommerce-orders-table__cell.woocommerce-orders-table__cell-notification-actions .cmn-btn:last-child {
    margin: 0;
  }

  .nto-slider .nto-item-inr .nto-btm .nto-btns ul {
    justify-content: flex-start;
  }

  .prdcct_col_rght .summary.entry-summary .cart {
    padding-bottom: 15px;
  }

  /* 3/2/25 work start */
  .custom-menu-container-mobile-inner {
    max-width: 280px;
  }

  .cmn-tabs>* {
    font-size: 14px;
  }

  .mbl-nav li a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cust-menu-close-btn {
    left: 290px;
  }

  /* 3/2/25 work end */

  /* 4/2/25 work start */
  .single-product .prdcct_col_rght .custom-social-share-div-wrpr {
    display: block;
    margin: 10px 0px 0px;
  }

  .single-product .prdcct_col_rght .rd-share-friend-btn {
    width: auto;
    margin-left: 15px;
  }

  .single-product .heateor_sss_sharing_ul {
    justify-content: flex-start;
  }

  .single-product .prdcct_col_rght .product_title.entry-title {
    max-width: 100%;
    font-size: 28px;
  }

  /* 4/2/25 work end */

  /* 07-02-25 Suppport Css End */

  body.woocommerce-order-received .woocommerce-table thead {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 12px;
  }

  body.woocommerce-order-received .woocommerce-table thead tr {
    height: auto !important;
  }

  body.woocommerce-order-received .woocommerce-thankyou-order-received {
    font-size: 18px;
    line-height: 1.1;
  }

  body.woocommerce-order-received .woocommerce ul.order_details li {
    margin-bottom: 7px !important;
    font-size: 16px;
  }

  body.woocommerce-order-received .woocommerce-customer-details {
    padding-top: 0 !important;
  }

  /* 07-02-25 Suppport Css End */

  /*support pp.c 10/2/2025*/
  .archive .product-intro-outer {
    margin-bottom: 15px;
  }

  /*support pp.c 10/2/2025*/
  /* 11-02-2025 */
  .home .brands-sec .cmn-btn-wrp {
    margin-top: 50px;
  }

  /* 11-02-2025 */
  /* 19/2/25 work start */
  .woocommerce-checkout .box-content a[data-bs-toggle] {
    padding: 8px 18px;
    font-size: 12px;
  }

  /* 19/2/25 work end */
  /* 27-02-2025 M.M Css Start */
  .sngle_prdct_row .prdcct_col_rght form.cart {
    margin-bottom: 10px;
  }

  /* 27-02-2025 M.M Css End */
  /*support pp.c 28/2/2025*/

  .general-container-wrap .woocommerce .woocommerce-checkout-review-order .chkout-subtotaltble tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .woocommerce-checkout .chkout-subtotaltble th {
    width: 42%;
  }

  .woocommerce-checkout .chkout-subtotaltble td {
    width: 58%;
    padding-left: 5px;
  }

  /*support pp.c 28/2/2025*/

  /* 03-03-2025 start KM */
  .new-to-order-section .nto-slider .nto-item-inr .nto-btm .nto-btns {
    margin-top: 14px !important;
  }

  .nto-btns ul li:nth-child(2) img {
    width: 16px;
    position: relative;
  }

  .nto-btns ul li svg {
    width: 20px !important;
  }

  /* 03-03-2025 end KM */

  /* 07-03-2025 Start SM */
  .custom-cart-modal .cart-item .modal-cart-deposit-select {
    padding-right: 35px;
  }

  /* 07-03-2025 End SM */


  /* 27-05-25 S.Mv Css Start */
  .single-product .prdcct_col_rght .product_title.entry-title {
    max-width: 100%;
  }

  /* 27-05-25 S.Mv Css End */


}

@media only screen and (max-width: 375px) {
  .fltr-sort-form-wrp {
    width: 200px;
  }
}

.sub-menu-toggle,
body.single-product .rd-product-tabs-cont,
body.single-product .single-pr-status .onsale {
  display: none;
  visibility: hidden;
}

@media (max-width: 359px) {
  .brands-slider .brand-item .brand-logo img {
    max-width: 100%;
  }
}

/* =============================================================================
   COMIC CONCEPTS 2026 — MIGRATION OVERRIDES
   Match old theme design on Kadence child theme.
   ============================================================================= */

/* --- CSS Variables (matching old theme) --- */
:root {
  --primary: #ffb040;
  --secondary: #1c1540;
  --white: #fff;
  --black: #000;
  --heading-font: "Archivo", sans-serif;
  --body-font: "Varela Round", sans-serif;
}

/* --- #21 Pagination Styling --- */
.woocommerce nav.woocommerce-pagination ul {
  border: none;
  margin: 0;
  justify-content: flex-start;
}
.woocommerce nav.woocommerce-pagination ul li {
  margin-right: 0;
  border: none;
  margin-left: 0;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers {
  border: 1px solid var(--secondary);
  border-radius: 4px;
  min-width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: all ease-in-out 0.3s;
  color: var(--secondary);
  background: transparent;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
}
.woocommerce nav.woocommerce-pagination {
  text-align: left;
  margin-top: 60px;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li .page-numbers:hover {
  color: #fff !important;
  background: #0c0c0c !important;
  border-color: #0c0c0c !important;
}

/* --- #18 Sort By label --- */
.woocommerce-ordering label {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  margin-right: 5px;
  color: var(--secondary);
}

/* Kadence parent-theme override: remove divider between nav and content */
.woocommerce-account .account-navigation-wrap {
  border-left: none !important;
}

/* --- #44-46 My Account Sidebar Styling (canonical) --- */
.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left;
  width: 100%;
  margin: 0;
  background: var(--secondary);
  border-radius: 10px;
  padding: 15px 0;
  overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  padding: 0;
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  color: var(--white);
  display: block;
  width: 100%;
  padding: 12px 25px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before {
  content: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--primary);
  color: var(--secondary);
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: left;
  width: 67%;
  padding-left: 0;
}
@media (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 20px;
  }
}

/* --- #33-37 Cart Page Styling --- */
.woocommerce-cart .woocommerce-cart-form .shop_table {
  border-collapse: collapse;
  width: 100%;
}
.woocommerce-cart .woocommerce-cart-form .shop_table thead th {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 15px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.woocommerce-cart .woocommerce-cart-form .shop_table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .product-thumbnail img {
  max-width: 100px;
  border-radius: 5px;
}

/* Cart button styling */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce .cart_totals .checkout-button {
  background: var(--primary) !important;
  color: var(--secondary) !important;
  border: 1px solid var(--secondary) !important;
  box-shadow: 3px 3px 0 var(--secondary);
  border-radius: 10px !important;
  padding: 15px 30px !important;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce .cart_totals .checkout-button:hover {
  background: var(--secondary) !important;
  color: var(--primary) !important;
  box-shadow: 0 0 0 var(--secondary);
}
.woocommerce-cart .coupon .button,
.woocommerce-cart .actions .button {
  background: var(--primary);
  color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 10px;
  padding: 10px 20px;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

/* Keep the coupon input + Apply button on a single row. By default the
   input claims the full row width and the button wraps onto the next
   line; flexbox with a flex-shrink:0 button keeps them aligned and lets
   the input fill the remaining space. */
.woocommerce-cart .coupon,
.woocommerce-cart td.actions .coupon,
.woocommerce-cart .actions > .coupon {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.woocommerce-cart .coupon input[type="text"],
.woocommerce-cart .coupon .input-text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 !important;
}
.woocommerce-cart .coupon .button {
  flex: 0 0 auto;
  white-space: nowrap;
  margin: 0 !important;
}
.woocommerce-cart .coupon .button:hover,
.woocommerce-cart .actions .button:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* --- #39-43 Checkout Page Styling --- */
.woocommerce-checkout .woocommerce-checkout #place_order,
.woocommerce-checkout #payment #place_order {
  background: var(--primary) !important;
  color: var(--secondary) !important;
  border: 1px solid var(--secondary) !important;
  box-shadow: 3px 3px 0 var(--secondary);
  border-radius: 10px !important;
  padding: 15px 30px !important;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
}
.woocommerce-checkout .woocommerce-checkout #place_order:hover,
.woocommerce-checkout #payment #place_order:hover {
  background: var(--secondary) !important;
  color: var(--primary) !important;
  box-shadow: 0 0 0 var(--secondary);
}

/* --- #52 Global Orange Accent for WooCommerce buttons --- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button.alt {
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--secondary);
  transition: all 0.3s;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.alt:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

/* --- #56 Link colors --- */
.woocommerce-account a,
.woocommerce-cart a,
.woocommerce-checkout a {
  color: var(--primary);
}
.woocommerce-account a:hover,
.woocommerce-cart a:hover,
.woocommerce-checkout a:hover {
  color: var(--secondary);
}

/* --- #30 Product tabs styling (Details, What's In The Box, Additional Details) --- */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  padding: 0;
  margin: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--secondary);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 25px;
  display: block;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--secondary);
  border-color: var(--secondary);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--white);
}

/* --- #49-51 FAQ Page Styling --- */
.faq-bnr {
  background: url(images/faq-bnr.png) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  margin-bottom: 40px;
}
.faq-bnr h1 {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
}

/* --- Kadence single product overrides --- */
/* Hide Kadence's above-title breadcrumb on product pages */
body.single-product .kadence-breadcrumbs,
body.single-product .product-hero-section,
body.single-product .entry-hero-container-inner {
  display: none !important;
}

/* --- Product page stock badge in summary --- */
.summary .stock-avblty-tag {
  margin-bottom: 10px;
}
/* Shared base styling for every status badge inside the single-product
 * .stock-avblty-tag block — same shape, font, padding, weight, size.
 * Per-status colors are applied by the color-only rules below. */
.summary .stock-avblty-tag .preOrder,
.summary .stock-avblty-tag .labels .preOrder,
.summary .stock-avblty-tag .lowStock,
.summary .stock-avblty-tag .out-of-stock,
.summary .stock-avblty-tag .stock.out-of-stock,
.summary .stock-avblty-tag .instock,
.summary .stock-avblty-tag .onhot,
.summary .stock-avblty-tag .onnew {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  text-transform: none;
  color: var(--white);
  margin: 0;
}
.summary .stock-avblty-tag .preOrder,
.summary .stock-avblty-tag .labels .preOrder {
  background: var(--primary);
  color: var(--secondary);
}
.summary .stock-avblty-tag .lowStock {
  background: #ffb040;
}
.summary .stock-avblty-tag .out-of-stock,
.summary .stock-avblty-tag .stock.out-of-stock {
  background: #0057e5;
}
.summary .stock-avblty-tag .instock {
  background: #027400;
}
.labels .onsale {
    background-color: #ed3972;
    color: #fff;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 5px;
    line-height: 1;
    margin-right: 4px;
    margin-bottom: 3px;
    font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
}
.labels {
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* --- Wishlist position top-right of summary column --- */
.prdct-dtls-top-wpr {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
.prdct-dtls-top-wpr .yith-wcwl-add-to-wishlist {
  position: relative;
}

/* --- Comic Cash notification styling --- */
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--primary);
}
.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--primary);
}

/* --- Related products section --- */
.single_pr_related_products .sec-head h2 {
  font-family: var(--heading-font);
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

/* --- Hide Kadence product elements we don't need --- */
body.single-product .product-action-wrap,
body.single-product .kadence-shop-top-row,
body.single-product .kadence-product-toggle-container {
  display: none !important;
}

/* --- Full-width breakout for product tabs + video sections --- */
/* The prime-section (description + tabs) has a dark background and must
   span the full viewport, breaking out of Kadence's content container.
   Related products stay in the normal flow with NO dark background. */
body.single-product .prime-section,
body.single-product .prime-section-product-video {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Dark gradient background for tabs section */
body.single-product .prime-section {
  background: linear-gradient(180deg, #000000 0%, #101010 61.5%, #202020 100%);
}

/* Video section dark background */
body.single-product .prime-section-product-video {
  background: #000;
}

/* =========================================================================
   Homepage — new ACF sections (Collector, Category, Trust, Serious, FAQ)
   ========================================================================= */

/* Shared: sub-heading paragraph inside .sec-head */
.sec-head p {
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: #cfcfcf;
}
.sec-head:not(.white) p {
  color: #333;
}

/* ---- Collector Section ---- */
.collector-sec.cmn-gap2 {
  position: relative;
  background-color: #0b0b0b;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.collector-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
  z-index: 0;
}
.collector-sec .container {
  position: relative;
  z-index: 1;
}
.collector-sec .collector-inr {
  overflow: auto;
  padding: 175px 0;
}
.collector-sec .collector-content {
  float: right;
  width: 100%;
  max-width: 770px;
  color: #fff;
  text-align: left;
}
.collector-sec .sec-head {
  text-align: left;
  margin-bottom: 18px;
}
.collector-sec .sec-head.white h2 {
  color: #fff;
  margin: 0;
  max-width: 365px;
  line-height: 1.5;
  text-align: left;
}
.collector-sec .collector-copy p {
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .collector-sec.cmn-gap2 {
    background-position: left top;
  }
  .collector-sec::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 60%);
  }
  .collector-sec .collector-inr {
    padding: 80px 0;
  }
  .collector-sec .collector-content {
    float: none;
    max-width: 100%;
  }
  .collector-sec .sec-head.white h2 {
    max-width: 100%;
  }
}

/* ---- Partners Section overrides ---- */
.partner-sec,
.partner-sec.cmn-gap2 {
  background: linear-gradient(180deg, #000 0%, #101010 62%, #202020 100%);
  color: #ffffff;
}
.partner-sec .pt-bg {
  z-index: 0;
}
.partner-sec .pt-bg::after {
  display: none;
}
.partner-sec .container {
  position: relative;
  z-index: 1;
}
.sec-head.white.sec-head p {
  color: #ffffff;
}
.partner-sec .sec-head h2,
.partner-sec .sec-head p,
.partner-sec .pt-cd-content h3,
.partner-sec .pt-cd-content p,
.partner-sec .pt-cd-content a,
.partner-sec .pt-card,
.partner-sec .pt-card:hover,
.partner-sec .pt-card:focus,
.partner-sec a.pt-card,
.partner-sec a.pt-card:hover,
.partner-sec a.pt-card:focus {
  color: #ffffff;
  text-decoration: none;
}
.partner-sec .pt-cd-content h3,
.partner-sec .pt-cd-content h3 a,
.partner-sec .pt-cd-content p,
.partner-sec .pt-cd-content p a,
.partner-sec .pt-card h3,
.partner-sec .pt-card p {
  text-decoration: none;
  border-bottom: 0;
}
a.pt-card {
  background-size: cover !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #111111;
  display: block;
}
/* Keep the dark-gradient legibility overlay on each card */
.partner-sec .partner-col .pt-card::before {
  z-index: 1;
}
.partner-sec .pt-cd-content {
  position: relative;
  z-index: 2;
}

/* ---- Category Section ---- */
.category-sec.cmn-gap2 {
  background: #ffb040;
  color: #1c1540;
}
.category-sec .sec-head h2,
.category-sec .sec-head p {
  color: #1c1540;
}
.category-sec .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  margin: 40px auto 0;
  max-width: 800px;
  justify-items: center;
}
.category-sec .category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 8px;
  text-decoration: none;
  color: #1c1540;
  transition: transform 0.2s ease;
  max-width: 220px;
}
.category-sec .category-card,
.category-sec .category-card:hover,
.category-sec .category-card:focus,
.category-sec .category-card:active {
  text-decoration: none;
}
.category-sec .category-card:hover {
  transform: translateY(-4px);
}
.category-sec .category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 105px;
}
.category-sec .category-icon img {
  width: 100%;
  max-width: 105px;
  height: auto;
  object-fit: contain;
}
.category-sec .category-label,
.category-sec h3.category-label {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #1c1540;
  text-decoration: none;
  transition: color 0.2s ease;
}
.category-sec .category-card:hover .category-label,
.category-sec .category-card:focus .category-label,
.category-sec .category-card:hover h3.category-label,
.category-sec .category-card:focus h3.category-label {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .category-sec .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
}
@media (max-width: 480px) {
  .category-sec .category-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---- Trust Section ---- */
.trust-sec.cmn-gap2 {
  position: relative;
  background-color: #0b0b0b;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 0;
  min-height: 520px;
  overflow: hidden;
}
.trust-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.trust-sec .container {
  position: relative;
  z-index: 1;
}
.trust-sec .trust-inr {
  display: flex;
  justify-content: flex-start;
}
.trust-sec .trust-content {
  width: 100%;
  max-width: 480px;
  text-align: left;
}
.trust-sec .sec-head {
  text-align: left;
  margin-bottom: 18px;
}
.trust-sec .sec-head h2 {
  color: #fff;
  margin: 0;
  text-align: left;
}
.trust-sec .trust-copy p {
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .trust-sec.cmn-gap2 {
    padding: 60px 0;
    min-height: 0;
  }
  .trust-sec::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 60%);
  }
  .trust-sec .trust-inr {
    justify-content: center;
  }
  .trust-sec .trust-content {
    max-width: 100%;
  }
}

/* ---- Serious Collectors Section ---- */
.serious-sec,
.serious-sec.cmn-gap2 {
  position: relative;
  background-color: #141414;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 0;
  min-height: 520px;
  overflow: hidden;
}
.serious-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.serious-sec .container {
  position: relative;
  z-index: 1;
}
.serious-sec .serious-inr {
  display: flex;
  justify-content: flex-end;
}
.serious-sec .serious-content {
  width: 100%;
  max-width: 560px;
  text-align: left;
}
.serious-sec .sec-head {
  text-align: left;
  margin-bottom: 18px;
}
.serious-sec .sec-head h2 {
  color: #fff;
  margin: 0;
  text-align: left;
}
.serious-sec .serious-copy p {
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .serious-sec,
  .serious-sec.cmn-gap2 {
    padding: 60px 0;
    min-height: 0;
  }
  .serious-sec::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 60%);
  }
  .serious-sec .serious-inr {
    justify-content: center;
  }
  .serious-sec .serious-content {
    max-width: 100%;
  }
}

/* ---- FAQ Section ---- */
.faq-sec,
.faq-sec.cmn-gap2 {
  background: #ffffff;
  color: #1c1540;
}
.faq-sec .sec-head h2,
.faq-sec .sec-head p {
  color: #1c1540;
}
.faq-sec .faq-list {
  max-width: 820px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-sec .faq-item {
  background: #f7f7f8;
  border: 1px solid #1c1540;
  border-radius: 6px;
  overflow: hidden;
}
.faq-sec .faq-item:has(.faq-question[aria-expanded="true"]) {
  background: #f4b457;
}
.faq-sec .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1c1540;
  cursor: pointer;
}
.faq-sec .faq-question[aria-expanded="true"] {
  background: #f4b457;
}
.faq-sec .faq-toggle {
  position: relative;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.faq-sec .faq-toggle::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 14px;
  height: 14px;
  background: transparent;
  border-right: 2px solid #1c1540;
  border-bottom: 2px solid #1c1540;
  transform: rotate(45deg);
  transform-origin: center;
}
.faq-sec .faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(180deg);
}
.faq-sec .faq-answer {
  background: #ffffff;
  margin-top: 12px;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #1c1540;
}
.faq-sec .faq-answer p {
  color: #1c1540;
}
.faq-sec .faq-answer[hidden] {
  display: none;
}
.faq-sec .faq-btn-wrp {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* ---- Footer base (ported markup uses .ftr-bg imgs for decoration) ---- */
footer.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #000 0%, #101010 62%, #202020 100%) !important;
  isolation: isolate;
}
footer.site-footer .ftr-bg {
  z-index: 0;
}
footer.site-footer .container {
  position: relative;
  z-index: 2;
}
footer.site-footer .ftr-links a,
footer.site-footer .ftr-links a:hover,
footer.site-footer .ftr-links a:focus,
footer.site-footer .copyright a,
footer.site-footer .ftr-logo,
footer.site-footer .social-links a {
  text-decoration: none;
  border-bottom: 0;
  box-shadow: none;
}
footer.site-footer .ftr-links ul,
footer.site-footer .social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.site-footer .ftr-links ul li,
footer.site-footer .social-links ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.site-footer .ftr-links ul li::before,
footer.site-footer .ftr-links ul li::marker,
footer.site-footer .social-links ul li::before,
footer.site-footer .social-links ul li::marker {
  content: none;
  display: none;
}
footer.site-footer .ftr-links ul li {
  margin-bottom: 10px;
  line-height: 1.4;
}
footer.site-footer .ftr-links ul li:last-child {
  margin-bottom: 0;
}
footer.site-footer .social-links ul {
  display: flex;
  gap: 10px;
}

/* ---- Fixed-header content offset (REMOVED 2026-05-13) ----
   Previously the header used `position: fixed` and needed body
   padding-top to compensate. Header is now `position: sticky`
   which keeps it in the document flow, so no body padding hack
   is required. Kept the comment block for archaeology. */

@media (max-width: 783px) {
  .hero-sec {
    margin-top: -15px !important;
  }
}

/* ---- Now Shipping Section overrides ---- */
.partner-sec.now-shipping-sec,
.partner-sec.now-shipping-sec.cmn-gap2 {
  background: #ffffff;
  color: #1c1540;
}
.now-shipping-sec .pt-bg,
.now-shipping-sec .pt-bg::after {
  display: none;
}
.now-shipping-sec .sec-head h2,
.now-shipping-sec .sec-head p,
.now-shipping-sec .sec-head.white p,
.now-shipping-sec .sp-slide-content h3,
.now-shipping-sec .sp-slide-content h3 a,
.now-shipping-sec .sp-slide-content p,
.now-shipping-sec .sp-slide-content .price {
  color: #1c1540;
}
/* Shipping slider arrows — match old theme (orange button, dark icon) */
.now-shipping-sec .shipping-slider .slick-arrow {
  background-color: #ffb040;
  border: 1px solid #1c1540;
  font-size: 0;
}
.now-shipping-sec .shipping-slider .slick-arrow::before {
  content: "";
  font-family: inherit;
  color: transparent;
  background-image: url(./images/slider-arrow.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 20px;
}
.now-shipping-sec .shipping-slider .slick-arrow:hover {
  background-color: #1c1540;
  border-color: #ffffff;
}
.now-shipping-sec .shipping-slider .slick-arrow:hover::before {
  background-image: url(./images/slider-arrow-white.svg);
}

/* ---- Why Shop At Comic Concepts overrides ---- */
.wscc-sec .wscc-content h3,
.wscc-sec .wscc-content p {
  color: #1c1540;
  text-decoration: none;
  border-bottom: 0;
}
/* Hover color flip removed — see note in the earlier .wscc-col-inr:hover
   block. Cards are no longer clickable, so the white-on-hover state was
   wiping out the heading and paragraph against the orange background. */
.wscc-sec .wscc-content p {
  margin-top: 12px;
}

/* ---- Custom header: nav link + icon polish ---- */
.main-head .navbar-nav li a,
.main-head .navbar-nav li a:hover,
.main-head .navbar-nav li a:focus {
  text-decoration: none;
  border-bottom: 0;
  box-shadow: none;
}

.main-head .navbar-right-part > ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-head .navbar-right-part > ul > li {
  margin: 0;
  padding: 0;
}
.main-head .navbar-right-part > ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  position: relative;
  transition: background-color .2s ease, border-color .2s ease;
  text-decoration: none;
}
.main-head .navbar-right-part > ul > li > a img {
  width: 20px;
  height: 20px;
  transition: filter .2s ease;
}
.main-head .navbar-right-part > ul > li > a:hover {
  background: #ffb040;
  border-color: #000000;
}
.main-head .navbar-right-part > ul > li > a:hover img {
  filter: brightness(0) saturate(100%);
}
.main-head .navbar-right-part .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #ffb040;
  color: #1c1540;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

/* ---- Product badge / float-tag colors (match legacy theme) ---- */
/* Reset WooCommerce's default .onsale so it matches sibling .tag sizing */
.float-tags .tag.onsale,
.woocommerce .float-tags span.onsale,
.woocommerce-page .float-tags span.onsale {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  min-width: 76px !important;
  min-height: 0 !important;
  padding: 4px 10px 2px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  border-radius: 5px !important;
  margin: 0 0 5px !important;
  text-align: center !important;
  background: #ed3972 !important;
  color: #fff !important;
}
.tag.onsale {
  background: #ed3972 !important;
  color: #fff;
}
.float-tags .tag.new,
.tag.new {
  background: linear-gradient(135deg, #08c 0%, #0169fe 80%) !important;
  color: #fff;
}
.float-tags .tag.preOrder,
.float-tags .tag.preorder,
.tag.preOrder,
.tag.preorder {
  background: #5724cd !important;
  color: #fff;
}
.float-tags .tag.low,
.float-tags .tag.lowStock,
.tag.lowStock,
.tag.low {
  background: #ffb040 !important;
  color: #fff;
}
.float-tags .tag.instock,
.float-tags .tag.in-stock,
.tag.instock,
.tag.in-stock {
  background: #027400 !important;
  color: #fff;
}

/* =========================================================================
   Single product page — parity with legacy twentytwentyone theme
   ========================================================================= */

/* Kill the inline white bg on the summary tag wrapper (from cc-woocommerce plugin) */
.summary .stock-avblty-tag,
body.single-product .stock-avblty-tag {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.summary .stock-avblty-tag .labels,
body.single-product .stock-avblty-tag .labels {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.summary .stock-avblty-tag span,
body.single-product .stock-avblty-tag span {
  line-height: 1.2;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 5px;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: none;
  color: #fff;
}
.summary .stock-avblty-tag .onsale,
.summary .stock-avblty-tag .onsalee,
body.single-product .stock-avblty-tag .onsale,
body.single-product .stock-avblty-tag .onsalee {
  background: #ed3972 !important;
  color: #fff !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
}
.summary .stock-avblty-tag .lowStock,
.summary .stock-avblty-tag .low,
body.single-product .stock-avblty-tag .lowStock,
body.single-product .stock-avblty-tag .low {
  background: #ffb040 !important;
  color: #fff !important;
}
.summary .stock-avblty-tag .preOrder,
.summary .stock-avblty-tag .preorder,
body.single-product .stock-avblty-tag .preOrder,
body.single-product .stock-avblty-tag .preorder {
  background: #5724cd !important;
  color: #fff !important;
}
.summary .stock-avblty-tag .in-stock,
.summary .stock-avblty-tag .instock,
body.single-product .stock-avblty-tag .in-stock,
body.single-product .stock-avblty-tag .instock {
  background: #027400 !important;
  color: #fff !important;
}
.summary .stock-avblty-tag .new,
body.single-product .stock-avblty-tag .new {
  background: linear-gradient(135deg, #08c 0%, #0169fe 80%) !important;
  color: #fff !important;
}

/* Add to Cart button */
.single-product .summary .single_add_to_cart_button,
.single-product .prdcct_col_rght .single_add_to_cart_button.cmn-btn,
.single-product .prdcct_col_rght .single_add_to_cart_button {
  background: var(--primary, #ffb040) !important;
  color: var(--secondary, #1c1540) !important;
  box-shadow: 3px 3px 0 var(--secondary, #1c1540);
  border-radius: 10px;
  padding: 19px 38px 17px;
  min-width: 180px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  font-weight: 700;
  border: 1px solid var(--secondary, #1c1540);
  transition: all 0.3s ease-in-out;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.single-product .summary .single_add_to_cart_button:hover,
.single-product .prdcct_col_rght .single_add_to_cart_button.cmn-btn:hover,
.single-product .prdcct_col_rght .single_add_to_cart_button:hover {
  box-shadow: none;
  color: var(--primary, #ffb040) !important;
  background-color: var(--secondary, #1c1540) !important;
}
.single-product .summary .quantity input {
  height: 54px;
  width: 100%;
  min-width: 80px;
  text-align: center;
}

/* Affirm + Compare row */
.single-product .summary .affirm-as-low-as {
  margin: 14px 0;
  display: block;
}
/* Pre-orders are not eligible for Affirm financing — hide the
   "as low as $X/mo" call-out on any product flagged with the
   `pa_stock-status = pre-order` taxonomy term. The body class is
   added by `custom_class()` in functions.php. The earlier hide
   rule at line ~5467 was being overridden by the .single-product
   .summary .affirm-as-low-as { display: block } selector above
   (higher specificity + later in the cascade), so we re-state the
   hide here with matching specificity to win. */
body.class-stock-status-pre-order.single-product .summary .affirm-as-low-as {
  display: none;
}
.single-product .summary .compare,
.single-product .summary .compare.button,
.single-product .summary .compare.cmn-btn,
.single-product .prdcct_col_rght .compare.cmn-btn {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
  min-width: auto !important;
  border-radius: 0 !important;
  font-weight: 600;
  color: var(--secondary, #1c1540);
  text-transform: uppercase;
  font-family: var(--body-font);
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
}
.single-product .summary .compare::before,
.single-product .summary .compare.button::before,
.single-product .summary .compare.cmn-btn::before {
  content: "\f012";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: inherit;
  font-size: 14px;
  margin-right: 8px;
}
.single-product .summary .compare:hover {
  color: var(--primary, #ffb040) !important;
}
.single-product .summary .yith-wcwl-add-to-wishlist {
  display: inline-block;
  margin-top: 0;
  margin-right: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Description section border */
.single-product .woocommerce-product-details__short-description,
.single-product .summary .description,
.single-product .summary .woocommerce-product-details__short-description {
  border: 1px solid #cfc8d8;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: #fff;
}

/* Tabs: Details / What's In The Box / Additional Details */
.prime-section .prime-section-tab-sec .nav-tabs,
.single-product .prime-section-tab-sec .nav-tabs {
  border-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.prime-section-tab-sec .nav-tabs li {
  width: 33.33%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.prime-section-tab-sec .nav-tabs li::before,
.prime-section-tab-sec .nav-tabs li::marker {
  content: none !important;
  display: none !important;
}
.prime-section-tab-sec .nav-tabs li button,
.prime-section-tab-sec .nav-tabs li a {
  width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 10px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: var(--heading-font);
  padding: 23px;
  border: 1px solid #fff;
  background: transparent;
  display: block;
  text-align: center;
  cursor: pointer;
}
.prime-section-tab-sec .nav-tabs li:first-child button,
.prime-section-tab-sec .nav-tabs li:first-child a {
  border-radius: 10px 0 0 10px;
}
.prime-section-tab-sec .nav-tabs li:last-child button,
.prime-section-tab-sec .nav-tabs li:last-child a {
  border-radius: 0 10px 10px 0;
}
.prime-section-tab-sec .nav-tabs li:nth-child(2) button,
.prime-section-tab-sec .nav-tabs li:nth-child(2) a {
  border-radius: 0;
}
.prime-section-tab-sec .nav-tabs li button.active,
.prime-section-tab-sec .nav-tabs li.active a,
.prime-section-tab-sec .nav-tabs li a.active {
  color: #1c1540;
  background-color: #fff;
}

/* Tab content */
.prime-section-tab-content-in {
  padding-top: 47px;
  color: #fff;
  line-height: 1.65;
}
.prime-section-tab-content-in h2,
.prime-section-tab-content-in h3,
.prime-section-tab-content-in h4,
.prime-section-tab-content-in h5,
.prime-section-tab-content-in p,
.prime-section-tab-content-in li,
.prime-section-tab-content-in strong,
.prime-section-tab-content-in td,
.prime-section-tab-content-in th {
  color: #fff !important;
}
.prime-section-tab-content-in p {
  line-height: 1.65;
  margin-bottom: 14px;
}
.prime-section-tab-content-in ul li,
.prime-section-tab-content-in ol li {
  line-height: 1.65;
  margin-bottom: 6px;
}

/* Tab table (key/value rows) */
.prime-section-tab-sec .tab-table {
  margin-top: 20px;
}
.prime-section-tab-sec .tab-table .tab-con-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  padding-bottom: 20px;
}
.prime-section-tab-sec .tab-table .tab-con-row:last-child {
  padding-bottom: 0;
}
.prime-section-tab-sec .tab-con-row-left {
  width: 50%;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  text-transform: capitalize;
  color: #fff;
}
.prime-section-tab-sec .tab-con-row-right {
  width: 50%;
  text-align: right;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}

@media (max-width: 991px) {
  .prime-section-tab-sec .nav-tabs li button,
  .prime-section-tab-sec .nav-tabs li a {
    font-size: 16px;
    line-height: 18px;
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .prime-section-tab-sec .nav-tabs li {
    width: 100%;
  }
  .prime-section-tab-sec .nav-tabs li:first-child button,
  .prime-section-tab-sec .nav-tabs li:first-child a {
    border-radius: 10px 10px 0 0;
  }
  .prime-section-tab-sec .nav-tabs li:last-child button,
  .prime-section-tab-sec .nav-tabs li:last-child a {
    border-radius: 0 0 10px 10px;
  }
  .prime-section-tab-content-in {
    padding-top: 27px;
  }
}
@media (max-width: 575px) {

  .woocommerce ul.order_details li {
    border-right: none !important;
  }
  body.woocommerce-order-received .woocommerce ul.order_details li {
    margin-bottom: 20px !important;
  }

  td.woocommerce-table__product-total.product-total {
    text-align: center !important;
  }

  .prime-section-tab-sec .tab-con-row-left,
  .prime-section-tab-sec .tab-con-row-right {
    width: 100%;
    text-align: left;
  }
  .prime-section-tab-sec .tab-con-row-left {
    margin-bottom: 8px;
  }
}

/* Checkout — disabled Place Order until T&C checkbox is checked */
#place_order.tos-disabled,
#place_order[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.rd-tos-checkbox.tos-error,
.form-row.tos-error,
p.tos-error {
  border-left: 3px solid #d63638;
  padding-left: 10px;
}

/* T&C checkbox — restore native visibility (Porto classes from cc-woocommerce plugin) */
.rd-tos-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
}
.rd-tos-checkbox input[type="checkbox"],
.rd-tos-checkbox input.porto-control-input,
.woocommerce-checkout .rd-tos-checkbox input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  position: static !important;
  opacity: 1 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  flex: 0 0 auto;
  pointer-events: auto !important;
  clip: auto !important;
  clip-path: none !important;
  visibility: visible !important;
}
.rd-tos-checkbox label,
.rd-tos-checkbox .porto-control-label {
  display: inline;
  margin: 0;
  padding: 0;
  cursor: pointer;
  line-height: 1.5;
}

/* Checkout — restore native visibility for payment-gateway save-card
   checkboxes (WooCommerce Payments, Stripe, etc.). Same Porto-legacy CSS
   hides them by default; we force the input back on. */
.woocommerce-checkout .payment_box input[type="checkbox"],
.woocommerce-checkout .wc-payment-form input[type="checkbox"],
.woocommerce-checkout input#wc-stripe-new-payment-method,
.woocommerce-checkout input#wc-woocommerce_payments-new-payment-method,
.woocommerce-checkout input[id^="wc-"][id$="-new-payment-method"],
.woocommerce-checkout .woocommerce-SavedPaymentMethods-saveNew input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  position: static !important;
  opacity: 1 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 8px 0 0 !important;
  vertical-align: middle !important;
  pointer-events: auto !important;
  clip: auto !important;
  clip-path: none !important;
  visibility: visible !important;
}
.woocommerce-checkout .woocommerce-SavedPaymentMethods-saveNew,
.woocommerce-checkout .payment_box p:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
}
.woocommerce-checkout .woocommerce-SavedPaymentMethods-saveNew label,
.woocommerce-checkout .payment_box label[for^="wc-"] {
  display: inline;
  margin: 0;
  padding: 0;
  cursor: pointer;
  line-height: 1.5;
  font-weight: normal;
}

/* ---- Home hero overrides ---- */
.hero-content h1 {
  font-size: 80px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.hero-inr p {
  text-align: center;
}

/* ---- Slick dots reset (kill the dark button boxes) ---- */
.slick-dots li {
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.slick-dots li button,
.slick-dots li button:hover,
.slick-dots li button:focus,
.slick-dots li button:active {
  width: 10px;
  height: 10px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  outline: none;
  line-height: 1;
}
.slick-dots li.slick-active button,
.slick-dots li:hover button {
  background: #ffb040;
}
.slick-dots li button::before {
  content: none;
  display: none;
}

/* ---- dd default margin override ---- */
dd {
  margin-left: 0 !important;
  margin-bottom: .5rem !important;
}

/* ---- Hero slider button list-marker + vertical position ---- */
.hm-bnr-btn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hm-bnr-btn-list li,
.custm_mid_btn {
  list-style: none;
}
.hm-bnr-btn-list li::marker,
.custm_mid_btn::marker {
  content: "";
  display: none;
}

/* Pull the hero content closer to the slick dots */
.hero-inr {
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .hero-inr {
    padding-bottom: 60px;
  }
}

/* =================================================================
   Cart slide-out drawer (triggered by #cart-icon-link in header)
   ================================================================= */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9998;
}
.cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 22px 20px;
  border-bottom: 1px solid #e6e6e6;
  flex-shrink: 0;
}
.cart-drawer__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #1c1540;
}
.cart-drawer__close {
  background: #ffb040;
  color: #fff;
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
}
.cart-drawer__close:hover {
  background: #e89a2e;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}

/* WC mini-cart list styling inside drawer */
.cart-drawer__body ul.cart_list,
.cart-drawer__body ul.product_list_widget {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-drawer__body ul.cart_list li,
.cart-drawer__body ul.product_list_widget li {
  position: relative;
  padding: 14px 0 14px 116px;
  border-bottom: 1px solid #f0f0f0;
  min-height: 128px;
}
.cart-drawer__body ul.cart_list li:last-child,
.cart-drawer__body ul.product_list_widget li:last-child {
  border-bottom: 0;
}
.cart-drawer__body ul.cart_list li img,
.cart-drawer__body ul.product_list_widget li img {
  position: absolute;
  left: 0;
  top: 14px;
  width: 100px;
  height: 100px;
  margin: 0;
}
.cart-drawer__body ul.cart_list li a,
.cart-drawer__body ul.product_list_widget li a {
  color: #1c1540;
  font-weight: 600;
  text-decoration: none;
  display: block;
  line-height: 1.3;
}
.cart-drawer__body ul.cart_list li a:hover {
  color: #ffb040;
}
.cart-drawer__body ul.cart_list li .quantity,
.cart-drawer__body ul.product_list_widget li .quantity {
  display: block;
  font-size: 12px;
  color: #555;
  margin-top: 4px;
  float: right;
}
.cart-drawer__body ul.cart_list li a.remove,
.cart-drawer__body ul.product_list_widget li a.remove {
  position: absolute;
  left: -2px;
  top: 10px;
  color: #fff;
  background: #ffb040;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  z-index: 1;
}
.cart-drawer__body ul.cart_list li a.remove:hover,
.cart-drawer__body ul.product_list_widget li a.remove:hover {
  background: #1c1540;
}

/* Subtotal + buttons footer area */
.cart-drawer__body p.woocommerce-mini-cart__total {
  background: #1c1540;
  color: #fff;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 18px 0 14px;
  border-radius: 4px;
}
.cart-drawer__body p.woocommerce-mini-cart__total .amount {
  color: #fff;
}
.cart-drawer__body p.woocommerce-mini-cart__buttons {
  display: flex;
  gap: 10px;
  margin: 0;
}
.cart-drawer__body p.woocommerce-mini-cart__buttons .button {
  flex: 1;
  text-align: center;
  padding: 12px 14px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.cart-drawer__body p.woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
  background: #1c1540;
  color: #fff;
}
.cart-drawer__body p.woocommerce-mini-cart__buttons .button.checkout {
  background: #ffb040;
  color: #fff;
}
.cart-drawer__body p.woocommerce-mini-cart__buttons .button:hover {
  opacity: 0.9;
}

.cart-drawer__body p.woocommerce-mini-cart__empty-message {
  text-align: center;
  padding: 30px 0;
  color: #666;
}

/* Prevent body scroll while drawer is open */
body.cart-drawer-open {
  overflow: hidden;
}

/* Remove upstream margin-top on checkout col-2 (originates outside this
   stylesheet — likely WooCommerce core or parent theme using
   var(--global-md-spacing)). */
form.checkout .col2-set .col-2 {
  margin-top: 0 !important;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
  }
}

/* =================================================================
   Home hero refinements (match design mockup)
   — dims the banner image, shrinks + lightens the title, centers
     the content block, and restyles the CTA as a pill button.
   ================================================================= */

/* Restore a bottom-weighted dark gradient over the banner image so
   white text remains readable. A previous "feedback 15_12_24" block
   killed this with `background: none` — override with !important to
   win against source-order. */
.hero-sec .bnr-bg::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.75) 100%
  ) !important;
  opacity: 1 !important;
}

/* Center the content block horizontally, push it toward the bottom
   of the frame (mockup shows title/subtitle/CTA sitting below the
   product, not over its face), and cap the width so long titles
   wrap tidily. `.hero-item-inr` is `display:flex` with `align-items:
   flex-end` — we need justify-content:center there too so the
   container itself sits on the horizontal centerline. */
.hero-sec .hero-item-inr {
  justify-content: center !important;
  /* The base rule at line ~613 sets `padding: 100px 0 151px` on this
     flex container. That 151px bottom pad stacks on top of the
     padding we set on `.hero-inr` below, pushing the content far
     higher than intended. Zero out the bottom here so `.hero-inr`'s
     own `padding-bottom` is the single source of truth for the gap
     above the slick dots. */
  padding-bottom: 0 !important;
}

.hero-sec .hero-item-inr > .container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-sec .hero-inr {
  max-width: 860px !important;
  margin: 0 auto !important;
  text-align: center !important;
  /* Slick dots sit at `bottom: 24px` and are ~10px tall, so the top
     of the dots is ~34px from the bottom of the hero. Client wants
     ~50px of breathing room between the button and the dots, so the
     content block ends 34 + 50 ≈ 84px up from the bottom edge. */
  padding-bottom: 84px !important;
  padding-left: 20px;
  padding-right: 20px;
}

/* `.hero-content` has `text-align: left` earlier in this file (line
   ~3333). Force-center it here so the title, subtitle, and CTA row
   all align to the middle of the slide. */
.hero-sec .hero-content,
.hero-sec .hero-inr .hero-content {
  text-align: center !important;
  width: 100%;
}

/* Title — smaller, lighter, honor the content's natural case. */
.hero-sec .hero-content h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

/* Subtitle — smaller, bold, centered. */
.hero-sec .hero-inr p {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  max-width: 620px;
  margin: 0 auto 24px !important;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Button list — always centered under the copy, regardless of the
   editor's per-slide "btn_pos" left/center/right choice. The CTA
   itself inherits the site-wide `.cmn-btn` look (hard-shadow, square
   corners, Archivo uppercase). Underline is stripped here because
   anchors in this list inherit `text-decoration: underline` from the
   theme's default link styling. */
.hero-sec .hm-bnr-btn-list {
  display: flex !important;
  justify-content: center !important;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-sec .hm-bnr-btn-list li,
.hero-sec .hm-bnr-btn-list .custm_lft_btn,
.hero-sec .hm-bnr-btn-list .custm_mid_btn,
.hero-sec .hm-bnr-btn-list .custm_rgt_btn {
  list-style: none;
  text-align: center;
}
.hero-sec .hm-bnr-btn-list .cmn-btn,
.hero-sec .hm-bnr-btn-list .cmn-btn:hover,
.hero-sec .hm-bnr-btn-list .cmn-btn:focus,
.hero-sec .hm-bnr-btn-list .cmn-btn span {
  text-decoration: none !important;
}

/* Tighten dots position so they sit just below the CTA (mockup). */
.hero-sec .slick-dots {
  bottom: 24px;
}

@media (max-width: 991px) {
  .hero-sec .hero-content h1 { font-size: 32px; }
  .hero-sec .hero-inr p      { font-size: 15px; }
  .hero-sec .hero-inr        { padding-bottom: 70px !important; }
}
@media (max-width: 600px) {
  .hero-sec .hero-content h1 { font-size: 26px; }

  .woocommerce-pagination.woocommerce-pagination--without-numbers.woocommerce-Pagination {
    margin: 0 auto !important;
    max-width: 300px !important;
    display: block !important;
  }
}

/* =========================================================================
   Visual polish fixes (post-client-review)
   ========================================================================= */

/* ---- Slick active dot: enforce round yellow circle ----
   Some plugin/theme rule was rendering the active dot as an orange
   rectangle. Lock geometry + radius with high specificity. */
.slick-dots li button,
.slick-slider .slick-dots li button,
.hero-sec .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: none !important;
}
.slick-dots li.slick-active button,
.slick-slider .slick-dots li.slick-active button,
.hero-sec .slick-dots li.slick-active button,
.slick-dots li:hover button {
  background: #ffb040 !important;
  border-radius: 50% !important;
  width: 10px !important;
  height: 10px !important;
}
.slick-dots li button::before,
.slick-slider .slick-dots li button::before {
  content: none !important;
  display: none !important;
}
/* Product Brands for WooCommerce ships a stylesheet that paints the active
   <li> directly with `background:#ccc`, which renders as a gray square
   *behind* our circular button. We don't style any dot via the <li>
   element, so it's safe to clear the background on every dot state. */
.slick-dots li,
.slick-dots li.slick-active,
.slick-dots li:hover {
  background: transparent !important;
}

/* ---- New to Order card action icons (cart / quick view / wishlist) ----
   Ensure the three action icons in product cards always render at a
   visible size. Some upstream rule was collapsing the <img> to 0. */
.new-to-order-section .nto-btns ul,
.single_pr_related_products .nto-btns ul {
  display: flex !important;
  align-items: center;
  gap: 14px;
}
.new-to-order-section .nto-btns ul li,
.single_pr_related_products .nto-btns ul li {
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  list-style: none;
}
.new-to-order-section .nto-btns ul li a,
.single_pr_related_products .nto-btns ul li a,
.new-to-order-section .nto-btns ul li .yith-wcwl-add-to-wishlist a,
.single_pr_related_products .nto-btns ul li .yith-wcwl-add-to-wishlist a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.new-to-order-section .nto-btns ul li img,
.single_pr_related_products .nto-btns ul li img,
.new-to-order-section .nto-btns ul li svg,
.single_pr_related_products .nto-btns ul li svg,
.new-to-order-section .nto-btns ul li .yith-wcwl-icon-svg,
.single_pr_related_products .nto-btns ul li .yith-wcwl-icon-svg {
  width: 20px !important;
  height: auto !important;
  max-width: 20px !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ---- Single product Waitlist badge: white text, hide WC core duplicate ----
   The cc-woocommerce plugin renders a coloured <div class="stock out-of-stock">
   inside .stock-avblty-tag at priority 7. WooCommerce core's
   woocommerce_template_single_stock then prints a SECOND <p class="stock
   out-of-stock"> via the same hook at priority 10, producing the duplicate.
   We hide the bare WC paragraph (anything outside .stock-avblty-tag) and
   force white text on the styled badge. */
.single-product .entry-summary > p.stock.out-of-stock,
.single-product .summary > p.stock.out-of-stock,
.single-product div.product .summary > p.stock,
.single-product .product-info-wrap > p.stock {
  display: none !important;
}
.single-product .stock-avblty-tag .stock.out-of-stock,
.single-product .stock-avblty-tag .out-of-stock,
.summary .stock-avblty-tag .stock.out-of-stock,
.summary .stock-avblty-tag .out-of-stock,
body.single-product .stock-avblty-tag .out-of-stock {
  background: #0057e5 !important;
  color: #fff !important;
  font-family: var(--heading-font, "Archivo", sans-serif);
  font-weight: 700;
  font-size: 13px !important;
  text-transform: none;
  padding: 5px 15px !important;
  border-radius: 5px !important;
  line-height: 1.2;
  display: inline-block;
}

.attributeList {
  font-size: 14px;
  margin-bottom: 16px;
}

/* ---- Variable product swatch buttons (Bonus Edition / Collector Edition)
   The Woo Variation Swatches plugin renders these and applies a height
   coming from the WP admin setting (`--wvs-single-product-item-height`,
   inline on the wrapper) plus padding/font-size from various theme rules
   spread across this file. Earlier theme rules at lines ~3492, ~4758,
   ~5636, and ~6074 fight over padding (3px 15px → 8px 15px → 4px 2px)
   and font-size (12px), producing buttons much taller than the old
   theme's slim pills. This override consolidates the look in one place,
   wins the cascade by virtue of being last + highly specific, and pins
   the buttons to a single-line ~38px height to match the old theme. */
body.single-product .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item),
body.single-product .variable-items-wrapper:not(.color-variable-items-wrapper) .variable-item.button-variable-item {
  height: auto !important;
  min-height: 0 !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  border-radius: 6px !important;
}
body.single-product .woo-variation-swatches .variable-items-wrapper .variable-item .variable-item-contents {
  height: auto !important;
}

/* =========================================================================
   Site-wide button + tag normalisation
   -----------------------------------------------------------------------
   Two cross-cutting fixes consolidated at the bottom of the cascade:

   1. **No underlined button text.** The Order Again button on My Account
      ships as `<p class="order-again"><a class="button">…</a></p>` — no
      `cmn-btn` class — so the earlier rule at line ~3978 that handles
      `.order-again .button.cmn-btn` never matches and the anchor's
      default underline shows through. Same situation can hit any plain
      WC anchor-button. We also unset the `text-decoration-line` long-
      hand because the WP block stylesheet sets it independently.

   2. **Tag / button text centered horizontally and vertically.** Stock
      status chips (PRE-ORDER, WAITLIST, ON SALE, etc.) and theme buttons
      can render with off-axis text when ad-hoc padding overrides line-
      height. Using inline-flex centering inside the chip + text-align
      center on buttons gives a single source of truth.
   ========================================================================= */

/* No underlines on anything that visually reads as a button — covers
   every interaction state because :hover/:focus underline can be set
   independently from the base rule by upstream stylesheets. */
a.button,
a.button:link,
a.button:visited,
a.button:hover,
a.button:active,
a.button:focus,
a.cmn-btn,
a.cmn-btn:link,
a.cmn-btn:visited,
a.cmn-btn:hover,
a.cmn-btn:active,
a.cmn-btn:focus,
a.wc-action-btn,
a.wc-action-btn:hover,
a.woocommerce-button,
a.woocommerce-button:link,
a.woocommerce-button:visited,
a.woocommerce-button:hover,
a.woocommerce-button:active,
a.woocommerce-button:focus,
.order-again a,
.order-again a:hover,
.order-again .button,
.order-again .button:hover,
.woocommerce-MyAccount-content a.button,
.woocommerce-MyAccount-content a.button:hover,
.woocommerce a.button,
.woocommerce a.button:hover,
.woocommerce-page a.button,
.woocommerce-page a.button:hover,
button,
button:hover,
.cmn-btn,
.cmn-btn:hover,
.button,
.button:hover,
.wp-element-button,
.wp-element-button:hover,
.single_add_to_cart_button,
.single_add_to_cart_button:hover,
.checkout-button,
.checkout-button:hover,
#place_order,
#place_order:hover,
input[type="submit"],
input[type="button"] {
  text-decoration: none !important;
  text-decoration-line: none !important;
}

/* Center button label horizontally AND vertically. Switching to inline-flex
   (or flex on full-width buttons like #place_order) decouples the visual
   centering from padding values, so adjusting padding can never knock the
   label off-axis. line-height: 1 prevents the label from inheriting an
   inflated body line-height that would push it down inside the box. */
button,
.cmn-btn,
a.button,
.button,
.single_add_to_cart_button,
.checkout-button,
.wp-element-button,
input[type="submit"],
input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
/* Full-width checkout buttons need flex (not inline-flex) so width:100%
   applies cleanly, but the centering rules are identical. */
#place_order,
.woocommerce-checkout #place_order,
.woocommerce-checkout #payment #place_order,
button.checkout-button,
a.checkout-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
}

/* Stock status / pre-order / sale chips inside .stock-avblty-tag use
   inline-block with padding; switching to inline-flex centers the label
   on both axes regardless of the chip's content length or wrap. */
.summary .stock-avblty-tag .preOrder,
.summary .stock-avblty-tag .preorder,
.summary .stock-avblty-tag .lowStock,
.summary .stock-avblty-tag .low,
.summary .stock-avblty-tag .onsale,
.summary .stock-avblty-tag .onsalee,
.summary .stock-avblty-tag .in-stock,
.summary .stock-avblty-tag .instock,
.summary .stock-avblty-tag .new,
.summary .stock-avblty-tag .out-of-stock,
.summary .stock-avblty-tag .stock.out-of-stock,
body.single-product .stock-avblty-tag .preOrder,
body.single-product .stock-avblty-tag .preorder,
body.single-product .stock-avblty-tag .lowStock,
body.single-product .stock-avblty-tag .low,
body.single-product .stock-avblty-tag .onsale,
body.single-product .stock-avblty-tag .onsalee,
body.single-product .stock-avblty-tag .in-stock,
body.single-product .stock-avblty-tag .instock,
body.single-product .stock-avblty-tag .new,
body.single-product .stock-avblty-tag .out-of-stock {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

/* =========================================================================
   Mobile homepage adjustments (4-29-2026)
   -----------------------------------------------------------------------
   - Hamburger menu drawer body scroll lock + safety polish.
   - White line between fixed header + hero on mobile (sub-pixel rounding
     between background colors): force the hero section to butt against
     the header by negating any inherited top margin.
   - "For Collectors", "Trusted Retailer", "Built For Serious Collectors":
     on mobile, hide the section background-image (overlapping copy was
     unreadable) and instead show a full-width <img> above the text. The
     text block sits on a #040404 background and matches the standard
     `.cmn-gap2` mobile padding (50px 0).
   - "Find Exactly What You're Looking For" category grid: keep 3 columns
     on mobile per design request (overrides the existing 2-col / 1-col
     responsive rules at lines ~12499 and ~12505).
   ========================================================================= */

/* Body scroll lock while the mobile drawer is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Mobile section image (rendered alongside the bg-image on collector / trust
   / serious sections — hidden on desktop, used on mobile in place of the bg) */
.collector-mobile-img,
.trust-mobile-img,
.serious-mobile-img {
  display: none;
}
.collector-mobile-img img,
.trust-mobile-img img,
.serious-mobile-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* Keep the category grid at 3 columns at all breakpoints */
@media (max-width: 767px) {
  .category-sec .category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px 12px;
  }
}
@media (max-width: 480px) {
  .category-sec .category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px 10px;
  }
  .category-sec .category-icon,
  .category-sec .category-icon img {
    max-width: 80px;
  }
  .category-sec .category-label,
  .category-sec h3.category-label {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  /* Eliminate any subpixel gap between the fixed header and the hero on
     mobile. Slick's first-paint can show a sliver of body background
     before the slider initializes — pulling the hero up by 1px hides it. */
  .hero-sec {
    margin-top: -1px;
  }
  body:not(.pt-0) .main-head {
    border-bottom: 0;
  }

  /* For Collectors / Trusted Retailer / Built For Serious Collectors —
     swap inline bg-image for a stacked image + dark text panel. Each
     section's PHP renders both a `style="background-image:..."` (used by
     desktop) and a sibling `<div class="X-mobile-img"><img></div>` (used
     here). */
  .collector-sec.cmn-gap2,
  .trust-sec.cmn-gap2,
  .serious-sec.cmn-gap2 {
    background-image: none !important;
    background-color: #040404;
    padding: 0 !important;
    min-height: 0;
  }
  .collector-sec::before,
  .trust-sec::before,
  .serious-sec::before {
    display: none;
  }
  .collector-mobile-img,
  .trust-mobile-img,
  .serious-mobile-img {
    display: block;
    width: 100%;
    line-height: 0;
  }
  .collector-mobile-img img,
  .trust-mobile-img img,
  .serious-mobile-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 360px;
  }

  /* Match the standard `.cmn-gap2` mobile padding (50px 0) on the text
     block. The container's own horizontal padding handles side gutters. */
  .collector-sec .container,
  .trust-sec .container,
  .serious-sec .container {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #040404;
  }
  .collector-sec .collector-inr,
  .trust-sec .trust-inr,
  .serious-sec .serious-inr {
    padding: 0;
    justify-content: center;
  }
  .collector-sec .collector-content,
  .trust-sec .trust-content,
  .serious-sec .serious-content {
    float: none;
    max-width: 100%;
    text-align: left;
  }
  .collector-sec .sec-head.white h2,
  .trust-sec .sec-head h2,
  .serious-sec .sec-head h2 {
    max-width: 100%;
  }
}

/* Pre-order shipment row: split the rate name and cost so the price
   right-aligns with the rest of the totals column ($316.00, $0.00, etc.)
   instead of butting up against "UPS:" in the middle of the cell. The
   shipping rate is rendered as <ul#shipping_method><li><label>…</label></li></ul>,
   so the flex container has to be the <label> itself — the <td> is
   table-cell and won't propagate flex layout to nested elements. */
.woocommerce ul#shipping_method li label,
.woocommerce-checkout ul#shipping_method li label,
ul#shipping_method li label {
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  width: 100%;
}

.cc-shipping-method-name {
  flex: 1 1 auto;
  text-align: left;
}

.cc-shipping-cost {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  margin-left: auto;
}

.p-Grid {
  margin-bottom: calc(var(--spacingGridRow) * -1);
  margin-left: calc(var(--spacingGridColumn) * -1);
  padding: 5%;
}

.kadence-account-avatar {
  display: none !important;
}

.woocommerce-checkout .wc_payment_method .payment_box fieldset {
  border: none !important;
}

form#order_review {
  padding-top: 40px;
}

.woocommerce-checkout .box-content a[data-bs-toggle] {
  text-decoration: none;
}

a.reset_variations {
  text-decoration: none;
}

body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table th {
  font-weight: 400 !important;
  font-size: 12px !important;
}

/* Single-product status badges — keep low-stock and pre-order pills
   visually identical (same padding/font/transform/line-height) so only
   the background color differs. Without this, .preOrder ends up taller
   due to uppercase + different rules across the stylesheet. */
.summary .stock-avblty-tag .lowStock,
.summary .stock-avblty-tag .preOrder,
.labels .lowStock,
.labels .preOrder,
.single-pr-status .lowStock,
.single-pr-status .preOrder {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  text-transform: none;
  color: #fff;
  margin-right: 4px;
  margin-bottom: 3px;
}
.summary .stock-avblty-tag .lowStock,
.labels .lowStock,
.single-pr-status .lowStock {
  background: #ffb040;
}
.summary .stock-avblty-tag .preOrder,
.labels .preOrder,
.single-pr-status .preOrder {
  background: #5724cd;
}

/* My Account → Orders: render multiple product thumbnails per row in a
   small flex strip. Falls back gracefully on single-image rows. */
.woocommerce-orders-table__cell-image {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 220px;
  vertical-align: middle;
}
.woocommerce-orders-table__cell-image .cc-order-product-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.woocommerce-account .woocommerce-MyAccount-content {
    border: 0px !important;
    padding: 0 30px 30px 30px !important;
}

.rtwpvg-slider-wrapper {
    padding-bottom: 25px !important;
}

/* Kill the .sp-slide-img::after dark overlay.
   ------------------------------------------
   `.sp-slide-img::after` sets a `rgba(0,0,0,0.1)` overlay sized at 100%
   width and height of the parent `<a class="sp-slide-img">` element.
   Slick equalizes slide heights to the tallest slide in the row, so when
   landscape product photos sit alongside portrait ones, the `<a>` ends
   up taller than its child `<img>`. The `::after` then paints a 10%
   black tint over the empty space below/around the image — and on the
   white `.now-shipping-sec` background, 10% black reads as a clearly
   visible light-grey rectangle. That's the "translucent background on
   the slides" the team has been seeing.

   The old theme used a Slick configuration that didn't trigger this
   height mismatch (or used a different mix of product aspect ratios),
   which is why the artifact only appears on the new theme. Killing the
   overlay removes the gray without touching the slick layout. */
.sp-slide-img::after {
    background-color: transparent !important;
    content: none !important;
}

/* YITH WooCompare table — product thumbnail and description sizing */
tr.product_info img.attachment-yith-woocompare-image.size-yith-woocompare-image {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: top !important;
    max-height: 350px !important;
}

tr.description h2 {
    font-size: 18px;
}

#yith-woocompare table.compare-list td {
    vertical-align: top !important;
}

a.button.acoqvw_view_details_button {
    color: #000;
}

button.single_add_to_cart_button.button.alt {
    max-height: 41px !important;
}

table.variations {
    margin: 0 auto;
}

.woo-variation-swatches.wvs-show-label .variations td,
.woo-variation-swatches.wvs-show-label .variations th {
    margin: 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs {
    border: 0 !important;
}

.woocommerce-privacy-policy-text {
    font-size: 12px;
}

.term-description {
    text-align: center;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget {
    font-size: 12px;
}

.woocommerce ul.cart_list li dl.variation,
.woocommerce ul.product_list_widget li dl.variation {
    font-size: .9em;
    font-weight: 400;
    padding-left: 0 !important;
}

dt.variation-EstimatedToRelease {
    font-weight: 400;
}

@media (max-width: 475px) {
    .woocommerce .woocommerce-breadcrumb {
        margin: 30px 0 0 !important;
    }

    .woocommerce div.product div.summary p {
        margin: 0;
    }

    .prdcct_col_rght .summary.entry-summary .cart {
        padding-bottom: 0;
    }

    .woocommerce div.product form.cart {
        margin-bottom: 0 !important;
    }

    button.single_add_to_cart_button.button.alt {
        margin-top: 10px;
    }

    .single-product main#main {
        padding-top: 30px;
    }

    h1.product_title.entry-title {
        padding-top: 20px !important;
    }

    .single-product button.single_add_to_cart_button.button.alt {
        margin-bottom: 10px;
        margin-top: 0;
    }
}

/* Kill the extra whitespace under variation buttons (Bonus Edition /
   Collector Edition etc.) on both the single product page and the Quick
   View popup.
   Three sources of dead space inside `td.value.woo-variation-items-wrapper`:
     1. WooCommerce core's `line-height: 2.2em` on the cell.
     2. The hidden `<a class="reset_variations" style="visibility: hidden;">Clear</a>`
        — `visibility: hidden` preserves layout, so the link still takes ~20-30px.
     3. Default `<ul>` margin (1em top + 1em bottom = ~32px) around the
        radiogroup of swatch buttons. */
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th,
.acoqvw_quickview_container .variations td,
.acoqvw_quickview_container .variations th {
    line-height: 1.2 !important;
}

/* Hide the reset link when it's "invisible" — `visibility: hidden`
   preserves the element's box, leaving a ghost line of empty height
   under the buttons. `display: none` collapses it. When a variation is
   chosen, WooCommerce flips inline style to `visibility: visible` and
   this attribute-match no longer applies, so the Clear link reappears. */
.variations .reset_variations[style*="visibility: hidden"],
.variations .reset_variations[style*="visibility:hidden"] {
    display: none !important;
}

/* Strip the default UL margins around the swatch radiogroup so the
   variation buttons sit flush against the row label without padding
   the cell out vertically. */
.variations .variable-items-wrapper,
.variations ul.variable-items-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 780px) {
    .wc-deposits-wrapper .wc-deposits-option li {
        width: 100%;
        margin: 3px auto;
    }

    span.wc-points-rewards-product-message {
        font-size: 16px;
    }

    .acoqvw_quickview_container .acoqvw_quickview .acoqvw_inner .acoqvw_contentSec .price {
        margin-bottom: 0;
    }

    .wc-deposits-payment-description {
        font-size: 14px;
    }
}

/* WP Smush lazy-load placeholder fix.
   -----------------------------------
   Smush injects a `background: #FAFAFA url(...placeholder.png)` rule on
   `.lazyload` / `.lazyloading` images via its lazy-load CSS (output from
   wp-smush-pro/core/lazy-load/class-lazy-load-controller.php). In slick
   carousels this shows as a visible light-grey rectangle on cloned /
   off-screen slides before they swap to the real image. The fade-in
   animation never finishes for the cloned slides until they rotate
   into view, so customers see the placeholder card next to the active
   slide.

   Smush's inline `<style>` is output via wp_head at a late priority, so
   it ends up *after* this theme's enqueued stylesheet in document order.
   To win the cascade despite Smush also using !important, we need
   higher specificity than Smush's own `.lazyload, .lazyloading {…}`
   rule. Bumping with `body` (0,1,2) and a doubled-class selector
   (0,2,1) covers both possible orderings. Also explicitly clearing
   background-image so the loader.png url() is removed alongside the
   colour fill. */
body img.lazyload,
body img.lazyloading,
body img.lazyloaded,
img.lazyload.lazyload,
img.lazyloading.lazyloading,
.sp-slide-img img.lazyload,
.sp-slide-img img.lazyloading {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* =========================================================================
   Status badge dimensions — final override
   -------------------------------------------------------------------------
   Several earlier rules touch .lowStock and .preOrder with different
   padding, line-height, and display values (inline-flex at line 14145,
   inline-block at line 14370, varying line-heights). The cascade was
   producing visibly different heights between the two badges on the
   single-product page because the inline-flex rule's line-height (1.2)
   competes with the inline-block rule's line-height (1.4).

   This rule is the canonical, lowest-priority-trump for badge metrics:
   identical box-sizing, padding, line-height, font, and minimum height so
   the two pills render at exactly the same size regardless of content
   length or descenders.
   ========================================================================= */
.summary .stock-avblty-tag .preOrder,
.summary .stock-avblty-tag .preorder,
.summary .stock-avblty-tag .labels .preOrder,
.summary .stock-avblty-tag .lowStock,
.summary .stock-avblty-tag .low,
.summary .stock-avblty-tag .out-of-stock,
.summary .stock-avblty-tag .stock.out-of-stock,
.summary .stock-avblty-tag .instock,
.summary .stock-avblty-tag .in-stock,
.summary .stock-avblty-tag .onhot,
.summary .stock-avblty-tag .onnew,
.labels .preOrder,
.labels .lowStock,
.labels .out-of-stock,
body.single-product .stock-avblty-tag .preOrder,
body.single-product .stock-avblty-tag .lowStock,
body.single-product .stock-avblty-tag .out-of-stock {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  padding: 5px 15px !important;
  border-radius: 5px !important;
  font-family: var(--heading-font) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  min-height: 28px !important;
  text-transform: none !important;
  color: #fff !important;
  margin: 0 4px 3px 0 !important;
  text-align: center !important;
}

/* =========================================================================
   MOBILE FLOAT-TAGS — FINAL POSITIONING OVERRIDE
   -------------------------------------------------------------------------
   This is the last word on the mobile tag stack. Lives at the END of the
   stylesheet with maximum-specificity selectors (`body` prefix + full
   ancestor chain) so nothing in the cascade can override it. If the tags
   still appear on the LEFT after this rule deploys, the cause is 100% a
   cache layer (WP Rocket, OPcache, browser, or CDN) serving stale CSS.

   The CSS source-of-truth marker is `/* CC-MOBILE-TAGS-V2 */`. If you
   view-source the served CSS on the live site and DON'T see this marker,
   the file hasn't deployed yet.
   ========================================================================= */
/* CC-MOBILE-TAGS-V2 */
@media (max-width: 991px) {
    body .sp-slide-inr .quick-view-wrap .sp-slide-img .float-tags,
    body .sp-slide-inr .sp-slide-img .float-tags,
    body .nto-item-inr .nto-img .float-tags,
    body .nto-item-inr .float-tags,
    body .sp-slide-img .float-tags,
    body .shipping-slider .float-tags,
    body .now-shipping-sec .float-tags,
    body .float-tags {
        position: absolute !important;
        inset: auto 8px 8px auto !important;
        top: auto !important;
        left: auto !important;
        right: 8px !important;
        bottom: 8px !important;
        width: 110px !important;
        max-width: 110px !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-end !important;
        gap: 4px !important;
        z-index: 5 !important;
    }
    body .float-tags .tag,
    body .sp-slide-img .float-tags .tag,
    body .shipping-slider .float-tags .tag,
    body .now-shipping-sec .float-tags .tag {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }
}

/* sg 2026-06-16: ensure shipping row stays visible in cart totals on mobile.
   Without these the .woocommerce-shipping-totals row collapsed visually
   because surrounding mobile rules forced td/th to display:block and the
   selected method / amount appeared blank. */
@media (max-width: 768px) {
    body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.woocommerce-shipping-totals,
    body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.shipping {
        display: table-row !important;
    }
    body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.woocommerce-shipping-totals th,
    body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.woocommerce-shipping-totals td,
    body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.shipping th,
    body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.shipping td {
        display: table-cell !important;
        visibility: visible !important;
        text-align: left;
        padding: 12px 14px !important;
    }
    body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.woocommerce-shipping-totals td,
    body.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.shipping td {
        text-align: right;
    }
    body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping ul#shipping_method,
    body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping .woocommerce-shipping-methods {
        display: block !important;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    body.woocommerce-cart .cart-collaterals .cart_totals tr.shipping ul#shipping_method li {
        display: block !important;
        margin: 4px 0;
    }
}

/* ==========================================================================
   Account pages — visual consistency layer
   Unifies Orders, Scheduled Orders, Stock Notifications, and Wishlist so
   they share the same table styling, typography, image sizing, page-title
   spacing, and action-button spacing.
   ========================================================================== */

/* --- 1. Title → content spacing (equalized across all 4 pages) --- */
.woocommerce-account .entry-title,
.woocommerce-account h1.entry-title,
.woocommerce-account .general-container-wrap > .entry-title,
body.woocommerce-wishlist .entry-title,
body.page .entry-content > h1.entry-title {
  margin-bottom: 28px;
}

.woocommerce-account .woocommerce-MyAccount-content > *:first-child,
.woocommerce-account .entry-content.single-content > *:first-child {
  margin-top: 0;
}

/* The "Orders" h3 sub-title above the table on Orders / Scheduled Orders
   pages is redundant with the page H1 above it. Hide it for a cleaner,
   single-heading layout that matches the other account pages. */
.woocommerce-account .woocommerce-MyAccount-content h3.account-sub-title {
  display: none;
}

/* --- 2. Unified table shell (Orders, Scheduled Orders, Stock, Wishlist) --- */
.woocommerce-account table.shop_table,
.woocommerce-account table.account-orders-table,
.woocommerce-account table.my_account_orders,
.woocommerce-account table.wc-bis-pending-notifications-table,
.woocommerce-account table.wc-bis-active-notifications-table,
.woocommerce-account table.wc-bis-notifications-activity-table,
.woocommerce-wishlist table.wishlist_table,
.woocommerce-wishlist table.shop_table.cart {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Unified table header bar — black background, white text, same height */
.woocommerce-account table.shop_table thead,
.woocommerce-account table.wc-bis-pending-notifications-table thead,
.woocommerce-account table.wc-bis-active-notifications-table thead,
.woocommerce-account table.wc-bis-notifications-activity-table thead,
.woocommerce-wishlist table.wishlist_table thead {
  background: #000;
}

.woocommerce-account table.shop_table thead th,
.woocommerce-account table.wc-bis-pending-notifications-table thead th,
.woocommerce-account table.wc-bis-active-notifications-table thead th,
.woocommerce-account table.wc-bis-notifications-activity-table thead th,
.woocommerce-wishlist table.wishlist_table thead th {
  background: #000 !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 14px 16px;
  border: none;
  text-align: left;
  vertical-align: middle;
}

/* Unified row cells */
.woocommerce-account table.shop_table tbody td,
.woocommerce-account table.wc-bis-pending-notifications-table tbody td,
.woocommerce-account table.wc-bis-active-notifications-table tbody td,
.woocommerce-account table.wc-bis-notifications-activity-table tbody td,
.woocommerce-wishlist table.wishlist_table tbody td {
  padding: 14px 16px !important;
  vertical-align: middle;
  border-top: 1px solid #ececec;
  border-bottom: none;
  border-left: none;
  border-right: none;
  font-size: 14px;
  line-height: 1.4;
  color: #1c1540;
}

.woocommerce-account table.shop_table tbody tr:first-child td,
.woocommerce-wishlist table.wishlist_table tbody tr:first-child td {
  border-top: none;
}

/* --- 3. Product images — one consistent thumbnail size everywhere --- */
.woocommerce-account table.shop_table img.cc-order-product-image,
.woocommerce-account table.shop_table .woocommerce-orders-table__cell-image img,
.woocommerce-account table.shop_table .woocommerce-table__product-name img,
.woocommerce-wishlist table.wishlist_table td.product-thumbnail img,
.woocommerce-wishlist table.wishlist_table .wishlist-items-wrapper img {
  width: 80px !important;
  height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin: 0;
}

/* Image cell width — keeps thumbnails consistently sized in the layout */
.woocommerce-account table.shop_table .woocommerce-orders-table__cell-image,
.woocommerce-wishlist table.wishlist_table td.product-thumbnail {
  width: 100px;
  padding-right: 8px !important;
}

/* --- 4. Action button spacing (no more touching Resend/Cancel) --- */
.woocommerce-account .woocommerce-orders-table__cell-order-actions,
.woocommerce-account .wc-bis-pending-notifications-table tbody td:last-child,
.woocommerce-account .wc-bis-active-notifications-table tbody td:last-child,
.woocommerce-wishlist .product-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

/* Every action button on these pages gets the same padding + sizing so they
   read as one button family regardless of which plugin renders them. */
.woocommerce-account .woocommerce-orders-table__cell-order-actions a.button,
.woocommerce-account .wc-bis-pending-notifications-table .button,
.woocommerce-account .wc-bis-active-notifications-table .button,
.woocommerce-wishlist .wishlist_table .button,
.woocommerce-wishlist .wishlist_table a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border-radius: 6px;
  margin: 0;
}

/* --- 5. Page-title spacing on Wishlist (it lives outside /my-account/) --- */
body.woocommerce-wishlist .entry-content h1.entry-title,
body.page-template-default .entry-content h1.entry-title {
  margin-top: 0;
  margin-bottom: 28px;
}

/* Wishlist body padding to match the inner spacing of My Account pages */
body.woocommerce-wishlist .entry-content {
  padding-top: 0;
}

/* --- 6. Stock Notifications: hide the redundant section sub-headings'
   default WordPress margins so the page reads as one cohesive panel --- */
.woocommerce-account.woocommerce-backinstock .entry-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 12px;
}

.woocommerce-account.woocommerce-backinstock .entry-content h2:first-of-type {
  margin-top: 0;
}

/* Stock Notifications doesn't render product images via the plugin — the
   table goes straight from ID → Product name. Bumping the Product cell so
   the layout doesn't feel cramped. */
.woocommerce-account .wc-bis-pending-notifications-table td:nth-child(2) a,
.woocommerce-account .wc-bis-active-notifications-table td:nth-child(2) a {
  font-weight: 600;
  color: #1c1540;
  text-decoration: none;
}

.woocommerce-account .wc-bis-pending-notifications-table td:nth-child(2) a:hover,
.woocommerce-account .wc-bis-active-notifications-table td:nth-child(2) a:hover {
  text-decoration: underline;
}

/* --- 7. Mobile (≤768px): same consistency rules collapse cleanly --- */
@media (max-width: 768px) {
  .woocommerce-account table.shop_table thead,
  .woocommerce-account table.wc-bis-pending-notifications-table thead,
  .woocommerce-account table.wc-bis-active-notifications-table thead,
  .woocommerce-wishlist table.wishlist_table thead {
    display: none;
  }
  .woocommerce-account table.shop_table tbody td,
  .woocommerce-account table.wc-bis-pending-notifications-table tbody td,
  .woocommerce-account table.wc-bis-active-notifications-table tbody td,
  .woocommerce-wishlist table.wishlist_table tbody td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px !important;
    border-top: none;
  }
  .woocommerce-account table.shop_table tbody tr,
  .woocommerce-account table.wc-bis-pending-notifications-table tbody tr,
  .woocommerce-wishlist table.wishlist_table tbody tr {
    display: block;
    border-bottom: 1px solid #ececec;
    padding: 12px 0;
  }
  .woocommerce-account .woocommerce-orders-table__cell-order-actions,
  .woocommerce-account .wc-bis-pending-notifications-table tbody td:last-child,
  .woocommerce-wishlist .product-add-to-cart {
    justify-content: stretch;
  }
}

/* ==========================================================================
   Account-page search bar
   Used by the Orders page (server-side, via CC_Account_Search PHP class)
   and by the Wishlist + Stock Notifications pages (client-side JS, via
   assets/js/account-search.js). Identical visual treatment on all three.
   ========================================================================== */

.cc-account-search-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 20px;
}

.cc-account-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 4px 6px 4px 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cc-account-search-form:focus-within {
  border-color: #1c1540;
  box-shadow: 0 0 0 3px rgba(28, 21, 64, 0.08);
}

.cc-account-search-input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  color: #1c1540;
  min-width: 0;
}

.cc-account-search-input::placeholder {
  color: #8a8a8a;
}

.cc-account-search-input::-webkit-search-cancel-button {
  display: none;
}

.cc-account-search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #1c1540;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.15s ease;
  flex: 0 0 auto;
}

.cc-account-search-clear:hover {
  background: #e0e0e0;
  text-decoration: none;
}

.cc-account-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  background: #ffb040;
  color: #1c1540;
  border: 1px solid #1c1540;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.15s ease, color 0.15s ease;
}

.cc-account-search-submit:hover {
  background: #1c1540;
  color: #ffb040;
}

/* Empty-state message — both Orders (server-side) and Wishlist/BIS (client-side) */
.cc-account-search-no-results {
  border: 1px solid #f2d4a0;
  background: #fff8eb;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 0 0 20px;
  font-size: 14px;
  color: #1c1540;
}

.cc-account-search-no-results p {
  margin: 0;
}

.cc-account-search-no-results .cc-account-search-other-hint {
  margin-top: 8px;
  font-size: 13px;
  color: #5a5a5a;
}

.cc-account-search-other-matches {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f2d4a0;
}

.cc-account-search-other-matches__intro {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 13px;
}

.cc-account-search-other-matches__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-account-search-other-matches__list li {
  padding: 6px 0;
  font-size: 13px;
  border-top: 1px dashed #ececec;
}

.cc-account-search-other-matches__list li:first-child {
  border-top: none;
}

.cc-account-search-other-matches__list a {
  color: #1c1540;
  text-decoration: none;
}

.cc-account-search-other-matches__list a:hover {
  text-decoration: underline;
}

.cc-account-search-no-results a {
  color: #1c1540;
  font-weight: 600;
  text-decoration: underline;
}

/* When the empty-state message is showing on the Orders page, hide WC's
   default "No order has been made yet" panel so customers don't see both. */
.cc-account-search-no-results + .woocommerce-orders-table + .woocommerce-message,
.cc-account-search-no-results ~ .woocommerce-message {
  display: none;
}

/* Mobile: full-width search bar, no max-width cap, submit shrinks. */
@media (max-width: 768px) {
  .cc-account-search-wrap {
    justify-content: stretch;
  }
  .cc-account-search-form {
    max-width: 100%;
  }
  .cc-account-search-submit {
    padding: 7px 12px;
    font-size: 12px;
  }
}
