:root {
  --body-bg: #E2E2E2;
  --bg-primary: #104777;
  --text-primary: #104777;
  --border-primary: #104777;

  --bg-white: #FFFFFF;
  --text-white: #FFFFFF;
  --border-white: #FFFFFF;

  --bg-off-white: #F1F3F4;
  --text-off-white: #FAFAFA;
  --border-off-white: #FAFAFA;

  --bg-black: #000000;
  --bg-light-black-40: rgba(0, 0, 0, .40);
  --text-black: #000000;
  --border-black: #000000;

  --bg-red: #E97171;
  --text-red: #E97171;
  --border-red: #E97171;

  --bg-green: #2EC1AC;
  --text-green: #2EC1AC;
  --border-green: #2EC1AC;

  --bg-yellow: #FFC700;
  --text-yellow: #FFC700;
  --border-yellow: #FFC700;

  --bg-blue: #007CC1;
  --text-blue: #007CC1;
  --border-blue: #007CC1;

  --bg-dark-yellow: #E09F28;
  --text-dark-yellow: #E09F28;
  --border-dark-yellow: #E09F28;

  --bg-light-blue: #F7F6F4;
  --text-light-blue: #F7F6F4;
  --border-light-blue: #F7F6F4;

  --bg-gray: #898989;
  --text-gray: #544e4e;
  --border-gray: #DDDDDD;

  --color-transparent: transparent;

  --primary-font: "Gotham";

  --font-60px: 3.75rem;
  --font-48px: 3rem;
  --font-46px: 2.875rem;
  --font-44px: 2.75rem;
  --font-42px: 2.625rem;
  --font-40px: 2.5rem;
  --font-38px: 2.375rem;
  --font-36px: 2.25rem;
  --font-34px: 2.125rem;
  --font-32px: 2rem;
  --font-30px: 1.875rem;
  --font-28px: 1.75rem;
  --font-26px: 1.625rem;
  --font-24px: 1.5rem;
  --font-22px: 1.375rem;
  --font-20px: 1.25rem;
  --font-18px: 1.125rem;
  --font-16px: 1rem;
  --font-14px: 0.875rem;
  --font-12px: 0.75rem;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamBook.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  font-family: var(--primary-font);
}

body {
  font-family: var(--primary-font);
  color: var(--text-primary);
  background-color: var(--body-bg);
  transition: all 0.3s ease;
}

section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  color: inherit;
  background: none;
  box-shadow: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img,
picture {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

.section-padding-top {
  padding-top: 70px;
}

.section-padding-bottom {
  padding-bottom: 70px;
}

.section-padding-bottom-60 {
  padding-bottom: 60px;
}

.main-container {
  padding: 0 150px;
}

.slider-container {
  padding: 0 0 0 60px;
}

p {
  font-family: var(--primary-font);
  font-size: var(--font-16px);
  font-weight: 400;
}

.common-heading {
  margin-bottom: 30px;
  text-align: center;
}

.common-heading h6 {
  color: var(--text-secondary);
  font-family: var(--primary-font);
  font-size: var(--font-18px);
  font-weight: 700;
  text-transform: uppercase;
}

.common-heading h2 {
  color: var(--text-primary);
  font-family: var(--primary-font);
  font-size: var(--font-44px);
  font-weight: 700;
  text-transform: capitalize;
}

.common-heading p {
  font-family: var(--primary-font);
  font-size:18px;
  color: var(--primary-color);
  font-weight: 400;
}

.primary-color {
  color: var(--primary-color) !important;
}

.border-top {
  border-top: 1px solid var(--border-white);
}

.section-second-heading {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: var(--font-24px);
  color: var(--secondary-color);
}

.primary-btn {
  font-family: var(--primary-font);
  color: var(--text-white);
  background-color: var(--bg-primary);
  font-size: var(--font-14px);
  font-weight: 600;
  border: 1px solid var(--color-transparent);
  padding: 10px 22px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  border-radius: 33px;
}

.primary-btn:hover {
  border: 1px solid var(--border-primary);
  background: var(--color-transparent);
  color: var(--text-primary);
  box-shadow: 5px 5px var(--secondary-bg);
}

.secondary-btn {
  font-family: var(--primary-font);
  color: var(--text-primary);
  background-color: var(--color-transparent);
  font-size: var(--font-14px);
  font-weight: 600;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-5);
  padding: 10px 22px;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  border-radius: 33px;
  text-transform: uppercase;
}

.secondary-btn:hover {
  background: var(--bg-primary);
  color: var(--text-white) !important;
}

.link-btn {
  font-family: var(--primary-font);
  color: var(--text-primary);
  background-color: var(--color-transparent);
  font-size: var(--font-14px);
  font-weight: 600;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  text-transform: uppercase;
}

nav.c-navbar .links .secondary-btn::before {
  display: none;
}

