/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
/*! Google Fonts !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Paragraph, #6c6971);
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  /* 150% */
  /* 150% */
  background: #fff;
  overflow-x: hidden;
}

p {
  color: var(--Paragraph, #6c6971);
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  /* 150% */
  /* 150% */
  margin-bottom: 1.25rem;
}

h1 {
  padding: 0;
  margin: 0;
  margin-bottom: 0.63rem;
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
h1 span {
  font-style: italic;
  font-weight: 700;
}
h1 {
  /* 4.124rem */
}

h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 1.75rem;
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.88rem;
  /* 4.124rem */
}

h3 {
  padding: 0;
  margin: 0;
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5rem;
  /* 111.111% */
  margin-bottom: 1.88rem;
}

h4 {
  padding: 0;
  margin: 0;
  margin-bottom: 2.5rem;
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  /* 2.062rem */
}

h5 {
  margin: 0;
  color: var(--Black, #000);
  font-family: "Mulish", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.25rem;
  /* 150% */
  margin-bottom: 1rem;
}

h6 {
  margin: 0;
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

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

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.125rem;
  border: 1px solid var(--Dark, #080115);
  background: var(--White, #fff);
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  /* 144.444% */
  transition: all 0.3s ease-in-out;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: var(--White, #fff);
  color: var(--Dark, #080115);
}
.btn:hover {
  background: black;
  color: white;
}
.btn.blackbtn {
  background: black;
  color: white;
}
.btn.blackbtn:hover {
  background: var(--White, #fff);
  color: var(--Dark, #080115);
  border: 1px solid var(--Dark, #080115);
}

.whitebtn {
  background: #fff;
  color: #000;
  border: 1px solid var(--Dark, #080115);
  transition: all 0.3s ease-in-out;
}
.whitebtn:hover {
  background: #000;
  color: #fff;
  border: 1px solid var(--Dark, #080115);
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.5;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 0.5;
}

input:not([type=submit]),
select {
  display: block;
  width: 100%;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  background: #f1f1f1;
  color: #000;
  font-family: "Mulish", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

select {
  background: #f1f1f1 url(../images/downarrow.svg) no-repeat right 0.625rem center !important;
}

textarea {
  height: 13rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: #000;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  background: #f1f1f1;
  margin-bottom: 1rem;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background: #f1f1f1;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--Black, #000);
  font-family: "Mulish", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: url(../images/downarrow.svg) no-repeat right center;
}

select:focus {
  border: 0.0625rem solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: #1d1d1d;
  font-size: 0.875rem;
  font-weight: 400;
}

label {
  color: #0d0d0d;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.75rem;
  display: block;
}

.checkbox {
  display: inline-block;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  color: #090914;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  margin: 0;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: start;
  gap: 0.5rem;
  text-align: left;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 0.0625rem solid #bbc4cd;
  padding: 0.6875rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  top: 0;
}
.checkbox label a {
  text-decoration: none;
  color: var(--accent-color-2, #ed7005);
}
.checkbox input:checked + label::before {
  background: #fff;
}
.checkbox input:checked + label:after {
  position: absolute;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  left: 0.375rem;
  font-size: 0.8125rem;
  top: 0.0625rem;
  color: #121212;
}

.tophead {
  background-color: #080115;
}
.tophead .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tophead p {
  padding: 0.625rem 0;
  color: var(--White, #fff);
  font-family: Mulish;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.175rem;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0;
}
.tophead p img {
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
}

.mainhd .headerrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainhd .headerrow .logo {
  width: 14.5rem;
}
.mainhd .headerrow .logo img {
  width: 100%;
  aspect-ratio: 232/21;
}
.mainhd .headerrow .navigation {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.mainhd .headerrow .navigation .stellarnav > ul > li > a {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  padding: 30px 15px;
}
.mainhd .headerrow .navigation .stellarnav > ul > li ul {
  width: 13.68rem;
  padding: 1.87rem 1.25rem;
}
.mainhd .headerrow .navigation .stellarnav > ul > li ul li {
  border: none !important;
  margin-bottom: 1.25rem;
}
.mainhd .headerrow .navigation .stellarnav > ul > li ul li:last-child {
  margin-bottom: 0;
}
.mainhd .headerrow .navigation .stellarnav > ul > li ul li a {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none !important;
  padding: 0;
}
.mainhd .headerrow .search-sec {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.mainhd .headerrow .searchsec-inner {
  position: relative;
  flex: 1 0 17.9rem;
}
.mainhd .headerrow .searchsec-inner input[type=text] {
  display: inline-flex;
  padding: 0.625rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 7.5rem;
  border-radius: 3.125rem;
  background: var(--Light-Bg, #f4f4f4);
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.mainhd .headerrow .searchsec-inner .submit {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 3rem;
  /* height: 1.25rem; */
  background: url(../images/search-icon.svg) no-repeat center right 1.25rem;
  border: none;
  display: flex;
  align-items: center;
}
.mainhd .headerrow .searchsec-inner .submit:focus {
  outline: none;
  border: none;
}
.mainhd .headerrow .threebtns ul {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.mainhd .headerrow .threebtns ul li a {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  border: 1px solid #080115;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.mainhd .headerrow .threebtns ul li a img {
  transition: all 0.3s ease-in-out;
}
.mainhd .headerrow .threebtns ul li a:hover {
  background-color: #080115;
}
.mainhd .headerrow .threebtns ul li a:hover img {
  filter: brightness(0) invert(1);
}

.banner {
  position: relative;
}
.banner img {
  width: 100%;
}
.banner .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner .container .mxw624 {
  max-width: 624px;
  width: 100%;
}
.banner .container .text p {
  color: var(--Dark-Paragraph, #444248);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 144.444% */
  margin-bottom: 1.88rem;
}
.banner .container .img-explore {
  padding-right: 0rem;
  width: 9.375rem;
  height: 9.375rem;
  aspect-ratio: 1/1;
  position: relative;
  right: 8.12rem;
}

.spacing80 {
  padding: 5rem 0;
}

.headingsec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-bottom: 1.88rem;
}
.headingsec h2 {
  margin-bottom: 0;
}

.mobileshow {
  display: none;
}

.nointernalspace .row [class^=col-] {
  padding: 0;
}

.imgbx {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.imgbx img {
  transition: all 0.3s ease-in-out;
  scale: 1;
  width: 100%;
}
.imgbx a {
  position: absolute;
  inset: 0;
  color: var(--White, #fff);
  text-align: center;
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.imgbx:hover img {
  opacity: 0.6;
  scale: 1.23;
}
.imgbx:hover a {
  opacity: 1;
}
.imgbx.explorebx a {
  font-size: 30px;
  text-decoration: none;
}
.imgbx.explorebx:hover img {
  opacity: 0.6;
  scale: 1;
}
.imgbx.explorebx:hover a {
  opacity: 1;
}

.prodboxouter {
  position: relative;
}
.prodboxouter .prodbx .sizebar {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  display: inline-flex;
  max-width: 12.125rem;
  height: unset;
  padding: 0.75rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  margin: 0 auto;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.prodboxouter .prodbx .sizebar ul {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
.prodboxouter .prodbx .sizebar ul li a {
  display: inline-flex;
  width: 1.875rem;
  height: 1.875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.9375rem;
  background: var(--Light-Bg, #f4f4f4);
  opacity: 1;
  position: static;
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}
.prodboxouter .prodbx .sizebar ul li:nth-child(1) a {
  background-color: #080115;
  color: white;
}
.prodboxouter .prodbx .wishlist {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0;
  border-radius: 3.125rem;
}
.prodboxouter .prodbx .wishlist label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  font-size: 1.25rem;
  border-radius: 3.125rem;
}
.prodboxouter .prodbx .wishlist input[type=checkbox] {
  padding: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  border-radius: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
}
.prodboxouter .prodbx .wishlist input[type=checkbox]:checked + .fa-heart {
  display: none;
}
.prodboxouter .prodbx .wishlist input[type=checkbox]:checked + .fa-heart + .fa-heart {
  display: block;
  color: #cf3636;
}
.prodboxouter .prodbx .wishlist .show {
  display: block;
}
.prodboxouter .prodbx .wishlist .hide {
  display: none;
}
.prodboxouter .textbx {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.prodboxouter .textbx h5 {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}
.prodboxouter .textbx h5 a {
  color: var(--Dark, #080115);
}
.prodboxouter .textbx h5 + span {
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  display: inline-block;
}
.prodboxouter .textbx h6 {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}
.prodboxouter .textbx h6 + del {
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration-line: line-through;
  text-transform: capitalize;
}
.prodboxouter:hover .sizebar {
  opacity: 1;
}
.prodboxouter:hover img {
  opacity: 0.6;
  scale: 1;
}
.prodboxouter:hover a {
  opacity: 1;
}

.shopbycolor {
  background: var(--Light-Bg, #f4f4f4);
}
.shopbycolor .colorssec .colorssec-row {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  align-self: stretch;
}
.shopbycolor .colorssec .colorssec-row .singleslide {
  max-width: calc(16.6666666667% - 25px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  position: relative;
}
.shopbycolor .colorssec .colorssec-row .singleslide span {
  color: var(--Dark, #080115);
  text-align: center;
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.shopbycolor .colorssec .colorssec-row .singleslide img {
  border-radius: 14.5rem;
}
.shopbycolor .colorssec .colorssec-row .singleslide .abs {
  position: absolute;
  inset: 0;
}

.shopbyactivewear {
  position: relative;
}
.shopbyactivewear .activewear-static {
  border-radius: 0.125rem;
  position: relative;
  overflow: hidden;
}
.shopbyactivewear .activewear-static img {
  height: 100%;
}
.shopbyactivewear .activewear-static:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 1, 21, 0) 53.29%, rgba(8, 1, 21, 0.6) 75.92%, #080115 100%);
}
.shopbyactivewear .activewear-static span {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  position: absolute;
  bottom: 1.87rem;
  left: 1.88rem;
  color: var(--White, #fff);
  font-family: Mulish;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.shopbyactivewear .activewear-static .abs {
  position: absolute;
  inset: 0;
}
.shopbyactivewear .product-slider {
  position: absolute;
  right: 0;
  top: 170px;
  max-width: calc(50vw + 240px);
}
.shopbyactivewear .nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.shopbyactivewear .nav-buttons .nav-arrows {
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #080115;
  transition: all 0.3s ease-in-out;
  border-radius: 3.125rem;
}
.shopbyactivewear .nav-buttons .nav-arrows:hover {
  background-color: #080115;
}
.shopbyactivewear .nav-buttons .nav-arrows:hover img {
  filter: brightness(0) invert(1);
}
.shopbyactivewear .nav-buttons .nav-arrows img {
  width: 1.875rem;
  filter: brightness(1) invert(1);
  transition: all 0.3s ease-in-out;
}
.shopbyactivewear .nav-buttons .swiper-button-prev-custom img {
  rotate: 180deg;
}
.shopbyactivewear .swiper-controls {
  display: none;
}

.letsexplore {
  padding-bottom: 0.94rem;
}
.letsexplore .custom-explore-row {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  align-self: stretch;
}
.letsexplore .custom-explore-row .explore-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  align-self: stretch;
}
.letsexplore .custom-explore-row .explore-swiper .swiper-wrapper .swiper-slide {
  max-width: calc(20% - 4px);
}
.letsexplore .swiper-controls {
  display: none;
}

.formsec {
  position: relative;
  padding-bottom: 0.62rem;
}
.formsec .container {
  position: relative;
}
.formsec .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.formsec .formbg {
  position: absolute;
  inset: 0;
}
.formsec .formbg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 1, 21, 0) 56.56%, rgba(8, 1, 21, 0.6) 77.43%, #080115 100%);
}
.formsec .text {
  position: relative;
  inset: 0 0.75rem;
  padding: 2.81rem;
}
.formsec .text .row {
  height: 100%;
}
.formsec .text .row .offtext {
  max-width: 38rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}
.formsec .text .row .offtext h2,
.formsec .text .row .offtext p {
  color: white;
}
.formsec .text .row .formouter {
  background-color: white;
  padding: 2.5rem 1.25rem;
  height: 100%;
  border-radius: 0.125rem;
  overflow: hidden;
}
.formsec .text .row .formouter h4 {
  color: #080115;
  margin-bottom: 2.5rem;
}
.formsec .text .row .formouter .input-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  align-self: stretch;
}
.formsec .text .row .formouter .input-form .inputouter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}
.formsec .text .row .formouter .input-form .inputouter .input-inner p {
  margin-bottom: 0.625rem;
}
.formsec .text .row .formouter .input-form .inputouter .input-inner.full {
  width: 100%;
}
.formsec .text .row .formouter .input-form .inputouter .input-inner.half {
  width: 50%;
}
.formsec .text .row .formouter .input-form .inputouter .input-inner input:not([type=submit], [type=checkbox], [type=radio]) {
  width: 100%;
  border-radius: 0.125rem;
  background: var(--Light-Bg, #f4f4f4);
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  padding: 0.94rem 1.25rem;
  position: relative;
}
.formsec .text .row .formouter .input-form .inputouter .input-inner input:not([type=submit], [type=checkbox], [type=radio])::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-position: right 20px center;
  background-size: 20px;
}
.formsec .wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  border-radius: 20px;
  padding-bottom: 5px !important;
}
.formsec .wpcf7-form.invalid .wpcf7-response-output {
  background-color: #ff8798;
  color: #950015;
  border-color: #ff0024 !important;
}
.formsec .wpcf7-form.sent .wpcf7-response-output {
  background-color: #9bffa4;
  color: #12731b;
  border-color: #12731b !important;
}
.formsec .intl-tel-input {
  display: flex;
  border-radius: 2px;
  justify-content: flex-start;
  align-items: stretch;
}
.formsec .intl-tel-input .flag-container {
  position: static;
  border: none;
  padding: 0;
  border-radius: 2px 0px 0 2px !important;
  background: transparent;
}

.mainft {
  background: var(--Dark, #080115);
  padding-top: 5rem;
}
.mainft .ftlogo {
  margin-bottom: 3.75rem;
  text-align: center;
}
.mainft .ftlogo a img {
  max-width: 18.50075rem;
  width: 100%;
  margin: 0 auto;
}
.mainft .links {
  max-width: 52rem;
  margin: 0 auto;
  padding-bottom: 3.75rem;
}
.mainft .links ul {
  gap: 1.88rem 3.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.mainft .links ul li {
  color: var(--White, #fff);
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
}
.mainft .links ul li:before {
  content: "|";
  color: #f4f4f4;
  position: absolute;
  right: -2rem;
  top: 0;
}
.mainft .links ul li:nth-child(4n):before {
  display: none;
}
.mainft .links ul li a {
  color: var(--White, #fff);
}
.mainft .social-links {
  max-width: 79.875rem;
  margin: 0 auto;
  border-top: 1px solid rgba(244, 244, 244, 0.1);
  padding-top: 1.87rem;
  padding-bottom: 1.25rem;
}
.mainft .social-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.mainft .social-links ul li a {
  border-radius: 50px;
  width: 1.875rem;
  height: 1.875rem;
  aspect-ratio: 1/1;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080115;
}
.mainft .container + img {
  width: 100%;
}

.shop-activity-swiper .swiper-wrapper {
  gap: 1.88rem;
}
.shop-activity-swiper .swiper-slide {
  width: calc(25% - 22px);
}
.shop-activity-swiper .swiper-slide .col-md-3 {
  width: 100%;
}

.mobilebg {
  display: none;
}

.shop-color-swiper .swiper-controls,
.shop-activity-swiper .swiper-controls {
  display: none;
}

.inner-banner {
  background: var(--Light-Bg, #f4f4f4);
  padding: 2.19rem 0 2.25rem;
}
.inner-banner .mxw410 {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto;
}
.inner-banner h1 {
  color: var(--Dark, #080115);
  text-align: center;
  font-family: Mulish;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.inner-banner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
}
.inner-banner ul li {
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 144.444% */
  position: relative;
}
.inner-banner ul li:before {
  content: "";
  position: absolute;
  right: -1.625rem;
  top: 0.375rem;
  background: url(../images/breacrumb-arrow.png) no-repeat 0 0;
  width: 0.5rem;
  height: 0.875rem;
  background-size: 100% 100%;
}
.inner-banner ul li:last-child:before {
  display: none;
}
.inner-banner ul li a {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 144.444% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}

.collection-sec .prod-listing {
  padding-bottom: 7.5rem;
}
.collection-sec .prod-listing > ul {
  display: flex;
  row-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  flex-wrap: wrap;
}
.collection-sec .prod-listing > ul > li {
  max-width: calc(25% - 1.4375rem);
}
.collection-sec .pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  padding: 0;
}
.collection-sec .pagination-container .pagination-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}
.collection-sec .pagination-container .pagination-list .page-item {
  font-size: 18px;
  color: #6c6971;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.collection-sec .pagination-container .pagination-list .page-item:hover {
  color: #080115;
}
.collection-sec .pagination-container .pagination-list .page-item.active {
  color: #080115;
  font-weight: 600;
  border: 1px solid #444248;
  border-radius: 50%;
}
.collection-sec .pagination-container .nav-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 12px;
  height: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-sec .pagination-container .nav-arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  display: block;
}
.collection-sec .pagination-container .nav-arrow.prev::after {
  transform: rotate(45deg);
}
.collection-sec .pagination-container .nav-arrow.next::after {
  transform: rotate(-135deg);
}
.collection-sec .pagination-container .nav-arrow:hover::after {
  border-color: #000;
}
.collection-sec {
  /* SIDEBAR CONTAINER */
}
.collection-sec .filter-sidebar {
  max-width: 20rem;
  background: #fff;
  padding: 0.625rem;
}
.collection-sec {
  /* HEADER */
}
.collection-sec .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.collection-sec .sidebar-header h2 {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}
.collection-sec .sidebar-header .clear-btn {
  background: white;
  padding: 0.375rem 0.75rem;
  border-radius: 3.125rem;
  border: 1px solid #3b6007;
  color: #3b6007;
  font-family: Mulish;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.2s ease;
}
.collection-sec .sidebar-header .clear-btn:hover {
  background-color: #3b6007;
  color: white;
}
.collection-sec {
  /* ACCORDION GROUP */
}
.collection-sec .filter-group {
  border-bottom: 0.0625rem solid transparent;
  /* Spacer */
  margin-bottom: 1.5rem;
  /* HEADER */
}
.collection-sec .filter-group .group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.collection-sec .filter-group .group-header h3 {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.collection-sec .filter-group .group-header .chevron {
  width: 0.75rem;
  height: 0.75rem;
  border-right: 0.125rem solid #555;
  border-bottom: 0.125rem solid #555;
  transform: rotate(225deg);
  /* Pointing up by default */
  transition: transform 0.3s ease;
  margin-top: 0.375rem;
}
.collection-sec .filter-group {
  /* CONTENT WRAPPER */
}
.collection-sec .filter-group .group-content {
  max-height: 62.5rem;
  /* Arbitrary large height for transition */
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}
.collection-sec .filter-group {
  /* CLOSED STATE */
}
.collection-sec .filter-group.closed .chevron {
  transform: rotate(45deg);
  /* Pointing down */
  margin-top: -0.25rem;
}
.collection-sec .filter-group.closed .group-content {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}
.collection-sec {
  /* CUSTOM CHECKBOXES */
}
.collection-sec .checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--Dark-Paragraph, #444248);
  font-family: Mulish;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* Hide the default browser checkbox */
}
.collection-sec .checkbox-item input {
  display: none;
}
.collection-sec .checkbox-item {
  /* The Box Container */
}
.collection-sec .checkbox-item .custom-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #aaa;
  /* Gray border */
  border-radius: 0.125rem;
  margin-right: 0.75rem;
  position: relative;
  transition: all 0.2s ease;
  background-color: #fff;
  /* The Checkmark (Hidden by default) */
}
.collection-sec .checkbox-item .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 0.125rem;
  width: 0.3125rem;
  height: 0.625rem;
  border: solid white;
  border-width: 0 0.125rem 0.125rem 0;
  /* Creates the 'L' shape */
  transform: rotate(45deg) scale(0);
  /* Rotated & shrunk */
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-sec .checkbox-item {
  /* Hover State */
}
.collection-sec .checkbox-item:hover .custom-checkbox {
  border-color: #666;
}
.collection-sec .checkbox-item {
  /* Checked State */
}
.collection-sec .checkbox-item input:checked + .custom-checkbox {
  background-color: #3b6007;
  /* The Olive Green */
  border-color: #3b6007;
}
.collection-sec .checkbox-item input:checked + .custom-checkbox::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
  /* Reveal and scale up */
}
.collection-sec {
  /* PRICING PILLS */
}
.collection-sec .price-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.collection-sec .price-pills .price-pill {
  padding: 0.5rem 0.7rem;
  border: 0.0625rem solid #aaa;
  border-radius: 1.25rem;
  background: white;
  color: #888;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.collection-sec .price-pills .price-pill:hover {
  border-color: #666;
  color: #444;
}
.collection-sec .price-pills .price-pill.active {
  border-color: #8e9c68;
  color: #8e9c68;
  background-color: rgba(142, 156, 104, 0.05);
  font-weight: 600;
}

.designedwithintention {
  background: var(--Light-Bg, #f4f4f4);
}
.designedwithintention h2 {
  text-align: center;
  margin-bottom: 3.13rem;
}
.designedwithintention .designedwithintention-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.designedwithintention .designedwithintention-row .designedwithintention-bx {
  display: flex;
  max-width: 19.125rem;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.designedwithintention .designedwithintention-row .designedwithintention-bx .icon {
  width: 6.25rem;
  height: 6.25rem;
  border: 1px solid #080115;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.designedwithintention .designedwithintention-row .designedwithintention-bx .icon img {
  aspect-ratio: 1/1;
  width: 60px;
  height: 60px;
}
.designedwithintention .designedwithintention-row .designedwithintention-bx h5 {
  color: var(--Dark, #080115);
  text-align: center;
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

.recent .nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.recent .nav-buttons .nav-arrows {
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #080115;
  transition: all 0.3s ease-in-out;
  border-radius: 3.125rem;
}
.recent .nav-buttons .nav-arrows:hover {
  background-color: #080115;
}
.recent .nav-buttons .nav-arrows:hover img {
  filter: brightness(0) invert(1);
}
.recent .nav-buttons .nav-arrows img {
  width: 1.875rem;
  filter: brightness(1) invert(1);
  transition: all 0.3s ease-in-out;
}
.recent .nav-buttons .recent-prev-custom img {
  rotate: 180deg;
}
.move-with-power {
  padding-bottom: 0.63rem;
}
.move-with-power .move-with-power-inner {
  overflow: hidden;
  position: relative;
}
.move-with-power .move-with-power-inner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 1, 21, 0) 51.36%, rgba(8, 1, 21, 0.3) 70.15%, #080115 90.47%);
  bottom: -40px;
}
.move-with-power .move-with-power-inner .text {
  max-width: 54.375rem;
  position: absolute;
  bottom: 80px;
  left: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  z-index: 1;
}
.move-with-power .move-with-power-inner .text h2 {
  color: white;
  margin-bottom: 0;
}
.move-with-power .move-with-power-inner .text p {
  color: var(--White, #fff);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 144.444% */
  margin-bottom: 0;
}

.cat-sec .row {
  gap: 1.88rem 0;
}
.cat-sec .cat-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}
.cat-sec .cat-img img {
  border-radius: 200px;
  height: 361px;
  width: 361px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .cat-sec .cat-img img {
    border-radius: 200px;
    height: 320px;
    width: 320px;
  }
}
@media screen and (max-width: 1400px) {
  .cat-sec .cat-img img {
    height: 260px;
    width: 260px;
  }
}
@media screen and (max-width: 1200px) {
  .cat-sec .cat-img img {
    height: 210px;
    width: 210px;
  }
}
@media screen and (max-width: 991px) {
  .cat-sec .cat-img img {
    height: 210px;
    width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .cat-sec .cat-img img {
    height: 150px;
    width: 150px;
  }
}
.cat-sec .cat-img span {
  color: var(--Dark, #080115);
  text-align: center;
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}
.cat-sec .cat-img .abs {
  position: absolute;
  inset: 0;
}

.about-sec h3 {
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-bottom: 1.2rem;
}
.about-sec .row {
  margin-bottom: 1.875rem;
}
.about-sec .row:last-child {
  margin-bottom: 0;
}
.about-sec .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.about-sec .row:nth-child(2n) .txt {
  padding-left: 0;
  max-width: 39.125rem;
}
.about-sec .row:nth-child(2n) .txt h2 {
  max-width: 30.75rem;
}
.about-sec .row .img img {
  width: 100%;
}
.about-sec .row .txt {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 9rem;
}
.about-sec .row .txt p {
  color: var(--Dark-Paragraph, #444248);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 144.444% */
  margin-bottom: 0;
}

.prod-craft h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.prod-craft .prod-craft-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
}
.prod-craft .prod-craft-container .abs {
  position: absolute;
  inset: 0;
}
.prod-craft .prod-craft-container .img img {
  width: 100%;
}
.prod-craft .prod-craft-container .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 24.5rem;
}
.prod-craft .prod-craft-container .text h5 {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.prod-craft .prod-craft-container .text p {
  color: var(--Dark-Paragraph, #444248);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 144.444% */
  margin-bottom: 0;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.btn-row .btn {
  border-color: white;
}
.btn-row .btn.transparent {
  border-color: white;
  color: white;
  background-color: transparent;
}
.btn-row .btn.transparent:hover {
  background-color: white;
  color: var(--Dark, #080115);
}

.contact-sec h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-sec .faq_section {
  max-width: 63.5rem;
  margin: 0 auto;
}
.contact-sec .faq_section .faq_box {
  width: 100%;
}
.contact-sec .faq_section .faq_box p:last-of-type {
  margin-bottom: 0;
}
.contact-sec .faq_section .faq_box .faq_item {
  margin-bottom: 1.87rem;
}
.contact-sec .faq_section .faq_box .faq_item:last-child {
  margin-bottom: 0;
}
.contact-sec .faq_section .faq_box .faq_item .acc_trigger {
  display: flex;
  padding: 0.9375rem 1.25rem;
  align-items: center;
  align-self: stretch;
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 0.125rem;
  background: var(--Light-Bg, #f4f4f4);
}
.contact-sec .faq_section .faq_box .faq_item .acc_trigger .q_text {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.contact-sec .faq_section .faq_box .faq_item .acc_trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 5px;
}
.contact-sec .faq_section .faq_box .faq_item .acc_trigger.active::after {
  transform: rotate(-135deg);
  margin-top: 5px;
}
.contact-sec .faq_section .faq_box .faq_item .acc_container {
  display: none;
  background-color: #fff;
}
.contact-sec .faq_section .faq_box .faq_item .acc_container .content {
  padding: 20px 25px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.contact-sec .faq_section .faq_cta_container {
  text-align: center;
  margin-top: 40px;
}
.contact-sec .faq_section .faq_cta_container .faq_btn {
  display: inline-block;
  background-color: #080313;
  color: #ffffff;
  padding: 18px 35px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  transition: opacity 0.3s ease;
}
.contact-sec .faq_section .faq_cta_container .faq_btn:hover {
  opacity: 0.9;
}
.contact-sec.txt {
  padding: 0 0 5rem;
}
.contact-sec.txt h2 {
  margin-bottom: 1.7rem;
}
.contact-sec.txt h4 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.contact-sec.txt p {
  text-align: center;
  font-size: 1.2rem;
  text-align: center;
}
.contact-sec.txt p a {
  color: #000;
  border-bottom: 1px solid #000;
}

.sendmessage {
  background: var(--Light-Bg, #f4f4f4);
}
.sendmessage h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sendmessage .mxw1016 {
  max-width: 1016px;
  margin: 0 auto;
}
.sendmessage input:not([type=submit], [type=radio]),
.sendmessage [type=checkbox] {
  border-radius: 0.125rem;
  background: var(--White, #fff);
  padding: 0.9375rem 1.25rem;
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sendmessage textarea {
  padding: 0.9375rem 1.25rem;
  border-radius: 0.125rem;
  background: var(--White, #fff);
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sendmessage .formouter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  align-self: stretch;
}
.sendmessage .formouter .form-row {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  align-self: stretch;
}
.sendmessage .formouter .form-row .inputs {
  width: 100%;
}
.sendmessage .formouter .form-row .inputs.half {
  width: 50%;
}
.sendmessage .formouter .form-row .inputs input[type=submit] {
  max-width: 14.5rem;
  width: 100%;
}

.newcollectiondetails-sec .newcollect-top {
  margin-bottom: 1.88rem;
}
.newcollectiondetails-sec .newcollect-bottom p:last-of-type {
  margin-bottom: 0;
}
.newcollectiondetails-sec .newcollect-bottom .col-md-4:last-child ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
}
.newcollectiondetails-sec .newcollect-bottom .col-md-4:last-child ul:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.newcollectiondetails-sec .newcollect-bottom ul {
  display: flex;
  align-items: center;
  gap: 0.625rem 1.25rem;
  align-self: stretch;
  flex-wrap: wrap;
  padding-bottom: 1.87rem;
  margin-bottom: 1.87rem;
  border-bottom: 1px solid #f4f4f4;
}
.newcollectiondetails-sec .newcollect-bottom ul li {
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem;
  /* 162.5% */
  position: relative;
  padding-left: 30px;
}
.newcollectiondetails-sec .newcollect-bottom ul li:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 7px;
  height: 7px;
  background-color: #6c6971;
  border-radius: 10px;
}
.newcollectiondetails-sec .newcollect-bottom-text-row {
  margin-bottom: 1rem;
}
.newcollectiondetails-sec .newcollect-bottom-text-row:last-child {
  margin-bottom: 0rem;
}
.newcollectiondetails-sec .newcollect-bottom-text-row:last-child ul {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.newcollectiondetails-sec .slider-sec {
  position: relative;
  /* Main Wrapper */
}
.newcollectiondetails-sec .slider-sec .product-gallery-wrapper {
  position: absolute;
  left: 0.63rem;
  top: 0.63rem;
  width: 100px;
  max-height: 400px;
  max-height: 400px;
  /* height: 600px; */
  /* padding: 0; */
  background: #fff;
  z-index: 2;
  min-height: 100px;
}
.newcollectiondetails-sec .slider-sec {
  /* Thumbnails Slider (Left Column) */
}
.newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-wrapper {
  /* Allows vertical stacking */
}
.newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-slide {
  width: 100%;
  height: 100px !important;
  /* Force square-ish height for thumbs */
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  /* Prepare for border transition */
}
.newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-slide {
  /* Active State - Matching the white border in your image */
}
.newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: white;
  /* or #fff if background is dark */
  box-shadow: 0 0 0 2px #fff inset;
  /* Inner white border trick */
}
.newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-slide:hover {
  opacity: 1;
}
.newcollectiondetails-sec .slider-sec {
  /* Main Image Slider (Right Column) */
}
.newcollectiondetails-sec .slider-sec .gallery-main {
  flex: 1;
  /* Takes remaining width */
  height: 100%;
  border-radius: 8px;
  position: relative;
  /* For absolute positioning of heart icon */
}
.newcollectiondetails-sec .slider-sec .gallery-main .swiper-slide {
  background-color: #eee;
  height: auto !important;
}
.newcollectiondetails-sec .slider-sec .gallery-main .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Keeps the center of the image visible */
  -o-object-position: center;
     object-position: center;
}
.newcollectiondetails-sec .slider-sec .gallery-main {
  /* Floating Wishlist Icon */
}
.newcollectiondetails-sec .slider-sec .gallery-main .wishlist-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  /* Glassmorphism effect */
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.newcollectiondetails-sec .slider-sec .gallery-main .wishlist-icon svg {
  stroke: #fff;
  fill: transparent;
  transition: fill 0.2s, stroke 0.2s;
}
.newcollectiondetails-sec .slider-sec .gallery-main .wishlist-icon:hover {
  background: rgba(255, 255, 255, 0.8);
}
.newcollectiondetails-sec .slider-sec .gallery-main .wishlist-icon:hover svg {
  fill: #ff6b6b;
  stroke: #ff6b6b;
}
.newcollectiondetails-sec .textsec {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  /* CRITICAL: Stops the zoomed image from spilling out */
  z-index: 10;
}
.newcollectiondetails-sec .textsec h3 {
  max-width: 30.8rem;
}
.newcollectiondetails-sec .textsec .pricedigit {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  padding-bottom: 1.87rem;
  margin-bottom: 1.87rem;
  border-bottom: 1px solid #f4f4f4;
}
.newcollectiondetails-sec .textsec .pricedigit .prices {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.newcollectiondetails-sec .textsec .pricedigit .prices h5 {
  margin-bottom: 0;
  font-weight: 700;
}
.newcollectiondetails-sec .textsec .pricedigit .prices del {
  color: var(--Paragraph, #b5b4b8);
  text-align: right;
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}
.newcollectiondetails-sec .textsec .pricedigit .support-text {
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.newcollectiondetails-sec .textsec .rating {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.newcollectiondetails-sec .textsec .rating .rating-img img {
  max-width: 6.88rem;
  width: 100%;
}
.newcollectiondetails-sec .textsec .rating .rating-text p {
  margin-bottom: 0;
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.newcollectiondetails-sec .textsec .rating .rating-text p span {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.newcollectiondetails-sec .textsec .rating + p {
  margin-bottom: 1.88rem;
}
.newcollectiondetails-sec .textsec h6 {
  margin-bottom: 1.25rem;
}
.newcollectiondetails-sec .textsec .color-sec {
  margin-bottom: 1.88rem;
}
.newcollectiondetails-sec .textsec .color-sec img {
  max-width: 7.31rem;
}
.newcollectiondetails-sec .textsec .size-sec {
  position: relative;
  margin-bottom: 1.88rem;
}
.newcollectiondetails-sec .textsec .size-sec .guide {
  position: absolute;
  right: 0;
  top: 0;
  color: #3b6007;
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}
.newcollectiondetails-sec .textsec .size-sec .size-selection ul {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
}
.newcollectiondetails-sec .textsec .size-sec .size-selection ul li a {
  display: flex;
  width: 3.125rem;
  height: 3.125rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 5.9375rem;
  background: var(--Light-Bg, #f4f4f4);
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.newcollectiondetails-sec .textsec .size-sec .size-selection ul li a:hover {
  background: var(--Dark, #080115);
  color: var(--White, #fff);
}
.newcollectiondetails-sec .textsec .shipping-text {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  padding-bottom: 1.87rem;
  margin-bottom: 1.87rem;
  border-bottom: 1px solid #f4f4f4;
}
.newcollectiondetails-sec .textsec .shipping-text span {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.newcollectiondetails-sec .textsec .shipping-text span img {
  width: 1.875rem;
  height: 1.875rem;
  aspect-ratio: 1/1;
}
.newcollectiondetails-sec .textsec .four-pods {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  max-width: 37.3rem;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 1.88rem;
}
.newcollectiondetails-sec .textsec .four-pods .pods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  text-align: center;
  position: relative;
}
.newcollectiondetails-sec .textsec .four-pods .pods:before {
  content: "";
  background-color: #f4f4f4;
  width: 0.0625rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.125rem;
}
.newcollectiondetails-sec .textsec .four-pods .pods:last-child:before {
  display: none;
}
.newcollectiondetails-sec .textsec .four-pods .pods img {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
}
.newcollectiondetails-sec .textsec .four-pods .pods p {
  margin-bottom: 0;
  color: var(--Dark, #080115);
  font-weight: 500;
}
.newcollectiondetails-sec .textsec .quantity-cart {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity {
  /* Wrapper for the capsule */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector {
  display: flex;
  padding: 0.3125rem;
  align-items: center;
  gap: 0.625rem;
  border-radius: 3.125rem;
  border: 1px solid var(--Dark, #080115);
  background: var(--White, #fff);
  /* Input Field (The Number) */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .qty-input {
  width: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 0;
  pointer-events: none;
  /* Disables manual typing if you only want button control */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .qty-input:focus {
  outline: none;
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector {
  /* Shared Button Styles */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .qty-btn {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.375rem 0.625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 5.9375rem;
  background: var(--Light-Bg, #f4f4f4);
  border: none;
  /* Click feedback */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .qty-btn:active {
  transform: scale(0.95);
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector {
  /* Decrease Button (Light Grey) */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .decrease {
  background-color: #f4f4f4;
  /* Very light grey */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .decrease svg path {
  stroke: #1a1a1a;
  /* Dark icon */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .decrease:hover {
  background-color: #e0e0e0;
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector {
  /* Increase Button (Dark) */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .increase {
  background-color: #0b0b0b;
  /* Almost black */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .increase svg path {
  stroke: #ffffff;
  /* White icon */
}
.newcollectiondetails-sec .textsec .quantity-cart .quantity .quantity-selector .increase:hover {
  background-color: #2a2a2a;
}
.newcollectiondetails-sec .textsec .quantity-cart .cart {
  width: 100%;
}
.newcollectiondetails-sec .textsec .quantity-cart .cart .btn {
  width: 100%;
  position: relative;
  gap: 1.25rem;
  border-radius: 0.125rem;
}
.newcollectiondetails-sec .textsec .quantity-cart .cart .btn img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}
.newcollectiondetails-sec .textsec .quantity-cart .cart .btn:hover img {
  filter: unset;
}
.newcollectiondetails-sec .textsec .quantity-cart .cart .btn input[type=submit] {
  position: absolute;
  inset: 0;
  background-color: transparent;
  border: none;
}

.product-img--main {
  overflow: hidden;
  height: 100%;
}
.product-img--main img {
  height: 100%;
}

.product-img--main__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-out;
  cursor: pointer;
}

.authModal .modal-body {
  padding: 0;
}

.auth-popup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.auth-popup .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.auth-popup .auth-container {
  background: #ffffff;
  width: 100%;
  max-width: 100%;
  padding: 0;
  border-radius: 2px;
}
.auth-popup .auth-tabs {
  display: flex;
  padding-top: 1.87rem;
}
.auth-popup .auth-tabs .tab-btn {
  flex: 1;
  padding: 0.625rem;
  border: none;
  background: white;
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.auth-popup .auth-tabs .tab-btn.active {
  color: var(--Dark, #080115);
}
.auth-popup .auth-tabs .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #080115;
}
.auth-popup .auth-content {
  padding: 1.87rem 2.5rem;
}
.auth-popup .auth-content .tab-panel {
  display: none;
}
.auth-popup .auth-content .tab-panel.active {
  display: block;
}
.auth-popup .auth-content .auth-title {
  color: var(--Dark, #080115);
  font-family: Mulish;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.63rem;
}
.auth-popup .auth-content .auth-subtitle {
  color: var(--Dark-Paragraph, #444248);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 1.88rem;
}
.auth-popup .auth-form .input-group {
  margin-bottom: 1.25rem;
}
.auth-popup .auth-form .input-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.auth-popup .auth-form input:not([type=submit], [type=radio]),
.auth-popup .auth-form [type=checkbox] {
  border-radius: 0.125rem;
  background: var(--Light-Bg, #f4f4f4);
  padding: 0.9375rem 1.25rem;
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.auth-popup .auth-form input:not([type=submit], [type=radio]):focus,
.auth-popup .auth-form [type=checkbox]:focus {
  outline: none;
  background-color: #eee;
}
.auth-popup .auth-form textarea {
  padding: 0.9375rem 1.25rem;
  border-radius: 0.125rem;
  background: var(--White, #fff);
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.auth-popup .auth-form textarea:focus {
  outline: none;
  background-color: #eee;
}
.auth-popup .auth-form .auth-extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 25px;
  font-size: 13px;
}
.auth-popup .auth-form .auth-extras label.checkbox-container {
  color: var(--Dark-Paragraph, #444248);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.auth-popup .auth-form .auth-extras .forgot-link {
  color: #0072cf;
  text-align: right;
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.auth-popup .auth-form .terms-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.auth-popup .auth-form .terms-container .terms-text {
  color: var(--Dark-Paragraph, #444248);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin: 0 0 1.87rem 0;
  max-width: 24.125rem;
}
.auth-popup .auth-form .terms-container .terms-text a {
  color: #000;
  text-decoration: underline;
}
.auth-popup .auth-form input[type=submit] {
  width: 100%;
  cursor: pointer;
}
.auth-popup .auth-form input[type=submit]:hover {
  opacity: 0.9;
}
.auth-popup .checkbox-container {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  color: #444;
}
.auth-popup .checkbox-container input {
  display: none;
}
.auth-popup .checkbox-container .checkmark {
  height: 16px;
  width: 16px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  margin-top: 4px;
  flex: 1 0 16px;
}
.auth-popup .checkbox-container input:checked ~ .checkmark {
  background-color: #080313;
  border-color: #080313;
}
.auth-popup .checkbox-container input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.woocommerce-account .auth-container#customer_login {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
  border-radius: 2px;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}
.woocommerce-account .auth-container#customer_login .auth-tabs {
  display: flex;
  padding-top: 1.87rem;
}
.woocommerce-account .auth-container#customer_login .auth-tabs .tab-btn {
  flex: 1;
  padding: 0.625rem;
  border: none;
  background: #ffffff;
  color: #6c6971;
  font-family: "Mulish", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.woocommerce-account .auth-container#customer_login .auth-tabs .tab-btn.active {
  color: #080115;
}
.woocommerce-account .auth-container#customer_login .auth-tabs .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #080115;
}
.woocommerce-account .auth-container#customer_login .auth-content {
  padding: 1.87rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .woocommerce-account .auth-container#customer_login .auth-content {
    padding: 1.25rem;
  }
}
.woocommerce-account .auth-container#customer_login .auth-content .tab-panel {
  display: none;
}
.woocommerce-account .auth-container#customer_login .auth-content .tab-panel.active {
  display: block;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-title {
  color: #080115;
  font-family: "Mulish", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.63rem;
}
@media screen and (max-width: 767px) {
  .woocommerce-account .auth-container#customer_login .auth-content .auth-title {
    text-align: left;
  }
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-subtitle {
  color: #444248;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 1.88rem;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .input-group {
  margin-bottom: 1.25rem;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .input-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .woocommerce-account .auth-container#customer_login .auth-content .auth-form .input-row {
    flex-direction: column;
  }
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form input:not([type=submit], [type=radio]),
.woocommerce-account .auth-container#customer_login .auth-content .auth-form [type=checkbox] {
  width: 100%;
  border-radius: 0.125rem;
  background: #f4f4f4;
  padding: 0.9375rem 1.25rem;
  color: #6c6971;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  box-sizing: border-box;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form input:not([type=submit], [type=radio]):focus,
.woocommerce-account .auth-container#customer_login .auth-content .auth-form [type=checkbox]:focus {
  outline: none;
  background-color: #eee;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .auth-extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 25px;
  font-size: 13px;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .auth-extras label.checkbox-container {
  color: #444248;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .woocommerce-account .auth-container#customer_login .auth-content .auth-form .auth-extras label.checkbox-container {
    margin-bottom: 0;
  }
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .auth-extras .forgot-link {
  color: #0072cf;
  text-align: right;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .terms-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .terms-container .terms-text {
  color: #444248;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 0 0 1.87rem 0;
  max-width: 100%;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .terms-container .terms-text a {
  color: #000;
  text-decoration: underline;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .woocommerce-privacy-policy-text p {
  color: #444248;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 1.87rem;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .woocommerce-privacy-policy-text p a {
  color: #000;
  text-decoration: underline;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form input[type=submit].btn.blackbtn {
  width: 100%;
  cursor: pointer;
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.125rem;
  border: 1px solid #080115;
  background: #000;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  transition: all 0.3s ease-in-out;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form input[type=submit].btn.blackbtn:hover {
  background: #fff;
  color: #080115;
  border: 1px solid #080115;
  opacity: 1;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .checkbox-container {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  color: #444;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .checkbox-container input {
  display: none;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .checkbox-container input:checked ~ .checkmark {
  background-color: #080313;
  border-color: #080313;
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .checkbox-container input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.woocommerce-account .auth-container#customer_login .auth-content .auth-form .checkbox-container .checkmark {
  height: 16px;
  width: 16px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  margin-top: 4px;
  flex: 1 0 16px;
}

.mainhd .headerrow .threebtns ul li a {
  position: relative;
}

.cart-count {
  position: absolute;
  background: red;
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 50px;
  top: -9px;
  right: 0;
}

.logged-in.woocommerce-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce {
    flex-direction: column;
    gap: 1.88rem;
  }
}
.logged-in.woocommerce-account .woocommerce {
  /* Sidebar Navigation */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  flex: 0 0 16rem;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    flex: 1 1 100%;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
    flex: 1 1 calc(50% - 0.25rem);
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.9375rem 1.25rem;
  background: #f4f4f4;
  color: #6c6971;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  border-radius: 0.125rem;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
    text-align: center;
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
  background: #e5e5e5;
  color: #080115;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  background: #080115;
  color: #ffffff;
}
.logged-in.woocommerce-account .woocommerce {
  /* Main Dashboard Content */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  flex: 1;
  min-width: 0;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content p {
  color: #6c6971;
  font-family: "Mulish", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content p strong {
  color: #080115;
  font-weight: 700;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content p a {
  color: #080115;
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content p a:hover {
  /* Accent color from your inputs */
  text-decoration: none;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content p:last-child {
  margin-bottom: 0;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  /* Introductory Paragraph */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content > p {
  color: #6c6971;
  font-family: "Mulish", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 1.88rem;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content > p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  /* Two-Column Address Container */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
  display: flex;
  gap: 1.875rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
  /* Individual Address Block */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address {
  flex: 1;
  width: 100%;
  background: #f4f4f4;
  border-radius: 0.125rem;
  padding: 1.87rem;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address {
    padding: 1.25rem;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address {
  /* Block Header */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address header.woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 480px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address header.woocommerce-Address-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address header.woocommerce-Address-title h2 {
  color: #080115;
  font-family: "Mulish", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  text-transform: capitalize;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address header.woocommerce-Address-title a.edit {
  color: #080115;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address header.woocommerce-Address-title a.edit:hover {
  color: #ed7005;
  /* Accent color fallback */
  text-decoration: none;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address {
  /* Address Text Details */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address address {
  color: #444248;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  /* Removes default browser italic for <address> */
  font-weight: 400;
  line-height: 1.625rem;
  margin: 0;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account {
  display: flex;
  flex-direction: unset;
  gap: 0.05rem;
  flex-wrap: wrap;
  /* Row Handling (First/Last name) */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0.625rem;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-first, .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-last {
  width: calc(50% - 0.725rem);
  float: left;
  float: left;
  /* Fallback for older WC structures */
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-first, .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-last {
    width: 100%;
    float: none;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-last {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-last {
    margin-left: 0;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-wide {
  clear: both;
  width: 100%;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-wide:last-of-type {
  margin-bottom: 0;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account {
  /* Clearfix for floating rows */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .clear {
  clear: both;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account {
  /* Labels */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account label {
  color: #080115;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account label .required {
  color: #ff0000;
  text-decoration: none;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account {
  /* Inputs */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account input.input-text {
  width: 100%;
  border-radius: 0.125rem;
  background: #f4f4f4;
  padding: 0.9375rem 1.25rem;
  color: #6c6971;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 50px;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account input.input-text:focus {
  outline: none;
  background-color: #eee;
  border-color: #080115;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account select {
  width: 100% !important;
  color: rgb(108, 105, 113) !important;
  font-family: Mulish, sans-serif !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  box-sizing: border-box !important;
  background-color: rgb(244, 244, 244) !important;
  padding: 0.9375rem 1.25rem !important;
  border-width: initial !important;
  border-style: none !important;
  border-color: initial !important;
  -o-border-image: initial !important;
     border-image: initial !important;
  border-radius: 50px;
  outline: none;
  border: none;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account {
  /* Field Description (Display Name hint) */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account span#account_display_name_description {
  display: block;
  margin-top: 0.25rem;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account span#account_display_name_description em {
  color: #6c6971;
  font-family: "Mulish", sans-serif;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.25rem;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account {
  /* Password Change Fieldset */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset {
  margin-top: 1.875rem;
  padding: 1.875rem;
  border: 1px solid #f4f4f4;
  border-radius: 0.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset legend {
  color: #080115;
  font-family: "Mulish", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 0.625rem;
  margin-bottom: 10px;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset .password-input {
  position: relative;
  display: block;
  /* Handle WC password toggle button if present */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset .password-input .show-password-input {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset .password-input .show-password-input::after {
  content: "\f06e";
  /* FontAwesome eye placeholder */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #6c6971;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account {
  /* Save Button */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  cursor: pointer;
  display: inline-flex;
  padding: 0.9375rem 2rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  border: 1px solid #080115;
  background: #080115;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button {
    width: 100%;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button:hover {
  background: #ffffff;
  color: #080115;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  /* Table General Styling */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-family: "Mulish", sans-serif;
  /* Desktop Header */
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table thead {
    display: none;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table thead tr th {
  background: #f4f4f4;
  color: #080115;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
  /* Table Body Rows */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
  border-bottom: 1px solid #f4f4f4;
  transition: background 0.3s ease;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:last-of-type {
  margin-bottom: 0;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:hover {
  background-color: #fafafa;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
    display: block;
    padding: 1.25rem;
    border: 1px solid #f4f4f4;
    margin-bottom: 1.25rem;
    border-radius: 0.125rem;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
  /* Cells */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th {
  padding: 1.25rem;
  color: #6c6971;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  vertical-align: middle;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-total,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th.woocommerce-orders-table__cell-order-total {
  font-size: 12px;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td span.woocommerce-Price-amount,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th span.woocommerce-Price-amount {
  font-size: 16px;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td,
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border: none;
    text-align: right;
    /* Label injection from data-title */
  }
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td::before,
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th::before {
    content: attr(data-title) ": ";
    font-weight: 700;
    color: #080115;
    text-transform: capitalize;
    flex: 1;
    text-align: left;
    font-size: 16px;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th {
  /* Order ID Link */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td a,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th a {
  color: #080115;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td a:hover,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th a:hover {
  color: #ed7005;
  text-decoration: underline;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th {
  /* Total Amount Styling */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td .woocommerce-Price-amount,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th .woocommerce-Price-amount {
  color: #080115;
  font-weight: 600;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
  /* Specific Cell Adjustments */
}
@media screen and (min-width: 768px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-status {
    font-weight: 500;
    color: #080115;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
  /* View Button Styling */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-actions .button.view {
  display: inline-flex;
  padding: 0.5rem 1.5rem;
  background: #080115;
  color: #ffffff;
  border: 1px solid #080115;
  border-radius: 0.125rem;
  font-family: "Mulish", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-actions .button.view:hover {
  background: #ffffff;
  color: #080115;
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-actions .button.view {
    width: auto;
    margin-top: 0.5rem;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-actions .button.invoice {
    width: auto;
    margin-top: 0.5rem;
    justify-content: center;
  }
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  /* Notice Wrapper Spacing (If WooCommerce throws errors/messages here) */
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper:not(:empty) {
  margin-bottom: 1.88rem;
}

.woocommerce-cart .woocommerce {
  /* Layout Grid */
}
.woocommerce-cart .woocommerce .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.woocommerce-cart .woocommerce .row .col-lg-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce .row .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce-cart .woocommerce .row .col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce .row .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
.woocommerce-cart .woocommerce {
  /* Cart Table Styling */
}
.woocommerce-cart .woocommerce table.shop_table.cart {
  width: 100%;
  border-collapse: collapse;
  font-family: "Mulish", sans-serif;
  border: 1px solid #f4f4f4;
}
.woocommerce-cart .woocommerce table.shop_table.cart thead {
  background: #f4f4f4;
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart thead {
    display: none;
  }
}
.woocommerce-cart .woocommerce table.shop_table.cart thead th {
  padding: 1.25rem;
  color: #080115;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  text-align: left;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item {
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item {
    display: block;
    padding: 1.25rem 0;
    position: relative;
  }
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td {
  padding: 1.25rem;
  vertical-align: middle;
  color: #6c6971;
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td::before {
    content: attr(data-title);
    font-weight: 700;
    color: #080115;
    flex: 1;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-remove {
    position: absolute;
    right: 0;
    top: 10px;
    border: none;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-remove::before {
    display: none;
  }
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-remove a.remove {
  font-size: 1.5rem;
  color: #ff0000 !important;
  text-decoration: none;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-remove a.remove:hover {
  background: transparent;
  color: #000 !important;
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-thumbnail {
    justify-content: center;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-thumbnail::before {
    display: none;
  }
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-thumbnail img {
  width: 80px;
  height: auto;
  border-radius: 4px;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name a {
  color: #080115;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.125rem;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name a:hover {
  color: #ed7005;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name .variation {
  margin-top: 5px;
  font-size: 0.875rem;
  display: flex;
  gap: 10px;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name .variation dt {
  font-weight: 700;
  color: #080115;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name .variation dd {
  margin: 0;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name .variation dd p {
  margin: 0;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-quantity .quantity input.qty {
  width: 60px;
  padding: 8px;
  background: #f4f4f4;
  border: 1px solid #eeeeee;
  text-align: center;
  border-radius: 2px;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-subtotal .amount {
  color: #080115;
  font-weight: 700;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody {
  /* Coupon & Actions Row */
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions {
  padding: 1.87rem 1.25rem;
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions {
    display: block;
    text-align: center;
  }
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon {
  float: left;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon {
    float: none;
    flex-direction: column;
    margin-bottom: 15px;
  }
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon input#coupon_code {
  width: 200px;
  padding: 0.75rem 1rem;
  background: #f4f4f4;
  border: 1px solid #eeeeee;
  font-family: "Mulish", sans-serif;
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon input#coupon_code {
    width: 100%;
  }
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit] {
  padding: 0.85rem 1.87rem;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit]:hover {
  background: #fff;
  color: #000;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit]:disabled:hover {
  background: #000;
  color: #fff;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit][name=update_cart] {
  float: right;
}
@media (max-width: 767px) {
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit][name=update_cart] {
    float: none;
    width: 100%;
  }
}
.woocommerce-cart .woocommerce {
  /* Cart Collaterals (Totals Sidebar) */
}
.woocommerce-cart .woocommerce .cart-collaterals {
  background: #f4f4f4;
  padding: 2rem;
  border-radius: 2px;
}
.woocommerce-cart .woocommerce .cart-collaterals h2 {
  color: #080115;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}
.woocommerce-cart .woocommerce .cart-collaterals .shop_table {
  width: 100%;
  margin-bottom: 2rem;
  border: none;
}
.woocommerce-cart .woocommerce .cart-collaterals .shop_table tr th,
.woocommerce-cart .woocommerce .cart-collaterals .shop_table tr td {
  padding: 1rem 0;
  border-bottom: 1px solid #dddddd;
  text-align: left;
  font-family: "Mulish", sans-serif;
}
.woocommerce-cart .woocommerce .cart-collaterals .shop_table tr th {
  color: #6c6971;
  font-weight: 500;
}
.woocommerce-cart .woocommerce .cart-collaterals .shop_table tr td {
  text-align: right;
  color: #080115;
  font-weight: 600;
}
.woocommerce-cart .woocommerce .cart-collaterals .shop_table tr.order-total th,
.woocommerce-cart .woocommerce .cart-collaterals .shop_table tr.order-total td {
  border-bottom: none;
  font-size: 1.25rem;
  padding-top: 1.5rem;
}
.woocommerce-cart .woocommerce .cart-collaterals .shop_table tr.order-total td strong {
  color: #080115;
}
.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout {
  padding: 0;
}
.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: #080115;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #080115;
  margin: 0;
  font-size: 1rem;
}
.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout .checkout-button:hover {
  background: #fff;
  color: #080115;
}

.tinv-wishlist.woocommerce {
  margin: 2rem 0;
  font-family: "Mulish", sans-serif;
  /* --- 1. Header --- */
}
.tinv-wishlist.woocommerce .tinv-header {
  margin-bottom: 2rem;
}
.tinv-wishlist.woocommerce .tinv-header h2 {
  color: #080115;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: capitalize;
}
.tinv-wishlist.woocommerce {
  /* --- 2. Wishlist Table --- */
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #f4f4f4;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list thead {
  background: #f4f4f4;
}
@media (max-width: 991px) {
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list thead {
    display: none;
  }
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list thead th {
  padding: 1.25rem;
  color: #080115;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item {
  border-bottom: 1px solid #f4f4f4;
  transition: background 0.3s ease;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item:hover {
  background: #fafafa;
}
@media (max-width: 991px) {
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item {
    display: block;
    padding: 1.5rem;
    position: relative;
  }
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td {
  padding: 1.25rem;
  vertical-align: middle;
  color: #6c6971;
}
@media (max-width: 991px) {
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    text-align: right;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td::before {
    content: attr(data-title);
    /* Note: TI Wishlist often needs JS or custom filter to add data-title, if missing use labels manually */
    font-weight: 700;
    color: #080115;
    flex: 1;
    text-align: left;
  }
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td {
  /* Specific Column Styling */
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-cb {
  width: 30px;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-cb input[type=checkbox] {
  accent-color: #080115;
  width: 18px;
  height: 18px;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-remove button {
  background: transparent;
  border: none;
  color: #6c6971;
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 0.3s;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-remove button:hover {
  color: #ff0000;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-thumbnail img {
  width: 80px;
  height: auto;
  border-radius: 2px;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-name a {
  color: #080115;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-name a:hover {
  color: #ed7005;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-price del {
  opacity: 0.6;
  margin-right: 8px;
  font-size: 0.9em;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-price ins {
  text-decoration: none;
  color: #080115;
  font-weight: 700;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-stock .stock.in-stock {
  color: #2ecc71;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-stock .stock.in-stock i {
  font-size: 0.8rem;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-action .button {
  padding: 0.75rem 1.5rem;
  background: #080115;
  color: #fff;
  border: 1px solid #080115;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-action .button:hover {
  background: #fff;
  color: #080115;
}
@media (max-width: 991px) {
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-action .button {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list {
  /* --- 3. Table Footer (Actions) --- */
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td {
  padding: 2rem 1.25rem;
  background: #fff;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-to-left {
  float: left;
}
@media (max-width: 767px) {
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-to-left {
    float: none;
    margin-bottom: 20px;
  }
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-to-right {
  float: right;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-to-right {
    float: none;
    flex-direction: column;
  }
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td {
  /* Dropdown and Button Groups */
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-input-group {
  display: flex;
  gap: 10px;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-input-group select {
  background: #f4f4f4;
  border: 1px solid #eee;
  padding: 0.6rem;
  font-family: "Mulish", sans-serif;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td button.button {
  background: #080115;
  color: #fff;
  border: 1px solid #080115;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td button.button:hover {
  background: #fff;
  color: #080115;
}
.tinv-wishlist.woocommerce {
  /* --- 4. Social Sharing --- */
}
.tinv-wishlist.woocommerce .social-buttons {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f4f4f4;
  border-radius: 2px;
}
@media (max-width: 575px) {
  .tinv-wishlist.woocommerce .social-buttons {
    flex-direction: column;
    text-align: center;
  }
}
.tinv-wishlist.woocommerce .social-buttons span {
  font-weight: 700;
  color: #080115;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.tinv-wishlist.woocommerce .social-buttons ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.tinv-wishlist.woocommerce .social-buttons ul li a {
  display: flex;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #080115;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid #eee;
}
.tinv-wishlist.woocommerce .social-buttons ul li a:hover {
  background: #080115;
  color: #fff;
  transform: translateY(-3px);
}

.collection-sec .prod-listing > ul > li {
  width: 100%;
}

.woocommerce-account .addresses .title::after,
.woocommerce-account .addresses .title::before,
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset .password-input .show-password-input::after,
.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
  display: none;
}

.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset {
  width: 100%;
  gap: 0;
  padding: 1rem;
}

.woocommerce-page .woocommerce-info + .button {
  position: relative;
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.125rem;
  border: 1px solid var(--Dark, #080115);
  background: #000000;
  color: var(--Dark, #ffffff);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  transition: all 0.3s ease-in-out;
}
.woocommerce-page .woocommerce-info .button {
  position: relative;
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.125rem;
  border: 1px solid var(--Dark, #080115);
  background: #000000;
  color: var(--Dark, #ffffff);
  font-family: Mulish;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  transition: all 0.3s ease-in-out;
  top: -10px;
  right: -20px;
}

.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-input-group select {
  height: auto;
}

.tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-cb input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-to-right {
  float: right;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.fc-wrapper .fc-place-order .fc-place-order-button {
  background-color: black !important;
  color: white !important;
}

.woocommerce-ResetPassword .woocommerce-form-row {
  width: 100% !important;
}
.woocommerce-ResetPassword .woocommerce-Input {
  width: 100% !important;
  color: rgb(108, 105, 113) !important;
  font-family: Mulish, sans-serif !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  box-sizing: border-box !important;
  border-radius: 0.125rem !important;
  background: rgb(244, 244, 244) !important;
  padding: 0.9375rem 1.25rem !important;
  border-width: initial !important;
  border-style: none !important;
  border-color: initial !important;
  -o-border-image: initial !important;
     border-image: initial !important;
}

.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-first {
  width: 100% !important;
}

.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .form-row.form-row-first:first-child {
  width: calc(50% - 0.725rem) !important;
}

.fc-inside .fc-checkout-steps .fc-contact-fields .input-text,
.fc-step__substep input[type=text],
.fc-step__substep select {
  width: 100% !important;
  color: rgb(108, 105, 113) !important;
  font-family: Mulish, sans-serif !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  box-sizing: border-box !important;
  border-radius: 0.125rem !important;
  background-color: rgb(244, 244, 244) !important;
  padding: 0.9375rem 1.25rem !important;
  border-width: initial !important;
  border-style: none !important;
  border-color: initial !important;
  -o-border-image: initial !important;
     border-image: initial !important;
  outline: none;
  border: none;
}

.select2-selection.select2-selection--single {
  border: none;
}

div.woocommerce .fc-expansible-form-section .expansible-section__toggle-plus {
  color: black;
}

.woocommerce-Button.button,
.fc-step__next-step.button {
  position: relative !important;
  display: inline-flex !important;
  padding: 0.75rem 1.25rem !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.625rem !important;
  border-radius: 0.125rem !important;
  border: 1px solid var(--Dark, #080115) !important;
  color: var(--White, #fff) !important;
  background: var(--Dark, #080115) !important;
  font-size: 1.125rem !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 1.625rem !important;
  /* 144.444% */
  transition: all 0.3s ease-in-out !important;
}

/* --- 1. Success Message --- */
.woocommerce-thankyou-order-received {
  background-color: #f4f4f4;
  padding: 1.5rem 2rem;
  border-left: 4px solid #080115;
  color: #080115;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  border-radius: 0 2px 2px 0;
}

/* --- 2. Order Overview (Horizontal Highlights) --- */
.woocommerce-order-overview {
  list-style: none;
  padding: 0;
  margin: 0 0 3.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 2rem 0;
}
.woocommerce-order-overview li {
  flex: 1;
  min-width: 140px;
  color: #6c6971;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-right: 1px solid #eeeeee;
  padding-right: 1rem;
}
.woocommerce-order-overview li:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .woocommerce-order-overview li {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 1rem;
  }
  .woocommerce-order-overview li:last-child {
    border-bottom: none;
  }
}
.woocommerce-order-overview li strong {
  display: block;
  color: #080115;
  font-size: 1.125rem;
  text-transform: none;
  margin-top: 0.5rem;
  letter-spacing: normal;
  font-weight: 700;
}

/* --- 3. Order Details Section --- */
.woocommerce-order-details {
  margin-bottom: 3.5rem;
}
.woocommerce-order-details h2.woocommerce-order-details__title {
  color: #080115;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.woocommerce-order-details .woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-order-details .woocommerce-table--order-details thead th {
  background: #f4f4f4;
  color: #080115;
  padding: 1.25rem 1rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item {
  border-bottom: 1px solid #f4f4f4;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td {
  padding: 1.5rem 1rem;
  vertical-align: top;
  color: #6c6971;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-name a {
  color: #080115;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.3s;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-name a:hover {
  color: #ed7005;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-name .product-quantity {
  font-weight: 400;
  color: #6c6971;
  margin-left: 5px;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-name {
  /* Metadata (Size/Color selection) */
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-name .wc-item-meta {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-name .wc-item-meta li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-name .wc-item-meta li strong {
  color: #080115;
  font-weight: 600;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-name .wc-item-meta li p {
  margin: 0;
  display: inline;
}
.woocommerce-order-details .woocommerce-table--order-details tbody tr.order_item td.product-total {
  text-align: right;
  color: #080115;
  font-weight: 600;
}
.woocommerce-order-details .woocommerce-table--order-details {
  /* Totals Section */
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr th,
.woocommerce-order-details .woocommerce-table--order-details tfoot tr td {
  padding: 1rem;
  border-bottom: 1px solid #f4f4f4;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr th {
  text-align: left;
  font-weight: 600;
  color: #6c6971;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr td {
  text-align: right;
  color: #080115;
  font-weight: 600;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr {
  /* Highlighting the Final Total */
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:nth-last-child(2) {
  font-size: 1.25rem;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:nth-last-child(2) th,
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:nth-last-child(2) td {
  border-bottom: none;
  padding-top: 1.5rem;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:nth-last-child(2) th {
  color: #080115;
  font-weight: 800;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:nth-last-child(2) td {
  font-weight: 800;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child {
  font-size: 0.875rem;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td {
  border-bottom: none;
  opacity: 0.8;
}

/* --- 4. Customer Details / Address --- */
.woocommerce-customer-details h2.woocommerce-column__title {
  color: #080115;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.woocommerce-customer-details address {
  font-style: normal;
  line-height: 1.8;
  color: #6c6971;
  background: #f4f4f4;
  padding: 2rem;
  border-radius: 2px;
  max-width: 450px;
}
.woocommerce-customer-details address .woocommerce-customer-details--email {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ddd;
  color: #080115;
  font-weight: 600;
  display: block;
}

.prodboxouter .prodbx .wishlist .tinv-wraper.woocommerce,
.wishlist-icon .tinv-wraper.woocommerce {
  margin: 0 !important;
}

.prodboxouter .prodbx .wishlist .tinv-wraper.woocommerce a,
.wishlist-icon .tinv-wraper.woocommerce a {
  width: 30px !important;
  height: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-icon .tinv-wraper.woocommerce a::before {
  position: static !important;
  margin: 0 !important;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
  color: white;
}

.prodboxouter .prodbx .wishlist .tinv-wraper.woocommerce a.tinvwl-product-make-remove::before,
.wishlist-icon .tinv-wraper.woocommerce a.tinvwl-product-make-remove::before {
  color: #cf3636 !important;
}

.fc-wrapper .fc-step__substep-save {
  background-color: black !important;
  color: white !important;
  min-height: 50px;
}

body div.woocommerce .fc-wrapper .fc-coupon_code__collapsible .fc-coupon-code__apply {
  color: white !important;
  background-color: black !important;
}

.checkbox input.input-checkbox {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: 18px;
  height: 18px;
  accent-color: black;
}

.cart-empty.woocommerce-info {
  border-top-color: #000000;
  background-color: rgba(0, 0, 0, 0.0901960784);
}
.cart-empty.woocommerce-info:before {
  color: #000000;
}

.wc-empty-cart-message + p.return-to-shop,
.cart-empty.woocommerce-info + p.return-to-shop {
  text-align: center;
}
.wc-empty-cart-message + p.return-to-shop .button,
.cart-empty.woocommerce-info + p.return-to-shop .button {
  background-color: black !important;
  color: white !important;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 0;
}

.woocommerce ul.order_details li strong {
  word-break: break-word;
}

.formsec .text .row .formouter .input-form .inputouter .input-inner input.wpcf7-phonetext {
  padding-left: 0;
}

.mainhd .aws-container .aws-search-field {
  line-height: 24px;
  font-size: 12px;
  position: relative;
  z-index: 2;
  height: inherit;
  min-height: inherit;
  background: var(--Light-Bg, #f4f4f4);
  color: var(--Paragraph, #6c6971);
  font-family: Mulish;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  border: none;
  padding: 0.438rem 1.25rem;
}
.mainhd .aws-container .aws-search-form {
  height: 38px;
}
.mainhd .aws-container {
  border-radius: 30px;
  overflow: hidden;
  border: none;
}
.mainhd .aws-container .aws-search-form .aws-form-btn {
  background: var(--Light-Bg, #f4f4f4);
  border: none;
  margin: 0;
}
.mainhd .aws-container .aws-search-form .aws-search-btn_icon {
  margin: 0 0px 0 0;
  right: 10px;
  height: 28px;
}

nav.pagination,
nav.woocommerce-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  padding: 0;
}
nav.pagination li,
nav.woocommerce-pagination li {
  border: none !important;
}
nav.pagination .nav-links,
nav.pagination .page-numbers,
nav.woocommerce-pagination .nav-links,
nav.woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
  border: none !important;
}
nav.pagination .nav-links span,
nav.pagination .nav-links a,
nav.pagination .page-numbers span,
nav.pagination .page-numbers a,
nav.woocommerce-pagination .nav-links span,
nav.woocommerce-pagination .nav-links a,
nav.woocommerce-pagination .page-numbers span,
nav.woocommerce-pagination .page-numbers a {
  font-size: 18px !important;
  color: #6c6971 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 2.5rem;
  height: 2.5rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
  background-color: white !important;
}
nav.pagination .nav-links span.current,
nav.pagination .nav-links a.current,
nav.pagination .page-numbers span.current,
nav.pagination .page-numbers a.current,
nav.woocommerce-pagination .nav-links span.current,
nav.woocommerce-pagination .nav-links a.current,
nav.woocommerce-pagination .page-numbers span.current,
nav.woocommerce-pagination .page-numbers a.current {
  color: #080115 !important;
  font-weight: 600 !important;
  border: 1px solid #444248 !important;
  border-radius: 50% !important;
}

.page-id-25 .mxw410,
.page-id-19 .mxw410,
.page-id-21 .mxw410,
.page-id-3 .mxw410 {
  max-width: 100%;
}
.page-id-25 .about-sec table,
.page-id-19 .about-sec table,
.page-id-21 .about-sec table,
.page-id-3 .about-sec table {
  width: 100%;
  max-width: 100%;
  font-family: "Mulish", sans-serif;
  border: 1px solid #cacaca;
  margin-bottom: 1.5rem;
}
.page-id-25 .about-sec table thead td,
.page-id-19 .about-sec table thead td,
.page-id-21 .about-sec table thead td,
.page-id-3 .about-sec table thead td {
  font-weight: 700;
  color: #000;
  padding: 0.8rem;
  font-size: 1.1rem;
  border-bottom: 2px solid #ccc;
  border-right: 2px solid #ccc;
}
.page-id-25 .about-sec table thead td strong,
.page-id-19 .about-sec table thead td strong,
.page-id-21 .about-sec table thead td strong,
.page-id-3 .about-sec table thead td strong {
  color: #000;
}
.page-id-25 .about-sec table tbody td,
.page-id-19 .about-sec table tbody td,
.page-id-21 .about-sec table tbody td,
.page-id-3 .about-sec table tbody td {
  padding: 0.8rem;
  font-size: 1.1rem;
  color: #555;
  border-right: 2px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.page-id-25 .about-sec table tbody td strong,
.page-id-19 .about-sec table tbody td strong,
.page-id-21 .about-sec table tbody td strong,
.page-id-3 .about-sec table tbody td strong {
  color: #000;
}
.page-id-25 .about-sec table tbody tr:hover,
.page-id-19 .about-sec table tbody tr:hover,
.page-id-21 .about-sec table tbody tr:hover,
.page-id-3 .about-sec table tbody tr:hover {
  background-color: #f9f9f9;
}
.page-id-25 .about-sec h2,
.page-id-19 .about-sec h2,
.page-id-21 .about-sec h2,
.page-id-3 .about-sec h2 {
  color: var(--Black, #121212);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 2rem 0 1rem;
}
.page-id-25 .about-sec h2:first-of-type,
.page-id-19 .about-sec h2:first-of-type,
.page-id-21 .about-sec h2:first-of-type,
.page-id-3 .about-sec h2:first-of-type {
  margin-top: 0;
}
.page-id-25 .about-sec h3,
.page-id-19 .about-sec h3,
.page-id-21 .about-sec h3,
.page-id-3 .about-sec h3 {
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0 0 1.2rem;
}
.page-id-25 .about-sec h4,
.page-id-19 .about-sec h4,
.page-id-21 .about-sec h4,
.page-id-3 .about-sec h4 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.9rem;
}
.page-id-25 .about-sec h4,
.page-id-19 .about-sec h4,
.page-id-21 .about-sec h4,
.page-id-3 .about-sec h4 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.page-id-25 .about-sec p,
.page-id-19 .about-sec p,
.page-id-21 .about-sec p,
.page-id-3 .about-sec p {
  font-size: 1.1rem;
  line-height: 1.7rem;
}
.page-id-25 .about-sec p:empty,
.page-id-19 .about-sec p:empty,
.page-id-21 .about-sec p:empty,
.page-id-3 .about-sec p:empty {
  display: none;
}
.page-id-25 .about-sec p strong,
.page-id-25 .about-sec p a,
.page-id-19 .about-sec p strong,
.page-id-19 .about-sec p a,
.page-id-21 .about-sec p strong,
.page-id-21 .about-sec p a,
.page-id-3 .about-sec p strong,
.page-id-3 .about-sec p a {
  color: #000;
  line-break: anywhere;
}
.page-id-25 .about-sec p a,
.page-id-19 .about-sec p a,
.page-id-21 .about-sec p a,
.page-id-3 .about-sec p a {
  font-weight: 500;
  text-decoration: underline;
}
.page-id-25 .about-sec ul,
.page-id-25 .about-sec ol,
.page-id-19 .about-sec ul,
.page-id-19 .about-sec ol,
.page-id-21 .about-sec ul,
.page-id-21 .about-sec ol,
.page-id-3 .about-sec ul,
.page-id-3 .about-sec ol {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
}
.page-id-25 .about-sec ul li,
.page-id-25 .about-sec ol li,
.page-id-19 .about-sec ul li,
.page-id-19 .about-sec ol li,
.page-id-21 .about-sec ul li,
.page-id-21 .about-sec ol li,
.page-id-3 .about-sec ul li,
.page-id-3 .about-sec ol li {
  color: var(--Paragraph, #6c6971);
  font-family: "Mulish", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.page-id-25 .about-sec ul li:last-child,
.page-id-25 .about-sec ol li:last-child,
.page-id-19 .about-sec ul li:last-child,
.page-id-19 .about-sec ol li:last-child,
.page-id-21 .about-sec ul li:last-child,
.page-id-21 .about-sec ol li:last-child,
.page-id-3 .about-sec ul li:last-child,
.page-id-3 .about-sec ol li:last-child {
  margin-bottom: 0;
}
.page-id-25 .about-sec ul li::marker,
.page-id-25 .about-sec ol li::marker,
.page-id-19 .about-sec ul li::marker,
.page-id-19 .about-sec ol li::marker,
.page-id-21 .about-sec ul li::marker,
.page-id-21 .about-sec ol li::marker,
.page-id-3 .about-sec ul li::marker,
.page-id-3 .about-sec ol li::marker {
  color: #080115;
}
.page-id-25 .about-sec ul li strong,
.page-id-25 .about-sec ol li strong,
.page-id-19 .about-sec ul li strong,
.page-id-19 .about-sec ol li strong,
.page-id-21 .about-sec ul li strong,
.page-id-21 .about-sec ol li strong,
.page-id-3 .about-sec ul li strong,
.page-id-3 .about-sec ol li strong {
  color: #222121;
}
.page-id-25 .about-sec ul,
.page-id-19 .about-sec ul,
.page-id-21 .about-sec ul,
.page-id-3 .about-sec ul {
  list-style-type: disc;
  padding: 1.75rem 1.4rem;
  background: #f4f4f4;
  padding-left: 3rem;
}
.page-id-25 .about-sec ul li,
.page-id-19 .about-sec ul li,
.page-id-21 .about-sec ul li,
.page-id-3 .about-sec ul li {
  list-style-type: disc;
}
.page-id-25 .about-sec ol,
.page-id-19 .about-sec ol,
.page-id-21 .about-sec ol,
.page-id-3 .about-sec ol {
  list-style-type: decimal;
  padding: 1.75rem 1.2rem;
  background: #f4f4f4;
  padding-left: 3rem;
}
.page-id-25 .about-sec ol li,
.page-id-19 .about-sec ol li,
.page-id-21 .about-sec ol li,
.page-id-3 .about-sec ol li {
  list-style-type: decimal;
  margin-bottom: 1rem;
}

.filter-sticky {
  position: sticky;
  top: 0;
  padding: 10px;
  z-index: 9;
  display: none;
}

.filterbar .btn {
  padding: 3px 15px;
  font-size: 14px;
}

.filter-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.close-filter {
  display: none;
}

.backdrop-on {
  overflow: hidden;
}
.backdrop-on .filter-backdrop {
  z-index: 9;
  opacity: 1;
}

.collection-sec .prod-listing {
  margin-top: 25px;
}

.filter-sticky .filterbar .btn span {
  max-width: 50px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.filter-sticky .filterbar .btn i {
  transition: all 0.3s ease-in-out;
}

.filter-stuck .filterbar .btn {
  border-radius: 5px;
  left: -3px;
}
.filter-stuck .filter-sticky .filterbar .btn span {
  max-width: 0;
}
.filter-stuck .filter-sticky .filterbar .btn i {
  margin: 0 0 0 -10px;
}

.copyright {
  text-align: center;
  padding-bottom: 1.87rem;
}
.copyright p {
  color: var(--White, #fff);
  margin-bottom: 0;
}

.newcollect-bottom-text h5 {
  margin-bottom: 5px;
}

.newcollect-bottom-text-row {
  width: 100%;
}

.newcollectiondetails-sec .newcollect-bottom ul {
  flex-direction: column;
  align-items: flex-start;
}

.wpcf7-spinner {
  display: none !important;
}

.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon {
  flex-wrap: wrap;
}
.woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon .coupon-error-notice {
  width: 100%;
}

.collection-sec .filter-group.closed .group-header {
  margin-bottom: 0;
}

.desktopView {
  display: block;
}

.mobileView {
  display: none;
}

.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions {
  display: flex;
  gap: 7px;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions .button.invoice {
  background: #fff;
  color: #000;
  border: 1px solid var(--Dark, #080115);
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td.woocommerce-orders-table__cell-order-actions .button.invoice:hover {
  background: #000;
  color: #fff;
  border: 1px solid var(--Dark, #080115);
  text-decoration: none !important;
}

.invoice.order-actions-button {
  background-color: black !important;
  color: white !important;
  text-decoration: none !important;
  border: 1px solid var(--Dark, #080115) !important;
}
.invoice.order-actions-button:hover {
  background-color: var(--White, #fff) !important;
  color: var(--Dark, #080115) !important;
  border: 1px solid var(--Dark, #080115) !important;
}

.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content p.order-again a {
  background-color: black !important;
  color: white !important;
  text-decoration: none !important;
  border: 1px solid var(--Dark, #080115) !important;
}
.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content p.order-again a:hover {
  background-color: var(--White, #fff) !important;
  color: var(--Dark, #080115) !important;
  border: 1px solid var(--Dark, #080115) !important;
}

.woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td {
  opacity: 1 !important;
}

.logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  overflow-x: auto;
}

.woocommerce .star-rating span::before {
  color: #ffc107;
}

.woocommerce #reviews #comments h2 {
  color: var(--Black, #000);
  font-family: Mulish, sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.25rem;
  margin: 0px 0px 1rem;
}

.woocommerce p.stars a::before {
  color: #ffc107;
}

#review_form_wrapper {
  margin-top: 2rem;
}
#review_form_wrapper #respond {
  /* Form Title */
}
#review_form_wrapper #respond .comment-reply-title {
  display: block;
  color: var(--Dark, #080115);
  font-family: "Mulish", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem; /* 150% */
  margin-bottom: 1.25rem;
}
#review_form_wrapper #respond .comment-reply-title small a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #cf3636;
  text-decoration: underline;
  margin-left: 0.625rem;
}
#review_form_wrapper #respond .comment-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  /* Labels */
}
#review_form_wrapper #respond .comment-form label {
  color: #0d0d0d;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.75rem;
  display: block;
}
#review_form_wrapper #respond .comment-form label .required {
  color: #cf3636;
}
#review_form_wrapper #respond .comment-form {
  /* Textarea matches your global & auth textareas */
}
#review_form_wrapper #respond .comment-form textarea {
  height: 10rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: var(--Paragraph, #6c6971);
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.9375rem 1.25rem;
  border: none;
  border-radius: 0.125rem;
  background: var(--Light-Bg, #f4f4f4);
  outline: none;
  box-shadow: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease-in-out;
}
#review_form_wrapper #respond .comment-form textarea:focus {
  outline: none;
  background-color: #eee;
}
#review_form_wrapper #respond .comment-form {
  /* Submit Button matches your global black btn */
}
#review_form_wrapper #respond .comment-form .form-submit {
  margin: 0;
}
#review_form_wrapper #respond .comment-form .form-submit input[type=submit] {
  display: inline-flex;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.125rem;
  border: 1px solid var(--Dark, #080115);
  background: black;
  color: white;
  font-family: "Mulish", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#review_form_wrapper #respond .comment-form .form-submit input[type=submit]:hover {
  background: var(--White, #fff);
  color: var(--Dark, #080115);
  border: 1px solid var(--Dark, #080115);
}
#review_form_wrapper #respond .comment-form .form-submit input[type=submit]:focus, #review_form_wrapper #respond .comment-form .form-submit input[type=submit]:active:focus {
  outline: 0;
  box-shadow: none;
}

#comments {
  margin-top: 2rem;
}
#comments .woocommerce-Reviews-title {
  color: var(--Dark, #080115);
  font-family: "Mulish", sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.88rem;
}
#comments .woocommerce-Reviews-title span {
  font-weight: 300;
  color: var(--Paragraph, #6c6971);
}
#comments {
  /* Comments List */
}
#comments .commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
}
#comments .commentlist li.review {
  margin: 0;
  padding-bottom: 1.87rem;
  margin-bottom: 1.87rem;
  border-bottom: 1px solid var(--Light-Bg, #f4f4f4);
}
#comments .commentlist li.review:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#comments .commentlist li.review .comment_container {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
#comments .commentlist li.review .comment_container img.avatar {
  border-radius: 50%;
  width: 3.75rem;
  height: 3.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#comments .commentlist li.review .comment_container .comment-text {
  flex: 1;
}
#comments .commentlist li.review .comment_container .comment-text .star-rating {
  color: var(--accent-color-2, #ed7005);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
#comments .commentlist li.review .comment_container .comment-text p.meta {
  margin-bottom: 0.75rem;
  color: var(--Paragraph, #6c6971);
  font-family: "Mulish", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
}
#comments .commentlist li.review .comment_container .comment-text p.meta .woocommerce-review__author {
  color: var(--Dark, #080115);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-block;
  margin-right: 0.3125rem;
}
#comments .commentlist li.review .comment_container .comment-text p.meta .woocommerce-review__verified {
  font-style: italic;
  color: #3b6007;
  font-weight: 500;
}
#comments .commentlist li.review .comment_container .comment-text p.meta .woocommerce-review__dash {
  margin: 0 0.3125rem;
}
#comments .commentlist li.review .comment_container .comment-text .description p {
  color: var(--Paragraph, #6c6971);
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  cursor: pointer;
  position: relative;
  /* Hide default checkbox */
}
.comment-form-cookies-consent input[type=checkbox] {
  display: block;
  position: absolute;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.comment-form-cookies-consent {
  /* Custom Box Container */
}
.comment-form-cookies-consent label {
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  color: var(--Dark-Paragraph, #444248);
  font-family: "Mulish", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 0;
  /* The Box */
}
.comment-form-cookies-consent label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #aaa;
  border-radius: 0.125rem;
  background-color: #fff;
  transition: all 0.2s ease;
}
.comment-form-cookies-consent label {
  /* The Checkmark */
}
.comment-form-cookies-consent label::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.25rem;
  width: 0.3125rem;
  height: 0.625rem;
  border: solid white;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.comment-form-cookies-consent:hover label::before {
  border-color: #666;
}
.comment-form-cookies-consent {
  /* Checked State - Using theme olive green */
}
.comment-form-cookies-consent input[type=checkbox]:checked + label::before {
  background-color: #3b6007;
  border-color: #3b6007;
}
.comment-form-cookies-consent input[type=checkbox]:checked + label::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.newcollectiondetails-sec .slider-sec .gallery-main {
  overflow: hidden;
}

.newcollectiondetails-sec .slider-sec .gallery-thumbs {
  overflow: hidden;
}

.newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-wrapper {
  display: block;
}

.newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-wrapper {
  max-height: 401px;
}

.thumb-prev {
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 700;
  color: black;
}

.thumb-next {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 700;
  color: black;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 96.375rem;
  }
}
@media screen and (max-width: 2560px) {
  body {
    zoom: 1.5;
  }
  .container {
    padding: 0 1.87rem;
  }
  .product-slider {
    max-width: calc(50vw - 10.8%);
  }
}
@media screen and (max-width: 2200px) {
  body {
    zoom: 1.4;
  }
  .product-slider {
    max-width: calc(50vw - 4.4%);
  }
}
@media screen and (max-width: 2000px) {
  body {
    zoom: 1.3;
  }
  .product-slider {
    max-width: calc(50vw + 0.4%);
  }
}
@media screen and (max-width: 1920px) {
  body {
    zoom: 1;
  }
  .container {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .product-slider {
    max-width: calc(50vw + 240px);
  }
}
@media screen and (max-width: 1600px) {
  .shopbyactivewear .product-slider {
    max-width: calc(50vw + 210px);
  }
  .newcollectiondetails-sec .newcollect-top .row.align-items-xl-center {
    align-items: flex-start !important;
  }
  .formsec .text {
    position: relative;
    inset: 0;
    padding: 1.2rem;
  }
  .formsec .formbg {
    position: absolute;
    inset: 0;
  }
  .formsec .bg {
    height: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .product-slider {
    max-width: calc(50vw + 180px);
  }
  .mainhd .headerrow .searchsec-inner {
    flex: 1 0 12.9rem;
  }
  .mainhd .headerrow .navigation .stellarnav > ul > li > a {
    font-size: 14px;
    padding: 30px 10px;
  }
  .shopbyactivewear .product-slider {
    max-width: calc(50vw + 180px);
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name .variation {
    margin-top: 5px;
    font-size: 0.875rem;
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon {
    flex-wrap: wrap;
    max-width: 400px;
    width: 100%;
  }
}
@media screen and (max-width: 1399px) {
  .mainhd .headerrow .navigation {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 90%;
  }
  .shopbyactivewear .product-slider {
    top: 116px;
    max-width: calc(50vw + 150px);
  }
  .stellarnav .menu-toggle {
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #080115;
  }
  .stellarnav .menu-toggle span > span {
    background-color: white;
  }
  .stellarnav .menu-toggle span.bars {
    top: -0.0125rem;
  }
  .stellarnav .menu-toggle span.bars span {
    margin: 0 0 0.25rem;
  }
  .mainhd .headerrow .navigation {
    gap: 1rem;
    flex-direction: row-reverse;
  }
  .mainhd {
    padding: 1.88rem 0;
  }
  .banner .container .img-explore {
    right: 0;
  }
  .banner .container .mxw624 {
    max-width: 32.75rem;
  }
  h1 {
    font-size: 3.5rem;
  }
  .spacing80 {
    padding: 3rem 0;
  }
  h2 {
    font-size: 2.5rem;
  }
  .searchsec-inner {
    display: none;
    position: absolute !important;
    left: 0;
    right: 0;
    top: 55px;
    z-index: 1;
    flex: unset !important;
    width: unset;
  }
  .searchsec-inner.is-open {
    display: block;
  }
  .mainhd .container {
    position: relative;
  }
  .stellarnav .menu-toggle {
    background-color: transparent;
    width: 1.25rem;
    height: 1.25rem;
  }
  .left-hd {
    display: flex;
    width: 3.75rem;
    justify-content: space-between;
    align-items: center;
  }
  .left-hd .search-ic a {
    color: #080115;
    font-size: 20px;
  }
  .left-hd .stellarnav .menu-toggle span.bars span {
    background: #080115;
  }
  .left-hd .stellarnav .menu-toggle span.bars span:nth-child(1) {
    width: 1.3rem;
  }
  .left-hd .stellarnav .menu-toggle span.bars span:nth-child(3) {
    width: 1rem;
  }
  .rgt-hd {
    width: 3.75rem;
    margin: 0;
    position: relative;
    right: -10px;
  }
  .mainhd .headerrow .threebtns ul li a {
    width: 1.25rem;
    height: 1.25rem;
    border: none;
  }
  .mainhd .headerrow .threebtns ul li:nth-child(3) a {
    display: none;
  }
  .threebtns {
    margin: 0 -10px 0 0px;
    display: flex;
  }
  .mainft {
    padding-top: 3rem;
  }
  .mainft .ftlogo {
    margin-bottom: 2rem;
  }
  .mainft .links {
    padding-bottom: 2rem;
  }
  .mainft .links ul {
    gap: 1.08rem 3.75rem;
  }
  .mainhd .headerrow .searchsec-inner input[type=text] {
    background: #e5e5e5;
  }
  .collection-sec .prod-listing > ul > li {
    max-width: calc(33% - 1.09rem);
  }
  .inner-banner h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
  .designedwithintention .designedwithintention-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .move-with-power .move-with-power-inner .text {
    max-width: 36.7rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }
  .about-sec .row .txt {
    padding-left: 0;
  }
  .newcollectiondetails-sec .slider-sec .product-gallery-wrapper {
    width: auto;
    height: unset;
    max-height: unset;
    right: 0.63rem;
    top: auto;
    bottom: 0.63rem;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon {
    flex-wrap: wrap;
    max-width: 390px;
    width: 100%;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit][name=update_cart] {
    margin-top: 0 !important;
  }
  .newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-wrapper {
    display: flex;
    height: unset;
  }
  .thumb-prev,
  .thumb-next {
    display: none;
  }
  .newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-pagination {
    position: static;
  }
  .newcollectiondetails-sec .slider-sec .gallery-thumbs .swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 82%;
  }
  .shopbyactivewear .product-slider {
    top: 106px;
    max-width: calc(50vw + 110px);
  }
  .shopbyactivewear .activewear-static span {
    gap: 1rem;
    bottom: 1rem;
    left: 1rem;
    font-size: 1.2rem;
  }
  .collection-sec .prod-listing > ul > li {
    max-width: calc(50% - 0.94rem);
  }
  .move-with-power .move-with-power-inner .text {
    gap: 1rem;
  }
  .newcollectiondetails-sec .textsec .pricedigit,
  .newcollectiondetails-sec .textsec .shipping-text,
  .newcollectiondetails-sec .newcollect-bottom ul {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .newcollectiondetails-sec .slider-sec .gallery-main .wishlist-icon {
    top: 10px;
    right: 10px;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit][name=update_cart] {
    float: none;
    margin-top: 0.5rem;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions {
    padding: 11px;
    margin: 0;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon input#coupon_code {
    width: 50%;
  }
  .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
    margin-top: 0 !important;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item {
    display: flex;
    padding: 1.5rem;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .tinv-wishlist .product-action {
    width: auto;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.625rem 0;
    text-align: left;
  }
  .tinv-wishlist table.tinvwl-table-manage-list tbody td {
    width: auto !important;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-input-group {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .tinv-wishlist .tinvwl-to-left .tinvwl-input-group .form-control + .tinvwl-input-group-btn {
    padding: 0;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-to-right {
    float: none;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td button.button {
    width: 100%;
  }
  .tinv-wishlist .tinvwl-to-left .tinvwl-input-group .form-control + .tinvwl-input-group-btn {
    padding: 0;
    width: 100%;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td .tinvwl-to-left {
    float: none;
    margin-bottom: 10px;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tfoot td button.button {
    margin: 0;
  }
  .tinv-wishlist.woocommerce .tinvwl-table-manage-list tbody tr.wishlist_item td.product-remove button {
    background: transparent;
    border: none;
    color: #6c6971;
    cursor: pointer;
    font-size: 1.25rem;
    transition: color 0.3s;
    position: absolute;
    right: 0;
    top: 0;
    background: red;
    border-radius: 0;
    color: white;
  }
  .woocommerce form .form-row::after,
  .woocommerce form .form-row::before,
  .woocommerce-page form .form-row::after,
  .woocommerce-page form .form-row::before {
    display: none;
  }
  .formsec .text .row .formouter .input-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .formsec .text .row .formouter .input-form .inputouter {
    gap: 0.4rem;
    flex-direction: column;
  }
  .formsec .text .row .formouter .input-form .inputouter .input-inner.half {
    width: 100%;
  }
  .product-img--main__image {
    display: none;
  }
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address {
    padding: 15px;
  }
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address header.woocommerce-Address-title {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .logged-in.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .woocommerce-Address header.woocommerce-Address-title a.edit {
    font-size: 10px;
  }
  .woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .button.wc-forward {
    float: none !important;
    margin: 0 0 0 0 !important;
  }
  .woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses:before,
  .woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses:after {
    display: none;
  }
  .woocommerce-view-order .woocommerce-customer-details {
    margin-bottom: 0 !important;
  }
  .logged-in.woocommerce-account .woocommerce:before,
  .logged-in.woocommerce-account .woocommerce:after {
    display: none;
  }
  .woocommerce-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .woocommerce form .form-row::after,
  .woocommerce form .form-row::before,
  .woocommerce-page form .form-row::after,
  .woocommerce-page form .form-row::before {
    display: none !important;
  }
  .woocommerce-view-order .woocommerce-columns .woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1,
  .woocommerce-view-order .woocommerce-columns .woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
    float: none !important;
    width: 100% !important;
  }
  .woocommerce-view-order .woocommerce .woocommerce-customer-details address {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
  .activewear-static {
    display: none;
  }
  .shopbyactivewear .product-slider {
    max-width: 100%;
    position: static;
  }
  .banner {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    text-align: center;
    background-color: #f4f4f4;
    padding-top: 30px;
  }
  .banner .container {
    position: static;
    flex-direction: column;
  }
  .banner .container .img-explore {
    right: 1rem;
    position: absolute;
    bottom: 3rem;
  }
  .banner h1 {
    color: var(--Dark, #080115);
    text-align: center;
    font-family: Mulish;
    font-size: 3.375rem;
    font-style: normal;
    font-weight: 300;
    line-height: 3.3125rem;
    /* 98.148% */
    text-transform: capitalize;
    margin-bottom: 0.62rem;
  }
  .banner p {
    color: var(--Dark-Paragraph, #444248);
    text-align: center;
    font-family: Mulish;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem;
    /* 144.444% */
    margin-bottom: 1.25rem;
  }
  .btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.2rem;
  }
  .tophead p {
    color: var(--White, #fff);
    font-family: Mulish;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.0375rem;
    text-transform: capitalize;
  }
  .featured-sec {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  h2 {
    color: var(--Dark, #080115);
    text-align: center;
    font-family: Mulish;
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1rem;
  }
  .about-sec .row .txt p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .about-sec .row .txt {
    justify-content: center;
    align-items: center;
  }
  .about-sec .row .txt h2 {
    font-size: 1.8rem;
  }
  .headingsec .btn {
    display: none;
  }
  .mobileshow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.88rem;
  }
  .featured-sec.nointernalspace .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 1.25rem 0.05rem;
  }
  .featured-sec.nointernalspace .row .col-md-3 {
    width: calc(50% - 1px);
  }
  .threebtns {
    margin: 0 0 0 0px;
  }
  .nointernalspace .row [class^=col-] {
    padding: 0 calc(var(--bs-gutter-x) * 0.5);
  }
  .headingsec {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .shop-activity-swiper .swiper-wrapper {
    gap: 0;
  }
  .shop-activity-swiper .swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    margin-top: 0;
    position: relative;
    bottom: -40px;
    z-index: 99;
  }
  .shop-activity-swiper .swiper-controls .custom-prev,
  .shop-activity-swiper .swiper-controls .custom-next {
    width: 18px;
    height: 18px;
    position: static;
    cursor: pointer;
  }
  .shop-activity-swiper .swiper-controls .custom-prev:after,
  .shop-activity-swiper .swiper-controls .custom-next:after {
    display: none;
  }
  .shop-activity-swiper .swiper-controls .custom-prev:before {
    content: "<";
    font-size: 16px;
    color: #9a9a9a;
  }
  .shop-activity-swiper .swiper-controls .custom-next:before {
    content: ">";
    font-size: 16px;
    color: #9a9a9a;
  }
  .shop-activity-swiper .swiper-controls .custom-pagination {
    font-size: 14px;
    color: #9a9a9a;
    min-width: 40px;
    text-align: center;
    bottom: 0;
  }
  .shop-activity-swiper .swiper-controls .custom-pagination .swiper-pagination-current {
    color: #111;
  }
  .shop-activity-swiper .swiper-controls .custom-pagination .swiper-pagination-total {
    color: #9a9a9a;
  }
  .shop-activity-swiper {
    padding-bottom: 40px;
  }
  .shopbycolor .colorssec .colorssec-row .singleslide {
    max-width: unset;
  }
  .shopbycolor .colorssec .colorssec-row {
    align-items: unset;
    gap: unset;
    align-self: unset;
    padding: 0 0 3.22rem 0;
  }
  .shopbycolor .colorssec .colorssec-row .singleslide img {
    border-radius: 14.5rem;
    max-width: 14.5rem;
    margin: 0 auto;
  }
  .shopbycolor {
    padding: 4.38rem 0;
  }
  .colorssec .colorssec-row {
    gap: 0;
  }
  .colorssec .swiper-slide {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .colorssec .swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    margin-top: 18px;
  }
  .colorssec .swiper-controls .color-prev,
  .colorssec .swiper-controls .color-next {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: static;
  }
  .colorssec .swiper-controls .color-prev:after,
  .colorssec .swiper-controls .color-next:after {
    display: none;
  }
  .colorssec .swiper-controls .color-prev:before {
    content: "<";
    font-size: 16px;
    color: #9a9a9a;
  }
  .colorssec .swiper-controls .color-next:before {
    content: ">";
    font-size: 16px;
    color: #9a9a9a;
  }
  .colorssec .swiper-controls .color-pagination {
    min-width: 40px;
    font-size: 14px;
    text-align: center;
    color: #9a9a9a;
    bottom: 0;
  }
  .colorssec .swiper-controls .color-pagination .swiper-pagination-current {
    color: #111;
  }
  .shopbyactivewear .nav-buttons {
    display: none;
  }
  .shopbyactivewear .mobileshow .nav-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .letsexplore {
    padding: 4.37rem 0 !important;
  }
  .letsexplore .swiper-controls {
    display: flex;
  }
  .formsec .bg {
    display: none;
  }
  .formsec .text {
    padding: 0;
    position: relative;
  }
  .formsec .text:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 1, 21, 0) 23.02%, rgba(8, 1, 21, 0.6) 51.98%, #080115 100%);
  }
  .formsec .text .row {
    height: unset;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .formsec .text .row .offtext {
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
  }
  .formsec .formbg:before {
    display: none;
  }
  .formsec .text .row .formsec .text .row {
    height: unset;
    position: absolute;
    z-index: 9;
    top: auto;
    bottom: 0px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
  }
  .formsec .text .row .formouter .input-form .inputouter .input-inner p {
    color: var(--Paragraph, #6c6971);
    font-family: Mulish;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    /* 171.429% */
  }
  .formsec .text .row .formouter {
    height: unset;
    padding: 1.88rem 0.63rem 0.63rem;
  }
  .formsec .text .row .formouter h4 {
    color: var(--Dark, #080115);
    text-align: center;
    font-family: Mulish;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 1.25rem;
  }
  .formsec .text .row .formouter .input-form .inputouter .input-inner input:not([type=submit], [type=checkbox], [type=radio]) {
    color: var(--Paragraph, #6c6971);
    font-family: Mulish;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 50px;
  }
  .formsec .text .row .formouter .input-form .inputouter {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    align-self: stretch;
  }
  .mobilebg {
    display: block;
  }
  .input-inner.submit {
    margin-top: -20px;
    width: 100%;
  }
  .input-inner.submit .btn {
    width: 100%;
  }
  .formsec .text .row .offtext p {
    color: var(--White, #fff);
    text-align: center;
    font-family: Mulish;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.625rem;
    /* 144.444% */
  }
  .mainft {
    padding-top: 5rem;
  }
  .mainft .ftlogo {
    margin-bottom: 3.75rem;
  }
  .mainft .links ul li {
    color: var(--White, #fff);
    font-family: Mulish;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
  }
  .mainft .links ul {
    justify-content: flex-start;
    gap: 1.25rem 3.75rem;
  }
  .mainft .links ul li {
    width: calc(50% - 30px);
  }
  .mainft .links ul li:before {
    display: none;
  }
  .mainft .links {
    padding-bottom: 3.75rem;
  }
  .letsexplore .custom-explore-row .explore-swiper .swiper-wrapper .swiper-slide {
    max-width: unset;
  }
  .letsexplore .imgbx img {
    width: 100%;
  }
  .letsexplore .swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 18px;
  }
  .letsexplore .swiper-controls .explore-prev,
  .letsexplore .swiper-controls .explore-next {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: static;
    margin: 0;
  }
  .letsexplore .swiper-controls .explore-prev:after,
  .letsexplore .swiper-controls .explore-next:after {
    display: none;
  }
  .letsexplore .swiper-controls .explore-prev:before {
    content: "<";
    font-size: 16px;
    color: #9a9a9a;
  }
  .letsexplore .swiper-controls .explore-next:before {
    content: ">";
    font-size: 16px;
    color: #9a9a9a;
  }
  .letsexplore .swiper-controls .explore-pagination {
    max-width: 40px;
    font-size: 14px;
    text-align: center;
    color: #9a9a9a;
    bottom: 0;
    position: static;
  }
  .letsexplore .swiper-controls .explore-pagination .swiper-pagination-current {
    color: #111;
  }
  .left-hd .search-ic a {
    font-size: 18px;
    padding-top: 0px;
    position: relative;
    top: 2px;
  }
  .mainhd .headerrow .logo {
    width: 13.1rem;
    position: relative;
    top: -2px;
  }
  .left-hd {
    display: flex;
    width: 3.15rem;
    justify-content: space-between;
    align-items: center;
  }
  .rgt-hd {
    width: 3.15rem;
    margin: 0;
    position: relative;
    right: -10px;
  }
  .threebtns {
    margin: 0 0px 0 0px;
    position: relative;
    right: 8px;
  }
  .recent .nav-buttons {
    display: none;
  }
  .recent .mobileshow {
    display: block;
  }
  .recent .mobileshow .nav-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .designedwithintention .designedwithintention-row {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .designedwithintention .designedwithintention-row .designedwithintention-bx {
    max-width: calc(50% - 12px);
    width: 100%;
    min-height: 130px;
  }
  .designedwithintention .designedwithintention-row .designedwithintention-bx h5 {
    font-size: 1rem;
  }
  .designedwithintention h2 {
    margin-bottom: 2rem;
  }
  .designedwithintention .designedwithintention-row .designedwithintention-bx .icon {
    width: 4.25rem;
    height: 4.25rem;
  }
  .designedwithintention .designedwithintention-row .designedwithintention-bx .icon img {
    aspect-ratio: 1/1;
    width: 35px;
    height: 35px;
  }
  .collection-sec .prod-listing > ul {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .collection-sec .filter-group .group-content {
    padding-top: 1px;
  }
  .collection-sec .col-xl-2.col-lg-3.col-md-4 {
    max-width: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 999;
    background-color: white;
    transition: all 0.3s ease-in-out;
    left: -100%;
  }
  .collection-sec .col-xl-2.col-lg-3.col-md-4.active {
    left: 0;
    max-width: 70%;
  }
  .collection-sec .col-xl-2.col-lg-3.col-md-4 .close-filter {
    font-size: 25px;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .collection-sec .col-xl-2.col-lg-3.col-md-4 .filter-sidebar {
    max-width: 100%;
    padding: 20px 10px;
    /* SCROLLBAR HIDING (Clean look) */
  }
  .collection-sec .col-xl-2.col-lg-3.col-md-4 .filter-sidebar::-webkit-scrollbar {
    width: auto;
    background: revert;
  }
  .collection-sec .col-xl-10.col-lg-9.col-md-8 {
    max-width: 100%;
    width: 100%;
  }
  .collection-sec .prod-listing > ul > li {
    max-width: calc(50% - 8px);
  }
  .collection-sec .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .collection-sec .sidebar-header .clear-btn {
    background: white;
    padding: 0.275rem 0.75rem;
    border-radius: 3.125rem;
    border: 1px solid #3b6007;
    color: #3b6007;
    font-family: Mulish;
    font-size: 0.675rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .collection-sec .filter-sidebar {
    padding: 0;
  }
  .collection-sec .filter-group .group-header h3 {
    font-size: 1rem;
  }
  .collection-sec .sidebar-header h2 {
    font-size: 1.1rem;
  }
  .collection-sec .filter-group .group-header .chevron {
    width: 0.45rem;
    height: 0.45rem;
  }
  .collection-sec .prod-listing {
    padding-bottom: 2.5rem;
  }
  .collection-sec .pagination-container .pagination-list .page-item {
    font-size: 15px;
    width: 2rem;
    height: 2rem;
  }
  .collection-sec .pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.075rem;
    padding: 0;
  }
  .prodboxouter .prodbx .sizebar ul li a {
    width: 1.375rem;
    height: 1.375rem;
  }
  .prodboxouter .prodbx .sizebar {
    padding: 0.35rem 0.4rem !important;
    max-width: 9.725rem;
    bottom: 0.35rem;
  }
  .prodboxouter .prodbx .wishlist {
    top: 0.25rem;
    right: 0.25rem;
  }
  .prodboxouter .prodbx .sizebar {
    padding: 0.25rem;
  }
  .prodboxouter .prodbx .sizebar ul {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    width: 100%;
    justify-content: space-between;
  }
  .move-with-power .move-with-power-inner {
    background-color: #000;
  }
  .move-with-power .move-with-power-inner > img {
    opacity: 0.6;
    height: 100%;
    -o-object-position: right;
       object-position: right;
  }
  .move-with-power .move-with-power-inner .text {
    position: relative;
    left: 0;
    bottom: 0;
    padding: 30px 15px 35px;
    text-align: center;
    display: flex;
    align-items: center;
  }
  .btn-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: column;
  }
  .move-with-power-inner img {
    position: absolute;
    inset: 0;
  }
  .move-with-power .move-with-power-inner .text p {
    color: var(--White, #fff);
    font-family: Mulish;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.325rem;
    margin: 0;
  }
  .cat-sec .col-sm-6 {
    width: 50%;
  }
  .cat-sec .cat-img span {
    font-size: 1rem;
  }
  .cat-sec .cat-img {
    gap: 1rem;
  }
  .about-sec .row {
    margin-bottom: 1.875rem;
    gap: 1.25rem;
  }
  .prod-craft h2 {
    margin-bottom: 1.2rem;
  }
  .prod-craft .row {
    gap: 2.5rem;
  }
  .prod-craft .prod-craft-container .text {
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  .sendmessage h2,
  .contact-sec h2 {
    margin-bottom: 1.25rem;
  }
  .sendmessage .formouter .form-row .inputs.half {
    width: 100%;
  }
  .sendmessage .formouter .form-row {
    display: flex;
    align-items: center;
    gap: 0;
    align-self: stretch;
    flex-direction: column;
  }
  .contact-sec .faq_section .faq_box .faq_item {
    margin-bottom: 1.25rem;
  }
  .auth-popup .auth-content .auth-title {
    text-align: left;
  }
  .auth-popup .auth-form .auth-extras label.checkbox-container {
    margin-bottom: 0;
  }
  .auth-popup .auth-content {
    padding: 1.25rem;
  }
  .auth-popup .auth-form .input-row {
    flex-direction: column;
  }
  .inner-banner ul {
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .inner-banner ul li:before {
    right: -0.825rem;
    top: 0.575rem;
    width: 0.3rem;
    height: 0.575rem;
  }
  .newcollectiondetails-sec .slider-sec {
    margin-bottom: 1.5rem;
  }
  .newcollectiondetails-sec .textsec h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  .newcollectiondetails-sec .textsec .pricedigit .prices h5 {
    font-size: 1.15rem;
  }
  .newcollectiondetails-sec .textsec .pricedigit .prices del,
  .newcollectiondetails-sec .textsec .pricedigit .support-text {
    font-size: 1rem;
  }
  .newcollectiondetails-sec .textsec .rating + p {
    margin-bottom: 1rem;
  }
  .newcollectiondetails-sec .textsec h6 {
    margin-bottom: 1rem;
  }
  .newcollectiondetails-sec .textsec .four-pods {
    flex-wrap: wrap;
  }
  .newcollectiondetails-sec .textsec .four-pods .pods {
    max-width: calc(50% - 18px);
    width: 100%;
  }
  .newcollectiondetails-sec .textsec .four-pods .pods:before {
    right: -1.525rem;
  }
  .newcollectiondetails-sec .textsec .four-pods .pods:nth-child(2n)::before {
    display: none;
  }
  .newcollectiondetails-sec .textsec .quantity-cart {
    flex-direction: row;
    gap: 15px;
  }
  .newcollect-top .textsec {
    text-align: center;
  }
  .newcollectiondetails-sec .textsec .shipping-text span {
    text-align: left;
  }
  .newcollectiondetails-sec .textsec .size-sec .size-selection ul {
    justify-content: center;
  }
  .newcollectiondetails-sec .textsec .pricedigit,
  .newcollectiondetails-sec .textsec .shipping-text,
  .newcollectiondetails-sec .newcollect-bottom ul,
  .newcollectiondetails-sec .textsec .rating {
    justify-content: center;
  }
  .newcollectiondetails-sec .textsec .size-sec .guide {
    position: static;
    margin-bottom: 20px;
    display: inline-block;
  }
  .newcollect-bottom {
    text-align: left;
  }
  .newcollect-bottom .row {
    gap: 1.25rem;
  }
  .newcollectiondetails-sec .newcollect-bottom ul {
    justify-content: flex-start;
    text-align: left;
    padding: 0 15px;
  }
  .stellarnav.mobile ul ul {
    box-shadow: none;
  }
  .stellarnav.mobile ul ul li a {
    background-color: #f4f4f4;
    padding-left: 30px;
  }
  .stellarnav.mobile > ul > li > a {
    padding: 0.85rem 1rem;
  }
  .stellarnav.mobile > ul > li > a.dd-toggle {
    background: #080115;
  }
  .stellarnav a.dd-toggle .icon-plus:before,
  .stellarnav a.dd-toggle .icon-plus:after {
    border-color: #f4f4f4;
  }
  .shopbycolor .colorssec .colorssec-row .singleslide img {
    border-radius: 14.5rem;
    max-width: 11.5rem;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon {
    float: none;
    flex-direction: column;
    margin-bottom: 0;
    padding: 0;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit][name=update_cart],
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions button[type=submit] {
    float: none;
    width: 100%;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item {
    display: block;
    padding: 0;
    position: relative;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-remove {
    position: absolute;
    right: 0;
    top: 10px;
    border: none;
    padding: 0;
    background: red;
    color: white;
    left: auto;
    right: 0;
    top: 0;
    padding: 1px 2px 4px;
  }
  .woocommerce-cart .woocommerce .cart-collaterals {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 2px;
  }
  .woocommerce-cart .woocommerce .cart-collaterals .shop_table tr.order-total th,
  .woocommerce-cart .woocommerce .cart-collaterals .shop_table tr.order-total td {
    background-color: rgba(0, 0, 0, 0);
  }
  .woocommerce-cart .woocommerce .row .col-lg-3 {
    margin-top: 0;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-remove a.remove {
    font-size: 1.5rem;
    color: #fff !important;
    text-decoration: none;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon input#coupon_code {
    width: 100%;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-thumbnail {
    justify-content: flex-start;
    display: flex;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name a {
    color: #080115;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.025rem;
    max-width: 180px;
    width: 100%;
    display: inline-block;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name .variation {
    margin-top: 5px;
    font-size: 0.875rem;
    display: flex;
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td {
    padding: 1.25rem;
    vertical-align: middle;
    color: #6c6971;
    display: flex;
    justify-content: space-between;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td {
    padding: 1.25rem;
    vertical-align: middle;
    color: #6c6971;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-name .variation {
    margin-top: 5px;
    font-size: 0.875rem;
    display: flex;
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td {
    padding: 1.25rem;
    vertical-align: middle;
    color: #6c6971;
    display: flex;
    justify-content: space-between;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-thumbnail {
    display: flex;
    justify-content: flex-start;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody tr.cart_item td.product-thumbnail:before {
    display: none;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon {
    float: none;
  }
  .woocommerce-order-overview {
    padding: 0;
  }
  .woocommerce-order-overview:after {
    display: none !important;
  }
  .formsec .text .row .formouter .input-form .inputouter .input-inner input.wpcf7-phonetext {
    border-radius: 0 30px 30px 0px !important;
  }
  .formsec .intl-tel-input {
    border-radius: 30px;
    overflow: hidden;
  }
  .input-inner.submit {
    margin-top: 0;
    width: 100%;
  }
  .page-id-25 .about-sec p,
  .page-id-19 .about-sec p,
  .page-id-21 .about-sec p,
  .page-id-3 .about-sec p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .page-id-25 .about-sec h2,
  .page-id-19 .about-sec h2,
  .page-id-21 .about-sec h2,
  .page-id-3 .about-sec h2 {
    font-size: 1.4rem;
  }
  .page-id-25 .about-sec h3,
  .page-id-19 .about-sec h3,
  .page-id-21 .about-sec h3,
  .page-id-3 .about-sec h3 {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin-bottom: 0.7rem;
  }
  .page-id-25 .about-sec h4,
  .page-id-19 .about-sec h4,
  .page-id-21 .about-sec h4,
  .page-id-3 .about-sec h4 {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.5rem;
    margin-bottom: 0.7rem;
  }
  .page-id-25 .about-sec ul,
  .page-id-25 .about-sec ol,
  .page-id-19 .about-sec ul,
  .page-id-19 .about-sec ol,
  .page-id-21 .about-sec ul,
  .page-id-21 .about-sec ol,
  .page-id-3 .about-sec ul,
  .page-id-3 .about-sec ol {
    list-style-type: disc;
    padding: 0.95rem 1rem;
    background: #f4f4f4;
    padding-left: 2.2rem;
  }
  .page-id-25 .about-sec table thead td,
  .page-id-25 .about-sec table thead th,
  .page-id-25 .about-sec table tbody td,
  .page-id-25 .about-sec table tbody th,
  .page-id-19 .about-sec table thead td,
  .page-id-19 .about-sec table thead th,
  .page-id-19 .about-sec table tbody td,
  .page-id-19 .about-sec table tbody th,
  .page-id-21 .about-sec table thead td,
  .page-id-21 .about-sec table thead th,
  .page-id-21 .about-sec table tbody td,
  .page-id-21 .about-sec table tbody th,
  .page-id-3 .about-sec table thead td,
  .page-id-3 .about-sec table thead th,
  .page-id-3 .about-sec table tbody td,
  .page-id-3 .about-sec table tbody th {
    font-size: 1rem;
  }
  .page-id-25 .legal-contents .table-wrap,
  .page-id-19 .legal-contents .table-wrap,
  .page-id-21 .legal-contents .table-wrap,
  .page-id-3 .legal-contents .table-wrap {
    width: 100%;
    overflow-x: scroll;
  }
  .page-id-25 .legal-contents .table-wrap table,
  .page-id-19 .legal-contents .table-wrap table,
  .page-id-21 .legal-contents .table-wrap table,
  .page-id-3 .legal-contents .table-wrap table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
  }
  .contact-sec.txt h4 {
    font-size: 1.1rem;
  }
  .contact-sec.txt p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-sec.txt {
    padding: 0 0 3rem;
  }
  .about-sec h3 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .filter-sticky,
  .close-filter {
    display: block;
  }
  .colors-circles {
    justify-content: center;
  }
  .newcollect-bottom .col-md-4:nth-child(2) .newcollect-bottom-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .woocommerce-cart .woocommerce table.shop_table.cart tbody td.actions .coupon {
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
  }
  .collection-sec .prod-listing {
    padding-bottom: 0;
  }
  .collection-sec .pagination-container {
    margin-top: 2rem;
  }
  .searchsec-inner {
    top: -8px;
    z-index: 1;
    flex: unset !important;
    width: unset;
    z-index: 999;
  }
  .woocommerce-message {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  .woocommerce-message .button.wc-forward {
    margin: 0 !important;
  }
  .filter-sticky {
    position: sticky;
    top: 84px;
  }
  .desktopView {
    display: none;
  }
  .mobileView {
    display: block;
  }
  .woocommerce-Reviews-title {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1.25rem;
  }
  .commentlist li.review .comment_container {
    gap: 1rem;
  }
  .commentlist li.review .comment_container img.avatar {
    width: 3rem;
    height: 3rem;
  }
  .commentlist li.review .comment_container .comment-text p.meta .woocommerce-review__author {
    font-size: 1rem;
  }
  .newcollectiondetails-sec .newcollect-top {
    margin-bottom: 0;
  }
  .newcollect-bottom.contact-sec .faq_section .faq_box .faq_item:last-child {
    margin-bottom: 1.25rem;
  }
  #respond .comment-reply-title {
    text-align: left;
    font-size: 1.25rem;
  }
  #respond .comment-form textarea {
    height: 10rem;
  }
  #respond .comment-form .form-submit input[type=submit] {
    width: 100%;
  }
  #comments {
    margin-top: 0rem;
  }
  #comments .woocommerce-Reviews-title {
    text-align: left;
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
  #comments .commentlist li.review .comment_container .comment-text p.meta .woocommerce-review__author {
    font-size: 1rem;
  }
  #review_form_wrapper #respond .comment-reply-title {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
  }
  #review_form_wrapper {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .mainft .links ul li {
    font-size: 1rem;
  }
  .inner-banner h1 {
    font-size: 2.25rem;
    line-height: 2.28rem;
  }
  .newcollectiondetails-sec .textsec .quantity-cart .cart .btn {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 10px;
  }
  .tophead p {
    color: var(--White, #fff);
    font-family: Mulish;
    font-size: 0.65rem;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */