@charset "UTF-8";
/*! Normalise CSS !*/
@import url(normalize.css);
/*!Root Css!*/
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&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");
/*! Google Fonts !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
  -moz-osx-font-smoothing: grayscale;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Black, #2c2c29);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
  -moz-osx-font-smoothing: grayscale;
}

p {
  color: var(--Black, #2c2c29);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
}
p:last-child {
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
  color: var(--White, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 3.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.875rem;
  /* 114.815% */
  margin-bottom: 1rem;
}

h2 {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: Poppins;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.875rem;
}

h3 {
  padding: 0;
  margin: 0;
  color: var(--White, #fff);
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h4 {
  padding: 0;
  margin: 0;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h5 {
  padding: 0;
  margin: 0;
  color: var(--Dark-Green, #132411);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.75rem;
}

h6 {
  color: var(--text-dark-green, #022d23);
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 1.6875rem */
}

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

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

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

.btn {
  display: inline-flex;
  padding: 0.75rem 2.5rem;
  align-items: center;
  gap: 0.6875rem;
  border-radius: 1.875rem;
  background: var(--Green, #106778);
  color: var(--Balck-Dark, #2b2b2d);
  font-family: "Poppins", sans-serif;
  color: var(--White, #fff);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.btn img {
  width: auto !important;
  transition: all 0.3s ease-in-out;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  background: black;
  color: white;
}
.btn:hover {
  background: var(--Orange, #ffa91d);
  color: var(--Black, #2c2c29);
}
.btn.yellow {
  border-radius: 1.875rem;
  background: var(--Orange, #ffa91d);
  color: var(--Black, #2c2c29);
}
.btn.yellow:hover {
  background-color: #2b2b2d !important;
  color: white;
}
.btn.yellow:hover img {
  filter: brightness(0) invert(1);
}
.btn.border-btn {
  background-color: transparent;
  color: var(--Green, #106778);
  border-color: var(--Green, #106778);
}
.btn.border-btn:hover {
  background-color: var(--Green, #106778);
  color: white;
}

.fakebtn {
  position: relative;
}
.fakebtn input[type=submit] {
  position: absolute;
  inset: 0;
  opacity: 0;
}

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

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

input:not([type=submit]),
input:not([type=checkbox]),
input:not([type=radio]),
select {
  display: block;
  width: 100%;
  padding: 0.875rem 0.625rem;
  border-radius: 0rem;
  background: #fff;
  color: var(--Balck-Dark, #2b2b2d);
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea {
  height: 12.5625rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0.875rem 0.625rem;
  border-radius: 0rem;
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 2.125rem */
  border: none;
  border-bottom: 0.0625rem solid var(--Black-300, #666);
  margin-bottom: 1.5rem;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--Balck-Dark, #2b2b2d);
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

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

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

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

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

.defaultsectionspacing {
  padding: clamp(3.75rem, 3.469vw + 2.087rem, 6.25rem) 0;
}

.mainhd {
  background: #fff;
  left: 0;
  top: 0;
  z-index: 999;
}
.mainhd .top-row {
  background: #b1e3ed;
}
.mainhd .top-row .top-row-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1875rem 0;
}
.mainhd .top-row .top-row-inner p {
  color: var(--Black, #2c2c29);
}
.mainhd .top-row .top-row-inner .left ul li {
  position: relative;
}
.mainhd .top-row .top-row-inner .left ul li a {
  color: var(--Black, #2c2c29);
  padding: 0.625rem 1.3125rem 0.625rem 0.375rem;
}
.mainhd .top-row .top-row-inner .left ul li a:hover {
  color: #606060;
}
.mainhd .top-row .top-row-inner .left ul li > a:before {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.3275rem;
  background: url(../images/downarrow.png) no-repeat 0 0;
  right: 0;
  top: 0.5625rem;
  background-size: 100% 100%;
}
.mainhd .top-row .top-row-inner .left ul li ul {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  background: white;
  border: 0.0625rem solid #b1e3ed;
}
.mainhd .top-row .top-row-inner .left ul li ul li {
  border-bottom: 0.0625rem solid grey;
}
.mainhd .top-row .top-row-inner .left ul li ul li a {
  display: block;
  padding: 0.3125rem 0.625rem;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  display: block !important;
}
.mainhd .top-row .top-row-inner .left ul li ul li a:before {
  display: none;
}
.mainhd .top-row .top-row-inner .left ul li ul li:last-child {
  border-bottom: none;
}
.mainhd .top-row .top-row-inner .center {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.mainhd .top-row .top-row-inner .center p {
  margin: 0;
}
.mainhd .top-row .top-row-inner .center .counter ul {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.mainhd .top-row .top-row-inner .center .counter ul li {
  display: flex;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0.25rem 0.0625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: white;
}
.mainhd .top-row .top-row-inner .hd-right {
  padding: 0.5938rem 0;
  position: relative;
}
.mainhd .top-row .top-row-inner .hd-right ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.mainhd .top-row .top-row-inner .hd-right ul li {
  width: 1.125rem;
}
.mainhd .top-row .top-row-inner .hd-right ul li img {
  width: 100%;
  aspect-ratio: 1/1;
}
.mainhd .top-row .top-row-inner .hd-right ul li a {
  position: relative;
}
.mainhd .top-row .top-row-inner .hd-right ul li a .cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #106676;
  color: #fff;
  display: flex;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  font-size: 0.8rem;
}
.mainhd .my-account-toggle > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-top: 2px;
  color: #2c2c29;
}
.mainhd .my-account-toggle .my-account-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border: 1px solid #e0e6e9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 180px;
  z-index: 100;
  margin-top: 6px;
  z-index: 9999;
  padding: 10px;
}
.mainhd .my-account-toggle .my-account-dropdown li {
  padding: 0;
  margin: 0;
  width: 100% !important;
}
.mainhd .my-account-toggle .my-account-dropdown li a {
  padding: 5px 10px;
  font-size: 0.95rem;
  color: #2c2c29;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: 100% !important;
  display: block !important;
}
.mainhd .my-account-toggle .my-account-dropdown li a:hover {
  background-color: #f7f9fc;
  color: #106778;
}

.mainhd .top-row .top-row-inner .my-account-toggle .my-account-dropdown {
  display: none;
}

.stellarnav.mobile.right > ul,
.stellarnav.mobile.left > ul {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10;
  right: -120%;
  transition: all 0.3s ease-in-out;
}

.stellarnav.mobile.right.current-menu-item > ul {
  right: 0;
}

.navigationouter {
  padding: 1rem 0;
}
.navigationouter .nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
}
.navigationouter .nav-row .logo {
  max-width: 12.125rem;
}
.navigationouter .nav-row .logo img {
  aspect-ratio: 194/65;
}
.navigationouter .nav-row .navigation .stellarnav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (width <= 991px) {
  .navigationouter .nav-row .navigation .stellarnav > ul {
    display: flex !important;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.navigationouter .nav-row .navigation .stellarnav > ul li a {
  color: var(--Black, #2c2c29);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.625rem 0.375rem;
  text-decoration: none;
}
.navigationouter .nav-row .navigation .stellarnav > ul li.active > a, .navigationouter .nav-row .navigation .stellarnav > ul li:hover > a {
  color: #606060;
}
.navigationouter .nav-row .navigation .stellarnav > ul li.has-sub > a {
  background: url(../images/downarrow.png) no-repeat right 0.375rem center;
  padding-right: 1.3125rem;
  background-size: 0.625rem;
}
.navigationouter .nav-row .navigation .stellarnav > ul li ul li a {
  padding: 0.5rem 1.25rem;
}

.bottom-row {
  padding: 0.5rem 0;
  background-color: #f9f9f9;
}
.bottom-row img {
  max-width: 4.875rem;
}
.bottom-row p {
  color: var(--Black, #2c2c29);
}
.bottom-row .bottom-row-inner {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  justify-content: center;
}

.banner {
  position: relative;
  height: clamp(37.688rem, -6.331vw + 40.723rem, 33.125rem);
}
.banner video,
.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.banner .banner-txt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner .banner-txt .bannertext-inner {
  max-width: 47.25rem;
  width: 100%;
  margin: 0 auto 1rem;
}
.banner .banner-txt .bannertext-inner p {
  color: white;
  text-align: center;
  margin-bottom: 1.875rem;
}
.banner.innerbanner {
  height: 28.125rem;
}
.banner.innerbanner .bannertext-inner {
  max-width: 50.625rem;
}
.banner.innerbanner .bannertext-inner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.125rem;
}
.banner.innerbanner .bannertext-inner ul li {
  position: relative;
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.banner.innerbanner .bannertext-inner ul li:after {
  content: "\f054";
  font-family: fontawesome;
  position: absolute;
  right: -1.3125rem;
  top: 0.25rem;
  color: var(--Orange, #ffa91d);
}
.banner.innerbanner .bannertext-inner ul li a {
  color: var(--Orange, #ffa91d);
}
.banner.innerbanner .bannertext-inner ul li:last-child:after {
  display: none;
}

.woocommerce-checkout .banner,
.woocommerce-cart .banner {
  height: clamp(10rem, 5.551vw + 7.339rem, 14rem) !important;
}

.afterbanner {
  padding: 0.9375rem 0;
}
.afterbanner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.75rem;
}
.afterbanner ul li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.afterbanner ul li img {
  width: 1.875rem;
  height: 1.875rem;
  aspect-ratio: 1/1;
}

.categories {
  text-align: center;
}
.categories .categories-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.categories .categories-row .categories-pods {
  display: flex;
  width: 14.1875rem;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}
.categories .categories-row .categories-pods .abs {
  position: absolute;
  inset: 0;
}
.categories .categories-row .categories-pods:hover .img img {
  scale: 1.05;
}
.categories .categories-row .categories-pods:hover .text h5 {
  color: #ffa91d;
}
.categories .categories-row .img img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.categories .categories-row .text h5 {
  color: var(--Green, #106778);
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}

.heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.875rem;
}
.heading-row h2 {
  margin-bottom: 0;
}

a.linkbtn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--Green, #106778);
}
a.linkbtn img {
  width: 1.25rem;
  transition: all 0.3s ease-in-out;
}
a.linkbtn:hover img {
  transform: translateX(0.3125rem);
}

.best-offers .row {
  gap: 2.5rem 0;
}
.best-offers .btn-container {
  text-align: center;
  display: none;
}
.best-offers .btn-container .linkbtn {
  justify-content: center;
}
.best-offers .tab-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.875rem;
}
.best-offers .tab-links li {
  border-radius: 1.875rem;
  background: #f9f9f9;
  padding: 0.75rem 1.1563rem;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  min-width: 9.3125rem;
  text-align: center;
}
.best-offers .tab-links li a {
  color: var(--Black, #2c2c29);
}
.best-offers .tab-links li.active {
  background: #dffaff;
}
.best-offers .tab-content .tab {
  display: none;
}
.best-offers .tab-content .tab.active {
  display: block;
}

.bo-card {
  padding: 0.375rem;
  position: relative;
  border-radius: 0.3125rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.bo-card:hover {
  background: #f9f9f9;
}
.bo-card .splide__pagination {
  display: inline-flex !important;
  align-items: center;
  gap: 0.3125rem;
  bottom: 1.375rem;
}
.bo-card .splide__pagination li .splide__pagination__page {
  margin: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  aspect-ratio: 1/1;
  background-color: #d9d9d9;
  opacity: 1;
}
.bo-card .splide__pagination li .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: #fff;
}
.bo-card .img {
  margin-bottom: 1rem;
  position: relative;
}
.bo-card .img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.bo-card .img img {
  width: 100%;
  height: 13.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.bo-card .text {
  padding: 0.625rem;
  padding-top: 0;
}
.bo-card .text .tags {
  display: flex;
  max-width: 9.4375rem;
  width: 100%;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.bo-card .text .tags span {
  display: flex;
  padding: 0.0625rem 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 1.25rem;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bo-card .text .tags span.bestseller-tag {
  background: #ffc76c;
  color: var(--Black, #2c2c29);
}
.bo-card .text .tags span.off-tag {
  background: #ffcfb5;
  color: var(--Red, #ab4005);
}
.bo-card .text h4 a {
  color: var(--Black, #2c2c29);
}
.bo-card .text h4 + span {
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  margin-bottom: 0.8125rem;
}
.bo-card .text .price {
  margin-bottom: 1rem;
}
.bo-card .text .price h5 {
  color: var(--Green, #106778);
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25rem;
  /* 111.111% */
  margin-bottom: 0.375rem;
}
.bo-card .text .price del {
  color: #c6c6c6;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  /* 142.857% */
  text-decoration-line: line-through;
}
.bo-card .text .price del span {
  color: #c6c6c6;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
}
.bo-card .text .colors {
  max-width: 5.0625rem;
  width: 100%;
}
.bo-card .text .colors img {
  width: 100%;
}
.bo-card .abs {
  position: absolute;
  inset: 0;
}
.bo-card:hover .text {
  padding: 0.625rem;
  padding-top: 0;
}
.as-seen-in {
  text-align: center;
}
.as-seen-in .autoscroll-outer {
  position: relative;
  padding: 2.3125rem 0;
}
.as-seen-in .autoscroll-outer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 0.3125rem 0 0 0.3125rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 85%);
  width: 11.5625rem;
  z-index: 1;
}
.as-seen-in .autoscroll-outer:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 0.3125rem 0.3125rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 85%);
  width: 11.5625rem;
  z-index: 1;
}
.as-seen-in .autoscroll-outer .splide__list {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.as-seen-in .autoscroll-outer .splide__slide {
  width: auto !important;
}

.reviews {
  text-align: center;
}
.reviewbx {
  padding: 1.875rem 1.25rem;
  border-radius: 0.3125rem;
  background: #f9f9f9;
  text-align: left;
}
.reviewbx .ratingfulll {
  max-width: 9.375rem;
  margin-bottom: 1rem;
}
.reviewbx p {
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin-bottom: 4.6875rem;
}
.reviewbx h6 {
  color: var(--Heading-Tet, #000);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.25rem;
  /* 225% */
  margin-bottom: 0;
}

.transparent-pricing h2 {
  margin-bottom: 1rem;
}
.transparent-pricing .text p {
  color: var(--Body-Text, #606060);
}
.transparent-pricing .text ul li {
  position: relative;
  color: var(--Body-Text, #606060);
  position: relative;
  padding-left: 0.9375rem;
  margin-bottom: 1.25rem;
}
.transparent-pricing .text ul li:last-child {
  margin-bottom: 0;
}
.transparent-pricing .text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--Red, #ab4005);
  border-radius: 1.875rem;
}

.build-bed {
  padding: 3.5rem 0;
}
.build-bed h2 {
  margin-bottom: 0.75rem;
  color: white;
}
.build-bed p {
  color: white;
}
.build-bed ul {
  margin: 1.875rem 0;
}
.build-bed ul li {
  position: relative;
  padding-left: 2.25rem;
  color: white;
  margin-bottom: 1rem;
  max-width: 32.75rem;
}
.build-bed ul li:nth-child(2) {
  max-width: 29.375rem;
}
.build-bed ul li:nth-child(3) {
  max-width: 25.8125rem;
}
.build-bed ul li:last-child {
  margin-bottom: 0;
}
.build-bed ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/build-icon.png) no-repeat 0 0;
  background-size: cover !important;
}
.build-bed .container {
  position: relative;
}
.build-bed .bed {
  position: absolute;
  max-width: 61.5111rem;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 352/147;
  right: -6.875rem;
  bottom: -9.875rem;
}

.revrow {
  padding-top: clamp(2.188rem, 15.091vw - 5.047rem, 13.063rem);
}
.revrow.slightchange .row:nth-child(odd) {
  flex-direction: row-reverse;
}
.revrow.slightchange .row:nth-child(even) {
  flex-direction: unset;
}
.revrow .row {
  align-items: center;
  margin-bottom: 1.875rem;
}
.revrow .row:last-child {
  margin-bottom: 0;
}
.revrow .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.revrow .text h2 {
  margin-bottom: 1rem;
}
.revrow .text p {
  color: var(--Body-Text, #606060);
}
.revrow .text ul li {
  position: relative;
  color: var(--Body-Text, #606060);
  position: relative;
  padding-left: 0.9375rem;
  margin-bottom: 1.25rem;
}
.revrow .text ul li:last-child {
  margin-bottom: 0;
}
.revrow .text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--Red, #ab4005);
  border-radius: 1.875rem;
}

.clearence .container {
  position: relative;
}
.clearence .container .clearance-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 31rem;
}
.clearence .text {
  padding: 2.125rem 0;
  text-align: center;
}
.clearence .text h2 {
  color: var(--Green, #106778);
  text-align: center;
  font-family: Poppins;
  font-size: 3.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4rem;
  /* 118.519% */
  margin-bottom: 1rem;
}
.clearence .text ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  margin-bottom: 1rem;
}
.clearence .text ul li {
  display: flex;
  flex-direction: column;
  width: 4.9375rem;
  height: 5rem;
  padding: 0.4375rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 79/80;
  border-radius: 0.9375rem;
  border-bottom: 0.0625rem solid rgba(16, 103, 120, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 74.52%);
}
.clearence .text ul li span {
  color: var(--Green, #106778);
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  /* 68.182% */
  text-transform: uppercase;
}
.clearence .text ul li ins {
  color: var(--Green, #106778);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.faq .faq_box {
  width: 100%;
  padding: 0;
  margin: 0rem;
  position: relative;
}
.faq .faq_box .faq_item {
  padding: 1rem;
  transition: all 0.3s ease-in-out;
}
.faq .faq_box .faq_item.main_active .faq_cont {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.15);
}
.faq .faq_box .faq_item.main_active .faq_cont p {
  color: var(--Body-Text, #606060);
}
.faq .faq_box .faq_item:last-child {
  margin: 0;
}
.faq .faq_box .faq_item + .faq_item {
  margin-top: 1rem;
}
.faq .faq_box .faq_item .faq_hd {
  padding: 0.125rem 2.13rem 0.125rem 0;
  cursor: pointer;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0rem;
}
.faq .faq_box .faq_item .faq_hd::before {
  font: var(--fa-font-solid);
  content: "\f107";
  position: absolute;
  display: flex;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  right: 0rem;
  top: 0rem;
  margin: auto;
  z-index: 1;
  font-size: 1rem;
  width: 3.125rem;
  height: 100%;
  color: #106778;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
}
.faq .faq_box .faq_item .faq_hd.closed::before {
  transform: rotate(180deg);
}
.faq .faq_box .faq_item .faq_hd h5 {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem;
  /* 187.5% */
  cursor: pointer;
  margin-bottom: 0;
}
.faq .faq_box .faq_item .faq_cont {
  display: none;
  margin: 1rem 0 0 0;
  border-top: none;
}
.faq .faq_box .faq_item .faq_cont p {
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
}

.dont-missout {
  padding-top: 5rem;
  text-align: center;
  background: #dffaff;
}
.dont-missout h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.dont-missout p {
  color: var(--Body-Text, #606060);
  margin-bottom: 1.875rem;
  position: relative;
  z-index: 1;
}
.dont-missout .btn.yellow {
  max-width: 8.8125rem;
  padding: 0.594rem 0.625rem;
}
.dont-missout .wpcf7 form .wpcf7-response-output {
  margin-bottom: 1.5rem !important;
}
.dont-missout .inputcontainer {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  align-self: stretch;
  max-width: 50.125rem;
  margin: 0 auto 1.625rem;
  position: relative;
  z-index: 1;
}
.dont-missout .inputcontainer .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.dont-missout .inputcontainer input[type=email] {
  padding: 0.75rem 0.9375rem;
  border-radius: 0.125rem;
  border: 0.0625rem solid #f9f9f9;
  background: var(--White, #fff);
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.dont-missout p a {
  color: var(--Green, #106778);
  margin-bottom: 1.625rem;
}
.dont-missout .missoutimg {
  width: 47.5144rem;
  flex-shrink: 0;
  margin: -7.1875rem auto -5.0625rem;
  position: relative;
  z-index: 0;
}

.mainft {
  padding-top: 8.5rem;
  background: #ffe7da;
}
.mainft .ft-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.875rem;
  border-bottom: 0.0625rem solid var(--Body-Text, rgba(96, 96, 96, 0.1647058824));
}
.mainft .ft-top-row h5 {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1.875rem;
}
.mainft .ft-top-row ul li {
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Body-Text, #606060);
  margin-bottom: 1rem;
}
.mainft .ft-top-row ul li:last-child {
  margin-bottom: 0;
}
.mainft .ft-top-row ul li a {
  color: var(--Body-Text, #606060);
}
.mainft .ft-top-row .ftlogo {
  max-width: 19.125rem;
  width: 100%;
}
.mainft .ft-top-row .ftlogo p {
  max-width: 16.9375rem;
  color: var(--Body-Text, #606060);
}
.mainft .ft-top-row .ftlogo a {
  margin-bottom: 1.875rem;
  display: inline-block;
}
.mainft .ft-top-row .ftcontact {
  max-width: 23.125rem;
}
.mainft .ft-top-row .ftcontact ul {
  margin-bottom: 1rem;
}
.mainft .ft-top-row .ftcontact ul + h5 {
  margin-bottom: 1rem;
}
.mainft .ft-top-row .ftcontact ul li span,
.mainft .ft-top-row .ftcontact ul li a {
  position: relative;
  padding-left: 1.75rem;
  display: inline-block;
}
.mainft .ft-top-row .ftcontact ul li span i,
.mainft .ft-top-row .ftcontact ul li a i {
  position: absolute;
  left: 0;
  top: 0.25rem;
}
.mainft .ft-top-row .ftcontact ul.socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.1875rem;
}
.mainft .ft-top-row .ftcontact ul.socials li {
  margin: 0;
}
.mainft .ft-top-row .ftcontact ul.socials li a {
  padding: 0;
  text-align: center;
  display: flex;
  width: 1.875rem;
  height: 1.875rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9063rem;
  border: 0.0625rem solid var(--Body-Text, #606060);
}
.mainft .ft-top-row .ftcontact ul.socials li a i {
  position: static;
}
.mainft .ftbtm {
  padding: 1.875rem 0;
}
.mainft .ftbtm p {
  text-align: center;
  margin-bottom: 0;
  color: var(--Body-Text, #606060);
}

.story {
  text-align: center;
}
.story h2 {
  margin-bottom: 1rem;
}
.story p {
  max-width: 76.625rem;
  margin: 0 auto 1.875rem;
  color: var(--Body-Text, #606060);
}

.why-us {
  padding: clamp(3.75rem, 3.903vw + 0.317rem, 5rem) 0;
  background: #f3fdff;
  text-align: center;
}
.why-us h2 {
  margin-bottom: 1rem;
}
.why-us .row {
  gap: 1.5625rem 0;
}
.why-us .why-bx {
  padding: 1rem;
  border-radius: 0.3125rem;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.why-us .why-bx:hover {
  background: #ffdba1;
}
.why-us .why-bx .icon {
  display: flex;
  width: 3.9375rem;
  height: 3.9375rem;
  justify-content: center;
  align-items: center;
  border-radius: 1.9688rem;
  border: 0.0625rem solid #ffb31e;
  margin: 0 auto 1rem;
}
.why-us .why-bx .icon img {
  width: 2.1875rem;
}
.why-us .why-bx p {
  color: var(--Body-Text, #606060);
  font-size: 1rem;
  line-height: 1.5rem;
}

.prodsec .prodbxouter .row {
  gap: 1.875rem 0;
}

.sorting-outer {
  position: sticky;
  top: 1.25rem;
}
.sorting-outer .sortingsearch {
  margin-bottom: 1.875rem;
}
.sorting-outer .sortingsearch input[type=search] {
  width: 100%;
  background: #dffaff url(../images/search-sorting.png) no-repeat 0.75rem center;
  padding: 0.875rem 0.75rem;
  padding-left: 2.1875rem;
  color: var(--Sub-Heading, #222);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  background-size: 0.9375rem;
}
.sorting-outer .filterbtns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.sorting-outer .filterbtns .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.sorting-outer .filterbtns .icon img {
  width: 100%;
  aspect-ratio: 1/1;
}
.sorting-outer .filterbtns .small-btn {
  color: var(--Heading-Color, #2e2e2e) !important;
  font-size: 0.875rem !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: normal !important;
  padding: 0.3125rem 0.625rem !important;
  border-radius: 1.25rem !important;
  border: 0.0625rem solid var(--Heading-Color, #2e2e2e) !important;
  font-family: Poppins !important;
  background-color: white !important;
}
.sorting-outer .sorting-bx-outer .sorting-bx {
  padding: 0.9375rem 0;
  margin-bottom: 0.9375rem;
}
.sorting-outer .sorting-bx-outer .sorting-bx:last-child {
  margin-bottom: 0;
}
.sorting-outer .sorting-bx-outer .sorting-bx.active h5 img {
  transition: all 0.3s ease-in-out;
  transform: rotate(-180deg);
  width: 1.125rem;
}
.sorting-outer .sorting-bx-outer .sorting-bx h5 {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.sorting-outer .sorting-bx-outer .sorting-bx h5 img {
  transition: all 0.3s ease-in-out;
  width: 1.125rem;
}
.sorting-outer .sorting-bx-outer .sorting-bx h5.active h5 img {
  transform: rotate(0deg);
}
.sorting-outer .sorting-bx-outer .sorting-bx ul {
  margin-top: 1.25rem;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  align-self: stretch;
}
.sorting-outer .sorting-bx-outer .sorting-bx ul li label {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0;
}
.sorting-outer .sorting-bx-outer .sorting-bx ul li label input[type=checkbox] {
  padding: 0;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border-radius: 0.125rem;
  border: 0.0625rem solid #606060;
  width: 1.25rem;
  height: 1.25rem;
  accent-color: #ffa91d;
  position: relative;
  top: 0.1875rem;
}
.sorting-outer .sorting-bx-outer .sorting-bx ul li label span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.sorting-outer .sorting-bx-outer .sorting-bx ul li label span img {
  width: 1.25rem;
  height: 1.25rem;
}
.sorting-outer .sortingbuttons {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
}

.openfilter {
  display: none;
}

.appendedsort .modal-header {
  border: none;
}
.appendedsort .modal-header .btn-close {
  border-radius: 0.9375rem;
  background-color: #efeeee;
  color: black;
  opacity: 1;
}

.getintouch h2 {
  margin-bottom: 1rem;
}
.getintouch .contactform label {
  display: block;
  color: var(--Heading-Color, #2e2e2e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem;
  /* 250% */
  letter-spacing: 0.03rem;
  margin-bottom: 0.75rem;
}
.getintouch .contactform input:not([type=checkbox]):not([type=radio]):not([type=submit]) {
  padding: 0.25rem 1.25rem;
  border-radius: 0.25rem;
  background: #f9f9f9;
  color: #737373;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  /* 285.714% */
  letter-spacing: 0.0262rem;
  border: none;
}
.getintouch .contactform input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus {
  outline: none;
}
.getintouch .contactform textarea {
  min-height: 9.625rem;
  padding: 1.25rem;
  border-radius: 0.25rem;
  background: #f9f9f9;
  color: #737373;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  letter-spacing: 0.0262rem;
  border: none;
  height: inherit;
  margin: 0;
}
.getintouch .contactform .submit .btn {
  display: inline-flex;
  width: auto;
  border-radius: 1.875rem;
  background: var(--Green, #106778);
  color: var(--Balck-Dark, #2b2b2d);
  font-family: "Poppins", sans-serif;
  color: var(--White, #fff);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.75rem 2.5rem;
}
.getintouch .contactform .submit .btn:hover {
  background-color: var(--Orange, #ffa91d);
}
.getintouch .contactform .row {
  gap: 1rem 0;
}

.contactteam .contactteaminner {
  border-radius: 0.25rem;
  background: #ffe8bc;
  padding: 2.5rem;
  text-align: center;
  margin: 0 auto;
}
.contactteam .contactteaminner h5 {
  color: var(--Black, #2c2c29);
  text-align: center;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}
.contactteam .contactteaminner p {
  color: var(--Body-Text, #606060);
  text-align: center;
  margin-bottom: 0.625rem;
  max-width: 67.75rem;
  margin: 0 auto 0.625rem;
}
.contactteam .contactteaminner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contactteam .contactteaminner ul li {
  color: var(--Red, #ab4005);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  /* 162.5% */
}
.contactteam .contactteaminner ul li a {
  color: var(--Red, #ab4005);
}
.contactteam .contactteaminner ul li a,
.contactteam .contactteaminner ul li span {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.contactteam .contactteaminner ul li .icon {
  display: flex;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.4375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 1.25rem;
  background: var(--Red, #ab4005);
  color: white;
  font-size: 0.625rem;
}

.review-section {
  padding-top: 3.75rem;
}
.review-section .ratingbx .ratingbx-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.review-section .ratingbx .ratingbx-top .rating-digit {
  display: flex;
  width: 4.375rem;
  padding: 0.3125rem 1.4375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.1875rem;
  background: var(--Orange, #ffa91d);
  color: #000;
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.review-section .ratingbx .ratingbx-top .ratingbx-right {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.review-section .ratingbx .ratingbx-top .ratingbx-right .ratingstars {
  max-width: 7.0625rem;
}
.review-section .ratingbx .ratingbx-top .ratingbx-right .ratingstars img {
  width: 100%;
}
.review-section .ratingbx .ratingbx-top .ratingbx-right .ratingtxt p {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 185.714% */
  margin-bottom: 0;
}
.review-section .ratingbx .ratingbx-bottom .ratingbx-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.375rem;
  justify-content: space-between;
}
.review-section .ratingbx .ratingbx-bottom .ratingbx-row:last-child {
  margin-bottom: 0;
}
.review-section .ratingbx .ratingbx-bottom .ratingbx-row span {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.review-section .ratingbx .ratingbx-bottom .ratingbx-row .progress {
  max-width: 18.375rem;
  width: 100%;
  height: 0.375rem;
  /* thickness */
  background: #f2f2f2;
  /* light gray background */
  border-radius: 0.25rem;
  /* fully rounded edges */
  overflow: hidden;
  /* hide bar corners */
}
.review-section .ratingbx .ratingbx-bottom .ratingbx-row .progress .progress-bar {
  height: 100%;
  width: 0;
  /* default */
  background: #ffb31e;
  /* yellow/orange (similar to image) */
  border-radius: 0.25rem;
  transition: width 0.4s ease;
  /* smooth animation */
}
.review-section .recommended h6 {
  color: #000;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 2.5rem;
}
.review-section .recommended h6 span {
  color: #000;
  font-family: Poppins;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  /* 100% */
}
.review-section .recommended .splide__arrow {
  transition: all 0.3s ease-in-out;
  background: #fff;
  border: none;
  width: 2.5rem;
  height: 100%;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}
.review-section .recommended .splide__arrow:focus, .review-section .recommended .splide__arrow:focus-within, .review-section .recommended .splide__arrow:focus-visible {
  outline: none;
}
.review-section .recommended .splide__arrow:disabled {
  opacity: 0;
}
.review-section .recommended .splide__arrow.splide__arrow--prev {
  left: 0;
}
.review-section .recommended .splide__arrow.splide__arrow--next {
  right: 0;
}
.review-section .recommended .recommended-slider {
  border-radius: 0.5rem;
  overflow: hidden;
}
.review-section .recommended .recommended-slider:hover .splide__arrow {
  opacity: 0.7;
}
.review-section .reviewinner {
  margin-top: 3.75rem;
}
.review-section .reviewinner .review-top {
  margin-bottom: 1.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #d9d9d9;
}
.review-section .reviewinner .review-top .select-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-section .reviewinner .review-top .select-row .custom-select {
  position: relative;
  width: 19.0625rem;
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.125rem;
}
.review-section .reviewinner .review-top .select-row .custom-select .select-trigger {
  border-radius: 0.3125rem;
  border: 0.0625rem solid #e8e8e8;
  background: var(--White, #fff);
  padding: 1rem;
  position: relative;
  cursor: pointer;
}
.review-section .reviewinner .review-top .select-row .custom-select .select-trigger img {
  width: 0.5rem;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.review-section .reviewinner .review-top .select-row .custom-select .select-options {
  padding: 0.75rem;
  padding-top: 1.25rem;
  position: absolute;
  top: 92%;
  left: 0;
  right: 0;
  background: #fff;
  border: 0.0625rem solid #e8e8e8;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-0.625rem);
  transition: all 0.3s ease;
  z-index: 1;
}
.review-section .reviewinner .review-top .select-row .custom-select .select-options .option {
  cursor: pointer;
  margin-bottom: 0.75rem;
  padding: 0.375rem 0;
}
.review-section .reviewinner .review-top .select-row .custom-select .select-options .option:last-child {
  margin-bottom: 0;
}
.review-section .reviewinner .review-top .select-row .custom-select.open .select-options {
  max-height: 18.75rem;
  /* big enough to fit content */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.review-section .reviewinner .review-bottom .row {
  gap: 1.875rem 0;
}
.review-section .reviewinner .review-bottom .btn {
  margin-top: 2.5rem;
}

.breadcrumb-outer {
  padding: 1.875rem 0;
}
.breadcrumb-outer .breadcrumb-inner ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.125rem;
}
.breadcrumb-outer .breadcrumb-inner ul li {
  position: relative;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.breadcrumb-outer .breadcrumb-inner ul li:after {
  content: "\f054";
  font-family: fontawesome;
  position: absolute;
  right: -1.3125rem;
  top: 0.25rem;
  color: var(--Orange, #ffa91d);
}
.breadcrumb-outer .breadcrumb-inner ul li a {
  color: var(--Orange, #ffa91d);
}
.breadcrumb-outer .breadcrumb-inner ul li:last-child:after {
  display: none;
}

body:has(.cart-pricing-bottom) {
  padding-bottom: 5rem;
  /* adjust as needed */
}

.cart-pricing-bottom {
  background: #ffd481;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9063rem 0;
  z-index: 3;
}
.cart-pricing-bottom .cart-pricing-bottom-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.cart-pricing-bottom .cart-pricing-bottom-inner p {
  margin-bottom: 0;
  color: var(--Body-Text, #606060);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.cart-pricing-bottom .cart-pricing-bottom-inner span {
  color: var(--Red, #ab4005);
  text-align: center;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.cart-pricing-bottom .button {
  display: inline-flex !important;
  padding: 0.75rem 2.5rem !important;
  align-items: center;
  gap: 0.6875rem;
  border-radius: 1.875rem !important;
  background-color: var(--Green, #106778) !important;
  font-family: "Poppins", sans-serif;
  color: var(--White, #fff);
  font-size: 1rem !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal !important;
}

.prod-main .prodimg-withmore img,
.prod-main .prodimg-withmore video {
  width: 100%;
}
.prod-main .prodimg-withmore .mainprodimg-outer {
  position: relative;
}
.prod-main .prodimg-withmore .mainprodimg-outer .tags {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.375rem 0.8125rem;
  border-radius: 1.5625rem;
  background: #ffc76c;
  position: absolute;
  top: 0.9375rem;
  left: 0.9375rem;
}
.prod-main .prodimg-withmore ul.prod-grid {
  margin-top: 1.875rem;
  display: grid;
  row-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: none;
  /* default */
  overflow-y: hidden;
  /* initially hidden */
  transition: max-height 0.3s ease;
}
.prod-main .prodimg-withmore ul.prod-grid li {
  cursor: pointer;
  height: 12.0625rem;
  border-radius: 5px;
  overflow: hidden;
}
.prod-main .prodimg-withmore ul.prod-grid li a {
  display: block;
  height: 100%;
  width: 100%;
}
.prod-main .prodimg-withmore ul.prod-grid li a img,
.prod-main .prodimg-withmore ul.prod-grid li a video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prod-main .prodimg-withmore .btn {
  margin-top: 1.875rem;
  cursor: pointer;
}
.prod-main .prodtxt .prod-rat {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}
.prod-main .prodtxt .prod-rat img {
  max-width: 4.875rem;
}
.prod-main .prodtxt .prod-rat i {
  color: #ff9500;
  font-size: 1rem;
}
.prod-main .prodtxt .prod-rat span {
  color: var(--Body-Text, #606060);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.prod-main .prodtxt h2 {
  margin-bottom: 0.625rem;
}
.prod-main .prodtxt p {
  color: var(--Body-Text, #606060);
  line-height: 1.5rem;
  /* 150% */
}
.prod-main .prodtxt .price-stock {
  padding: 0.7188rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 0.3125rem;
  background: #fff5e0;
  margin-bottom: 1rem;
}
.prod-main .prodtxt .price-stock .pricing-prod {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.prod-main .prodtxt .price-stock .pricing-prod p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.1875rem;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.prod-main .prodtxt .price-stock .pricing-prod p del {
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.prod-main .prodtxt .price-stock .pricing-prod .tag {
  display: inline-flex;
  padding: 0.125rem 0.7188rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: var(--White, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 0.1875rem;
  background: var(--Red, #ab4005);
}
.prod-main .prodtxt .price-stock .prod-stock span {
  color: var(--Red, #ab4005);
  text-align: center;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 0.75rem;
}
.prod-main .prodtxt .price-stock .prod-stock span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1/1;
  background-color: var(--Red, #ab4005);
  border-radius: 0.625rem;
}
.prod-main .prodtxt .price-stock .prod-stock .progress {
  margin-top: 0.125rem;
  width: 100%;
  height: 0.125rem;
  /* thickness */
  background: #d9d9d9;
  /* light gray background */
  overflow: hidden;
  /* hide bar corners */
}
.prod-main .prodtxt .price-stock .prod-stock .progress .progress-bar {
  height: 100%;
  width: 0;
  /* default */
  background: #ab4005;
  /* yellow/orange (similar to image) */
  border-radius: 3.125rem 0 0 3.125rem;
  transition: width 0.4s ease;
  /* smooth animation */
}
.prod-main .prodtxt .moreinfo {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  margin-bottom: 1.875rem;
}
.prod-main .prodtxt .moreinfo span {
  color: var(--Body-Text, #606060);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.prod-main .prodtxt .moreinfo span span {
  color: var(--Black, #2c2c29);
  font-weight: 500;
}
.prod-main .prodtxt .moreinfo span:nth-child(2) {
  display: flex;
  justify-content: flex-start;
  gap: 0.4375rem;
  align-items: center;
}
.prod-main .prodtxt .moreinfo img {
  max-width: 5.0625rem;
}
.prod-main .prodtxt .moreinfo a {
  color: #000;
  text-decoration: underline;
}
.prod-main .prodtxt .moreinfo a:hover {
  text-decoration: none;
}
.prod-main .prodtxt h3 {
  color: #000;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.045rem;
  margin-bottom: 0.625rem;
}
.prod-main .prodtxt .quantity-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.0625rem solid #ddd;
  border-radius: 1.875rem;
  padding: 0.5625rem 3.0625rem;
  font-family: Arial, sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 20.75rem;
  margin-bottom: 1.875rem;
  width: 100%;
}
.prod-main .prodtxt .quantity-control button {
  background: none;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0 0;
  color: #333;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.prod-main .prodtxt .quantity-control button:disabled {
  color: #ccc;
  cursor: not-allowed;
}
.prod-main .prodtxt .quantity-control span.number {
  min-width: 1.25rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.prod-main .prodtxt .pricingtable {
  border-radius: 0.3125rem;
  overflow: hidden;
  border: 0.0625rem solid #b4e1ea;
}
.prod-main .prodtxt .pricingtable table {
  width: 100%;
  background: #effcff;
}
.prod-main .prodtxt .pricingtable table td {
  padding: 0.875rem 4.375rem;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-right: 0.0625rem solid #b4e1ea;
  border-bottom: 0.0625rem solid #b4e1ea;
  padding: 0.625rem;
  padding-left: 0.625rem !important;
}
.prod-main .prodtxt .pricingtable table td:first-child {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.prod-main .prodtxt .pricingtable table td:last-child {
  border-right: 0;
}
.prod-main .prodtxt .pricingtable table tr:last-child td {
  border-bottom: none;
}
.prod-main .tabsec-prod {
  margin-bottom: 2.625rem;
}
.prod-main .tabsec-prod ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-main .tabsec-prod ul li {
  display: flex;
  width: 10rem;
  height: 9.125rem;
  padding: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
  background: #f4f4f4;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-right: 0.0625rem solid #7ac6d4;
}
.prod-main .tabsec-prod ul li:hover, .prod-main .tabsec-prod ul li.active {
  background-color: var(--Green, #106778);
}
.prod-main .tabsec-prod ul li:hover p, .prod-main .tabsec-prod ul li.active p {
  color: white;
}
.prod-main .tabsec-prod ul li:hover img, .prod-main .tabsec-prod ul li.active img {
  filter: brightness(0) invert(1);
}
.prod-main .tabsec-prod ul li:first-child {
  border-radius: 0.3125rem 0 0 0;
}
.prod-main .tabsec-prod ul li:last-child {
  border-radius: 0 0.3125rem 0 0;
  border-right: none;
}
.prod-main .tabsec-prod ul li img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.prod-main .tabsec-prod ul li p {
  color: var(--Green, #106778);
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.prod-main .tabsec-prod .tabcontent-prod-outer {
  margin-top: 1rem;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod .btn {
  padding: 0.45rem 2.5rem;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod.size ul {
  display: flex;
  max-width: 34.25rem;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod.storage ul {
  display: flex;
  max-width: 32rem;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.375rem 4.5rem;
  flex-wrap: wrap;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod.storage ul li {
  width: 13.75rem;
  height: 6rem;
  flex-shrink: 0;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod.headboard ul {
  display: flex;
  max-width: 39rem;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0.375rem 4.5rem;
  flex-wrap: wrap;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod.headboard ul li {
  width: 12.5rem;
  height: 6rem;
  flex-shrink: 0;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul {
  margin: 0 auto;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li {
  width: 9.9375rem;
  height: 4.375rem;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #7ac6d4;
  background: white;
  position: relative;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li:hover, .prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li.active {
  border: 0.0625rem solid #7ac6d4;
  background: #dffaff;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li:hover img, .prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li.active img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(11%) saturate(2684%) hue-rotate(143deg) brightness(94%) contrast(104%);
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li.active .tick {
  opacity: 1;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li img {
  width: 6.1875rem;
  height: 1.625rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5313rem;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li p {
  color: var(--Black, #2c2c29);
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li .tick {
  display: flex;
  width: 0.9375rem;
  height: 0.9375rem;
  padding: 0.125rem 0.0625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 0.625rem;
  background: var(--Green, #106778);
  position: absolute;
  top: -0.1875rem;
  right: -0.1875rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod ul li .tick img {
  width: 0.5625rem;
  flex-shrink: 0;
  margin-bottom: 0;
  filter: unset;
}
.prod-main .tabsec-prod .tabcontent-prod-outer .tabcontent-prod .btn {
  margin-top: 1rem;
}

.prodserv {
  border-radius: 0.3125rem;
  background: #dffaff;
  padding: 1.25rem 1rem;
  margin-bottom: 1.875rem;
}
.prodserv h4 {
  color: #000;
  letter-spacing: 0.0375rem;
  margin-bottom: 1rem;
}
.prodserv ul li {
  margin-bottom: 1rem;
  padding-left: 0 !important;
}
.prodserv ul li:before {
  display: none;
}
.prodserv ul li label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
}
.prodserv ul li span {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.03rem;
  width: 95%;
}
.prodserv ul li strong {
  font-weight: 600;
}
.prodserv ul li:last-child {
  margin-bottom: 0;
}
.prodserv ul li input[type=checkbox] {
  padding: 0;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: 1.25rem;
  height: 1.25rem;
}
.prodserv.service-content {
  margin: 1.25rem;
  margin-top: 0;
}

.tabprod-color.color ul {
  display: flex;
  max-width: 39rem;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.tabprod-color.color ul li {
  width: 6.1875rem !important;
  height: unset !important;
  flex-shrink: 0 !important;
  padding: 0.25rem;
  padding-bottom: 0.5625rem;
  padding-top: 0.25rem;
}
.tabprod-color.color ul li img {
  width: 100% !important;
  height: unset !important;
  margin-bottom: 0.5rem !important;
}
.tabprod-color.color ul li:hover img, .tabprod-color.color ul li.active img {
  filter: unset !important;
}
.tabprod-color.color ul li .tick img {
  width: 0.5625rem !important;
  flex-shrink: 0 !important;
  margin-bottom: 0 !important;
  filter: unset !important;
}

.dimensionModal .modal-dialog {
  max-width: 39.375rem;
}
.dimensionModal .modal-dialog .btn-close {
  border-radius: 0.9375rem;
  background-color: #efeeee;
  color: black;
  opacity: 1;
  background-size: 0.625rem !important;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
}
.dimensionModal .modal-dialog .dimentionmd-outer h2 {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.045rem;
  margin-bottom: 1.25rem;
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow {
  margin-bottom: 1.875rem;
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow:last-child {
  margin-bottom: 0;
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow h4 {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.03rem;
  margin-bottom: 1rem;
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow .select-inner ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  flex-wrap: wrap;
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow .select-inner ul li {
  display: flex;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid var(--Green, #106778);
  position: relative;
  transition: all 0.3s ease-in-out;
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow .select-inner ul li input[type=checkbox] {
  position: absolute;
  inset: 0;
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow .select-inner ul li span {
  color: var(--Green, #106778);
  text-align: center;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.875rem;
  letter-spacing: 0.0262rem;
  transition: all 0.3s ease-in-out;
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow .select-inner ul li:hover, .dimensionModal .modal-dialog .dimentionmd-outer .selectrow .select-inner ul li.active {
  background: var(--Green, #106778);
}
.dimensionModal .modal-dialog .dimentionmd-outer .selectrow .select-inner ul li:hover span, .dimensionModal .modal-dialog .dimentionmd-outer .selectrow .select-inner ul li.active span {
  color: white;
}
.dimensionModal .modal-dialog .dimentionmd-outer .table-outer table {
  width: 100%;
}
.dimensionModal .modal-dialog .dimentionmd-outer .table-outer table tr {
  border-bottom: 0.0625rem solid #e7e7e7;
}
.dimensionModal .modal-dialog .dimentionmd-outer .table-outer table tr:last-child {
  border-bottom: none;
}
.dimensionModal .modal-dialog .dimentionmd-outer .table-outer table tr td {
  padding: 0.9563rem 0;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03rem;
}
.dimensionModal .modal-dialog .dimentionmd-outer .table-outer table + p {
  margin-top: 1rem;
  color: var(--Body-Text, #606060);
  text-align: center;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0262rem;
}
.dimensionModal .modal-dialog .dimentionmd-outer .sizeimg {
  padding: 6.25rem 0;
  text-align: center;
}
.dimensionModal .modal-dialog .dimentionmd-outer .sizeimg img {
  max-width: 33.3125rem;
  margin: 0 auto;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin-bottom: 0;
}

.descriptiontab {
  padding: clamp(3.75rem, 1.736vw + 2.917rem, 5rem) 0;
  background-color: #f3fdff;
}
.descriptiontab .woocommerce-tabs.desc-tab {
  width: 100%;
}
.descriptiontab .woocommerce-tabs.desc-tab > ul {
  padding-left: 0 !important;
  margin: 0 !important;
  max-width: 43.125rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 1.875rem;
  background: #ffe8bc;
  overflow: hidden;
  margin-bottom: 1.875rem !important;
}
.descriptiontab .woocommerce-tabs.desc-tab > ul li {
  max-width: 14.375rem;
  width: 100%;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent !important;
  border-radius: 1.875rem !important;
  margin: 0 !important;
  border: none !important;
  transition: all 0.3s ease-in-out !important;
}
.descriptiontab .woocommerce-tabs.desc-tab > ul li.active {
  background-color: var(--Orange, #ffa91d) !important;
  color: var(--Black, #2c2c29) !important;
}
.descriptiontab .woocommerce-tabs.desc-tab > ul li.active a {
  color: var(--Black, #2c2c29) !important;
}
.descriptiontab .woocommerce-tabs.desc-tab > ul li a {
  background-color: transparent !important;
  color: var(--Red, #ab4005) !important;
  font-family: Poppins !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  padding: 0.75rem 1.5625rem !important;
  border: none !important;
  display: block !important;
  text-align: center;
}
.descriptiontab .desc-tabcontent p,
.descriptiontab .woocommerce-Tabs-panel p {
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0.625rem;
}
.descriptiontab .desc-tabcontent p strong,
.descriptiontab .woocommerce-Tabs-panel p strong {
  color: var(--Black, #2c2c29);
  font-weight: 600;
}
.descriptiontab .desc-tabcontent h4,
.descriptiontab .woocommerce-Tabs-panel h4 {
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
  color: #000;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.045rem;
}
.descriptiontab .desc-tabcontent ul,
.descriptiontab .woocommerce-Tabs-panel ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.descriptiontab .desc-tabcontent ul li,
.descriptiontab .woocommerce-Tabs-panel ul li {
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  position: relative;
  padding-left: 1.875rem;
}
.descriptiontab .desc-tabcontent ul li:before,
.descriptiontab .woocommerce-Tabs-panel ul li:before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/features-list-icon.png) no-repeat 0 0;
  position: absolute;
  left: 0;
  top: 0.0625rem;
  background-size: 1.1875rem;
}
.descriptiontab .desc-tabcontent ul li strong,
.descriptiontab .woocommerce-Tabs-panel ul li strong {
  color: var(--Black, #2c2c29);
  font-weight: 600;
}
.descriptiontab .desc-tabcontent table,
.descriptiontab .woocommerce-Tabs-panel table {
  width: 100%;
  background-color: #f3fdff;
  border: 0.0625rem solid #b4e1ea;
}
.descriptiontab .desc-tabcontent table td,
.descriptiontab .desc-tabcontent table th,
.descriptiontab .woocommerce-Tabs-panel table td,
.descriptiontab .woocommerce-Tabs-panel table th {
  padding: 1.5625rem 2.5rem;
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-right: 0.0625rem solid #b4e1ea;
  border-bottom: 0.0625rem solid #b4e1ea;
}
.descriptiontab .desc-tabcontent table td:first-child,
.descriptiontab .desc-tabcontent table th:first-child,
.descriptiontab .woocommerce-Tabs-panel table td:first-child,
.descriptiontab .woocommerce-Tabs-panel table th:first-child {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 11.6875rem;
}
.descriptiontab .desc-tabcontent table td:last-child,
.descriptiontab .desc-tabcontent table th:last-child,
.descriptiontab .woocommerce-Tabs-panel table td:last-child,
.descriptiontab .woocommerce-Tabs-panel table th:last-child {
  border-right: 0;
}
.descriptiontab .desc-tabcontent table td p,
.descriptiontab .desc-tabcontent table th p,
.descriptiontab .woocommerce-Tabs-panel table td p,
.descriptiontab .woocommerce-Tabs-panel table th p {
  padding: 0 !important;
}
.descriptiontab .desc-tabcontent table td a,
.descriptiontab .desc-tabcontent table th a,
.descriptiontab .woocommerce-Tabs-panel table td a,
.descriptiontab .woocommerce-Tabs-panel table th a {
  color: var(--Body-Text, #606060) !important;
}
.descriptiontab .desc-tabcontent table tr:last-child td,
.descriptiontab .woocommerce-Tabs-panel table tr:last-child td {
  border-bottom: none;
}
.descriptiontab .desc-tabcontent .review-list,
.descriptiontab .woocommerce-Tabs-panel .review-list {
  margin-bottom: 1.875rem;
}
.descriptiontab .desc-tabcontent .review-list ul,
.descriptiontab .woocommerce-Tabs-panel .review-list ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}
.descriptiontab .desc-tabcontent .review-list ul li,
.descriptiontab .woocommerce-Tabs-panel .review-list ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
  padding: 0;
  position: static;
}
.descriptiontab .desc-tabcontent .review-list ul li:before,
.descriptiontab .woocommerce-Tabs-panel .review-list ul li:before {
  display: none;
}
.descriptiontab .desc-tabcontent .review-list ul li img,
.descriptiontab .woocommerce-Tabs-panel .review-list ul li img {
  max-width: 9.375rem;
}
.descriptiontab .desc-tabcontent .review-list ul li p,
.descriptiontab .woocommerce-Tabs-panel .review-list ul li p {
  margin-bottom: 0;
}
.descriptiontab .desc-tabcontent .review-list ul li span,
.descriptiontab .woocommerce-Tabs-panel .review-list ul li span {
  color: var(--Heading-Tet, #000);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.25rem;
  /* 225% */
}

#reviews {
  max-width: 100%;
  margin: 0;
  background-color: transparent;
  border-radius: 0.75rem;
}
#reviews .woocommerce-Reviews-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 1.5625rem;
  border-bottom: 0.125rem solid #e0e6e9;
  padding-bottom: 0.9375rem;
}
#reviews #comments .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
#reviews #comments .commentlist .comment_container {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  position: relative;
}
#reviews #comments .commentlist .comment_container::before {
  content: "";
  position: absolute;
  top: -0.3125rem;
  left: -0.3125rem;
  right: -0.3125rem;
  bottom: -0.3125rem;
  border-radius: 0.75rem;
  background: #ffffff;
  z-index: -1;
}
#reviews #comments .commentlist .comment_container .avatar {
  float: none !important;
  position: static !important;
  top: 0;
  left: 0;
  padding: 3px;
  width: 42px !important;
  height: 42px !important;
  background: #e9e6ed;
  border: 1px solid #e1dde7;
  margin: 0;
  box-shadow: none;
  min-width: 42px !important;
}
#reviews #comments .commentlist .comment_container .comment-text {
  flex-grow: 1;
  color: #2c2c29;
  background-color: #ffffff;
  padding: 0.9375rem !important;
  margin: 0 !important;
}
#reviews #comments .commentlist .comment_container .comment-text .star-rating {
  margin-bottom: 0.625rem;
}
#reviews #comments .commentlist .comment_container .comment-text .meta {
  font-size: 0.9rem;
  color: #7b8084;
  margin-bottom: 0.9375rem;
}
#reviews #comments .commentlist .comment_container .comment-text .woocommerce-review__author {
  font-weight: 600;
  color: #106778;
}
#reviews #comments .commentlist .comment_container .comment-text .woocommerce-review__published-date {
  font-style: italic;
}
#reviews #comments .commentlist .comment_container .comment-text .description p {
  margin: 0;
  font-size: 1rem;
}
#reviews #review_form_wrapper {
  margin-top: 0;
  padding-top: 2.5rem;
  border-top: 0.125rem solid #e0e6e9;
}
#reviews #review_form_wrapper #review_form #respond.comment-respond {
  margin: 0;
}
#reviews #review_form_wrapper #review_form .comment-reply-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 1.25rem;
  display: block;
}
#reviews #review_form_wrapper #review_form .required-field-message,
#reviews #review_form_wrapper #review_form .comment-notes {
  font-size: 0.9rem;
  color: #7b8084;
  margin-bottom: 0.9375rem;
}
#reviews #review_form_wrapper #review_form .required {
  color: #ab4005;
}
#reviews #review_form_wrapper #commentform p {
  margin-bottom: 1.25rem;
}
#reviews #review_form_wrapper #commentform p.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  font-weight: 600;
}
#reviews #review_form_wrapper #commentform p.comment-form-cookies-consent input[type=checkbox] {
  padding: 0;
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
#reviews #review_form_wrapper #commentform p.comment-form-cookies-consent label {
  margin-bottom: 0;
}
#reviews #review_form_wrapper #commentform label {
  font-weight: 600;
  color: #2c2c29;
  display: block;
  margin-bottom: 0.3125rem;
}
#reviews #review_form_wrapper #commentform textarea,
#reviews #review_form_wrapper #commentform input[type=text],
#reviews #review_form_wrapper #commentform input[type=email] {
  width: 100%;
  padding: 0.75rem;
  border: 0.0625rem solid #cccccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #f8f9fa;
  transition: border-color 0.3s;
}
#reviews #review_form_wrapper #commentform textarea:focus,
#reviews #review_form_wrapper #commentform input[type=text]:focus,
#reviews #review_form_wrapper #commentform input[type=email]:focus {
  border-color: #106778;
  outline: none;
}
#reviews #review_form_wrapper #commentform .comment-form-rating {
  margin-bottom: 1.25rem;
}
#reviews #review_form_wrapper #commentform .comment-form-rating .stars {
  display: inline-flex;
  direction: ltr;
}
#reviews #review_form_wrapper #commentform .comment-form-rating .stars a {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  background: none;
  text-indent: -624.9375rem;
  color: transparent;
}
#reviews #review_form_wrapper #commentform .comment-form-rating .stars a::before {
  content: "★";
  font-size: 1.5em;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 0;
  color: #e0e6e9;
  transition: color 0.2s ease;
}
#reviews #review_form_wrapper #commentform .comment-form-rating .stars a:hover::before, #reviews #review_form_wrapper #commentform .comment-form-rating .stars a.active::before {
  color: #ffa91d;
}
#reviews #review_form_wrapper #commentform .form-submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5625rem;
  border: none;
  border-radius: 3.125rem;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background-color: #106778;
  color: #ffffff;
  width: auto;
}
#reviews #review_form_wrapper #commentform .form-submit .submit:hover {
  background-color: #0d5a68;
  box-shadow: 0 0.25rem 0.75rem rgba(16, 103, 120, 0.4);
}

/* Star Ratings (Unnested since they are standalone styles) */
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.5em;
  line-height: 1.5;
  font-size: 1em;
  width: 6.5em;
  font-family: "star";
}
.star-rating::before {
  content: "★★★★★";
  color: #e0e6e9;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span::before {
  content: "★★★★★";
  top: 0;
  left: 0;
  color: #ffa91d;
  position: absolute;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  #reviews {
    padding: 0.9375rem;
    box-shadow: none;
  }
  .comment_container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .comment_container .avatar {
    margin-bottom: 0.625rem;
  }
  .comment-text {
    text-align: center;
  }
  .comment-text .meta {
    text-align: center;
  }
}
.deskview {
  display: block;
}

.mobilescroll {
  display: none;
}

.mobileview {
  display: none;
}

section.commn_pg {
  padding: 6rem 0 4rem;
}

section.commn_pg h3 {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 0.5rem;
  margin-top: 1.5rem;
  color: #000;
}

section.commn_pg h4 {
  margin-bottom: 0.7rem;
  margin-top: 1.5rem;
}

section.commn_pg p {
  margin-bottom: 1.8rem;
}

section.commn_pg.my_accnt p {
  margin-bottom: 0.5rem;
}

section.commn_pg ul {
  margin-bottom: 1.25rem;
  padding-left: 0.4rem;
}

section.commn_pg ul li {
  margin-bottom: 0.45rem;
  position: relative;
  padding-left: 1.1rem;
}

section.commn_pg p a,
section.commn_pg h3 a,
section.commn_pg ul li a {
  color: var(--Orange, #ffa91d);
}

section.commn_pg .table-responsive {
  padding: 15px;
  background-color: rgba(177, 227, 237, 0.4745098039);
  padding: 15px;
}

section.commn_pg ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5625rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #ffa91d;
}

section.commn_pg ol {
  margin-bottom: 1.25rem;
  counter-reset: my-counter;
  padding-left: 0.4rem;
  list-style: none;
}

section.commn_pg ol li {
  margin-bottom: 0.45rem;
  position: relative;
  padding-left: 1.25rem;
  counter-increment: my-counter;
}

section.commn_pg ol li::before {
  position: absolute;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  content: counter(my-counter) ".";
  font-size: 1.2rem;
  color: #ffa91d;
  font-weight: 500;
  background-color: transparent;
  top: 0;
}

.page-404 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000000000000000000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404 h1 {
  color: var(--Rich-Brown, #ffa91d);
  font-size: 8rem;
  line-height: 9rem;
  font-style: normal;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.page-404 h2 {
  text-align: center;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.page-404 p {
  color: var(--Navy-Blue, #1a1a2e);
  text-align: center;
  font-style: normal;
  line-height: normal;
  margin-bottom: 1.88rem;
}

.page-404 a.btn {
  margin: 0 auto;
  display: table;
}

.woocommerce-cart .commn_pg table.shop_table {
  margin-bottom: 0;
}
.woocommerce-cart .commn_pg table.shop_table tbody td.product-name .child-products li::before {
  top: 34%;
}
.woocommerce-cart .commn_pg table.shop_table tbody td.product-name .child-products li strong {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.woocommerce-cart .commn_pg table.shop_table tbody td.product-name .child-products li strong .btn {
  padding: 0.25rem 1.5rem;
  font-size: 0.9rem;
}

.bundles-outer {
  margin-bottom: 1.875rem;
}
.bundles-outer .bundles-nav {
  margin-bottom: 0.625rem;
}
.bundles-outer .bundles-nav ul {
  border-radius: 1.875rem;
  background: #ffe8bc;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding-left: 0;
}
.bundles-outer .bundles-nav ul li {
  margin-bottom: 0;
  display: flex;
  padding: 0.75rem 2.125rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  color: var(--Red, #ab4005);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 1.875rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.bundles-outer .bundles-nav ul li::after, .bundles-outer .bundles-nav ul li:before {
  display: none;
}
.bundles-outer .bundles-nav ul li.active {
  background: var(--Orange, #ffa91d);
  color: var(--Black, #2c2c29);
}
.bundles-outer .bundles-nav + p {
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
}
.bundles-outer .bundle-content-outer .bundle-content {
  display: none;
}
.bundles-outer .bundle-content-outer .bundle-content ul li {
  display: flex;
  padding: 0.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #d7e5e7;
  background: #fff;
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-bottom: 0.375rem;
  cursor: pointer;
}
.bundles-outer .bundle-content-outer .bundle-content ul li:last-child {
  margin-bottom: 0;
}
.bundles-outer .bundle-content-outer .bundle-content ul li:hover, .bundles-outer .bundle-content-outer .bundle-content ul li.active {
  border-radius: 0.1875rem;
  border: 0.0625rem solid var(--Green, #106778);
  background: #effcff;
}
.bundles-outer .bundle-content-outer .bundle-content ul li.active .tick {
  opacity: 1;
}
.bundles-outer .bundle-content-outer .bundle-content ul li:before, .bundles-outer .bundle-content-outer .bundle-content ul li:after {
  display: none;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .tick {
  display: flex;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0.125rem 0.0625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 1.875rem;
  background: var(--Green, #106778);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  opacity: 0;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .tick img {
  width: 0.7651rem;
  flex-shrink: 0;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .tags {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .tags .tag {
  border-radius: 1.25rem;
  background: var(--Orange, #ffa91d);
  color: #fff;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.1563rem 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .tags .tag.medium {
  background: var(--Red, #ab4005);
}
.bundles-outer .bundle-content-outer .bundle-content ul li .text-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  position: relative;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .text-row .rating {
  position: absolute;
  right: 0;
  top: 6px;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .text-row .rating img {
  width: 3.125rem;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .text-row .rating span {
  color: var(--Body-Text, #606060);
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.75rem;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .text-row .imgcontainer img {
  width: 4.625rem;
  height: 4.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.125rem;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .text-row .imgtext h5 {
  color: #000;
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.375rem;
  max-width: 20.625rem;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .text-row .imgtext h6 {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.bundles-outer .bundle-content-outer .bundle-content ul li .text-row .imgtext h6 del {
  color: var(--Body-Text, #606060);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: line-through;
}
.bundles-outer .bundle-content-outer .bundle-content.active {
  display: block;
}

/* Styles for the sliding div */
.sliding-div {
  overflow: auto;
  position: fixed;
  /* Stays in place when you scroll */
  top: 0;
  right: -36.25rem;
  /* Initially off-screen to the right */
  width: 100%;
  max-width: 36.25rem;
  height: 100%;
  background-color: #fff;
  box-shadow: -0.3125rem 0 0.9375rem rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease-in-out;
  /* The animation for the slide effect */
  z-index: 1000;
  /* Styles for the header and close button */
  /* Styles for the overlay */
}
.sliding-div.open {
  right: 0;
}
.sliding-div .slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5625rem 2.1875rem;
  /* Adjusting padding as requested */
  border-bottom: 0.0625rem solid #eee;
}
.sliding-div .slide-header h2 {
  margin: 0;
  font-size: 1.5rem;
}
.sliding-div .close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #888;
}
.sliding-div .slide-content {
  padding: 1.25rem;
}
.sliding-div .bundles-outer .bundle-content-outer .bundle-content ul li .text-row .imgtext h5 {
  max-width: 19.375rem;
}
.sliding-div .bundles-outer .bundle-content-outer .bundle-content ul li .text-row .rating {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  -webkit-backdrop-filter: blur(0.125rem);
          backdrop-filter: blur(0.125rem);
  /* Adds a blur effect to the background */
  opacity: 0;
  /* Initially invisible */
  visibility: hidden;
  /* Initially not interactive */
  transition: opacity 0.4s ease-in-out;
  z-index: 999;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.woocommerce-product-details__short-description {
  margin-bottom: 1.875rem;
}

/* --- Main Form & Table Container --- */
.commn_pg {
  /* --- Table Styles --- */
  /* Last row has no bottom border */
  /* --- Individual Product Row Styling --- */
  /* Product Thumbnail */
  /* Product Name & Details */
  /* Variation details */
  /* "Choose Addons" Button */
  /* Price & Quantity */
  /* Remove button */
  /* --- Cart Actions & Buttons --- */
}
.commn_pg .woocommerce-cart-form {
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
  /* Subtle shadow for depth */
  overflow: hidden;
}
.commn_pg .shop_table {
  width: 100%;
  border-collapse: collapse;
}
.commn_pg .shop_table thead {
  background-color: #106778;
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.0313rem;
}
.commn_pg .shop_table th,
.commn_pg .shop_table td {
  padding: 1.25rem 1.5625rem !important;
  text-align: left;
  border-bottom: 0.0625rem solid #e0e6e9;
  /* Lighter border for a cleaner look */
}
.commn_pg .shop_table tbody tr:last-child td {
  border-bottom: none;
}
.commn_pg .woocommerce-cart-form__cart-item {
  transition: background-color 0.3s ease;
}
.commn_pg .woocommerce-cart-form__cart-item:hover {
  background-color: #f0f8ff;
  /* Subtle hover effect */
}
.commn_pg .product-thumbnail img {
  border-radius: 0.5rem;
  width: 6.25rem !important;
  height: 6.25rem !important;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.125rem solid #effcff;
}
.commn_pg .product-name a {
  color: #106778;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.commn_pg .product-name a:hover {
  color: #ffa91d;
  /* Orange hover effect */
}
.commn_pg .product-name small {
  display: block;
  color: #7b8084;
  font-style: normal;
  font-size: 0.85rem;
  margin-top: 0.3125rem;
  margin-bottom: 0.9375rem;
}
.commn_pg .variation {
  display: grid;
  grid-template-columns: auto 1fr;
  /* Auto-size the first column (dt) and let the second column (dd) take up the rest of the space */
  gap: 0.3125rem 0.9375rem;
  /* Creates space between the rows and columns */
  margin: 0.625rem 0;
  font-size: 0.95rem;
}
.commn_pg .variation dt {
  font-weight: bold;
  color: #2c2c29;
  display: inline-block;
  margin-right: 0.3125rem;
}
.commn_pg .variation dd {
  display: inline-block;
  margin: 0 0 0 0.3125rem;
  color: #7b8084;
}
.commn_pg .cart_choose_addon {
  background-color: #ffa91d;
  color: #2c2c29;
  padding: 0.5rem 1rem;
  border-radius: 3.125rem;
  /* Pill-shaped button */
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}
.commn_pg .cart_choose_addon:hover {
  background-color: #e59a1d;
}
.commn_pg .woocommerce-Price-amount {
  font-weight: 600;
  color: #106778;
}
.commn_pg .product-quantity .quantity .input-text {
  width: 3.75rem;
  padding: 0.5rem;
  text-align: center;
  border: 0.0625rem solid #cccccc;
  border-radius: 0.3125rem;
}
.commn_pg .product-remove .remove {
  font-size: 2.2rem;
  line-height: 1;
  color: #ab4005;
  text-decoration: none;
  transition: color 0.3s ease;
}
.commn_pg .product-remove .remove:hover {
  color: #d15606;
}
.commn_pg .actions {
  background-color: #f0f8ff;
  /* Soft background for this section */
  padding: 1.25rem 1.5625rem;
  text-align: right;
  border-top: 0.0625rem solid #e0e6e9;
}
.commn_pg .coupon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.9375rem;
}
.commn_pg .coupon input {
  border: 0.0625rem solid #ccc;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
  margin-right: 0.625rem;
}
.commn_pg .button {
  background-color: #ffa91d;
  color: #2c2c29;
  border: none;
  padding: 0.75rem 1.5625rem;
  border-radius: 3.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.commn_pg .button:hover:not([disabled]) {
  background-color: #e59a1d;
  box-shadow: 0 0.125rem 0.625rem rgba(255, 169, 29, 0.4);
}
.commn_pg .button[disabled] {
  background-color: #e0e6e9;
  color: #999999;
  cursor: not-allowed;
}

.woocommerce .cart .button {
  display: inline-flex !important;
  padding: 0.75rem 2.5rem !important;
  align-items: center;
  gap: 0.6875rem;
  border-radius: 1.875rem !important;
  background-color: var(--Green, #106778) !important;
  font-family: "Poppins", sans-serif;
  color: var(--White, #fff);
  font-size: 1rem !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal !important;
  justify-content: flex-end;
}
.woocommerce .cart .button:hover {
  background-color: var(--Green, #0c4f5c) !important;
  color: white !important;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 12.5rem;
  padding: 0.8125rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 3.125rem;
  margin-right: 1.25rem;
}

/* --- Cart Totals Container --- */
.cart-collaterals {
  width: 100%;
  max-width: 50%;
  margin-left: auto;
  /* Pushes the container to the right */
  margin-top: 1.875rem;
}

.cart_totals {
  background-color: #effcff;
  padding: 1.875rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.05);
  width: 100% !important;
}

/* --- Heading --- */
.cart_totals h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #106778;
  margin-top: 0;
  margin-bottom: 1.5625rem;
}

/* --- Table Styles --- */
.cart_totals .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5625rem;
  background-color: rgba(16, 103, 120, 0.0392156863);
  border: none !important;
  padding: 0 !important;
}

.cart_totals .shop_table th,
.cart_totals .shop_table td {
  padding: 0.9375rem 1.25rem !important;
  border-bottom: none;
  text-align: left;
}

.cart_totals .shop_table th {
  font-weight: 400;
  color: #2c2c29;
}

/* --- Subtotal and Total Rows --- */
.cart-subtotal th,
.cart-subtotal td {
  font-weight: 500;
}

.order-total th {
  font-size: 1.1rem;
  font-weight: 600;
  color: #106778;
  border-bottom: none;
  /* Last row has no bottom border */
}

.order-total td {
  font-size: 1.2rem;
  font-weight: 700;
  color: #106778;
  border-bottom: none;
}

.woocommerce-Price-amount {
  color: #106778;
  font-weight: 600;
}

.order-total .woocommerce-Price-amount {
  font-weight: 700;
  font-size: 1.25rem;
}

/* --- Checkout Button --- */
.wc-proceed-to-checkout .button {
  /* Base styling inherited from your previous button designs */
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 2.5rem !important;
  border-radius: 3.125rem !important;
  background-color: #106778 !important;
  /* Teal from your palette */
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.9375rem rgba(16, 103, 120, 0.2);
}

.wc-proceed-to-checkout .button:hover {
  background-color: #0d5a68 !important;
  /* Slightly darker teal on hover */
  box-shadow: 0 0.375rem 1.25rem rgba(16, 103, 120, 0.3);
  transform: translateY(-0.125rem);
}

.woo-sctr-shortcode-wrap-wrap .woo-sctr-shortcode-countdown-unit {
  font-family: "Poppins", sans-serif;
  display: flex !important;
  gap: 0;
  padding: 0;
  margin: 0;
  vertical-align: unset !important;
}

.modal.search .modal-dialog {
  max-width: 50rem;
  margin: 4rem auto 0;
}
.modal.search .modal-body form {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
}
.modal.search .modal-body input[type=text] {
  width: 100%;
  border: 0.0625rem solid #f3f3f3;
  font-family: "Poppins", sans-serif;
  padding: 0.62rem 7.62rem 0.62rem 0.62rem;
  font-weight: 400;
  color: #000;
  font-size: 1rem;
  border-radius: 0.375rem;
}
.modal.search .modal-body input[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  width: -moz-max-content;
  width: max-content;
  border: none;
  border-radius: 0.6rem;
  background: var(--Green, #106778);
  font-family: "Poppins", sans-serif;
  color: var(--White, #fff);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.6875rem 0.75rem;
}

header .top-row-inner .woo-sctr-shortcode-wrap-wrap.woo-sctr-shortcode-wrap-wrap-1 .woo-sctr-shortcode-countdown-wrap.woo-sctr-shortcode-countdown-style-1 .woo-sctr-shortcode-countdown-unit {
  width: auto !important;
  min-width: 2.575rem;
  border: 0.0625rem solid #e2e2e2;
  background-color: #fff;
  padding: 0.3rem 0.4rem;
  justify-content: center;
}

.woo-sctr-shortcode-countdown-style-1 .woo-sctr-shortcode-countdown-value {
  padding: 0 !important;
}

.single-product .product .summary .product_title {
  color: #000;
  font-size: 2.2rem;
  text-align: left;
  margin-bottom: 1.5rem;
  line-height: 2.5rem;
}
.single-product .product span.onsale {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.375rem 0.6875rem;
  border-radius: 1.5625rem;
  background: #ffc76c;
  position: absolute;
  top: 0.9375rem;
  left: 0.75rem;
  min-height: unset;
  min-width: unset;
}

.prod-main .left_proimg {
  position: relative;
}
.prod-main .left_proimg .woocommerce-product-gallery {
  width: 100% !important;
}
.prod-main .summary.entry-summary {
  width: 100% !important;
}

.sorting-outer .woocommerce div.product .woocommerce-tabs .panel h2 {
  display: none;
}
.sorting-outer .aws-container .aws-search-form {
  height: 53px;
  margin-bottom: 25px !important;
}
.sorting-outer .aws-container .aws-show-clear .aws-search-field {
  width: 100%;
  background: #dffaff;
  padding: 0.875rem 0.75rem;
  padding-left: 2.6875rem;
  color: var(--Sub-Heading, #222);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  background-size: 0.9375rem;
}
.sorting-outer .aws-container .aws-search-form .aws-form-btn {
  position: absolute;
  border: none;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  z-index: 9;
}
.sorting-outer .wpfFilterWrapper .wpfFilterTitle {
  position: relative;
}
.sorting-outer .wpfFilterWrapper i,
.sorting-outer .wpfFilterWrapper svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sorting-outer .wpfFilterWrapper .wfpTitle {
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: var(--Black, #2c2c29) !important;
  font-family: Poppins !important;
  font-size: 1.25rem !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
}
.sorting-outer .wpfFilterWrapper .wpfFilterTitle {
  margin-bottom: 1.25rem !important;
}
.sorting-outer .wpfFilterWrapper {
  margin-top: 0px !important;
  margin-bottom: 25px !important;
  width: 100% !important;
}
.sorting-outer .wpfFilterVerScroll {
  display: flex !important;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-direction: column;
}
.sorting-outer .wpfFilterButton.wpfButton,
.sorting-outer .wpfClearButton.wpfButton {
  display: inline-flex;
  padding: 0.75rem 1.6rem;
  align-items: center;
  gap: 0.6875rem;
  border-radius: 1.875rem;
  background: var(--Green, #106778);
  color: var(--Balck-Dark, #2b2b2d);
  font-family: "Poppins", sans-serif;
  color: var(--White, #fff);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  justify-content: center;
  margin: 0;
}
.sorting-outer .wpfFilterButtons {
  min-width: auto;
  display: flex;
  justify-content: space-between;
}
.sorting-outer .ui-slider.ui-widget-content .ui-slider-handle {
  background: #dffaff;
  border: none;
  border-radius: 0;
  border-radius: 50%;
}
.sorting-outer .wpfFilterWrapper .ui-slider-horizontal {
  height: 7px;
  border-radius: 50px !important;
  border: none !important;
  background-color: rgba(16, 102, 122, 0.2196078431) !important;
}
.sorting-outer .ui-slider-horizontal .ui-slider-range {
  background-color: rgba(16, 103, 120, 0.9882352941) !important;
}
.sorting-outer .sorting-outer .ui-slider.ui-widget-content .ui-slider-handle {
  background-color: #dffaff !important;
  border: none;
  border-radius: 0;
  border-radius: 50%;
  border-color: #13697a !important;
}
.sorting-outer .ui-slider-horizontal .ui-slider-handle {
  top: -0.4em;
}

.woo-sctr-shortcode-wrap-wrap .woo-sctr-shortcode-countdown-text {
  width: auto !important;
}

.woo-sctr-shortcode-wrap-wrap.woo-sctr-shortcode-wrap-wrap-salescountdowntimer {
  display: flex;
}

.woo-sctr-shortcode-countdown-style-1 .woo-sctr-shortcode-countdown-text-before,
.woo-sctr-shortcode-countdown-style-2 .woo-sctr-shortcode-countdown-text-before {
  display: none;
}

.my_accnt {
  background-color: #f7f9fc;
  padding: 50px 0;
}
.my_accnt .commn_txt .woocommerce .u-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.my_accnt .commn_txt .woocommerce .u-columns .u-column1,
.my_accnt .commn_txt .woocommerce .u-columns .u-column2 {
  flex: 1 1 45%;
}
.my_accnt .commn_txt .woocommerce .u-columns h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 25px;
  border-bottom: 2px solid #e0e6e9;
  padding-bottom: 15px;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .form-row {
  margin-bottom: 20px;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .form-row.woocommerce-form-row--wide label {
  font-weight: 600;
  color: #2c2c29;
  display: block;
  margin-bottom: 5px;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .form-row.woocommerce-form-row--wide input[type=text],
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .form-row.woocommerce-form-row--wide input[type=email],
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .form-row.woocommerce-form-row--wide input[type=password] {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f8f9fa;
  transition: border-color 0.3s;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .form-row.woocommerce-form-row--wide input[type=text]:focus,
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .form-row.woocommerce-form-row--wide input[type=email]:focus,
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .form-row.woocommerce-form-row--wide input[type=password]:focus {
  border-color: #106778;
  outline: none;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .woocommerce-LostPassword a {
  color: #106778;
  text-decoration: none;
  transition: color 0.3s ease;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .woocommerce-LostPassword a:hover {
  color: #ffa91d;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .woocommerce-privacy-policy-text p {
  font-size: 0.9rem;
  color: #7b8084;
  line-height: 1.5;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .woocommerce-privacy-policy-text p a {
  color: #106778;
  text-decoration: underline;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background-color: #106778;
  color: #ffffff;
  text-transform: capitalize;
}
.my_accnt .commn_txt .woocommerce .u-columns .woocommerce-form .woocommerce-button:hover {
  background-color: #0d5a68;
  box-shadow: 0 4px 12px rgba(16, 103, 120, 0.4);
}
.my_accnt .woocommerce-form-login__rememberme {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.my_accnt .woocommerce-form-login__rememberme .woocommerce-form__input-checkbox {
  padding: 0;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: auto;
}
.my_accnt .woocommerce-MyAccount-navigation {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.my_accnt .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.my_accnt .woocommerce-MyAccount-navigation li {
  margin-bottom: 5px;
  padding-left: 0;
}
.my_accnt .woocommerce-MyAccount-navigation li:before {
  display: none;
}
.my_accnt .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #2c2c29;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.my_accnt .woocommerce-MyAccount-navigation li a:hover {
  background-color: #effcff;
  color: #106778;
}
.my_accnt .woocommerce-MyAccount-navigation li.is-active a {
  background-color: #106778;
  color: #fff;
  font-weight: 600;
}
.my_accnt .woocommerce-MyAccount-navigation li.is-active a:hover {
  background-color: #0d5a68;
}
.my_accnt .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #ab4005;
}
.my_accnt .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background-color: #ffe8e8;
  color: #d15606;
}
.my_accnt .woocommerce-MyAccount-content {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.my_accnt .woocommerce-MyAccount-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #2c2c29;
  margin-bottom: 20px;
}
.my_accnt .woocommerce-MyAccount-content p a {
  color: #ffa91d;
  font-weight: 500;
  text-decoration: underline;
}
.my_accnt .woocommerce-MyAccount-content p a:hover {
  color: #ffa91d;
}
.my_accnt .woocommerce-MyAccount-content p strong {
  font-weight: 600;
  color: #ffa91d;
}
.my_accnt .woocommerce-MyAccount-orders {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse !important;
  border-radius: 10px !important;
}
.my_accnt .woocommerce-orders-table thead tr {
  background-color: #f7f9fc;
  border-radius: 8px;
  overflow: hidden;
}
.my_accnt .woocommerce-orders-table thead tr th {
  padding: 15px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #106778;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.my_accnt .woocommerce-orders-table tbody tr {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.my_accnt .woocommerce-orders-table tbody tr:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.my_accnt .woocommerce-orders-table tbody td {
  padding: 20px 25px;
  border-top: none;
  border-bottom: none;
}
.my_accnt .woocommerce-orders-table tbody td:first-child {
  border-left: 1px solid #e0e6e9;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.my_accnt .woocommerce-orders-table tbody td:last-child {
  border-right: 1px solid #e0e6e9;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.my_accnt .woocommerce-orders-table__cell {
  font-size: 1rem;
  color: #2c2c29;
}
.my_accnt .woocommerce-orders-table__cell-order-number {
  font-weight: 600;
}
.my_accnt .woocommerce-orders-table__cell-order-number a {
  color: #106778;
  text-decoration: none;
  transition: color 0.3s ease;
}
.my_accnt .woocommerce-orders-table__cell-order-number a:hover {
  text-decoration: underline;
  color: #ffa91d;
}
.my_accnt .woocommerce-orders-table__cell-order-status {
  text-transform: capitalize;
  font-weight: 600;
  color: #106778;
}
.my_accnt .woocommerce-orders-table__cell-order-total {
  font-weight: 600;
  color: #2c2c29;
}
.my_accnt .woocommerce-orders-table__cell-order-total .woocommerce-Price-amount {
  color: #106778;
  font-size: 1.05rem;
}
.my_accnt .woocommerce-orders-table__cell-order-actions .woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid #106778;
  background-color: transparent;
  color: #106778;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.my_accnt .woocommerce-orders-table__cell-order-actions .woocommerce-button:hover {
  background-color: #106778;
  color: #ffffff;
}
@media (max-width: 767px) {
  .my_accnt .woocommerce-orders-table {
    border-spacing: 0 10px;
  }
  .my_accnt .woocommerce-orders-table thead {
    display: none;
  }
  .my_accnt .woocommerce-orders-table tbody,
  .my_accnt .woocommerce-orders-table tr,
  .my_accnt .woocommerce-orders-table td {
    display: block;
    width: 100%;
  }
  .my_accnt .woocommerce-orders-table tbody tr {
    padding: 15px;
    margin-bottom: 15px;
  }
  .my_accnt .woocommerce-orders-table td {
    border-top: none;
    border-bottom: 1px solid #e0e6e9;
    padding: 10px;
    text-align: right;
  }
  .my_accnt .woocommerce-orders-table td:last-child {
    border-bottom: none;
  }
  .my_accnt .woocommerce-orders-table td::before {
    content: attr(data-title) ": ";
    font-weight: 600;
    color: #106778;
    float: left;
  }
  .my_accnt .woocommerce-orders-table td:first-child, .my_accnt .woocommerce-orders-table td:last-child {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
}
.my_accnt .woocommerce-order-details__title,
.my_accnt .woocommerce-column__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e6e9;
  padding-bottom: 10px;
}
.my_accnt .shop_table.order_details,
.my_accnt .shop_table.customer_details {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}
.my_accnt .shop_table.order_details thead tr th,
.my_accnt .shop_table.customer_details thead tr th {
  font-size: 0.9rem;
  font-weight: 600;
  color: #7b8084;
  background-color: #f7f9fc;
  padding: 15px;
  text-align: left;
  border-top: none;
  border-bottom: 1px solid #e0e6e9;
}
.my_accnt .shop_table.order_details tbody tr td,
.my_accnt .shop_table.order_details tfoot tr th,
.my_accnt .shop_table.order_details tfoot tr td,
.my_accnt .shop_table.customer_details tbody tr td,
.my_accnt .shop_table.customer_details tfoot tr th,
.my_accnt .shop_table.customer_details tfoot tr td {
  padding: 15px;
  border-top: 1px solid #e0e6e9;
  color: #2c2c29;
}
.my_accnt .shop_table.order_details .woocommerce-table__product-name,
.my_accnt .shop_table.customer_details .woocommerce-table__product-name {
  font-weight: 600;
}
.my_accnt .shop_table.order_details .woocommerce-table__product-name a,
.my_accnt .shop_table.customer_details .woocommerce-table__product-name a {
  color: #106778;
  text-decoration: none;
  transition: color 0.3s ease;
}
.my_accnt .shop_table.order_details .woocommerce-table__product-name a:hover,
.my_accnt .shop_table.customer_details .woocommerce-table__product-name a:hover {
  color: #ffa91d;
}
.my_accnt .shop_table.order_details .product-quantity,
.my_accnt .shop_table.customer_details .product-quantity {
  font-weight: 400;
  color: #7b8084;
  display: inline-block;
  margin-left: 5px;
}
.my_accnt .shop_table.order_details .wc-item-meta,
.my_accnt .shop_table.customer_details .wc-item-meta {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 0.9rem;
}
.my_accnt .shop_table.order_details .wc-item-meta li,
.my_accnt .shop_table.customer_details .wc-item-meta li {
  margin: 0 0 10px 0;
  padding: 0 0 0 15px;
}
.my_accnt .shop_table.order_details .wc-item-meta li:last-child,
.my_accnt .shop_table.customer_details .wc-item-meta li:last-child {
  margin-bottom: 0;
}
.my_accnt .shop_table.order_details .wc-item-meta li .wc-item-meta-label,
.my_accnt .shop_table.customer_details .wc-item-meta li .wc-item-meta-label {
  color: #106778;
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
}
.my_accnt .shop_table.order_details .wc-item-meta li p,
.my_accnt .shop_table.customer_details .wc-item-meta li p {
  display: inline;
  margin: 0;
}
.my_accnt .shop_table.order_details .woocommerce-Price-amount,
.my_accnt .shop_table.customer_details .woocommerce-Price-amount {
  color: #2c2c29;
  font-weight: 600;
}
.my_accnt .shop_table.order_details .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.my_accnt .shop_table.customer_details .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-size: 0.9em;
  font-weight: 400;
}
.my_accnt .shop_table.order_details tfoot tr,
.my_accnt .shop_table.customer_details tfoot tr {
  border-top: 2px solid #106778;
}
.my_accnt .shop_table.order_details tfoot tr:last-child,
.my_accnt .shop_table.customer_details tfoot tr:last-child {
  border-top: 2px solid #106778;
  font-weight: 700;
}
.my_accnt .shop_table.order_details tfoot th,
.my_accnt .shop_table.customer_details tfoot th {
  text-align: right;
  font-weight: 600;
  color: #2c2c29;
}
.my_accnt .shop_table.order_details tfoot th:last-child,
.my_accnt .shop_table.customer_details tfoot th:last-child {
  font-weight: 700;
}
.my_accnt .shop_table.order_details tfoot td,
.my_accnt .shop_table.customer_details tfoot td {
  text-align: left;
  font-weight: 600;
  color: #106778;
}
.my_accnt .shop_table.order_details tfoot td .woocommerce-Price-amount,
.my_accnt .shop_table.customer_details tfoot td .woocommerce-Price-amount {
  color: #106778;
  font-size: 1.2rem;
}
.my_accnt .woocommerce-customer-details address {
  padding: 15px 20px;
  background-color: #f7f9fc;
  border-radius: 8px;
  font-style: normal;
  line-height: 1.6;
  color: #2c2c29;
}
.my_accnt .woocommerce-customer-details address p {
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  .my_accnt .shop_table.order_details tbody tr {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
  }
  .my_accnt .shop_table.order_details tbody tr:last-child {
    margin-bottom: 0;
  }
  .my_accnt .shop_table.order_details td {
    padding: 10px;
    border-top: none;
    border-bottom: 1px dashed #e0e6e9;
  }
  .my_accnt .shop_table.order_details td:last-child {
    border-bottom: none;
  }
}
.my_accnt .woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  margin-bottom: 25px;
}
.my_accnt .woocommerce-MyAccount-content p {
  font-size: 1rem;
  color: #2c2c29;
  line-height: 1.6;
  margin-bottom: 25px;
}
.my_accnt .woocommerce-MyAccount-content p.woocommerce-notice {
  padding: 15px;
  border-radius: 8px;
}
.my_accnt .woocommerce-MyAccount-content p mark {
  background-color: transparent;
  font-weight: 600;
  color: #106778;
}
.my_accnt .woocommerce-MyAccount-content .woocommerce-order-details,
.my_accnt .woocommerce-MyAccount-content .woocommerce-customer-details {
  margin-bottom: 40px;
}
.my_accnt .woocommerce-MyAccount-content .woocommerce-info {
  background-color: #effcff;
  border-color: #106778;
  padding: 20px;
  border-radius: 8px;
  font-size: 1rem;
  color: #2c2c29;
  border-left: 3px solid;
}
.my_accnt .woocommerce-MyAccount-content .woocommerce-info a.button.wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background-color: #106778;
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
}
.my_accnt .woocommerce-MyAccount-content .woocommerce-info a.button.wc-forward:hover {
  background-color: #0d5a68;
  box-shadow: 0 4px 12px rgba(16, 103, 120, 0.4);
}
.my_accnt .woocommerce-MyAccount-content .woocommerce-info::before {
  position: static;
  margin-right: 10px;
}
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  padding: 0;
  box-shadow: unset;
  margin: 0;
}
@media (max-width: 767px) {
  .my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
    gap: 20px 0;
  }
}
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column1,
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column2 {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column1,
  .my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column2 {
    flex: 1 1 100%;
  }
}
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column1 header.woocommerce-Address-title,
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column2 header.woocommerce-Address-title {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  border-bottom: 2px solid #e0e6e9;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column1 header.woocommerce-Address-title h2,
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column2 header.woocommerce-Address-title h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #106778;
  margin: 0;
  padding: 0;
  border: none;
  margin-right: 20px;
}
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column1 header.woocommerce-Address-title a.edit,
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column2 header.woocommerce-Address-title a.edit {
  color: #ffa91d;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column1 header.woocommerce-Address-title a.edit:hover,
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column2 header.woocommerce-Address-title a.edit:hover {
  color: #d15606;
}
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column1 address,
.my_accnt .woocommerce-MyAccount-content .u-columns.woocommerce-Addresses .u-column2 address {
  font-style: normal;
  line-height: 1.6;
  color: #2c2c29;
}
.my_accnt .woocommerce-MyAccount-content form {
  background-color: #ffffff;
  padding: 0;
  border-radius: 12px;
  box-shadow: unset;
}
.my_accnt .woocommerce-MyAccount-content form h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 25px;
  border-bottom: 2px solid #e0e6e9;
  padding-bottom: 15px;
}
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row {
  flex: 1 1 100%;
  margin-bottom: 0;
}
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row.form-row-first, .my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row.form-row-last {
  flex: 1 1 calc(50% - 10px);
}
@media (max-width: 767px) {
  .my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row.form-row-first, .my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row.form-row-last {
    flex: 1 1 100%;
    width: 100%;
  }
}
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row label {
  font-weight: 600;
  color: #2c2c29;
  display: block;
  margin-bottom: 5px;
}
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row .woocommerce-input-wrapper {
  width: 100%;
}
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row input[type=text],
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row input[type=email],
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row input[type=tel],
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f8f9fa;
  transition: border-color 0.3s;
}
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row input[type=text]:focus,
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row input[type=email]:focus,
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row input[type=tel]:focus,
.my_accnt .woocommerce-MyAccount-content form .woocommerce-address-fields__field-wrapper .form-row select:focus {
  border-color: #106778;
  outline: none;
}
.my_accnt .woocommerce-MyAccount-content form .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background-color: #106778;
  color: #ffffff;
  text-decoration: none;
}
.my_accnt .woocommerce-MyAccount-content form .button:hover {
  background-color: #0d5a68;
  box-shadow: 0 4px 12px rgba(16, 103, 120, 0.4);
}
.my_accnt .woocommerce-MyAccount-content .select2-container--default {
  display: block;
  width: 100% !important;
}
.my_accnt .woocommerce-MyAccount-content .select2-container--default .selection .select2-selection--single {
  height: auto;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: border-color 0.3s;
}
.my_accnt .woocommerce-MyAccount-content .select2-container--default .selection .select2-selection--single:focus, .my_accnt .woocommerce-MyAccount-content .select2-container--default .selection .select2-selection--single:active {
  border-color: #106778;
  outline: none;
}
.my_accnt .woocommerce-MyAccount-content .select2-container--default .select2-selection__rendered {
  color: #2c2c29;
  padding: 0;
  line-height: normal;
}
.my_accnt .woocommerce-MyAccount-content .select2-container--default .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 12px;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
  background-color: #ffffff;
  padding: 0;
  border-radius: 12px;
  box-shadow: unset;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 25px;
  border-bottom: 2px solid #e0e6e9;
  padding-bottom: 15px;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row {
  margin-bottom: 20px;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row.form-row-first, .my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row.form-row-last {
  width: calc(50% - 10px);
  float: left;
}
@media (max-width: 768px) {
  .my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row.form-row-first, .my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row.form-row-last {
    width: 100%;
    float: none;
  }
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm label {
  font-weight: 600;
  color: #2c2c29;
  display: block;
  margin-bottom: 5px;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm input[type=text],
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm input[type=email],
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm input[type=password] {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f8f9fa;
  transition: border-color 0.3s;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm input[type=text]:focus,
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm input[type=email]:focus,
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm input[type=password]:focus {
  border-color: #106778;
  outline: none;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset {
  border: 1px solid #e0e6e9;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset legend {
  font-size: 1.2rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 10px;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset legend {
    font-size: 1.1rem;
  }
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset .password-input {
  position: relative;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset .password-input input {
  padding-right: 40px;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset .password-input button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #7b8084;
  font-size: 1rem;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background-color: #106778;
  color: #ffffff;
  text-decoration: none;
  margin-top: 20px;
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .button:hover {
  background-color: #0d5a68;
  box-shadow: 0 4px 12px rgba(16, 103, 120, 0.4);
}
.my_accnt .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .clear {
  clear: both;
}
.my_accnt .woocommerce-info {
  background-color: #effcff;
  border: 1px solid #106778;
  border-left: 5px solid #106778;
  padding: 20px;
  border-radius: 8px;
  font-size: 1rem;
  color: #2c2c29;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}
.my_accnt .woocommerce-info a.showcoupon {
  color: #106778;
  font-weight: 600;
  text-decoration: underline;
}
.my_accnt .woocommerce-info a.showcoupon:hover {
  color: #ffa91d;
}
.my_accnt .woocommerce-info:before {
  position: static;
}
.my_accnt .checkout_coupon {
  background-color: #f7f9fc;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 25px;
}
.my_accnt .checkout_coupon .form-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.my_accnt .checkout_coupon .input-text {
  flex: 1;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #ffffff;
}
.my_accnt .checkout_coupon .button {
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  background-color: #106778;
  color: #ffffff;
  transition: all 0.3s ease;
}
.my_accnt .checkout_coupon .button:hover {
  background-color: #0d5a68;
}
.my_accnt .checkout.woocommerce-checkout {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.my_accnt .checkout.woocommerce-checkout .select2-container--default {
  display: block;
  width: 100% !important;
}
.my_accnt .checkout.woocommerce-checkout .select2-container--default .selection .select2-selection--single {
  height: auto;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: border-color 0.3s;
}
.my_accnt .checkout.woocommerce-checkout .select2-container--default .selection .select2-selection--single:focus, .my_accnt .checkout.woocommerce-checkout .select2-container--default .selection .select2-selection--single:active {
  border-color: #106778;
  outline: none;
}
.my_accnt .checkout.woocommerce-checkout .select2-container--default .select2-selection__rendered {
  color: #2c2c29;
  padding: 0;
  line-height: normal;
}
.my_accnt .checkout.woocommerce-checkout .select2-container--default .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 12px;
}
.my_accnt .checkout.woocommerce-checkout .col2-set {
  display: flex;
}
@media (max-width: 767px) {
  .my_accnt .checkout.woocommerce-checkout .col2-set {
    flex-direction: column;
    gap: 25px;
  }
}
.my_accnt .checkout.woocommerce-checkout .col2-set .col-1,
.my_accnt .checkout.woocommerce-checkout .col2-set .col-2 {
  flex: 1;
}
.my_accnt .checkout.woocommerce-checkout .col2-set .col-1 {
  width: 50%;
  margin-right: 15px;
}
.my_accnt .checkout.woocommerce-checkout .col2-set .col-2 {
  width: 50%;
  margin-left: 15px;
}
.my_accnt .checkout.woocommerce-checkout h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e6e9;
  padding-bottom: 10px;
}
.my_accnt .checkout.woocommerce-checkout .form-row {
  margin-bottom: 20px;
}
.my_accnt .checkout.woocommerce-checkout .form-row label {
  font-weight: 600;
  color: #2c2c29;
  display: block;
  margin-bottom: 5px;
}
.my_accnt .checkout.woocommerce-checkout .form-row .required {
  color: #ab4005;
}
.my_accnt .checkout.woocommerce-checkout .form-row input.input-text,
.my_accnt .checkout.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f8f9fa;
  transition: border-color 0.3s;
}
.my_accnt .checkout.woocommerce-checkout .form-row input.input-text:focus,
.my_accnt .checkout.woocommerce-checkout .form-row textarea:focus {
  border-color: #106778;
  outline: none;
}
.my_accnt .checkout.woocommerce-checkout .form-row.form-row-first, .my_accnt .checkout.woocommerce-checkout .form-row.form-row-last {
  display: inline-block;
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .my_accnt .checkout.woocommerce-checkout .form-row.form-row-first, .my_accnt .checkout.woocommerce-checkout .form-row.form-row-last {
    width: 100%;
    display: block;
  }
}
.my_accnt .checkout.woocommerce-checkout #order_review {
  background-color: transparent;
  padding: 0;
  border-radius: 8px;
}
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table th,
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table td {
  padding: 15px;
  border-bottom: 1px solid #e0e6e9;
}
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead th {
  font-weight: 600;
  color: white;
  text-align: left;
}
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody .product-name .product-quantity {
  color: #7b8084;
  font-weight: 400;
}
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot th,
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot td {
  font-weight: 600;
  color: #2c2c29;
  border-top: 1px solid #e0e6e9;
}
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot th.order-total,
.my_accnt .checkout.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot td.order-total {
  color: #106778;
  font-size: 1.1rem;
}
.my_accnt .checkout.woocommerce-checkout #payment {
  margin-top: 30px;
}
.my_accnt .checkout.woocommerce-checkout #payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.my_accnt .checkout.woocommerce-checkout #payment .wc_payment_methods li {
  margin-bottom: 10px;
  padding: 20px 20px 0px;
}
.my_accnt .checkout.woocommerce-checkout #payment .wc_payment_methods li:before {
  display: none;
}
.my_accnt .checkout.woocommerce-checkout #payment .wc_payment_methods li label {
  font-weight: 600;
  color: #2c2c29;
  cursor: pointer;
  display: block;
}
.my_accnt .checkout.woocommerce-checkout #payment .payment_box {
  background-color: #f7f9fc;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}
.my_accnt .checkout.woocommerce-checkout #payment .payment_box p {
  margin: 0;
  font-size: 0.95rem;
  color: #7b8084;
}
.my_accnt .checkout.woocommerce-checkout #payment .form-row.place-order {
  margin: 0;
}
.my_accnt .checkout.woocommerce-checkout #payment .form-row.place-order .woocommerce-privacy-policy-text {
  font-size: 0.9rem;
  color: #7b8084;
  margin-bottom: 15px;
}
.my_accnt .checkout.woocommerce-checkout #payment .form-row.place-order .woocommerce-privacy-policy-text a {
  color: #106778;
  text-decoration: underline;
}
.my_accnt .checkout.woocommerce-checkout #payment .form-row.place-order .button.alt {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  background-color: #ffa91d;
  color: #ffffff;
  text-align: center;
  transition: background-color 0.3s ease;
}
.my_accnt .checkout.woocommerce-checkout #payment .form-row.place-order .button.alt:hover {
  background-color: #d15606;
}
.my_accnt .woocommerce-order {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.my_accnt .woocommerce-order .woocommerce-notice--success {
  background-color: #e8f9ed;
  color: #1a6d36;
  border-left: 5px solid #106778;
  padding: 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}
.my_accnt .woocommerce-order .woocommerce-order-overview {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
.my_accnt .woocommerce-order .woocommerce-order-overview:before, .my_accnt .woocommerce-order .woocommerce-order-overview:after {
  display: none;
}
.my_accnt .woocommerce-order .woocommerce-order-overview li {
  background-color: #f7f9fc;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 calc(33.33% - 10px);
  text-align: center;
  font-size: 0.95rem;
  color: #7b8084;
  margin: 0;
}
.my_accnt .woocommerce-order .woocommerce-order-overview li:before {
  display: none;
}
@media (max-width: 767px) {
  .my_accnt .woocommerce-order .woocommerce-order-overview li {
    flex: 1 1 100%;
  }
}
.my_accnt .woocommerce-order .woocommerce-order-overview li strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c29;
  margin-top: 5px;
}
.my_accnt .woocommerce-order .woocommerce-order-overview li strong .woocommerce-Price-amount {
  color: #106778;
}
.my_accnt .woocommerce-order .woocommerce-order-details__title,
.my_accnt .woocommerce-order .woocommerce-column__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #106778;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e6e9;
  padding-bottom: 10px;
}
.my_accnt .woocommerce-order .shop_table.order_details {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}
.my_accnt .woocommerce-order .shop_table.order_details thead th {
  font-size: 0.9rem;
  font-weight: 600;
  color: #7b8084;
  background-color: #f7f9fc;
  padding: 15px;
  text-align: left;
  border-top: none;
  border-bottom: 1px solid #e0e6e9;
}
.my_accnt .woocommerce-order .shop_table.order_details tbody tr td,
.my_accnt .woocommerce-order .shop_table.order_details tfoot tr th,
.my_accnt .woocommerce-order .shop_table.order_details tfoot tr td {
  padding: 15px;
  border-top: 1px solid #e0e6e9;
  color: #2c2c29;
}
.my_accnt .woocommerce-order .shop_table.order_details .product-name a {
  color: #106778;
  text-decoration: none;
}
.my_accnt .woocommerce-order .shop_table.order_details .product-name a:hover {
  color: #ffa91d;
}
.my_accnt .woocommerce-order .shop_table.order_details .product-quantity {
  font-weight: 400;
  color: #7b8084;
}
.my_accnt .woocommerce-order .shop_table.order_details .wc-item-meta {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 0.9rem;
}
.my_accnt .woocommerce-order .shop_table.order_details .wc-item-meta li .wc-item-meta-label {
  color: #106778;
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
}
.my_accnt .woocommerce-order .shop_table.order_details .wc-item-meta li p {
  display: inline;
}
.my_accnt .woocommerce-order .shop_table.order_details .woocommerce-Price-amount {
  color: #2c2c29;
  font-weight: 600;
}
.my_accnt .woocommerce-order .shop_table.order_details tfoot tr:last-child {
  border-top: 2px solid #106778;
  font-weight: 700;
}
.my_accnt .woocommerce-order .shop_table.order_details tfoot td {
  font-weight: 600;
}
.my_accnt .woocommerce-order .shop_table.order_details tfoot td .woocommerce-Price-amount {
  color: #106778;
  font-size: 1.2rem;
}
.my_accnt .woocommerce-order .woocommerce-customer-details {
  margin-top: 30px;
}
.my_accnt .woocommerce-order .woocommerce-customer-details address {
  padding: 15px 20px;
  background-color: #f7f9fc;
  border-radius: 8px;
  font-style: normal;
  line-height: 1.6;
  color: #2c2c29;
}
@media (max-width: 767px) {
  .my_accnt .woocommerce-order .shop_table.order_details thead {
    display: none;
  }
  .my_accnt .woocommerce-order .shop_table.order_details tbody,
  .my_accnt .woocommerce-order .shop_table.order_details tr,
  .my_accnt .woocommerce-order .shop_table.order_details td {
    display: block;
    width: 100%;
  }
  .my_accnt .woocommerce-order .shop_table.order_details tbody tr {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
  }
  .my_accnt .woocommerce-order .shop_table.order_details td {
    border-bottom: 1px dashed #e0e6e9;
    padding: 10px;
  }
  .my_accnt .woocommerce-order .shop_table.order_details td:last-child {
    border-bottom: none;
  }
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  top: -0.95em !important;
}

.woo-sctr-shortcode-wrap-wrap.woo-sctr-shortcode-wrap-wrap-1 .woo-sctr-shortcode-countdown-1 .woo-sctr-shortcode-countdown-text,
.woo-sctr-shortcode-wrap-wrap.woo-sctr-shortcode-wrap-wrap-1 .woo-sctr-shortcode-countdown-1 .woo-sctr-shortcode-countdown-value,
.woo-sctr-shortcode-wrap-wrap.woo-sctr-shortcode-wrap-wrap-1 .woo-sctr-shortcode-countdown-1 .woo-sctr-shortcode-countdown-value-container {
  font-size: 12px !important;
}

.bundle-content-outer .prod-rat i {
  color: #ff9500;
  font-size: 0.6rem !important;
}

#product-services-section + .btn {
  margin: 1.25rem;
  margin-top: 0;
  margin-bottom: 0;
}

.return-to-shop {
  text-align: center;
}
.return-to-shop .wc-backward {
  display: inline-flex !important;
  padding: 0.75rem 2.5rem !important;
  align-items: center !important;
  gap: 0.6875rem !important;
  border-radius: 1.875rem !important;
  background: var(--Green, #106778) !important;
  color: var(--Balck-Dark, #2b2b2d) !important;
  font-family: "Poppins", sans-serif !important;
  color: var(--White, #fff) !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
}

.row-wrapper {
  padding-bottom: clamp(3.75rem, 3.469vw + 2.087rem, 6.25rem);
}
.row-wrapper:last-child {
  padding-bottom: 0;
}

section.prod-main button[data-bs-target="#sizeModal"] {
  position: relative;
  display: inline-flex;
}
section.prod-main button[data-bs-target="#sizeModal"]::before {
  content: " ";
  position: relative;
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url(../images/scale.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
section.prod-main button[data-bs-target="#sizeModal"]:focus::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(93%) saturate(22%) hue-rotate(345deg) brightness(106%) contrast(100%);
}
section.prod-main button[data-bs-target="#sizeModal"]:hover::before {
  filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(7500%) hue-rotate(286deg) brightness(102%) contrast(104%);
}

.custom-size-chart {
  border-radius: 0.3125rem;
  overflow: hidden;
  border: 0.0625rem solid #b4e1ea;
}
.custom-size-chart table {
  width: 100%;
  background: #effcff;
  margin: 0;
  padding: 0;
}
.custom-size-chart table td {
  padding: 0.875rem 4.375rem;
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-right: 0.0625rem solid #b4e1ea;
  border-bottom: 0.0625rem solid #b4e1ea;
  padding: 0.625rem;
  padding-left: 0.625rem !important;
  box-shadow: none;
}
.custom-size-chart table td:first-child {
  color: var(--Black, #2c2c29);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.custom-size-chart table td:last-child {
  border-right: 0;
}
.custom-size-chart table tr:last-child td {
  border-bottom: none;
}

.modal-dialog .modal-header h2 {
  margin: 0;
}

.lity-close {
  position: absolute;
  right: -6px;
  top: -3rem;
}

/* 27.11.2025 new add css start  */
.best-offers button.tab-arrow {
  display: none;
}

section.prod-main.defaultsectionspacing.pt-0 .custom-size-chart-wrapper button#fortmindz-add-to-cart-button2 {
  display: inline-flex !important;
  /* padding: 0.75rem 2.5rem !important; */
  align-items: center;
  gap: 0.6875rem;
  border-radius: 1.875rem !important;
  background-color: var(--Green, #106778) !important;
  font-family: "Poppins", sans-serif;
  color: var(--White, #fff);
  font-size: 1rem !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal !important;
  justify-content: flex-end;
  padding: 1rem 3rem;
}

section.prod-main.defaultsectionspacing.pt-0 .fortmindz-tabbed-variations-price .cart-pricing-bottom-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
section.prod-main.defaultsectionspacing.pt-0 .fortmindz-tabbed-variations-price .cart-pricing-bottom-inner p {
  margin: 0;
}/*# sourceMappingURL=style.css.map */