nav.c-navbar .links .secondary-btn {
  padding: 10px 15px !important;
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.banner-slider-wrapper .btn-group {
  display: flex;
  gap: 15px;
  justify-content: start;
}

.small-heading {
  font-weight: 700;
  font-style: Bold;
  font-size: var(--font-26px);
  letter-spacing: 0%;
  text-transform: uppercase;
}

.new-tag-bg {
  background: var(--bg-green) !important;
}

.custom-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-card .custom-card-top {
  position: relative;
}

.custom-card .custom-card-top img {
  width: 100%;
  object-fit: contain;
  height: 280px;
  /* height: 320px; */
 /*  padding:20px; */
}

.custom-card .custom-card-bottom {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-card .custom-card-bottom .custom-card-content-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-card .custom-card-bottom .custom-card-content-top p {
  font-family: var(--project-secondry-font);
  color: var(--text-gray);
  font-size: var(--font-14px);
  text-transform: uppercase;
  font-weight: 400;
  /* flex: 1; */
  margin-bottom: 5px;
}

.custom-card .custom-card-bottom .custom-card-content-top h4 {
  font-family: var(--project-secondry-font);
  color: var(--text-primary);
  font-size: var(--font-18px);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
  flex: 1;
}

.custom-card .custom-card-bottom .custom-card-content-top .card-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.custom-card .custom-card-bottom .custom-card-content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.custom-card .custom-card-bottom .custom-card-content-bottom .date {
  display: block;
  font-family: var(--project-secondry-font);
  color: var(--text-blue);
  font-size: var(--font-16px);
}

.product-price {
  margin: 16px 0;
}

.product-price h6 {
  font-size: var(--font-16px);
  font-weight: 600;
  margin-bottom: 0;
}

.product-price h6 span {
    font-size: var(--font-16px);
    font-weight: 500;
    margin-bottom: 0;
    margin-left: 0;
    font-family: system-ui;
}
.product-price del,
.product-price del span {
  text-decoration: line-through;
  opacity: 0.6;
}

.list-view .custom-card-bottom {
    padding: 40px !important;
}

.product-price ins,
.product-price ins span {
  text-decoration: none;
  font-weight: 600;
}

.product-price>span {
  text-decoration: none;
}

.offer-tag {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: var(--font-14px);
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  right: 10px;
}

.selling-card-wrapper {
  position: relative;
}

.selling-card-wrapper .selling-card-top img {
  width: 100%;
  height: 500px;
}

.selling-card-wrapper .selling-card-conent {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 93%;
  margin: 0 auto;
  background: var(--bg-light-black-40);
  padding: 10px 15px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.selling-card-wrapper .selling-card-conent .selling-card-conent-top p {
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--font-14px);
  color: var(--text-white);
}

.selling-card-wrapper .selling-card-conent .selling-card-conent-top h6 {
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--font-18px);
  color: var(--text-white);
}

.selling-card-wrapper .selling-card-conent-bottom .link-btn {
  color: var(--text-white);
  font-size: var(--font-20px);
}

/* ==================================== */
/* *********   HEADER CSS    ********** */
/* ==================================== */
nav.c-navbar {
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  font-family: var(--primary-font);
  padding: 15px 0;
  background-color: var(--bg-primary);
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.c-navbar .logo {
  float: left;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 24px;
}

nav.c-navbar .logo img {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

nav.c-navbar .links {
  float: right;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: end;
  align-items: center;
}

nav.c-navbar .links .menu-links {
  display: flex;
}

nav.c-navbar .links li {
  list-style: none;
}
html[lang="en-US"] nav.c-navbar .links a, html[lang="en-US"] .footer-col h4 {
    font-family: system-ui;
}
nav.c-navbar .links a {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
 
}

nav.c-navbar .links .nav-btn a {
  color: var(--text-white);
  font-size: var(--font-14px);
}

.nav-btn .secondary-btn {
  color: var(--bg-white);
  border-color: var(--border-white);
}

nav.c-navbar .links a:hover {
  color: var(--text-white);
}

nav.c-navbar .links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white-bg);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

nav.c-navbar .links a:hover::before {
  visibility: visible;
  transform: scaleX(1);
  color: var(--text-primary);
}

#nav-toggle {
  position: absolute;
  top: -100px;
}

nav.c-navbar .icon-burger {
  display: none;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

nav.c-navbar .icon-burger .line {
  width: 30px;
  height: 5px;
  background-color: var(--bg-white);
  margin: 5px;
  border-radius: 3px;
  transition: all 0.5s ease-in-out;
}

/* ==================================== */
/* **********  SECTION CSS   ********** */
/* ==================================== */
.banner-slider-section {
  background-color: var(--bg-primary);
  height: 100vh;
  margin-top: 80px;
}

.banner-img {
  height: 100vh;
}

.banner-slider-wrapper {
  position: relative;
}

.blur-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: var(--black-bg-60);
  padding-bottom: 200px;
  filter: blur(20px);
}

.banner-slider-text {
  position: absolute;
  bottom: 77px;
  left: 64%;
  right: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 15px 40px 15px;
}

.banner-slider-text .primary-btn:hover {
  border-color: var(--border-white);
  color: var(--text-white);
}

.banner-slider-text h1 {
  color: var(--text-white);
  font-family: var(--primary-font);
  font-size: var(--font-48px);
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-slider-text p {
  color: var(--text-white);
  font-family: var(--primary-font);
  font-size: var(--font-22px);
  font-weight: 400;
  margin-bottom: 15px;
}

.banner-slider-section .owl-nav {
  position: absolute;
  top: 50%;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 40px;
}

.banner-slider-section .secondary-btn {
  color: var(--bg-white);
  border-color: var(--border-white);
}

.banner-slider-section .owl-carousel .owl-dots.disabled {
  display: block !important;
}

.marquee-section {
  overflow: hidden;
  background-color: #F1F3F4;
}

.main-container {
  max-width: 100%;
  margin: 0 auto;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  background-color: #F1F3F4;
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  background-color: #09285D;
  padding-right: 12px;
}

.marquee-item p {
  color: var(--text-white);
  font-size: var(--font-22px);
  background-color: #09285D;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 0;
  padding: 18px 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.product-details-wrapper {
  background: var(--bg-light-blue);
  text-align: center;
  padding: 22px 15px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-details-wrapper img {
  width: 90px;
  height: 70px;
  margin: 0 auto;
  object-fit: contain;
}

.product-details-wrapper .product-details-content h6 {
  font-family: var(--primary-font);
  color: var(--text-black);
  font-size: 18px;
  font-weight: 500;
  margin: 15px 0;
}

.product-details-wrapper .product-details-content p {
  color: var(--text-black);
  font-size: var(--font-14px);
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
}

.product-details-content {
  flex: 1;
}

.about-section .common-heading p {
  color: var(--text-black) !important;
}

.about-section-main .common-heading p {
  color: var(--text-black) !important;
}

.about-section-main .common-heading h6 {
  color: var(--text-black);
}

.about-section-main {
  background-color: #E2E2E2;
}

.about-section-main .common-heading h2 {
  color: var(--text-black);
}

.about-section-main .common-heading {
  text-align: start;
}

.about-section .common-heading {
  text-align: start;
}

.about-images {
  display: flex;
  gap: 24px;
}

.about-images .about-images-right,
.about-images .about-images-left {
  width: 48%;
  overflow: hidden;
}

.about-images .about-images-left img,
.about-images .about-images-right img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.about-images .about-images-right img {
  margin-top: 40px;
}

.about-images .about-images-left img {
  margin-bottom: 40px;
}

.heading-section {
  padding-top: 40px;
  background: var(--bg-off-white);
}

.heading-section .common-heading p {
  font-size: 22px;
}

.mattresses-section .common-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.mattresses-section .common-heading img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.mattresses-wrapper {
  padding-top: 34px;
  background: var(--bg-off-white);
}

.product-listing-details-section {
  position: relative;
  padding-top: 40px;
  background-color: #e2e2e2;
  z-index: 1;
}

.inner-page-section-ptrn-3::after {
  content: "";
  position: absolute;
  top: -85px;
  right: 0;
  width: 11%;
  height: 30%;
  background-image: url(../images/right-print.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.product-listing-details-section .product-listing-wrapper {
  position: relative;
}

.product-listing-details-section .product-listing-wrapper span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--text-white);
  font-size: var(--font-16px);
  text-transform: uppercase;
  background: var(--bg-light-black-40);
  font-weight: 700;
  padding: 12px 40px;
  z-index: 1;
}

.product-listing-details-img-1 {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.product-listing-details-img-2 {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.product-listing-details-img-3 {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.product-listing-details-img-4 {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-listing-details-img-5 {
  width: 100%;
  height: 623px;
  object-position: top;
  object-fit: cover;
}

.product-listing-flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-section {
  padding: 130px 0;
  background-image: url('../images/trust-section-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  z-index: 1;

}

.trust-section .trust-overlay {
  position: absolute;
  inset: 0;
  background: url(../images/short-overlay.svg);
  z-index: -1;
}


.trust-section .banner-slider-text {
  position: unset;
  text-align: center;
  transform: none;
  padding-bottom: 0;
}

.trust-section .banner-slider-text .primary-btn:hover {
  border-color: var(--border-white);
  color: var(--text-white);
}

.hospitality-partner {
  background: var(--bg-light-blue);
  padding: 20px 15px;
}

.hospitality-partner img {
  width: 100%;
  height: 55px;
  object-fit: contain;
}


.hospitality-partner-slider {
  row-gap: 20px;
}

.hospitality-partner {
  text-align: center;
}

.hospitality-partner-slider .owl-dots {
  padding-top: 10px;
}

.hospitality-partner-slider .owl-dot.active span {
  width: 50px !important;
  transition: all ease-in-out 0.3s;
}

.hospitality-partner-slider.first-slider .owl-dots {
  display: none !important;
}

.technology-section-main-img img {
  height: 500px;
  object-fit: contain;
  width: 100%;
}

.video-container {
  position: relative;
}

.video-container video {
  width: 100%;
  height: 572px;
}

.image-ic-wrapper.controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.image-ic-wrapper.controls button.play.playPauseBtn i {
  color: var(--text-white);
  font-size: var(--font-60px);
}

.choose-us-section .product-details-wrapper {
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-gray);
}

.choose-us-section {
  background: url(../images/background-image-third.png);
  background-position: center;
  background-size: cover;
}

.choose-us-section .product-details-wrapper img {
  width: 30px;
  height: 30px;
}

.choose-us-section .product-details-wrapper .product-details-content h6 {
  margin: 7px 0;
}

.choose-us-section .common-heading h2 {
  color: #fff;
}

.choose-us-section .common-heading p {
  color: #fff;
}

.location-section {
  background: #e2e2e2 !important;
}

.search-container-area {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 24px;
}

.search-box .search-flex {
  display: flex;
  background: var(--bg-white);
  border-radius: 50px;
  border: 1px solid var(--border-primary);
  flex: 1;
}

.search-box i {
  font-size: var(--font-16px);
  color: var(--text-primary);
  margin-left: 20px;
  padding: 13px 0px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 50px;
  color: var(--text-primary);
}

.search-box input::placeholder {
  color: var(--text-primary);
}

.select-city .form-select {
  border: 1px solid var(--border-primary);
  border-radius: 50px;
}

.select-city .form-select option {
  color: var(--text-primary);
}

.listing-card-wrapper h4 {
  font-size: var(--font-18px);
  color: var(--text-primary);
  margin-top: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.listing-card {
  background: var(--bg-white);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.listing-card-wrapper p {
  margin-bottom: 0px;
}

.listing-card-bottom h5 {
  margin-bottom: 10px;
  font-size: var(--font-16px);
  color: var(--text-primary);
  text-transform: uppercase;
  font-weight: 600;
}

.listing-card-top img {
    /* width: 40px; */
    /* height: 40px; */
    object-fit: contain;
    padding: 10px;
}

.listing-card-top {
  
    align-items: center;
    justify-content: center;
}
.location-section iframe {
  border-radius: 8px;
}

.collections-section {
  background: var(--body-bg);
}

.sub-heading {
  text-align: center;
}

.sub-heading .icon-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.sub-heading .icon-heading h2 {
  font-size: var(--font-24px);
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 0 60px 14px 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-bottom: 3px solid var(--border-primary);
}

.sub-heading .icon-heading img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.video-slider-wrapper iframe {
  width: 100%;
  height: 190px;
}

.video-slider {
  position: relative;
  margin-bottom: 35px;
}

.collections-section .owl-carousel .owl-nav.disabled {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.collections-section .owl-theme .owl-dots .owl-dot {
  display: none;
}

.collections-section .owl-carousel .owl-nav.disabled .owl-prev span.nav-btn,
.collections-section .owl-carousel .owl-nav.disabled .owl-next span.nav-btn {
  background: var(--bg-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
}

.reviews-slider {
  position: relative;
}

.review-card {
  padding: 20px;
  background: var(--bg-white);
  display: flex;
  height: 100%;
  flex-direction: column;
}

.review-card .review-card-top .rating-group .rating__icon {
  color: var(--text-dark-yellow);
}

.review-card .review-card-top h5 {
  margin: 10px 0;
  color: var(--text-primary);
  font-size: var(--font-16px);
  text-transform: uppercase;
  font-weight: 700;
}

.review-card .review-card-top p {
  color: var(--text-primary);
  font-size: var(--font-14px);
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 26px;
}

.review-card .review-card-bottom h4 {
  color: var(--text-primary);
  font-size: var(--font-14px);
  text-transform: capitalize;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0;
}

.inner-pagebanner-section {
  padding: 160px 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.inner-pagebanner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1047779c 60%, #1e293bc4 90%);
}

.inner-pagebanner-section h4 {
  position: relative;
  color: var(--bg-white);
  font-size: var(--font-30px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.breadcrumb-section {
  padding: 35px 0 60px 0;
}

.breadcrumb .breadcrumb-item a {
  color: #6c757d;
  font-size: var(--font-16px);
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
  content: "\f054"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: var(--font-12px);
  margin-top: 3px;
}

.breadcrumb-item+.breadcrumb-item {
  text-transform: uppercase;
}

.breadcrumb-item.active {
  color: var(--text-primary);
  font-size: var(--font-16px);
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.heritage-section {
  padding: 80px 0;
  background: #e2e2e2;
}

.heritage-wrapper {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
}

.heritage-image {
  width: 40%;
  position: relative;
  z-index: 2;
}

.heritage-image img {
  width: 100%;
  object-fit: contain;
}

.heritage-content {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 92%);
  width: 60%;
  background: #0f3f6d;
  color: #ffffff;
  padding: 160px 80px;
  border-radius: 16px;
  margin-left: -30px;
  position: relative;
  flex: 1;
}

.heritage-content p {
  font-size: var(--font-18px);
  line-height: 1.7;
  margin-bottom: 18px;
}

.heritage-content strong {
  color: #f1c27d;
}

.heritage-badge {
  position: absolute;
  bottom: 0;
  left: 36%;
  transform: translateX(-50%);
  z-index: 3;
}

.heritage-badge img {
  position: relative;
  z-index: 3;
  width: 165px;
  height: 160px;
  object-fit: contain;
}

.heritage-mattress {
  position: absolute;
  right: -10px;
  bottom: -45px;
  width: 315px;
}

.heritage-mattress img {
  width: 100%;
}

.journey-section {
  background: var(--bg-primary);
}

.journey-section .common-heading h2,
.journey-section .common-heading p {
  color: var(--text-white);
}

.timeline-container {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
}

.timeline-item {
  position: relative;
  width: 23%;
  text-align: left;
  color: var(--text-white);
}

.timeline-item.top {
  padding-bottom: 80px;
}

.timeline-item.bottom {
  padding-top: 80px;
}

.timeline-item h4 {
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-item p {
  font-size: 13px;
  opacity: 0.9;
}

.timeline-item .dot {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.timeline-item .dot.active {
  background: #0f3f6d;
  border: 3px solid #ffffff;
}

.timeline-item-content {
  position: relative;
  top: 20px;
}

@media (max-width: 768px) {}

.makes-different-section .listing-card-top {
  padding: 16px;
  background: var(--bg-light-blue);
  border-radius: 4px;
}

.makes-different-section .listing-card-top img {
  width: 45px;
  height: 45px;
}

.makes-different-section .listing-card {
  padding: 0;
}

.better-sleep {
  background: var(--body-bg);
}

.better-sleep .product-details-wrapper .product-details-content h6 {
  font-size: var(--font-18px);
  color: var(--text-primary);
}

.better-sleep .product-details-wrapper .product-details-content p {
  color: var(--text-primary);
}

.product-listing-details-section.categories-section::before {
  display: none;
}

.arrivals-main-image-wrapper img {
  width: 100%;
  height: 598px;
  object-fit: cover;
}

.arrivals-section .custom-card .custom-card-top img {
  object-fit: cover;
}

.selling-section.collections-section {
  background: var(--bg-white);
}

.selling-section .owl-carousel .owl-dots.disabled {
  display: none;
}

.service-section {
  padding: 50px 0 80px 0;
  background: var(--bg-off-white);
}

.service-section .listing-card {
  background: var(--bg-light-blue);
}

.product-listing-nav {
  padding: 25px 0;
  margin-top: -50px;
  position: relative;
  background-color: #e2e2e2;
}

.product-listing-nav .dropdown-item.active,
.dropdown-item:active {
  background: var(--bg-blue) !important;
}

.label-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-listing-fliter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding-bottom: 50px;
    align-items: center;
    font-family: system-ui;
    padding: 10px 30px 50px 0;
}
.product-listing-nav .form-control {
  width: auto;
}

.product-listing-nav .dropdown-toggle::after {
  margin-left: 2.255em;
}

.product-listing-nav button.btn.dropdown-toggle.bs-placeholder.btn-light {
  background: transparent;
}

.product-listing-nav .form-control:focus {
  box-shadow: none;
}

.product-listing-nav .custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236c757d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 6px;
  padding-right: 40px;
  border-radius: 50px;
}

#CategorySelect {
  width: 180px;
}

.product-listing-fliter-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-btn {
  background: #f5f5f5;
  border: none;
  padding: 5px 18px;
  cursor: pointer;
  border-radius: 6px;
  color: #555;
}

.item {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
  height: 100%;
}

.grid-view .item-wrap {
  display: block;
}

.list-view {
  display: block;
}

.list-view .item-wrap {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  margin-bottom: 24px;
}

.list-view .item {
  display: flex;
  align-items: center;
  min-height: 80px;
}


.product-listing-card-page-section {
  background: #e2e2e2;
}

.product-listing-card-page-section .custom-card .custom-card-top {
  /* background: #e2e2e2; */
}

.product-listing-card-page-section .custom-card .rating-group {
  margin-top: 10px;
}

.product-listing-card-page-section .custom-card .rating-group .fa-star {
  color: var(--bg-dark-yellow);
}

.product-listing-card-page-section .custom-card .product-price {
  margin: 5px 0 16px 0;
}

.product-listing-card-page-section .list-view .custom-card {
  flex-direction: row;
}

.product-listing-card-page-section .list-view .custom-card img {
  width: 300px;
}

.product-listing-card-page-section .list-view .custom-card .custom-card-bottom {
  padding-top: 0;
}

.product-result-footer-item .form-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-result-footer-item .form-group input {
  width: 50px;
  border-radius: 50px;
  text-align: center;
}

.product-result-footer-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-result-footer-left,
.product-result-footer-right {
  margin-top: 36px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.page-link:focus,
.form-control:focus {
  box-shadow: none;
}

.pagination {
  gap: 10px;
  justify-content: end;
  padding-top: 30px;
}

.page-item.active .page-link {
  background: var(--bg-primary);
  border-color: var(--border-primary);
}

.page-item .page-link {
  border-radius: 4px;
  padding: 5px 14px;
  color: var(--text-primary);
}

.product-details-slider-section #sync1 .item {
  background: var(--bg-light-blue);
  padding: 80px 0px;
  margin: 5px;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  position: relative;
}

.product-details-slider-section #sync2 .item {
  background: #c9c9c9;
  padding: 10px 0px;
  margin: 5px;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.product-details-slider-section #sync2 .item h1 {
  font-size: 18px;
}

.product-details-slider-section #sync2 .current .item {
  background: var(--bg-light-black-40);
}

.product-details-slider-section .owl-theme .owl-nav [class*="owl-"] {
  transition: all 0.3s ease;
}

.product-details-slider-section .owl-theme .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}

.product-details-slider-section #sync1.owl-theme {
  position: relative;
}

.product-details-slider-section #sync1.owl-theme .owl-next,
.product-details-slider-section #sync1.owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}

.product-details-slider-section #sync1.owl-theme .owl-prev {
  left: 10px;
}

.product-details-slider-section #sync1.owl-theme .owl-next {
  right: 10px;
}

.product-details-slider-section .custom-card .custom-card-top img {
  height: auto;
  width: 70%;
  margin: 0 auto;
}

.product-details-slider-section .custom-card .custom-card-top {
  position: unset;
}

.product-details-slider-section #sync2 .custom-card .custom-card-top img {
  width: 70%;
}

.product-details-slider-row {
  display: flex;
}

.owl-carousel.owl-drag .owl-item {
  width: 150px;
}

.product-details-slider-section #sync2 .item {
  width: 150px;
  height: 150px;
}

.product-details-slider-section #sync2 .owl-stage {
  flex-direction: column;
  width: 150px !important;
}

.product-details-slider-section #sync2 .custom-card {
  align-items: center;
  justify-content: center;
}

.product-details-nav-section .product-details-nav {
    padding: 15px 0;
    border-top: 1px solid #ccc6c6;
    border-bottom: 1px solid #ccc6c6;
    margin-bottom: 24px;
    margin-top: 50px;
}

.product-details-nav-section .product-details-nav ul {
  padding: 0;
}

.product-details-nav-section .product-details-nav ul {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  justify-content: center;
  gap: 50px;
}

.product-details-nav-section .product-details-nav ul li a {
  color: #104777;
    text-decoration: none;
    font-size: var(--font-16px);
    text-transform: uppercase;
    font-weight: 600;
    font-family: system-ui;
}

.future-band {
  background: #BADDF3;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.product-details-content p {
  font-weight: 400;
  font-size: var(--font-14px);
}

section.product-details-description-section .custom-card {
  background: var(--bg-light-blue);
  padding: 25px 0;
}

.key-benefits-section .product-details-wrapper {
  background: var(--bg-white);
}

.product-summary-content h4 {
  font-family: var(--primary-font);
  font-size: var(--font-16px);
  font-weight: 600;
  text-transform: uppercase;
}

.product-summary-content p {
  font-family: var(--primary-font);
  font-size: var(--font-16px);
  font-weight: 400;
  text-transform: capitalize;
}

.product-features.product-summary-section .product-summary-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.delivery-details-section.service-section {
  background: var(--bg-white);
  margin: 0;
}

.delivery-details-section.service-section .listing-card {
  background: #FFF;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
}

.specifications-section .table-container {
  max-width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

.specifications-section .product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  text-align: left;
  margin: 0;
}

.specifications-section .product-table thead {
  border-radius: 8px 8px 0 0 !important;
  overflow: hidden;
}

.specifications-section .product-table tr:first-child th {
  border-radius: 8px 0px 0 0 !important;
}

.specifications-section .product-table td {
  padding: 8px;
}

.specifications-section .product-table th {
  background-color: #003366;
  color: #fff;
  padding: 10px 10px 10px 50px;
  text-transform: uppercase;
  font-weight: bold;
}

.specifications-section .product-table td {
  padding: 10px 10px 10px 50px;
}

.specifications-section .product-table tr {
  background-color: #f4f4f4;
   border: 1px solid #c1baba;
}



.specifications-section .product-table tr th:nth-child(2) {
  border-radius: 0 !important;
}

.specifications-section .product-table tr th:nth-child(3) {
  border-radius: 0 8px 0 0 !important;
}

.specifications-section .product-table tr:hover {
  background-color: #F1F3F4;
}

/* ==================================== */
/* ********   FOOTER SECTION   ******** */
/* ==================================== */

.site-footer {
  padding-top: 40px;
  background-color: var(--bg-primary);
  color: var(--bg-white);
  position: relative;
  float:left;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col ul li a {
  font-size: var(--font-14px);
  color: var(--text-off-white);
  text-decoration: none;
  opacity: 0.85;
  font-weight: 400;
}

.footer-col ul li a:hover {
  opacity: 1;
}

.footer-col.brand p {
  font-size: var(--font-14px);
  opacity: 0.9;
  margin-top: 15px;
  line-height: 1.6;
}

.footer-logo {
  max-width: 160px;
}

.footer-col.contact p {
  font-size: var(--font-14px);
  line-height: 1.6;
  opacity: 0.9;
}

.social-links {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 34px;
  height: 34px;
  background-color: var(--bg-white);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom {
  background-color: var(--bg-primary);
  text-align: center;
  padding: 14px 20px;
  font-size: var(--font-12px);
  opacity: 0.9;
}

/* ==================================== */
/* *******    INNER PAGES CSS    ****** */
/* ==================================== */


.product-gallery .owl-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-gallery .owl-stage {
  display: flex;
  height: 100%;
}

.product-gallery .owl-stage-outer {
  display: flex;
  height: 100%;
}

.certifications-section .product-details-wrapper {
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-gray);
  text-align: center;
  padding: 36px 10px 5px 10px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bottom-card {
  background-color: #f1f3f4;
  padding: 15px;
  margin: 10px 0px;
  height: 120px;
  border-radius: 8px;
}

.bottom-card .small-heading {
  font-weight: 700;
  font-style: Bold;
  font-size: var(--font-14px);
  line-height: var(--font-24px);
  letter-spacing: 0%;
  text-transform: uppercase;
}

.bottom-card .small-text {
  font-size: var(--font-14px);
}

.better-sleep .product-details-wrapper {
  background-color: var(--bg-white);
}

.side-by-side-icons .product-details-wrapper {
  display: flex;
  justify-content: space-around;
  flex-direction: row !important;
  align-items: center;
  padding: 15px !important;
}

.side-by-side-icons .product-details-wrapper .product-details-content h6 {
  font-size: var(--font-16px) !important;
  margin: 0 !important;
  text-align: start !important;
  padding-left: 6px;
}

.list-icon li {
  list-style: disc !important;
  margin-bottom: var(--font-14px);
}

.list-icon-count li {
  list-style-type: disc !important;
  margin-bottom: var(--font-14px);
}

.product-gallery {
  width: 120px;
  height: 420px;
}

#sync2 .owl-stage {
  display: flex !important;
  flex-direction: column !important;
}

#sync2 .owl-item {
  width: 100% !important;
}

#sync2 .item {
  height: 90px;
  cursor: pointer;
}

#sync2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#sync2 .owl-item.current {
  border: 2px solid #000;
}

#sync2 .owl-stage-outer {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.location-image img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.location-image {
  position: relative;
}

