@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Beau+Rivage&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  position: relative;
  background-color: #ffffff;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #000000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  border: 0.0625rem solid #ccc;
  padding: 1rem 0.625rem;
  background-color: #fff;
  background-image: url("../images/arpw-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

.brown-btn {
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.62rem 1.25rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid var(--Tomacco-Brown, #6d593e);
  background: var(--Tomacco-Brown, #6d593e);
  display: table;
  text-align: center;
}
.brown-btn:hover {
  color: var(--White, #fff);
}

.oliv-btn {
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.62rem 1.25rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #aeb192;
  background: #aeb192;
  display: table;
  text-align: center;
}
.oliv-btn:hover {
  color: var(--White, #fff);
}

.animate-brown-btn {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0.63rem 0;
  border-bottom: 0.0625rem solid #6d593e;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.animate-brown-btn img {
  width: 0;
  height: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
.animate-brown-btn:hover {
  padding-right: 2.5rem;
  color: var(--Tomacco-Brown, #6d593e);
}
.animate-brown-btn:hover img {
  width: 1.875rem;
  height: 1.875rem;
}

.animate-white-btn {
  color: #ffffff;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0.63rem 0;
  border-bottom: 0.0625rem solid #ffffff;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.animate-white-btn img {
  width: 0;
  height: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
.animate-white-btn:hover {
  padding-right: 2.5rem;
  color: #ffffff;
}
.animate-white-btn:hover img {
  width: 1.875rem;
  height: 1.875rem;
}

h2,
h1 {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.8rem;
  margin: 0;
}
h2 span,
h1 span {
  font-family: "Beau Rivage";
  font-size: 5rem;
}

p {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

header {
  background: var(--White, #fff);
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 9;
}
header button {
  display: none;
}
header .header-top-part {
  padding: 0.5rem 1rem;
  background: var(--Grey-Olive, #aeb192);
}
header .header-top-part h6 {
  color: var(--Black, #0d0d0d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin: 0;
}
header .header-bottom-part {
  padding: 0.31rem 0;
}
header .header-bottom-part .flex-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
header .header-bottom-part .logo-wraper {
  display: table;
}
header .header-bottom-part .logo-wraper a {
  display: table;
}
header .header-bottom-part .logo-wraper a img {
  max-width: 4rem;
  max-height: 4.3125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-bottom-part .right-content-wraper {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 62rem) {
  header .header-bottom-part .right-content-wraper ul.menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  header .header-bottom-part .right-content-wraper ul.menu li {
    color: var(--Tomacco-Brown, #6d593e);
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
  }
  header .header-bottom-part .right-content-wraper ul.menu li.active::before {
    width: 100%;
  }
  header .header-bottom-part .right-content-wraper ul.menu li:hover::before {
    width: 100%;
  }
  header .header-bottom-part .right-content-wraper ul.menu li::before {
    content: "";
    width: 0%;
    height: 0.0625rem;
    background-color: #6d593e;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
  }
  header .header-bottom-part .right-content-wraper ul.menu li a {
    padding: 0.375rem 0.625rem;
    color: var(--Tomacco-Brown, #6d593e);
  }
}
header .header-bottom-part .right-content-wraper .card-wraer {
  display: flex;
  align-items: center;
  gap: 1.88rem;
}
header .header-bottom-part .right-content-wraper .card-wraer a {
  display: table;
  position: relative;
}
header .header-bottom-part .right-content-wraper .card-wraer a img {
  max-width: 1.375rem;
  max-height: 1.375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-bottom-part .right-content-wraper .card-wraer a span {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6d593e;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 50%;
  position: absolute;
  top: -0.375rem;
  right: -0.5rem;
}

footer {
  padding: 3.75rem 0 1.87rem;
  background: #cccfb1;
}
footer .logo-wraper {
  display: table;
}
footer .logo-wraper img {
  max-width: 8.9375rem;
  max-height: 9.625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer h5 {
  color: #224539;
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.44rem;
}
footer ul.menu li {
  color: #224539;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
footer ul.menu li:last-child {
  margin: 0;
}
footer ul.menu li a {
  color: #224539;
}
footer p {
  color: #224539;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
footer h6 {
  color: #224539;
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 1.88rem;
  margin: 1.88rem 0 0;
  border-top: 0.0625rem solid #224539;
}
footer .form-wraper {
  position: relative;
  width: 100%;
  margin-bottom: 1.25rem;
}
footer .form-wraper input:not([type=submit]) {
  width: 100%;
  height: 3rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #224539;
  padding: 0.75rem 1rem;
  background-color: #cccfb1;
  outline: none;
  color: #000;
  padding-right: 3.5rem;
}
footer .form-wraper input:not([type=submit])::-moz-placeholder {
  color: #224539;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .form-wraper input:not([type=submit])::placeholder {
  color: #224539;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .form-wraper input[type=submit] {
  width: 1.875rem;
  height: 1.875rem;
  background-image: url(../images/arow-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-size: 0;
  border: none;
  background-color: #cccfb1;
  position: absolute;
  top: 0.56rem;
  right: 1rem;
  z-index: 1;
}
footer ul.social-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
footer ul.social-icon li {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.0625rem solid #224539;
  overflow: hidden;
}
footer ul.social-icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 69, 57, 0.1019607843);
}
footer ul.social-icon li a img {
  max-width: 1.375rem;
  max-height: 1.375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.home-banner {
  position: relative;
  overflow: hidden;
}
section.home-banner .bnr-slider .item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-banner .content-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-bottom: 2.44rem;
  display: flex;
  align-items: flex-end;
}
section.home-banner .content-wraper h1 {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.6rem;
  margin-bottom: 1rem;
}
section.home-banner .content-wraper h1 span {
  font-family: "Beau Rivage";
  font-size: 6.125rem;
}
section.home-banner .content-wraper p {
  margin-bottom: 1.88rem;
}

section.home-sec2 {
  padding: 6.25rem 0;
}
section.home-sec2 img.icon {
  max-width: 3.125rem;
  max-height: 3.125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: table;
  margin: 0 auto;
}
section.home-sec2 h6 {
  color: var(--Sage-Green, #7f9070);
  text-align: center;
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 1.25rem 0 1rem;
}
section.home-sec2 p {
  text-align: center;
}

section.home-sec3 {
  padding-bottom: 6.25rem;
}
section.home-sec3 .img-wraper {
  position: relative;
  overflow: hidden;
}
section.home-sec3 .img-wraper img.big-img {
  max-width: 83.35%;
  max-height: 40.375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-left: auto;
}
section.home-sec3 .img-wraper img.small-img {
  max-width: 17.1875rem;
  max-height: 22.6875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 2.44rem;
  left: 0;
  z-index: 1;
}
section.home-sec3 img.logo-img {
  max-width: 9.8125rem;
  max-height: 10.5625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: table;
  margin: 0 auto 2.5rem;
}
section.home-sec3 h2 {
  margin-bottom: 1rem;
  text-align: center;
}
section.home-sec3 p {
  text-align: center;
}

section.home-sec4 .row {
  gap: 1.88rem 0;
}
section.home-sec4 h2 {
  text-align: center;
}

.product-card {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.product-card:hover .img-wraper .yith-add-to-wishlist-button-block {
  right: 0.63rem;
}
.product-card:hover .img-wraper a.wish-list-save {
  right: 0.63rem;
}
.product-card:hover .img-wraper img.product {
  max-width: 17.12094rem;
  max-height: 21.05594rem;
}
.product-card:hover .img-wraper a.oliv-btn {
  bottom: 0.37rem;
}
.product-card .img-wraper {
  width: 100%;
  height: 24.375rem;
  background: #f3f3f3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .img-wraper .yith-add-to-wishlist-button-block {
  margin: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 0.0625rem solid #d6d6d6;
  background: var(--White, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.63rem;
  right: -100%;
  transition: all 0.5s ease-in-out;
}
.product-card .img-wraper .yith-add-to-wishlist-button-block img {
  width: 1.375rem;
  height: 1.375rem;
}
.product-card .img-wraper .yith-add-to-wishlist-button-block span {
  display: none;
}
.product-card .img-wraper a.wish-list-save {
  width: 1.8125rem;
  height: 1.8125rem;
  border-radius: 0.90625rem;
  border: 0.0625rem solid #d6d6d6;
  background: var(--White, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.63rem;
  right: -100%;
  transition: all 0.5s ease-in-out;
}
.product-card .img-wraper a.wish-list-save i {
  font-size: 1rem;
  color: #000;
}
.product-card .img-wraper img.product {
  max-width: 15.5rem;
  max-height: 19.0625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.product-card .img-wraper a.oliv-btn {
  width: 96.08%;
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s ease-in-out;
}
.product-card h5 {
  color: var(--Black, #0d0d0d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 1rem;
  margin-bottom: 0.38rem;
}
.product-card h5 a {
  color: var(--Black, #0d0d0d);
}
.product-card p {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 0.875rem;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.product-card p span.pro-membership-plan {
  margin-left: 0;
}
.product-card h6 {
  color: var(--Green, #215744);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

section.home-sec5 {
  padding: 6.25rem 0;
}
section.home-sec5 .box {
  background: #f1f0eb;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 28rem auto;
  justify-content: space-between;
}
section.home-sec5 .box .text-wraper {
  padding: 2.81rem 3.69rem 2.81rem 2.5rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
section.home-sec5 .box .text-wraper h2 {
  margin-bottom: 1rem;
  width: 100%;
}
section.home-sec5 .box .text-wraper p {
  font-weight: 500;
}
section.home-sec5 .box .text-wraper a.animate-brown-btn {
  margin-top: auto;
}
section.home-sec5 .box img.main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5625rem 0 0 1.5625rem;
}
section.home-sec5 .box2 {
  background: #f1f3e3;
  grid-template-columns: 54.125rem auto;
}
section.home-sec5 .box2 .text-wraper {
  padding: 4.13rem 2.5rem 4.13rem 1.87rem;
}
section.home-sec5 .box2 .text-wraper ul {
  position: relative;
  z-index: 0;
}
section.home-sec5 .box2 .text-wraper ul::after {
  content: "";
  width: 0.0625rem;
  height: 80%;
  background-image: url(../images/line.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0.85rem;
  z-index: -1;
}
section.home-sec5 .box2 .text-wraper ul li {
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1.75rem auto;
  gap: 1rem;
}
section.home-sec5 .box2 .text-wraper ul li:last-child {
  margin: 0;
}
section.home-sec5 .box2 .text-wraper ul li span {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.96875rem;
  background: var(--Grey-Olive, #aeb192);
  display: flex;
  align-items: center;
  justify-content: center;
}
section.home-sec5 .box2 .text-wraper ul li p {
  font-weight: 400;
}
section.home-sec5 .box2 .text-wraper ul li p strong {
  display: block;
  color: var(--Black, #0d0d0d);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.37rem;
}
section.home-sec5 .box2 img.main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 1.5625rem 1.5625rem 0;
}

section.home-sec6 {
  padding-bottom: 6.25rem;
}
section.home-sec6 .row {
  gap: 1.88rem 0;
}
section.home-sec6 h2 {
  text-align: center;
}

section.home-sec7 {
  position: relative;
  overflow: hidden;
}
section.home-sec7::after {
  content: "";
  width: 100%;
  height: 26.1875rem;
  background: linear-gradient(180deg, rgba(151, 121, 91, 0) 0%, rgba(151, 121, 91, 0.9) 75%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
section.home-sec7 img.bg-img {
  width: 100%;
  height: 46.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec7 .content-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}
section.home-sec7 .content-wraper h2 {
  color: var(--White, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  margin-bottom: 0;
}
section.home-sec7 .content-wraper h2 span {
  font-size: 5.625rem;
}
section.home-sec7 .content-wraper p {
  margin-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
section.home-sec7 .content-wraper a.animate-white-btn {
  margin: 0 auto;
  display: table;
}

section.home-sec9 {
  padding-bottom: 6.25rem;
}
section.home-sec9 .row {
  gap: 1.87rem 0;
}
section.home-sec9 h2 {
  text-align: center;
}
section.home-sec9 .review-card {
  padding: 1.88rem 1.25rem;
  border-radius: 0.3125rem;
  background: #f3f3f3;
  height: 100%;
}
section.home-sec9 .review-card ul {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin-bottom: 1rem;
}
section.home-sec9 .review-card ul li {
  display: table;
}
section.home-sec9 .review-card ul li img {
  max-width: 1.87488rem;
  max-height: 1.87388rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec9 .review-card p {
  color: var(--Body-Text, #404040);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin-bottom: 4.69rem;
}
section.home-sec9 .review-card h6 {
  color: var(--Heading-Tet, #000);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.25rem;
  /* 225% */
  padding-left: 0.94rem;
  margin: 0;
  position: relative;
}
section.home-sec9 .review-card h6::after {
  content: "";
  width: 0.625rem;
  height: 0.0625rem;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

section.collection-list-sec1 {
  padding: 2.5rem 0 3.75rem;
}
section.collection-list-sec1 .flex-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}
section.collection-list-sec1 .flex-wraper .filter-box {
  display: table;
}
section.collection-list-sec1 .flex-wraper .filter-box a {
  color: var(--Sage-Green, #7f9070);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}
section.collection-list-sec1 .flex-wraper .filter-box a img {
  max-width: 1.375rem;
  max-height: 1.375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.collection-list-sec1 .flex-wraper .select-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
section.collection-list-sec1 .flex-wraper .select-box .select-wraper {
  display: flex;
  align-items: center;
}
section.collection-list-sec1 .flex-wraper .select-box .select-wraper span {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
section.collection-list-sec1 .flex-wraper .select-box .select-wraper select {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.625rem;
  border-radius: 0.1875rem;
  border: none;
  width: 9.5rem;
  background-color: transparent;
  cursor: pointer;
}
section.collection-list-sec1 .flex-wraper .select-box h6 {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
section.collection-list-sec1 .tab-teaser .tab-menu {
  margin-bottom: 1rem;
}
section.collection-list-sec1 .tab-teaser .tab-menu ul {
  display: flex;
  align-items: center;
  gap: 1.88rem;
}
section.collection-list-sec1 .tab-teaser .tab-menu ul li {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.collection-list-sec1 .tab-teaser .tab-menu ul li a {
  color: var(--Tomacco-Brown, #6d593e);
  padding: 0.375rem 0.25rem;
  position: relative;
}
section.collection-list-sec1 .tab-teaser .tab-menu ul li a.active::after {
  width: 100%;
}
section.collection-list-sec1 .tab-teaser .tab-menu ul li a:hover::after {
  width: 100%;
}
section.collection-list-sec1 .tab-teaser .tab-menu ul li a::after {
  content: "";
  width: 0%;
  height: 0.0625rem;
  background-color: #6d593e;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
section.collection-list-sec1 .tab-teaser .tab-main-box .tab-box {
  display: none;
}
section.collection-list-sec1 .tab-teaser .tab-main-box .tab-box .row {
  gap: 1.88rem 0;
}
section.collection-list-sec1 ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  margin-top: 1.87rem;
}
section.collection-list-sec1 ul.pagination li {
  width: 1.625rem;
  height: 1.5rem;
  color: var(--Black, #0d0d0d);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.collection-list-sec1 ul.pagination li a {
  width: 100%;
  height: 100%;
  color: #9a9a9a;
  padding: 0 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.collection-list-sec1 ul.pagination li a img {
  max-width: 0.75rem;
  max-height: 0.75rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.collection-list-sec1 ul.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Black, #0d0d0d);
  padding: 0 0.375rem;
}
section.collection-list-sec1 nav.woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  margin-top: 1.87rem;
}
section.collection-list-sec1 nav.woocommerce-pagination ul.page-numbers li {
  width: 1.625rem;
  height: 1.5rem;
  color: var(--Black, #0d0d0d);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.collection-list-sec1 nav.woocommerce-pagination ul.page-numbers li span,
section.collection-list-sec1 nav.woocommerce-pagination ul.page-numbers li a {
  width: 100%;
  height: 100%;
  color: #9a9a9a;
  padding: 0 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.collection-list-sec1 nav.woocommerce-pagination ul.page-numbers li span.current,
section.collection-list-sec1 nav.woocommerce-pagination ul.page-numbers li a.current {
  color: var(--Black, #0d0d0d);
}
section.collection-list-sec1 nav.woocommerce-pagination ul.page-numbers li a.next {
  font-size: 1.2rem;
}
section.collection-list-sec1 nav.woocommerce-pagination ul.page-numbers li a.prev {
  font-size: 1.2rem;
}

section.collection-product-details-sec1 {
  padding-bottom: 6.25rem;
}
section.collection-product-details-sec1 .choose-date {
  margin-bottom: 1.25rem;
}
section.collection-product-details-sec1 .choose-date .flex-wrp {
  display: flex;
  gap: 1.87rem;
}
section.collection-product-details-sec1 .choose-date .flex-wrp .input_wrap,
section.collection-product-details-sec1 .choose-date .flex-wrp a {
  width: 100%;
}
section.collection-product-details-sec1 .choose-date .flex-wrp .input_wrap {
  position: relative;
}
section.collection-product-details-sec1 .choose-date .flex-wrp .input_wrap i,
section.collection-product-details-sec1 .choose-date .flex-wrp .input_wrap img {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
}
section.collection-product-details-sec1 .choose-date .flex-wrp input {
  width: 100%;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #cecece;
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.63rem 0.75rem;
}
section.collection-product-details-sec1 .choose-date input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  /* Make it invisible but still clickable */
  position: absolute;
  /* Keep it in the input area */
  width: 100%;
  /* Cover the whole input */
  height: 100%;
  cursor: pointer;
}
section.collection-product-details-sec1 .choose-date h4 {
  color: var(--Black, #0d0d0d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  position: relative;
  padding-right: 2rem;
  text-align: left;
  cursor: pointer;
  margin-bottom: 0.37rem;
}
section.collection-product-details-sec1 .choose-date h6 {
  color: var(--Text, #5d5d5d);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 1.25rem;
}
section.collection-product-details-sec1 .choose-date a.disabled,
section.collection-product-details-sec1 .choose-date input[type=submit].disabled {
  border-radius: 0.1875rem;
  opacity: 0.4;
  background: var(--Grey-Olive, #aeb192);
  font-weight: 400;
  border: 0.0625rem solid #aeb192;
  padding: 0.63rem;
}
section.collection-product-details-sec1 .product-slider .main-image {
  background-color: #fcfcfb;
  margin-bottom: 1.88rem;
}
section.collection-product-details-sec1 .product-slider .main-image img {
  width: 100%;
  height: 30.5625rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.collection-product-details-sec1 .product-slider .thumbnail-slider {
  position: relative;
}
section.collection-product-details-sec1 .product-slider .thumbnail-slider .item img {
  width: 100%;
  height: 12.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.collection-product-details-sec1 .product-slider .thumbnail-slider .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
section.collection-product-details-sec1 .product-slider .thumbnail-slider .owl-nav button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(109, 89, 62, 0.168627451);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  box-shadow: 0 0.25rem 0.9375rem 0 rgba(0, 0, 0, 0.07);
}
section.collection-product-details-sec1 .product-slider .thumbnail-slider .owl-nav button.owl-prev {
  left: -1rem;
}
section.collection-product-details-sec1 .product-slider .thumbnail-slider .owl-nav button.owl-next {
  right: -1rem;
}
section.collection-product-details-sec1 .product-slider .thumbnail-slider .owl-nav button span {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.2rem;
}
section.collection-product-details-sec1 h6 {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
section.collection-product-details-sec1 h6:first-of-type {
  margin-top: 1.75rem;
}
section.collection-product-details-sec1 h3 {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.62rem;
}
section.collection-product-details-sec1 h3 .yith-add-to-wishlist-button-block span {
  display: none;
}
section.collection-product-details-sec1 h3 img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.collection-product-details-sec1 ul.others-details {
  margin-bottom: 1.25rem;
}
section.collection-product-details-sec1 ul.others-details li {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.52rem;
}
section.collection-product-details-sec1 p {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2.5rem;
}
section.collection-product-details-sec1 a.oliv-btn {
  width: 100%;
}
section.collection-product-details-sec1 h4 {
  color: var(--Text, #5d5d5d);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0.62rem 0 2.5rem;
}
section.collection-product-details-sec1 h4 a {
  color: var(--Black, #0d0d0d);
  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;
}
section.collection-product-details-sec1 ul.accordian {
  margin-top: 2.5rem;
}
section.collection-product-details-sec1 ul.accordian li {
  padding-bottom: 1.85rem;
  margin-bottom: 1.85rem;
  border-bottom: 0.0625rem solid #ececec;
}
section.collection-product-details-sec1 ul.accordian li.active h5::after {
  transform: rotate(180deg);
}
section.collection-product-details-sec1 ul.accordian li:last-child {
  margin: 0;
}
section.collection-product-details-sec1 ul.accordian li h5 {
  color: var(--Black, #0d0d0d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  position: relative;
  padding-right: 2rem;
  text-align: left;
  cursor: pointer;
}
section.collection-product-details-sec1 ul.accordian li h5::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/arow-bottom.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease-in-out;
}
section.collection-product-details-sec1 ul.accordian li .content {
  display: none;
  margin-top: 1rem;
}
section.collection-product-details-sec1 ul.accordian li .content p {
  color: #000;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
section.collection-product-details-sec1 ul.accordian li .content ul.sub-ul li {
  color: #000;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  padding-left: 2rem;
}
section.collection-product-details-sec1 ul.accordian li .content ul.sub-ul li::after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  margin: auto;
}
section.collection-product-details-sec1 .pro-membership-plan .plan-item {
  color: var(--Green, #215744);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.collection-product-details-sec1 .othr-details-add {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.3125rem;
}
section.collection-product-details-sec1 .othr-details-add .woo-pro-price {
  display: block;
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
}

.filter-ber {
  width: 28.0625rem;
  height: 100vh;
  background: #fffffb;
  padding: 1.25rem 0;
  padding-bottom: 14.5rem;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.filter-ber.filter-ber-open {
  right: 0;
}
.filter-ber h5.top-heading {
  color: var(--Text, #5d5d5d);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1.12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.88rem;
}
.filter-ber h5.top-heading a.filter-ber-close {
  display: table;
}
.filter-ber h5.top-heading a.filter-ber-close img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}
.filter-ber .green-ber {
  padding: 0.94rem 1.87rem;
  background: #eaebde;
  margin-bottom: 1.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-ber .green-ber h5 {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.filter-ber .green-ber .sewwtch-box {
  position: relative;
}
.filter-ber .green-ber .sewwtch-box span {
  display: block;
  width: 2.4375rem;
  height: 1.25rem;
  border-radius: 1.25rem;
  background: #95a697;
  transition: all 0.3s ease-in-out;
}
.filter-ber .green-ber .sewwtch-box span::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: #274b2b;
  border: 0.0313rem solid #bacbc5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.filter-ber .green-ber .sewwtch-box input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 9;
}
.filter-ber .green-ber .sewwtch-box input:checked + span::after {
  left: unset;
  right: 0;
}
.filter-ber .accordian-box {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 0 1.88rem;
  margin-bottom: 1.88rem;
}
.filter-ber .accordian-box ul.accordian li {
  margin-bottom: 3.12rem;
}
.filter-ber .accordian-box ul.accordian li:last-child {
  margin: 0;
}
.filter-ber .accordian-box ul.accordian li.active h5::after {
  transform: rotate(180deg);
}
.filter-ber .accordian-box ul.accordian li h5 {
  color: var(--Black, #0d0d0d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  position: relative;
}
.filter-ber .accordian-box ul.accordian li h5::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/arow-bottom.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.filter-ber .accordian-box ul.accordian li .content {
  margin-top: 1rem;
  display: none;
}
.filter-ber .accordian-box ul.accordian li .content ul li {
  margin-bottom: 0.62rem;
  position: relative;
  display: table;
}
.filter-ber .accordian-box ul.accordian li .content ul li input {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
}
.filter-ber .accordian-box ul.accordian li .content ul li input:checked + span::after {
  content: "\f00c";
  font-family: fontawesome;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d593e;
  border: 0.0625rem solid var(--Tomacco-Brown, #6d593e);
}
.filter-ber .accordian-box ul.accordian li .content ul li span {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 1.38rem;
}
.filter-ber .accordian-box ul.accordian li .content ul li span::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 0.125rem;
  border: 0.0625rem solid #ececec;
  background: rgba(217, 217, 217, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.filter-ber .btn-wraper {
  padding: 0 1.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.19rem;
}
.filter-ber .btn-wraper a.oliv-btn {
  width: 100%;
}

.hw_sec1 {
  padding: 4rem 0 6.25rem;
}
.hw_sec1 h2,
.hw_sec1 h1 {
  text-align: center;
  margin-bottom: 1.4rem;
}
.hw_sec1 .it_card img {
  width: 100%;
}
.hw_sec1 .it_card .txt {
  margin-top: 1.25rem;
  text-align: center;
}
.hw_sec1 .it_card .txt .num {
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  border: 0.0625rem solid #7f9070;
  color: var(--Sage-Green, #7f9070);
  text-align: center;
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0.25rem;
}
.hw_sec1 .it_card .txt h3 {
  color: var(--Sage-Green, #7f9070);
  text-align: center;
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1rem;
}
.hw_sec1 .it_card .txt p {
  font-size: 0.875rem;
  max-width: 23.35rem;
  margin: 0 auto;
}

.hw_sec2 .row {
  row-gap: 1.88rem;
}
.hw_sec2 h2 {
  text-align: center;
  margin-bottom: 0.2rem;
}
.hw_sec2 .why_card {
  text-align: center;
}
.hw_sec2 .why_card .icon {
  width: 3.125rem;
  height: 3.125rem;
  margin: 0 auto 1.25rem;
}
.hw_sec2 .why_card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hw_sec2 .why_card h4 {
  color: var(--Sage-Green, #7f9070);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1rem;
}
.hw_sec2 .why_card p {
  font-weight: 500;
}

.hw_sec3 {
  padding: 6.25em 0;
}
.hw_sec3 h2 {
  margin-bottom: 1.4rem;
  text-align: center;
}
.hw_sec3 .item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hw_sec4 {
  padding-bottom: 6.25rem;
}
.hw_sec4 h2 {
  margin-bottom: 1.4rem;
  text-align: center;
}
.hw_sec4 .accordian li {
  padding: 1rem;
  background: #fff9f3;
  margin-bottom: 1.25rem;
  cursor: pointer;
  position: relative;
}
.hw_sec4 .accordian li:last-child {
  margin-bottom: 0;
}
.hw_sec4 .accordian li .content {
  margin-top: 1rem;
  display: none;
}
.hw_sec4 .accordian li h5 {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.175rem;
  margin-bottom: 0;
  max-width: -moz-max-content;
  max-width: max-content;
}
.hw_sec4 .accordian li.active {
  background-color: #fafdf8;
}
.hw_sec4 .accordian li.active h5 {
  border-bottom: 0.0625rem solid #6d593e;
}
.hw_sec4 .accordian li.active::after {
  rotate: 180deg;
}
.hw_sec4 .accordian li::after {
  content: "";
  position: absolute;
  top: 1.3125rem;
  right: 1rem;
  width: 0.8125rem;
  height: 0.5rem;
  background-image: url(../images/down-arrw.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.5s ease;
}

.hw_sec5 {
  position: relative;
}
.hw_sec5 .bg {
  width: 100%;
  max-height: 35.125rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.hw_sec5 .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hw_sec5 .top .dtls_card {
  max-width: 34rem;
  border-radius: 0.3125rem;
  background: #fff;
  padding: 2.25rem 3.75rem;
  text-align: center;
}
.hw_sec5 .top .dtls_card h2 {
  margin-bottom: 0.4rem;
}
.hw_sec5 .top .dtls_card h2 span {
  line-height: 100%;
}
.hw_sec5 .top .dtls_card p {
  margin-bottom: 1.88rem;
}
.hw_sec5 .top .dtls_card .brown-btn {
  margin: 0 auto;
}

.login_sec {
  position: relative;
  background-color: #fff;
}
.login_sec .side_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  height: 100%;
}
.login_sec .top {
  padding: 10.625rem 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login_sec .login_dv {
  padding-left: 1.0625rem;
}
.login_sec .login_dv h2 {
  color: var(--Tomacco-Brown, #6d593e);
  text-align: center;
  font-family: "Beau Rivage";
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
}
.login_sec .login_dv input:not([type=submit]),
.login_sec .login_dv select {
  width: 100%;
  border: none;
  border-bottom: 0.0625rem solid #d9d9d9;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  color: #000;
  line-height: normal;
  padding: 0.2rem 0;
}
.login_sec .login_dv input:not([type=submit]):focus,
.login_sec .login_dv select:focus {
  outline: none;
}
.login_sec .login_dv select {
  background-image: url(../images/select-arrw.png);
  padding: 0.66rem 0;
  background-size: 0.725rem;
}
.login_sec .login_dv .input_dv {
  margin-bottom: 1rem;
  position: relative;
}
.login_sec .login_dv .input_dv label {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.7rem;
}
.login_sec .login_dv .input_dv .input_wrap {
  position: relative;
}
.login_sec .login_dv .input_dv .input_wrap .icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.login_sec .login_dv .input_dv.pass .toggle-password {
  cursor: pointer;
  color: #5d5d5d;
  font-size: 1rem;
}
.login_sec .login_dv .input_dv.pass input {
  padding-right: 1.5rem;
}
.login_sec .login_dv .input_dv.brthdy .icon {
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.login_sec .login_dv .input_dv.brthdy input {
  padding-right: 1.5rem;
}
.login_sec .login_dv .input_dv .brown-btn {
  margin: 0 auto;
  width: 100%;
}
.login_sec .login_dv p.fw {
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
  text-align: center;
}
.login_sec .login_dv p.fw a {
  font-weight: 500;
  color: #000;
  border-bottom: 0.0625rem solid #000;
  line-height: 100%;
}

.signup.login_sec .top {
  padding: 6.375rem 0;
}
.signup.login_sec .inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.875rem;
}
.signup.login_sec .inputs .input_dv {
  width: 47.5%;
  margin-bottom: 0;
  position: relative;
}
.signup.login_sec .inputs .input_dv.sbmit {
  margin-top: 0.25rem;
}
.signup.login_sec .inputs .input_dv.chck {
  margin-top: 0.25rem;
}
.signup.login_sec .inputs .input_dv.chck label {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0;
  cursor: pointer;
  color: var(--Text, #5d5d5d);
  font-weight: 400;
  /* Create custom checkbox box */
}
.signup.login_sec .inputs .input_dv.chck label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0.125rem;
  border: 0.0625rem solid #ececec;
  background: rgba(217, 217, 217, 0.2);
  width: 1rem;
  height: 1rem;
  transition: background-color 0.2s, border-color 0.2s;
}
.signup.login_sec .inputs .input_dv.chck input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 0.25rem;
  cursor: pointer;
  /* Show tick when checked */
}
.signup.login_sec .inputs .input_dv.chck input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.25rem;
  width: 0.25rem;
  height: 0.5rem;
  border: solid #6d593e;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg);
  background: none;
}
.signup.login_sec .inputs .input_dv.chck input[type=checkbox]:checked + label::before {
  background: rgba(217, 217, 217, 0.2);
  border: 0.0625rem solid var(--Tomacco-Brown, #6d593e);
}
.signup.login_sec .inputs .input_dv .brth {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 0;
  right: 0;
}
.signup.login_sec .inputs .input_dv input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  /* Make it invisible but still clickable */
  position: absolute;
  /* Keep it in the input area */
  width: 100%;
  /* Cover the whole input */
  height: 100%;
  cursor: pointer;
}
.signup.login_sec .inputs .input_dv .fw {
  margin-bottom: 0;
}

.commn_pg_bnnr {
  padding: 4rem 0;
}
.commn_pg_bnnr h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: Poppins;
  color: #6d593e;
  font-size: 3rem;
}
.commn_pg_bnnr h2 {
  color: var(--Black, #121212);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 2rem 0 1rem;
}
.commn_pg_bnnr h2:first-of-type {
  margin-top: 0;
}
.commn_pg_bnnr h3 {
  color: var(--Black, #121212);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 1.2rem;
}
.commn_pg_bnnr p strong,
.commn_pg_bnnr p a {
  color: #6d593e;
}
.commn_pg_bnnr p a {
  font-weight: 500;
}
.commn_pg_bnnr ul,
.commn_pg_bnnr ol {
  margin-bottom: 1rem;
  border-radius: 1rem;
}
.commn_pg_bnnr ul li,
.commn_pg_bnnr ol li {
  color: var(--Body-Text, #505050);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5625rem;
  margin: 0;
}
.commn_pg_bnnr ul li:last-child,
.commn_pg_bnnr ol li:last-child {
  margin-bottom: 0;
}
.commn_pg_bnnr ul {
  list-style-type: disc;
  padding: 1.75rem 1.4rem;
  background: #f5f7e5;
  padding-left: 2.2rem;
}
.commn_pg_bnnr ul li {
  list-style-type: disc;
  margin-bottom: 1rem;
}
.commn_pg_bnnr ul li::marker {
  color: #6d593e;
}
.commn_pg_bnnr ol {
  list-style-type: decimal;
  padding: 1.75rem 1.2rem;
  background: #f5f7e5;
  padding-left: 2rem;
}
.commn_pg_bnnr ol li {
  list-style-type: decimal;
  margin-bottom: 1rem;
}
.commn_pg_bnnr ol li::marker {
  color: #6d593e;
}

.page-404 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f5f7e5;
}
.page-404 .col-lg-12 {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 2rem;
}
.page-404 h1 {
  font-size: 9rem !important;
  margin-bottom: 0rem !important;
  line-height: normal;
  color: #000;
}
.page-404 h2 {
  margin-bottom: 1.5rem;
}
.page-404 p {
  margin-bottom: 1rem;
}

section.collection-list-sec1 .flex-wraper .select-box,
.filter-ber h5.top-heading,
.filter-ber .green-ber {
  display: none;
}

section.collection-list-sec1 .flex-wraper {
  justify-content: flex-end;
}

section.collection-list-sec1 .flex-wraper .filter-box a {
  display: flex;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  min-width: 10rem;
  width: 100%;
  border-radius: 0.1875rem;
  background: var(--Grey-Olive, #aeb192);
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.collection-list-sec1 .flex-wraper .filter-box a img {
  display: none;
}

.filter-ber {
  height: calc(100vh - 7.75rem);
  top: 7.75rem;
}

body:has(.filter-ber-open) {
  overflow: hidden;
}

.filter-ber .accordian-box ul.accordian li {
  margin-bottom: 1.25rem;
}

.filter-ber .accordian-box ul.accordian li h5 {
  font-weight: 600;
  cursor: pointer;
}

.filter-ber .accordian-box ul.accordian li .content ul li span {
  font-weight: 400;
}

.filter-ber .btn-wraper.ifsinglebtn {
  flex-direction: column;
  align-items: flex-start;
}
.filter-ber .btn-wraper.ifsinglebtn label {
  position: relative;
}
.filter-ber .btn-wraper.ifsinglebtn label span {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 1.38rem;
}
.filter-ber .btn-wraper.ifsinglebtn label span:after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 0.125rem;
  border: 0.0625rem solid #ececec;
  background: rgba(217, 217, 217, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.filter-ber .btn-wraper.ifsinglebtn label input[type=checkbox] {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
}
.filter-ber .btn-wraper.ifsinglebtn label input[type=checkbox]:checked + span:after {
  content: "\f00c";
  font-family: fontawesome;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d593e;
  border: 0.0625rem solid var(--Tomacco-Brown, #6d593e);
}

.membership {
  padding: 3rem 0 6.25rem;
  text-align: center;
}
.membership p {
  max-width: 46.9375rem;
  margin: 0 auto 1.875rem;
}
.membership .memtabs-outer .mem-tabs {
  padding: 0.6875rem 1.25rem;
  border: 0.0625rem solid #d9e5cf;
  background: #fcfdf2;
  display: inline-flex;
  margin-bottom: 1.875rem;
}
.membership .memtabs-outer .mem-tabs ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
}
.membership .memtabs-outer .mem-tabs ul li {
  display: flex;
  height: 3.125rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  background-color: white;
  color: var(--Sage-Green, #7f9070);
  text-align: center;
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.membership .memtabs-outer .mem-tabs ul li.active, .membership .memtabs-outer .mem-tabs ul li:hover {
  background-color: #e8ece5;
}
.membership .memtabs-outer .mem-tabs-container .accordion-header {
  display: none;
}
.membership .memtabs-outer .mem-tabs-container .mem-row {
  display: none;
  justify-content: center;
  align-items: flex-end;
  gap: 1.875rem;
  align-self: stretch;
  flex-wrap: wrap;
  padding-top: 1.5625rem;
  width: 100%;
}
.membership .memtabs-outer .mem-tabs-container .mem-row.active {
  display: flex;
  align-items: stretch;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx {
  text-align: left;
  max-width: calc(25% - 1.5rem);
  width: 100%;
  padding: 1.25rem;
  border: 0.0625rem solid #dbddce;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx h4 {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--Tomacco-Brown, #6d593e);
  font-family: "Beau Rivage";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx h4 img {
  width: 1.875rem;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx h5 {
  color: var(--Green, #215744);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.25rem;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx h6 {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx h6 + p {
  color: var(--Sage-Green, #7f9070);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx ul {
  margin-top: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  align-self: stretch;
  margin-bottom: 2.5rem;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx ul li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
  color: var(--Text, #5d5d5d);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  min-height: 3.125rem;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx ul li img {
  width: 1rem;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx .pricing {
  margin-bottom: 1.25rem;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx .pricing p {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx .pricing p span {
  color: var(--Tomacco-Brown, #6d593e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx .membutton a.btn {
  width: 100%;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx.popular {
  position: relative;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx.popular .popularbx {
  background: #cccfb1;
  padding: 0.125rem 1.25rem;
  position: absolute;
  left: -0.0625rem;
  top: -1.625rem;
  right: -0.0625rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx.popular .popularbx span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.membership .memtabs-outer .mem-tabs-container .mem-row .mem-contentbx.popular .popularbx span img {
  width: 1rem;
}

.pro-membership-plan {
  max-width: 6.875rem;
  width: 100%;
  margin-left: 1.25rem;
  display: block;
}

section.collection-product-details-sec1 .pro-membership-plan .plan-item {
  display: block;
  margin-top: 0.4375rem;
}

section.collection-product-details-sec1 h3 {
  align-items: flex-start;
}

section.collection-product-details-sec1 .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor img {
  width: 20px;
  color: currentColor;
  max-width: 35px;
  height: 20px;
  margin: 0;
}

.woocommerce-product-attributes .woocommerce-product-attributes-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.wp-block-woocommerce-cart hr {
  display: none;
}
.wp-block-woocommerce-cart h2.wp-block-heading {
  display: none;
}
.wp-block-woocommerce-cart h2.wp-block-heading.wc-block-cart__empty-cart__title {
  display: block;
}
.wp-block-woocommerce-cart h2.wp-block-heading + div {
  display: none;
}

#notifyMeForm {
  position: relative;
}
#notifyMeForm input[type=email] {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #aeb192;
}
#notifyMeForm button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

/* Base Styles */
.woocommerce.myaccount-cls {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  color: #505050;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5625rem;
}
.woocommerce.myaccount-cls a {
  color: #6d593e;
  text-decoration: none;
}
.woocommerce.myaccount-cls a:hover {
  text-decoration: underline;
}
.woocommerce.myaccount-cls h5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.woocommerce.myaccount-cls h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.woocommerce.myaccount-cls p {
  color: #505050;
  margin-bottom: 20px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-navigation {
  flex: 0 0 25%;
  max-width: 25%;
  margin-right: 30px;
  background-color: #f5f7e5;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-navigation li {
  margin-bottom: 5px;
  list-style: none;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 10px 15px;
  border-radius: 3px;
  color: #505050;
  transition: background-color 0.2s, color 0.2s;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-navigation li a:hover {
  background-color: rgb(237.5, 241, 209.5);
  color: #6d593e;
  text-decoration: none;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-navigation li.is-active a {
  background-color: #6d593e;
  color: white;
  font-weight: 600;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-navigation li.is-active a:hover {
  background-color: #6d593e;
  color: white;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content {
  flex: 0 0 70%;
  max-width: 70%;
  padding: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-billing-outer .dashboard-tabs-billing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  border-bottom: 2px solid #ddd;
  width: 100%;
  overflow: hidden;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-billing-outer .dashboard-tabs-billing ul li {
  list-style: none;
  padding: 10px 15px;
  cursor: pointer;
  margin-right: 15px;
  color: #505050;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: border-bottom 0.2s;
  white-space: nowrap;
  margin: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-billing-outer .dashboard-tabs-billing ul li:hover {
  color: #6d593e;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-billing-outer .dashboard-tabs-billing ul li.active {
  color: #6d593e;
  border-bottom-color: #6d593e;
  font-weight: 600;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .payhistorytxt {
  margin-bottom: 20px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .row {
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .row .col-md-8 {
  flex: 2;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .row .col-md-4 {
  flex: 1;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .circles,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .circles {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .lft,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .rgt,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .lft,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .rgt {
  position: relative;
  z-index: 1;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .lft .plans-top h6,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .lft .plans-top h6 {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .lft .plans-top h6 span,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .lft .plans-top h6 span {
  color: #6d593e;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .lft .plans-bot,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .lft .plans-bot {
  margin-top: 15px;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .lft .plans-bot .cancel-subscription,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .lft .plans-bot .upgrade-subscription,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .lft .plans-bot .cancel-subscription,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .lft .plans-bot .upgrade-subscription {
  display: inline-block;
  padding: 8px 15px;
  background-color: #6d593e;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .lft .plans-bot .cancel-subscription:hover,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .lft .plans-bot .upgrade-subscription:hover,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .lft .plans-bot .cancel-subscription:hover,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .lft .plans-bot .upgrade-subscription:hover {
  background-color: rgb(76.4912280702, 62.4561403509, 43.5087719298);
  text-decoration: none;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .rgt,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .rgt {
  text-align: right;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .rgt .nxtbillingdate h4,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .rgt .nxtbillingdate h4 {
  font-size: 2rem;
  color: black;
  margin-bottom: 5px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .rgt .nxtbillingdate h4 small,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .rgt .nxtbillingdate h4 small {
  font-size: 0.9rem;
  color: #505050;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx .rgt .nxtbillingdate span,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx .rgt .nxtbillingdate span {
  font-size: 0.9rem;
  color: #505050;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  height: 100%;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt img {
  display: none;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .invoice-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-direction: column;
  gap: 15px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .invoice-top h6 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .invoice-top h6 span.status {
  font-size: 0.9rem;
  background-color: #a5d6a7;
  color: #1b5e20;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 10px;
  font-weight: 500;
  margin-left: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .invoice-top .btn {
  padding: 5px 10px;
  background-color: white;
  border: 1px solid #ccc;
  color: #6d593e;
  border-radius: 4px;
  font-size: 0.9rem;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .invoice-body {
  width: 100%;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .invoice-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .invoice-body ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0;
  color: black;
  padding: 5px 12px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .invoice-body ul li img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  filter: invert(30%) sepia(10%) saturate(1487%) hue-rotate(345deg) brightness(97%) contrast(90%);
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view {
  overflow-x: auto;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container {
  width: 100%;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table thead {
  background-color: #f5f7e5;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table thead th {
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #ccc;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table tbody tr {
  border-bottom: 1px solid #eee;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table tbody tr:last-child {
  border-bottom: none;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table tbody tr td {
  padding: 12px 15px;
  vertical-align: middle;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table tbody tr td .woocommerce-Price-amount {
  color: black;
  font-weight: 500;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table tbody tr td.status span {
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .desktop-view .table-container table tbody tr td.status.succeeded span {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .mobile-view {
  display: none;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .mobile-view ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .mobile-view ul li {
  margin-bottom: 15px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .mobile-view ul li .invoice-card {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .mobile-view ul li .invoice-card .invoice-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 5px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .mobile-view ul li .invoice-card .description {
  font-size: 1.1rem;
  font-weight: 600;
  color: black;
  margin: 0 0 5px 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .mobile-view ul li .invoice-card .amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6d593e;
  margin-bottom: 10px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .mobile-view ul li .invoice-card .status {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  background-color: #e8f5e9;
  color: #2e7d32;
  display: inline-block;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details {
  flex: 0 0 calc(50% - 10px);
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details:hover {
  border-color: #6d593e;
  box-shadow: 0 0 5px rgba(109, 89, 62, 0.2);
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details.selected {
  border-color: #6d593e;
  background-color: #f5f7e5;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details.selected .default-check-icon {
  display: block;
  color: #6d593e;
  font-size: 1.5rem;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details .default-check-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details ul li h4,
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details ul li h5 {
  font-size: 1rem;
  font-weight: 600;
  color: black;
  margin: 0;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details ul li span {
  color: #505050;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details ul .card-brand span img {
  max-height: 20px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details.use-new-card {
  background-color: #f9f9f9;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details.use-new-card:hover {
  border-color: #6d593e;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details.use-new-card li {
  display: block;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details.use-new-card li h4 {
  font-size: 1.2rem;
  color: #6d593e;
}
.woocommerce.myaccount-cls .woocommerce-Address {
  width: 100%;
}
.woocommerce.myaccount-cls header.woocommerce-Address-title {
  position: static;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.woocommerce.myaccount-cls header.woocommerce-Address-title .edit {
  border: 1px solid #6d593e;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 0.9rem;
}
.woocommerce.myaccount-cls .woocommerce-Button,
.woocommerce.myaccount-cls .woocommerce-button,
.woocommerce.myaccount-cls .return-btn,
.woocommerce.myaccount-cls .replace-btn,
.woocommerce.myaccount-cls button[type=submit],
.woocommerce.myaccount-cls .woocommerce-Button:hover,
.woocommerce.myaccount-cls .woocommerce-button:hover,
.woocommerce.myaccount-cls .replace-btn:hover,
.woocommerce.myaccount-cls .return-btn:hover {
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.62rem 1.25rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid var(--Tomacco-Brown, #6d593e);
  background: var(--Tomacco-Brown, #6d593e);
  display: table;
  text-align: center;
}
.woocommerce.myaccount-cls .return-btn,
.woocommerce.myaccount-cls .replace-btn,
.woocommerce.myaccount-cls .replace-btn:hover,
.woocommerce.myaccount-cls .return-btn:hover {
  display: inline-block;
  padding: 5px 7px;
  font-size: 14px;
}
.woocommerce.myaccount-cls .woocommerce-MyAccount-content {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.woocommerce.myaccount-cls .woocommerce-form-row::before, .woocommerce.myaccount-cls .woocommerce-form-row::after {
  display: none;
}

@media (max-width: 992px) {
  .woocommerce.myaccount-cls {
    flex-direction: column;
    padding: 0;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-navigation {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-navigation ul li {
    width: 33%;
    text-align: left;
    margin: 0;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-navigation ul li a {
    padding: 8px 12px;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row {
    flex-direction: column;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row .col-md-8,
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row .plansbx .lft,
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row .plansbx .rgt {
    flex: 1;
    text-align: left;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row .plansbx .rgt {
    margin-top: 15px;
    text-align: left;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row .plansbx .rgt .nxtbillingdate {
    text-align: left;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row .plansbx.rgt {
    margin-top: 20px;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .plans-outer .row .plansbx.rgt img {
    display: none;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .desktop-view {
    display: none;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .mobile-view {
    display: block;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content.manage_default_card .form-group #card-details-container {
    flex-direction: column;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content.manage_default_card .form-group #card-details-container .card-details {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .woocommerce.myaccount-cls form label {
    text-align: left;
  }
  .myaccount-cls .woocommerce-orders-table .woocommerce-button,
  .woocommerce.myaccount-cls .return-btn,
  .woocommerce.myaccount-cls .replace-btn,
  .woocommerce.myaccount-cls .replace-btn:hover,
  .woocommerce.myaccount-cls .return-btn:hover {
    margin-left: auto;
    padding: 0.2rem 0.4rem;
    font-size: 0.9rem;
  }
  .myaccount-cls .woocommerce-orders-table {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx {
    flex-direction: column;
    padding: 15px;
    align-items: flex-start;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content.manage_default_card .form-group #card-details-container .card-details {
    flex: 0 0 100%;
  }
  .myaccount-cls .dashboard-tabs-billing-outer .dashboard-tabs-content p {
    text-align: left;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-billing-outer .dashboard-tabs-billing ul {
    flex-direction: column;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-navigation,
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content {
    padding: 12px;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-navigation ul li {
    width: 50%;
  }
  .myaccount-cls form .woocommerce-form-row,
  .myaccount-cls form .form-row {
    float: unset;
    width: 100%;
  }
  .myaccount-cls form .select2-selection {
    text-align: left;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content {
    padding: 12px;
  }
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx_wrap .plansbx,
  .woocommerce.myaccount-cls .woocommerce-MyAccount-content .dashboard-tabs-content .plans-outer .plansbx.rgt .plansbx {
    align-items: flex-start;
  }
}
.wp-block-woocommerce-cart {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  color: #505050;
  font-size: 1rem;
  line-height: 1.5625rem;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
  display: flex;
  gap: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main {
  flex: 3;
  padding: 30px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items caption {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items thead {
  border-bottom: 2px solid #e0e0e0;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items thead th {
  padding: 15px 0 15px 10px;
  text-align: left;
  font-weight: 600;
  color: black;
  font-size: 1.1rem;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items thead th.wc-block-cart-items__header-image {
  width: 100px;
  padding-left: 0;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row {
  border-bottom: 1px solid #f0f0f0;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row:last-child {
  border-bottom: none;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__image {
  padding: 20px 0 20px 0;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__image a {
  display: block;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__image img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__image img:hover {
  opacity: 0.8;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product {
  padding: 20px 10px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 5px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-name:hover {
  color: #6d593e;
  text-decoration: none;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-metadata {
  font-size: 0.9rem;
  color: #777;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-metadata p {
  margin: 5px 0;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__quantity {
  margin-top: 10px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  background: none;
  border: none;
  color: #a00;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  text-decoration: underline;
  color: red;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__total {
  display: none;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar {
  flex: 1;
  background-color: #f5f7e5;
  padding: 30px;
  border-radius: 0 8px 8px 0;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-cart__totals-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 20px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-item__label {
  font-weight: 600;
  color: #333;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-item__value {
  font-weight: 700;
  color: black;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item {
  font-size: 1.3rem;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  margin-top: 15px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #6d593e;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-cart__submit {
  margin-top: 0;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-cart__submit .wc-block-cart__submit-container .wc-block-cart__submit-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: #6d593e;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar .wc-block-cart__submit .wc-block-cart__submit-container .wc-block-cart__submit-button:hover {
  background-color: rgb(76.4912280702, 62.4561403509, 43.5087719298);
}

/* --- Responsive CSS --- */
@media (max-width: 768px) {
  .wp-block-woocommerce-cart {
    padding: 0 10px;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
    flex-direction: column;
    gap: 0;
    box-shadow: none;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main,
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar {
    flex: 1;
    max-width: 100%;
    padding: 20px;
    border-radius: 0;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main {
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items thead {
    display: none;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__image {
    flex: 0 0 80px;
    padding-right: 15px;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product {
    flex: 1;
    min-width: 180px;
    padding-right: 0;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-name {
    font-size: 1.1rem;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__total {
    flex: 0 0 100%;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 700;
    border-top: 1px dashed #eee;
    padding-top: 10px;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar {
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
  }
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__main .wc-block-cart-items tbody .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-metadata p {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar {
    padding: 15px;
  }
}
/* Base Styles for Checkout Block */
.wp-block-woocommerce-checkout {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
  color: #505050;
  font-size: 1rem;
  line-height: 1.5625rem;
}
.wp-block-woocommerce-checkout a {
  color: #6d593e;
  text-decoration: none;
}
.wp-block-woocommerce-checkout a:hover {
  text-decoration: underline;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
  display: flex;
  gap: 35px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main {
  flex: 3;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-checkout-step {
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-checkout-step::before, .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-checkout-step::after {
  display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-checkout-step:last-of-type {
  border-bottom: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-checkout-step__heading {
  margin-bottom: 20px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-checkout-step__heading .wc-block-components-checkout-step__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: black;
  margin: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-checkout-step__description {
  font-style: italic;
  color: #777;
  margin-bottom: 20px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state {
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input.wc-block-components-address-form__first_name, .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input.wc-block-components-address-form__last_name,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country.wc-block-components-address-form__first_name,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country.wc-block-components-address-form__last_name,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state.wc-block-components-address-form__first_name,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state.wc-block-components-address-form__last_name {
  width: calc(50% - 10px);
  margin-right: 18px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input.wc-block-components-address-form__first_name:nth-child(even), .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input.wc-block-components-address-form__last_name:nth-child(even),
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country.wc-block-components-address-form__first_name:nth-child(even),
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country.wc-block-components-address-form__last_name:nth-child(even),
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state.wc-block-components-address-form__first_name:nth-child(even),
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state.wc-block-components-address-form__last_name:nth-child(even) {
  margin-right: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input input,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input select,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country input,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country select,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state input,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5;
  background-color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input input:focus,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input select:focus,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country input:focus,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country select:focus,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state input:focus,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state select:focus {
  border-color: #6d593e;
  box-shadow: 0 0 0 1px #6d593e;
  outline: none;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-text-input label,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__country label,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-components-address-form__state label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 5px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__billing-fields .wc-block-components-address-card-wrapper .wc-block-components-address-card {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f5f7e5;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__billing-fields .wc-block-components-address-card-wrapper .wc-block-components-address-card address {
  font-style: normal;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__billing-fields .wc-block-components-address-card-wrapper .wc-block-components-address-card address .wc-block-components-address-card__address-section {
  margin-bottom: 5px;
  color: black;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__billing-fields .wc-block-components-address-card-wrapper .wc-block-components-address-card address .wc-block-components-address-card__address-section:first-child {
  font-weight: 700;
  font-size: 1.1rem;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__billing-fields .wc-block-components-address-card-wrapper .wc-block-components-address-card address .wc-block-components-address-card__address-section:last-child {
  font-weight: 500;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__billing-fields .wc-block-components-address-card-wrapper .wc-block-components-address-card .wc-block-components-address-card__edit {
  color: #6d593e;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__billing-fields .wc-block-components-address-card-wrapper .wc-block-components-address-card .wc-block-components-address-card__edit:hover {
  color: rgb(76.4912280702, 62.4561403509, 43.5087719298);
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__order-notes .wc-block-components-checkbox .wc-block-components-checkbox__label {
  font-weight: 500;
  color: #333;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__order-notes .wc-block-components-checkbox .wc-block-components-checkbox__input:checked + svg {
  fill: #6d593e;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__terms {
  font-size: 0.9rem;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__actions_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
  display: flex;
  align-items: center;
  color: #505050;
  font-weight: 500;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button svg {
  fill: #505050;
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button:hover {
  color: #6d593e;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button:hover svg {
  fill: #6d593e;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  padding: 12px 30px;
  background-color: #6d593e;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s;
  cursor: pointer;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main form .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  background-color: rgb(76.4912280702, 62.4561403509, 43.5087719298);
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-checkout__actions {
  padding-bottom: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar {
  flex: 1;
  background-color: #f5f7e5;
  padding: 30px;
  border-radius: 8px;
  position: sticky;
  top: 20px;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: black;
  margin: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: black;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-order-summary {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  position: relative;
  margin-right: 15px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item__image img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item__image__quantity {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #6d593e;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
  flex-grow: 1;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-name {
  font-size: 1rem;
  font-weight: 600;
  color: black;
  margin: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata p {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-item__label {
  font-weight: 500;
  color: #333;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-item__value {
  font-weight: 600;
  color: black;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 2px solid #ccc;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item__label {
  font-size: 1.2rem;
  font-weight: 700;
  color: black;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper .wc-block-components-totals-footer-item .wc-block-components-totals-item__value .wc-block-formatted-money-amount {
  font-size: 1.2rem;
  color: #6d593e;
}

/* --- Responsive CSS --- */
@media (max-width: 992px) {
  .wp-block-woocommerce-checkout {
    padding: 0 10px;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    flex-direction: column;
    gap: 20px;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main {
    flex: 1;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-components-text-input {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-checkout__actions_row {
    flex-direction: column-reverse;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    width: 100%;
    margin-bottom: 15px;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar {
    flex: 1;
    position: static;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-top: 10px;
  }
  .wc-block-checkout__actions .wc-block-components-product-name {
    font-size: 1rem;
  }
  .wc-block-checkout__actions .wc-block-components-product-metadata p {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-checkout__actions {
    padding-top: 0;
  }
  .wp-block-woocommerce-checkout form .wc-block-components-text-input {
    float: unset;
    flex: 1 0 100% !important;
  }
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main .wc-block-checkout__actions {
    margin-top: 1.5rem;
  }
}
/* Base Styles for WooCommerce Order Confirmation */
.woocommerce-order {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #505050;
  font-size: 1rem;
  line-height: 1.5625rem;
}
.woocommerce-order .woocommerce-notice--success {
  background-color: #f5f7e5;
  color: #6d593e;
  padding: 20px;
  border: 1px solid #6d593e;
  border-radius: 4px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
.woocommerce-order .woocommerce-order-overview {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid #eee;
  border-radius: 4px;
}
.woocommerce-order .woocommerce-order-overview::before, .woocommerce-order .woocommerce-order-overview::after {
  display: none;
}
.woocommerce-order .woocommerce-order-overview li {
  flex: 1 1 200px;
  padding: 15px 20px;
  margin: 0;
  border-right: 1px solid #eee;
  line-height: 1.2;
  font-size: 0.95rem;
  color: #777;
}
.woocommerce-order .woocommerce-order-overview li:first-child {
  padding-left: 1rem;
}
.woocommerce-order .woocommerce-order-overview li:last-child {
  border-right: none;
}
.woocommerce-order .woocommerce-order-overview li strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
  margin-top: 5px;
}
.woocommerce-order .woocommerce-order-overview li .woocommerce-Price-amount {
  color: #6d593e;
}
.woocommerce-order .woocommerce-order-details {
  margin-bottom: 40px;
}
.woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid #6d593e;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table thead th {
  padding: 15px 10px;
  text-align: left;
  font-weight: 600;
  color: black;
  border-bottom: 1px solid #ddd;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tbody .woocommerce-table__line-item {
  border-bottom: 1px solid #f0f0f0;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tbody .woocommerce-table__line-item td {
  padding: 15px 10px;
  vertical-align: top;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tbody .woocommerce-table__line-item td.woocommerce-table__product-name {
  font-weight: 600;
  color: #333;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tbody .woocommerce-table__line-item td.woocommerce-table__product-name .product-quantity {
  font-weight: 400;
  color: #777;
  font-size: 0.9rem;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tbody .woocommerce-table__line-item td.woocommerce-table__product-total {
  font-weight: 700;
  color: black;
  text-align: right;
}
.woocommerce-order .woocommerce-order-details .woocommerce-table tfoot td {
  padding: 10px;
}
.woocommerce-order .woocommerce-customer-details {
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: black;
  margin-bottom: 15px;
}
.woocommerce-order .woocommerce-customer-details address {
  font-style: normal;
  background-color: #f5f7e5;
  padding: 20px;
  border-radius: 4px;
  line-height: 1.6;
}
.woocommerce-order .woocommerce-customer-details address br {
  margin-bottom: 5px;
}
.woocommerce-order .woocommerce-customer-details address p {
  margin: 5px 0 0 0;
  font-size: 1rem;
}
.woocommerce-order .woocommerce-customer-details address p.woocommerce-customer-details--phone {
  font-weight: 500;
  color: #333;
}
.woocommerce-order .woocommerce-customer-details address p.woocommerce-customer-details--email {
  color: #6d593e;
  font-weight: 500;
}

/* --- Responsive CSS --- */
@media (max-width: 768px) {
  .woocommerce-order {
    padding: 20px 15px;
    margin: 20px auto;
  }
  .woocommerce-order .woocommerce-notice--success {
    font-size: 1.1rem;
  }
  .woocommerce-order .woocommerce-order-overview {
    flex-direction: column;
    border: none;
  }
  .woocommerce-order .woocommerce-order-overview li {
    flex: 1 1 100%;
    padding: 12px 15px;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-left: 1rem !important;
  }
  .woocommerce-order .woocommerce-order-overview li:last-child {
    border-bottom: none;
  }
  .woocommerce-order .woocommerce-order-details .woocommerce-table td.woocommerce-table__product-total {
    text-align: left;
  }
  .woocommerce-order .woocommerce-customer-details address p {
    text-align: left;
    padding: 0;
  }
}
.button-filter {
  display: flex;
  width: 100%;
  gap: 1.2rem;
  align-items: center;
}
.button-filter .oliv-btn {
  width: auto;
}/*# sourceMappingURL=style.css.map */