.content-ab {
  position: absolute;
  top: 80%;
  right: 5%;
}

.bold-small-heading {
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.faq-section {
  background: var(--bg-off-white);
}

.faq-section .accordion-item {
  border: none;
  border-radius: 6px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-section .accordion-button {
  background: #fff;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 28px 20px 28px 50px;
  position: relative;
  box-shadow: none;
}

.faq-section .accordion-button::after {
  display: none;
}

.faq-section .accordion-button::before {
  content: "+";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-section .accordion-button:not(.collapsed)::before {
  content: "−";
}

.faq-section .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--text-primary);
}

.faq-section .accordion-body {
  font-size: 14px;
  color: var(--text-primary);
  padding: 0 20px 20px 50px;
}

.custom-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.faq-section .small-heading {
  text-transform: capitalize;
}

.background-image-section {
  position: relative;
}

.background-image-section .main-container {
  position: absolute;
  left: 15%;
  top: 80%;
}

.background-image-section img {
  height: 700px;
  width: 100%;
  object-fit: cover;
}

.comman-link {
  text-decoration: none;
}

.user-form .form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0b4a8b;
  margin-bottom: 6px;
}

.user-form .form-label span {
  color: red;
}

.user-form .form-control,
.user-form .form-select {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  padding: 10px 14px;
  font-size: 14px;
}

.user-form .form-control:focus,
.user-form .form-select:focus {
  border-color: #0b4a8b;
  box-shadow: none;
}

.user-form .gender-box {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 48px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 0 15px;
}

.user-form .form-check-input:checked {
  background-color: #0b4a8b;
  border-color: #0b4a8b;
}

@media (max-width: 767px) {
  .user-form .gender-box {
    gap: 20px;
  }
  .woocommerce-billing-fields__field-wrapper p {
    float: left;
    width: 100% !important;
}
}

.shipping-policy-content h5 b {
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--font-18px);
}

.shipping-policy-content h4 {
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 20px;
}

.terms-content h4 {
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 20px;
}

.terms-content b {
  font-weight: 600;
}

.ex-refund-Policy-content h4 {
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 20px;
}

.privacy-policy-content h4 {
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 20px;
}

.custom-card .blog-badge {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--text-gray);
}

.blog-content {
  padding: 20px 10px;
}

.blog-content h4 {
  font-size: var(--font-18px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--text-gray) !important;
}

.blog-content a {
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-18px);
  color: var(--bg-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.update-button a {
  padding: 15px 40px;
  letter-spacing: 2px;
}

.blog-button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0b3c7d;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.blog-button a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0b3c7d;
  transition: width 0.4s ease;
}

.blog-button a i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.blog-button a:hover {
  color: #092f5c;
}

.blog-button a:hover::after {
  width: 100%;
}

.blog-button a:hover i {
  transform: translateX(6px);
}

.blag-detail img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.blog-image img {
  height: 350px;
}

.image-product-blog {
  width: 100%;
  height: 2 50px;
  object-fit: cover;
}

.blog-details-gray-text {
  font-weight: 400;
  font-style: Book;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #898989;

}

.blog-details-gray-text p {
  padding: 10px 0px;
  border-bottom: 1px solid #898989;
}

.blog-details-gray-text p:last-child {
  border: none;
}

.second-blog-section h4 {
  font-size: var(--font-18px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-third-section p {
  color: var(--text-gray) !important;
}

.blog-third-section h4 {
  font-size: var(--font-20px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-third-section .list-icon li {
  color: var(--text-gray);
  margin-bottom: var(--font-12px);
}

.last-image-text {
  color: var(--text-gray);
  padding-top: 20px;
}

.btn-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 60px;
  z-index: 11111;
  height: 50px;
  height: 50px;
  object-fit: contain;
}

.manager-details,
.contact-details {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.manager-details {
  margin-top: 14px;
}

.contact-details .contact-details-ic {
  display: flex;
}

.contact-details .contact-details-ic img,
.manager-details .contact-details-ic img {
  flex: 1;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-details .contact-details-content h4 {
  font-weight: 600;
  font-size: var(--font-18px);
  text-transform: uppercase;
}

.contact-details .contact-details-content h6 {
  font-weight: 600;
  font-size: var(--font-16px);
  color: var(--text-gray);
}

.contact-details .contact-details-content p {
  margin-bottom: 0;
  color: var(--text-gray);
}

.contact-details .contact-details-content a {
  color: var(--text-gray);
  font-weight: 400;
  font-size: var(--font-16px);
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.contact-us-wrapper {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.user-form .custom-textarea {
  min-height: 150px;
  padding: 12px;
}

.reviews-slider .slick-slide {
  padding: 0 5px;
}

.reviews-slider .slick-list {
  margin: 0 -5px;
}

.video-slider .slick-slide {
  padding: 0 12px;
}

.video-slider .slick-list {
  margin: 0 -12px;
}

.back-top-icon {
  position: absolute;
  top: 0px;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-container {
  max-width: 900px;
}

.product-id {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 5px;
}

.collection-name {
  color: var(--text-gray);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.product-title {
  color: var(--dark-blue);
  font-size: 32px;
  font-weight: 800;
  margin-top: 5px;
}

.price-stock-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.current-price {
  font-size: 28px;
  font-weight: bold;
  color: #104777;
}

.old-price {
  font-size: 24px;
  color: #104777;
  text-decoration: line-through;
  margin-left: 10px;
  opacity: 0.7;
}

.price-info {
  display: inline-block;
  font-size: 12px;
  color: var(--text-gray);
  vertical-align: middle;
  margin-left: 10px;
}

.stock-badge {
  background-color: #00B926;
  color: white;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
}

.rating-section {
  margin: 15px 0;
}

.stars {
  color: #ffc107;
  display: inline-block;
}

.rating-text {
  color: var(--text-gray);
  margin-left: 10px;
}

.description {
  color: var(--text-gray);
  font-size: 15px;
  max-width: 800px;
}

.section-label {
  color: var(--dark-blue);
  font-size: 14px;
  font-weight: bold;
  margin-top: 30px;
}

.category-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.tab {
  padding: 15px 30px;
  border: 1px solid #ddd;
  background: white;
  color: var(--dark-blue);
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.tab.active {
  background-color: var(--bg-primary);
  color: white;
}

.size-options {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.size-item {
  font-weight: bold;
  color: var(--dark-blue);
  font-size: 14px;
  cursor: pointer;
}

.size-item.active {
  border-bottom: 2px solid var(--dark-blue);
  transform:none!important;
}

.action-row {
  display: flex;
  gap: 50px;
  margin-bottom: 30px;
}

.quantity-selector {
  background: #F1F3F4;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 5px 15px;
}

.quantity-selector button {
  border: none;
  background: none;
  font-size: 20px;
  color: var(--text-gray);
  cursor: pointer;
  width: 30px;
}

.quantity-selector input {
  border: none;
  background: none;
  width: 30px;
  text-align: center;
  font-weight: bold;
}

.pincode-box input {
  background: #F1F3F4;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  width: 200px;
  color: var(--dark-blue);
  font-weight: 600;
}

.button-group {
  display: flex;
  gap: 15px;
}

.btn {
  flex: 1;
  padding: 18px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}


.btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-info {
  display: flex;
  gap: 150px;
  margin-top: 20px;
  color: var(--text-gray);
  font-size: 14px;
}

.banner-slider .item {
  padding: 0px !important;
}

.why-try {
  width: 700px;
  height: 500px;
}

.selling-card-slider .selling-card-wrapper {
  padding: 10px !important;
}

.product-img-slide .slider-for {
  width: 80%;
  float: right;
  height: 585px;
  background-color: #f1f3f4;
  overflow: hidden;
  object-fit: contain;
}

.product-img-slide .slider-for img {
  width: 85%;
  height: 550px;
  object-fit: contain;
}

.product-img-slide .slider-nav {
  width: 16%;
  height: 550px;
}

.product-img-slide .slider-nav .thumb-slide {
  margin-bottom: 12px !important;
  overflow: hidden;
}

.product-img-slide .slider-nav .thumb-slide:last-child {
  margin-bottom: 0;
}

.product-img-slide .slider-nav .thumb-slide img {
  max-width: 175px;
}

.product-img-slide .slider-nav .slick-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.product-img-slide .slider-nav .slick-arrow.slick-next {
  top: auto;
  bottom: 0;
  transform: translateX(-50%) rotate(-90deg);
}

.product-img-slide .slick-slide img {
  margin: 0 auto;

}

.product-img-slide .slider-nav .thumb-slide img {
  max-width: 100%;
  height: 100px;
  padding: 10px;
  background-color: #F1F3F4;
  object-fit: contain;
}

.slider-nav .thumb-slide {
  position: relative;
  cursor: pointer;
}

.slider-nav .thumb-slide img {
  width: 100%;
  display: block;
}

.slider-nav .thumb-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.slider-nav .slick-current .thumb-slide::before {
  opacity: 0;
}

.slider-for {
  position: relative;
}

.sale-icon {
  background-color: #2EC1AC;
  padding: 20px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--bg-white);
}

.btn-video {
  background-color: var(--bg-white);
  border-radius: 50px;
  padding: 15px 20px;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  position: absolute;
  bottom: 10px;
  left: 20px;
  color: var(--bg-primary);
}

.btn-video:hover {
  background-color: var(--bg-white);
  color: var(--bg-primary);
}

.color-update .color1 {
  background-color: #104777;
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.color-update .color2 {
  background-color: #104777;
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.color-update .color3 {
  background-color: #7C756B;
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.color-update p {
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.like-share i {
  font-size: 30px;
  padding: 0px 5px;
  color: #000;
  font-weight: 300;
}

.slider-for .slick-slide,
.slider-nav .slick-slide {
  margin: 0 5px;
}

.slider-for .slick-list,
.slider-nav .slick-list {
  margin: 0 -5px;
}

.inner-page-section-ptrn {
  position: relative;
  background-color: #e2e2e2;
  overflow: hidden;
}

.inner-page-section-ptrn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7%;
  height: 100%;
  background-image: url(../images/left-print.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.inner-page-section-ptrn-2 {
  margin-top: -50px;
}

.inner-page-section-ptrn-2 {
  position: relative;
  z-index: 1;
}

.inner-page-section-ptrn-3 {
  margin-top: -50px;
}

.inner-page-section-ptrn-3 {
  position: relative;
  z-index: 1;
}

.inner-page-section-ptrn-2::before {
  content: "";
  position: absolute;
  top: -85px;
  right: 0;
  width: 11%;
  height: 100%;
  background-image: url(../images/right-print.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.product-details-section {
  background-color: #e2e2e2;
}

.product-details-section .product-details-wrapper {
  transition: background 0.4s ease, transform 0.3s ease;
  overflow: hidden;
}

.product-details-section .product-details-wrapper img {
  transition: filter 0.4s ease;
}

.product-details-section .product-details-wrapper:hover img {
  filter: brightness(0) invert(1);
}

.product-details-section .product-details-wrapper:hover {
  background: var(--bg-primary);
}

.product-details-section .product-details-wrapper:hover .product-details-content h6 {
  color: #fff;
}

.product-details-section .product-details-wrapper:hover .product-details-content p {
  color: #fff;
}

.choose-us-section .product-details-wrapper {
  transition: background 0.4s ease, transform 0.3s ease;
  overflow: hidden;
}

.choose-us-section .product-details-wrapper img {
  transition: filter 0.4s ease;
}

.product-listing-details-section .product-listing-wrapper {
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

.product-listing-details-section .product-listing-wrapper img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  will-change: transform;
}

.product-listing-details-section .product-listing-wrapper:hover img {
  transform: scale(1.1);
}

.hospitality-partner-slider .hospitality-partner {
  overflow: hidden;
}

.hospitality-partner-slider:hover .hospitality-partner:hover {
  background-color: transparent;

}

.hospitality-partner-slider .hospitality-partner img {
  transition: transform 0.4s ease;
  transform: scale(0.9);
}

.hospitality-partner-slider .hospitality-partner:hover img {
  transform: scale(1);
}

.about-images img {
  transition: transform 0.4s ease-in-out;
  transform: scale(1);
  transform-origin: center center;
  border-radius: 8px;

}

.about-images img:hover {
  transform: scale(1.1);
}

.heritage-wrapper img {
  transition: transform 0.4s ease;
}

.heritage-wrapper img:hover {
  transform: scale(1);
}

.arrivals-section .arrivals-main-image-wrapper {
  overflow: hidden;
}

.arrivals-section .arrivals-main-image-wrapper img {
  transition: transform 0.4s ease;
}

.arrivals-section .arrivals-main-image-wrapper img:hover {
  transform: scale(1);
}

.custom-card .custom-card-top {
  overflow: clip;
}

.product-listing-card-page-section .custom-card .custom-card-top img {
  transition: transform 0.4s ease;
  transform: scale(1);
  /* background-color: #FAFAFA !important; */
}

.selling-card-wrapper .selling-card-top {
  overflow: hidden;
}

.selling-card-wrapper .selling-card-top img {
  display: block;
  width: 100%;
  height: 500px;
  transform: scale(1.1);
  transition: transform 0.4s ease;
}

.selling-card-wrapper:hover .selling-card-top img {
  transform: scale(1);
}

.logos-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  height: 83px;
  width: 100%;
}

.comapany-logo-content p {
  color: #fff;
  padding-top: 5px;
  font-size: var(--font-12px);
}

.categories .common-heading h2 {
  color: var(--bg-primary) !important;
}

.categories .common-heading p {
  color: var(--bg-primary) !important;
}

.store-loader {
  text-align: center;
  margin: 30px 0;
}

.store-loader .loader {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.tech-card {
  padding: 25px 18px;
  text-align: center;
  color: #fff;

  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-card:nth-child(6n) {
  border-right: none;
}

.tech-card:nth-last-child(-n + 6) {
  border-bottom: none;
}

.tech-card p {
  padding-top: 10px;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  text-align: center;
}


.makes-different-section {
  background-color: #e2e2e2;
}

.makes-different-section .listing-card {
  background-color: #e2e2e2;
}

.contact-us-section {
  background-color: #e2e2e2;
}

div.wpforms-container-full .wpforms-field-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0b4a8b;
  margin-bottom: 6px !important;

}

div.wpforms-container-full {
  margin: 0px auto !important;
}

div.wpforms-container-full .wpforms-field-label {
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  margin-bottom: 10px !important;
  text-transform: uppercase;
  color: var(--text-primary) !important;
}

div.wpforms-container-full input[type=date],
div.wpforms-container-full input[type=datetime],
div.wpforms-container-full input[type=datetime-local],
div.wpforms-container-full input[type=email],
div.wpforms-container-full input[type=month],
div.wpforms-container-full input[type=number],
div.wpforms-container-full input[type=password],
div.wpforms-container-full input[type=range],
div.wpforms-container-full input[type=search],
div.wpforms-container-full input[type=tel],
div.wpforms-container-full input[type=text],
div.wpforms-container-full input[type=time],
div.wpforms-container-full input[type=url],
div.wpforms-container-full input[type=week],
div.wpforms-container-full select,
div.wpforms-container-full textarea {
  border: none !important;
  border-radius: 10px !important;
}

div#wpforms-424-field_3-container {
  border: none !important;
  padding: 50px 0px;
}

fieldset {
  width: 100% !important;
}

ul#wpforms-424-field_3 {
  background-color: #fff !important;
  padding: 10px 10px !important;
  border-radius: 10px !important;
  width: 100% !important;
}

.gender-box {
  background-color: #F1F3F4 !important;
  border-radius: 10px !important;

}

ul#wpforms-424-field_13 {
  background-color: #fff !important;
  padding: 10px 10px !important;
  border-radius: 10px !important;
  width: 100%;
}

.arrivals-section {
  background-color: #e2e2e2;
}

.selling-section {
  background-color: #e2e2e2 !important;
}

.arrivals-section .custom-card .custom-card-bottom {
  /* background-color: #e2e2e2 !important; */
}

.arrivals-section .custom-card {
  background: var(--bg-white);
}

.custom-card:hover {
  transform: translateY(0px);
}

.custom-card-top {
  position: relative;
  overflow: hidden;
}

.custom-card-top img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

.offer-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2EC1AC;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 50%;
    z-index: 6;
}

.new-tag-bg {
  background: #198754;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;

  z-index: 5;
}

.custom-card:hover .card-overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.icon-btn:hover {
  background: #000;
  color: #fff;
}

.overlay-cart {
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-cart .button {
  background: #fff !important;
  color: #000 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
  border: none !important;
}

.overlay-cart .button:hover {
  background: #000 !important;
  color: #fff !important;
}

.custom-card-bottom {
  padding: 16px;
}

.custom-card-content-top p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #666;
}

.custom-card-content-top h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.product-price h6 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.rating-group .fa-star {
  color: #ccc !important;
}

.rating-group .fa-star.active-star {
  color: #f5a623 !important;
}



.product-listing-details-section .common-heading h2 {
  color: var(--text-white) !important;
}

.categories .common-heading h2 {
  color: var(--text-white) !important;
}

.categories .common-heading p {
  color: var(--text-white) !important;
}

.product-listing-details-section .common-heading p {
  color: var(--text-white) !important;
}

.product-listing-details-section .product-listing-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-listing-details-section .product-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: 0.4s ease;

  background: linear-gradient(254.12deg,
      rgba(16, 71, 119, 0) 43.57%,
      #104777 100%);
}

.about-section .common-heading h2 {
  color: var(--text-black) !important;
}

.about-section .common-heading h6 {
  color: var(--text-black) !important;
}

.product-listing-card-page-section .custom-card {
  padding: 30px 10px;
}

.product-listing-details-img-3 {
  width: 100%;
  height: 449px;
  object-fit: cover;
}

.banner-slider-section .slick-dots {
  position: absolute;
  bottom: 100px;
  left: 75%;
  display: flex;
  gap: 30px;
}

.banner-slider-section .slick-dots li button {
  font-size: 0;
}

.banner-slider-section .slick-dots li button:before {
  content: "";
  width: 58px;
  border-radius: 10px;
  height: 4px;
  background-color: var(--bg-primary);
  ;
  display: block;
}

.banner-slider-section .slick-dots li.slick-active button:before {
  opacity: 1;
  background: var(--bg-white);
}

.about-section {
  background-color: #e2e2e2 !important;
  z-index: 2;
}

.about-section {
  position: relative;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -141px;
  left: 0;
  width: 100%;
  height: 62%;
  background-image: url("../images/_ÎÓÈ_1 (2).svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}

.menu-item-has-children {
  position: relative;
}

.sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width:992px) {

  .menu-item-has-children:hover>.sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    padding: 10px !important;
    left: 0;
    background: var(--bg-primary);
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .sub-menu .menu-item-has-children:hover>.sub-menu {
    top: 0;
    left: 100%;
  }

  .sub-menu li a {
    display: block;
    padding: 8px 18px;
    white-space: nowrap;
    color: var(--text-primary);
    padding: 7px 16px !important;
  }
}

@media (max-width:991px) {
  .menu-item-has-children {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-item-has-children>a {
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
  }

  .submenu-arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
  }

  .menu-item-has-children.submenu-open>.sub-menu {
    display: block;
    width: 100%;
    padding-left: 15px;
    margin-top: 5px;
  }

  .sub-menu li a {
    color: var(--text-white);
  }

}

.submenu-arrow i {
  font-size: 12px;
  transition: 0.3s;
}

.menu-item-has-children.submenu-open>.submenu-arrow i {
  transform: rotate(180deg);
}

.menu-links li {
  display: flex;
  align-items: center;
}

span.submenu-arrow {
  color: #fff;
}



.product-listing-details-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url('../images/first-image-bg.png');
  background-position: center;
  background-size: cover;
  z-index: -1;
}


a.add-to-wishlist {
  text-decoration: none;
}

.wishlist-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ff4081;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 9999;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.wishlist-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.wishlist-heading {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.wishlist-item {
  text-align: center;
  border: 1px solid #eee;
  padding: 20px;
  transition: 0.3s;
}

.wishlist-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.wishlist-image img {
  width: 100%;
  height: auto;
}

.wishlist-title {
  font-size: 16px;
  margin-top: 15px;
  color: #222;
}

.wishlist-empty {
  text-align: center;
  font-size: 18px;
}

.wishlist-active {
  color: red;
}

.product-listing-card-page-section .list-view .custom-card,
.product-listing-card-page-section .custom-card {
  background-color: #fff !important;
}

#wpforms-774 {
  padding: 0px 60px 30px 60px !important;
}

.fa-share-alt:before,
.fa-share-nodes:before {
  content: "\f1e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.list-view .custom-card .custom-card-bottom .custom-card-content-top p {
  flex: none;
  margin-bottom: 14px;
}

.list-view .custom-card .custom-card-bottom .custom-card-content-top h4 {
  flex: none;
  margin-bottom: 14px;
}

.cart-subtotal {
    display: none !important;
}

section#specifications {
    padding: 50px 0 0;
}

div#wpforms-424-field_3-container, div#wpforms-1656-field_3-container {
    background: transparent !important;
}
.ex-refund-Policy-content, .terms-content {
    margin: 0 0 60px;
}

ol, ul {
    padding-right: 2.5rem;
}
.default-page {
    padding: 50px;
}
/* .default-page .woocommerce {
    display: flex;
}

.default-page form.woocommerce-cart-form.testing {
    width: 65%;
}
.default-page .cart-collaterals {
    width: 35%;
} */
input#coupon_code {
    width: 150px;
    border: 0;
    padding: 5px 10px;
    border-radius: 4px;
    border: 2px solid #ccccccc7;
}

.woocommerce table.shop_table, .woocommerce .woocommerce-customer-details address, form.woocommerce-EditAccountForm.edit-account {
    border: 1px solid rgba(0, 0, 0, .1);
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 15px;
    background: #fff;
    padding: 40px;
}

.woocommerce .cart .button, .woocommerce .cart input.button {
    float: none;
    background: #104777;
    color: #fff !important;
    font-weight: 400;
    font-size: 16px;
    font-family: system-ui;
}

a.checkout-button.button.alt.wc-forward , .wc-block-components-checkout-place-order-button__text, button.woocommerce-Button.button, button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained{
    background: #104777;
    color: #fff !important;
    font-weight: 400;
    font-size: 16px;
    font-family: system-ui;
    padding: 12px 40px;
    width: auto;
    text-align: center;
}
	
	form.woocommerce-cart-form.testing {
    float: left;
    width: 65%;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: right;
    width: 30%;
}
.wc-proceed-to-checkout {
    float: right;
    width: 100%;
    text-align: right;
}

.wc-block-components-form, .wp-block-woocommerce-checkout-order-summary-block {
       background: #fff;
    padding: 20px 40px;
    border-radius: 15px;
}

li.woocommerce-MyAccount-navigation-link {
    background: #1047774f;
    padding: 10px 20px;
    margin: 0 0 10px;
    font-family: system-ui;
    color: #222;
}

nav.woocommerce-MyAccount-navigation {
    width: 26%;
    float: left;
}

.page-content {
    float: left;
    width: 100%;
	margin:0 0 40px;
}
.default-page h1.page-title {
    text-align: center;
    margin: 0 0 40px;
    font-family: system-ui;
    font-weight: 700;
}

li.woocommerce-MyAccount-navigation-link.is-active {
    background: #104777;
    color: #fff;
}
.woocommerce-MyAccount-content {
    float: right;
    width: 72%;
}
table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
    width: 100%;
    border-radius: 10px;
}

ul.wc-item-meta {
    margin: 0;
    padding: 0;
}
form.woocommerce-EditAccountForm.edit-account input {
    padding: 10px !important;
    border: 1px solid #ccc !important;
    background: #cccccc42!important; 
}

input#password_2 {
    margin: 0 0 20px;
}

.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url], .wc-blocks-components-select .wc-blocks-components-select__select{background-color: #cccccc42!important;
    border: 1px solid #ccc !important;}
	
	
.review-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.review-popup-content {
    background: #fff;
    padding: 24px 30px;
    border-radius: 12px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	  font-family: system-ui;
}

.review-popup-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
}
/* Review Form Wrapper */
div#reviews {
    max-width: 100%;
    margin: 30px 0;
    padding: 30px;
       border-radius: 12px;
    background: #fff;
	font-family:system-ui;
}
form#commentform {
    border: 1px solid #e5e5e5;
    padding: 50px;
    margin: 30px auto;
    width: 70%;
    background: #10477712;
    border-radius: 30px;
}
/* Labels */
#commentform label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #222;
    text-align: left;
	font-family:system-ui;
}
label#comment-form-rating-label {
    width: 100%;
}
/* Notes text */
#commentform .comment-notes {
    font-size: 18px;
    color: #222;
    margin: 10px 0;
}
p.woocommerce-noreviews {
    display: none;
}

.rating-group {
    margin: 15px 0 15px;
}
/* Input fields */
#commentform input[type="text"],
#commentform input[type="email"],
#commentform textarea,
#commentform select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
    transition: border 0.3s ease;
    box-sizing: border-box;
}

/* Focus effect */
#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform textarea:focus,
#commentform select:focus {
    border-color: #000;
}

/* Textarea */
#commentform textarea {
    height: 120px!important;
    resize: vertical;
}

/* Spacing */
#commentform p,
#commentform .comment-form-rating {
    margin-bottom: 20px;
}

/* Checkbox */
#commentform .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

#commentform .comment-form-cookies-consent input {
    width: auto;
}

/* Star Rating */
#commentform .stars span {
    display: flex;
    gap: 6px;
}

#commentform .stars a {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    overflow: hidden;
    text-indent: -9999px;
    text-decoration: none;
}

#commentform .stars a::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    text-indent: 0;
    font-size: 24px;
    line-height: 28px;
    color: #d4d4d4;
    transition: color 0.3s ease;
}

.comment-form-rating {
    display: inline-flex;
    gap: 30px;
}

select#rating {
    display: block !important;
}
/* Hover stars */
#commentform .stars a:hover::before,
#commentform .stars a.active::before {
    color: #f5b301;
}

/* Submit button */
#commentform .submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#commentform .submit:hover {
    background: #333;
}	

.stock-badge.outstk, .out-of-stock-btn {
    background: #dc3737;
}

.woocommerce #review_form #respond .form-submit input {
    left: auto;
    background: #104675;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 17px;
}

.ar {
    display: none;
}
