:root {
  --primary-color: #545454;
  --secondary-color: #f38020;
  --title-color: #1b2a56;
  --light-bg: #f2e6db;
  --grey-fonts: #b5b5b5;
  --white-color: #ffffff;
  --black-color: #000000;
  --light-blue-bg: #eef0f8;
  --border-color: #bebebe;

  /* TYPOGRAPHY SCALE (Desktop default) */
  --fs-hero: 48px;
  --fs-title-lg: 32px;
  --fs-title-md: 24px;
  --fs-text-lg: 20px;
  --fs-text-md: 16px;
  --fs-text-sm: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100vh;
}

body {
  font-family: 'Red Hat Display', sans-serif;
  font-optical-sizing: auto; /* optional */
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1354px;
  padding: 0 20px;
  margin: 0 auto;
}

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

a {
  text-decoration: none;
  color: var(--primary-color); /* Primary grey */
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--secondary-color); /* Secondary orange */
}

h1,
h2,
h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700; /* bold */
}

p {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 500; /* normal */
}

.btn {
  background-color: var(--white-color);
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--black-color);
  color: var(--black-color);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  outline: 0;
}
.btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* margin: 0 auto; */
}

body input{
  width: 100%;
  padding: 12px 16px;
  background-color: #F2E6DB;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #848484;
  outline: none;
  font-family: 'Red Hat Display', sans-serif;
}
body input::placeholder{
  color: #848484;
  font-family: 'Red Hat Display', sans-serif;
}
body textarea{
  width: 100%;
  padding: 12px 16px;
  background-color: #F2E6DB;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #848484;
  outline: none;
  font-family: 'Red Hat Display', sans-serif;
}
body textarea::placeholder{
  color: #848484;
  font-family: 'Red Hat Display', sans-serif;
}

/* woocommerce form design start */
.woocommerce form .form-row .input-text, .woocommerce form .form-row select{
  width: 100%;
  padding: 12px 16px;
  background-color: #F2E6DB;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #848484;
  outline: none;
  font-family: 'Red Hat Display', sans-serif;
  border-radius: 0;
}
.woocommerce-address-fields__field-wrapper{
  margin-top: 20px;
}
.woocommerce-account .woocommerce-address-fields__field-wrapper p.form-row {
    margin-bottom: 10px;
}
.select2-container .select2-selection {
    width: 100%;
    padding: 12px 16px;
    background-color: #F2E6DB;
    border: 0;
    font-size: 16px;
    font-weight: 400;
    color: #848484;
    outline: none;
    font-family: 'Red Hat Display', sans-serif;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.select2-container--default .select2-results__option:focus-visible{
  outline: 0;
}
.select2-container .select2-selection--single .select2-selection__rendered{
  padding: 0;
  color: #848484;
}
.woocommerce-account{
  overflow-x: hidden;
}
/* woocommerce form design end */

/* header design start */
header.site-header {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.header-flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.header-flex .site-logo {
  padding-right: 25px;
  margin-right: 10px;
  display: flex;
  position: relative;
}
.header-flex .site-logo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--border-color);
}
.header-flex a.custom-logo-link {
  display: flex;
}
nav.main-navigation {
  flex: 1;
  margin: 0 auto;
}
nav.main-navigation ul#menu-main-menu {
  display: flex;
  align-items: center;
  /* margin: 0 -40px; */
  justify-content: center;
}
nav.main-navigation ul#menu-main-menu li a {
  font-size: 15px;
  font-weight: 500;
  padding: 30px 22px;
  display: block;
}
.header-flex .header-icons {
  display: flex;
  align-items: center;
  column-gap: 20px;
  padding-left: 25px;
  margin-left: 10px;
  position: relative;
}
.header-flex .header-icons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--border-color);
}
.header-flex .header-icons a {
  display: flex;
  position: relative;
}
.header-flex span.cart-count {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  top: -18px;
  right: -10px;
}

/* for submenu */
/* Submenu hidden by default */
.nav-menu .sub-menu {
  display: none;
  margin: 0;
  position: absolute;
  top: 80%;
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.04) 3px 3px 5px;
  border-radius: 5px;
  left: 30px;
  width: 200px;
  z-index: 9;
}

#menu-main-menu.nav-menu .sub-menu li.menu-item a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--white-color);
  display: block;
}

/* Chevron wrapper */
.submenu-toggle {
  display: inline-block;
  margin-left: 8px;
  cursor: pointer;
  vertical-align: middle;
  position: absolute;
  right: -12px;
  padding: 10px;
  top: 51%;
  transform: translateY(-50%);
}

/* Chevron image */
.submenu-toggle img.chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

/* Rotate image when menu is open */
.menu-item-has-children.open .submenu-toggle img.chevron {
  transform: rotate(180deg);
}
#menu-main-menu .menu-item-has-children {
  display: flex;
  align-items: center;
  position: relative;
}
/* header design end */

/* footer design start */
footer.site-footer {
  background-color: var(--light-bg);
  /* padding-top: 65px;
  padding-bottom: 50px; */
  padding-top: 45px;
  padding-bottom: 30px;
  margin-top: auto;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 60px;
}
.footer-grid .footer-brand {
  max-width: calc(45% - 30px);
  flex: 0 0 calc(45% - 30px);
  margin-bottom: 16px;
}
.footer-grid .footer-middle-content {
  display: flex;
  align-items: flex-start;
  max-width: calc(55% - 30px);
  flex: 0 0 calc(55% - 30px);
  justify-content: space-between;
}
.footer-grid .footer-middle-content .footer-col {
  flex: 1;
  padding: 0 10px;
  margin-bottom: 16px;
}
.footer-grid .footer-brand .footer-about {
  margin-top: 35px;
  max-width: 350px;
}
.footer-middle-content .footer-col .footer-title {
  font-size: 15px;
  color: var(--secondary-color);
  margin-bottom: 16px;
}
.footer-middle-content .footer-col .footer-links li {
  margin-bottom: 8px;
}
.footer-middle-content .footer-col .footer-links li a {
  font-size: 15px;
  color: var(--black-color);
}
.footer-middle-content .footer-col .footer-links li a:hover {
  font-size: 15px;
  color: var(--secondary-color);
}
.footer-middle-content .footer-contact .footer-title {
  margin-bottom: 8px;
}
.footer-middle-content .footer-contact .footer-email {
  margin-bottom: 50px;
}
.footer-middle-content .footer-contact .footer-email a {
  font-size: 22px;
  font-weight: 600;
  color: var(--title-color);
}
.footer-middle-content .footer-contact .footer-phone li a {
  font-size: 22px;
  font-weight: 600;
  color: var(--title-color);
}
.footer-middle-content .footer-contact .footer-email a:hover,
.footer-middle-content .footer-contact .footer-phone li a:hover {
  color: var(--secondary-color);
}
.footer-extra .footer-extra-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 60px;
}
.footer-extra .footer-brands {
  max-width: calc(45% - 30px);
  flex: 0 0 calc(45% - 30px);
}
.footer-extra .footer-office-social {
  display: flex;
  align-items: center;
  max-width: calc(55% - 30px);
  flex: 0 0 calc(55% - 30px);
}
.footer-extra .footer-office {
  padding: 0 10px;
  font-size: 14px;
}
.footer-extra .footer-social {
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 15px;
  column-gap: 10px;
  margin-bottom: -28px;
  margin-left: auto;
}
.footer-extra .footer-social img {
  height: 27px;
}
.footer-extra .footer-title {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--secondary-color);
}
.footer-extra .brand {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 16px;
}
.footer-extra .brand p {
  font-size: 14px;
}
.footer-extra .brand-wrapper {
  display: flex;
  align-items: center;
  column-gap: 24px;
}
/* footer design end */

/* search box css */
/* Search Overlay */
#search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Active state */
#search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Search Box animation */
#search-overlay .search-box {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Active search box animation */
#search-overlay.active .search-box {
  transform: translateY(0);
  opacity: 1;
}

#search-overlay input[type='text'] {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
}

#search-overlay button {
  background: var(--secondary-color); /* your theme orange */
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#search-overlay button:hover {
  background: var(--title-color); /* your theme dark blue */
}

/* Close Button */
#search-overlay .close-search {
  position: absolute;
  background: var(--secondary-color); /* your theme orange */
  color: #fff;
  border: none;
  font-size: 28px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 6px;
  right: -15px;
  top: -15px;
  cursor: pointer;
  /* color: #545454;  */
  transition: color 0.3s ease;
}

#search-overlay .close-search:hover {
  color: #fff; /* Secondary orange */
}

/* hamburger css for header start */
/* Base nav */
.main-navigation {
  transition: transform 0.3s ease;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.header-flex .mobile-icons {
  display: none;
}
/* hamburger css for header end */

/* hero section of homepage start */
/* Section */
.home-hero {
  padding: 40px 0;
  background-color: var(--light-bg);
  /* margin-bottom: 100px; */
  margin-bottom: 60px;
}

.hero-grid {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

/* Left */
.hero-grid .hero-left {
  max-width: calc(40% - 15px);
  flex: 0 0 calc(40% - 15px);
}

.hero-grid .hero-logo img {
  width: 384px;
}

.hero-grid .hero-title p {
  color: var(--title-color);
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
  margin: 30px 0 50px;
}

.hero-grid .hero-title em {
  font-style: italic;
  color: var(--title-color);
}

.hero-grid .hero-text {
  color: var(--black-color);
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 400;
}

.hero-grid .btn.btn-primary {
  display: inline-block;
  background: var(--white-color);
  color: var(--secondary-color);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  transition: all 0.3s ease;
}

.hero-grid .btn.btn-primary:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

/* Right slider card */
.hero-grid .hero-right {
  max-width: calc(60% - 15px);
  flex: 0 0 calc(60% - 15px);
  position: relative;
}
.hero-grid .hero-right .hero-slider {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.hero-grid .hero-right .hero-slide img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Slick controls styled like figma (bottom-right round buttons) */

.hero-right .slick-prev,
.hero-right .slick-next {
  position: absolute;
  bottom: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-right .slick-prev:hover,
.hero-right .slick-next:hover {
  background: var(--white-color);
  border-color: var(--white-color);
}

.hero-right .slick-prev {
  right: 66px;
}

.hero-right .slick-next {
  right: 22px;
}

.hero-right .slick-prev img,
.hero-right .slick-next img {
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

.hero-right .slick-next img {
  transform: rotate(180deg);
}

.hero-right .slick-prev:hover img,
.hero-right .slick-next:hover img {
  filter: invert(1);
}

.hero-slider {
  visibility: hidden; /* hide until init */
}

.hero-slider.slick-initialized {
  visibility: visible;
}

.hero-slider .hero-slide {
  display: none;
}

.hero-slider.slick-initialized .hero-slide {
  display: block;
}
/* hero section of homepage end */

/* our story section on homepage start */
.our-story{
  margin-bottom: 60px;
  /* margin-bottom: 100px; */
}
.our-story-wrapper {
  padding: 50px 60px 34px 60px;
  background-color: var(--light-bg);
  border-radius: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.our-story-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 260px;
  height: 260px;
  background-image: url(https://staging.lightsnbeyond.com/wp-content/uploads/2025/11/our-story-back-image.svg);
  z-index: -1;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.our-story-label-div span {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 7px;
  display: block;
}
.our-story-content {
  display: flex;
  align-items: flex-start;
  column-gap: 30px;
}
.our-story-content .our-story-title {
  max-width: calc(45% - 15px);
  flex: 0 0 calc(45% - 15px);
}
.our-story-title .our-story-heading {
  font-size: 42px;
  /* font-size: 48px; */
  font-weight: 400;
  line-height: 1;
  color: var(--title-color);
  margin-bottom: 16px;
}
.our-story-text {
  max-width: 590px;
  flex: 1;
  margin-bottom: 16px;
}
.our-story-text .our-story-description {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 24px;
}
/* our story section on homepage end */

/* featured section start */
section.featured-collection {
  margin-bottom: 60px;
  /* margin-bottom: 100px; */
}
.featured-collection-wrapper {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.featured-collection-wrapper .featured-collection-image {
  max-width: calc(70% - 20px);
  flex: 0 0 calc(70% - 20px);
}
.featured-collection-wrapper .featured-collection-image img {
  width: 100%;
  object-fit: cover;
}
.featured-collection-wrapper .featured-collection-content {
  flex: 1;
}
.featured-collection-content .featured-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}
.featured-collection-content .featured-heading {
  font-size: 42px;
  /* font-size: 46px; */
  font-weight: 400;
  line-height: 1;
  color: var(--title-color);
  margin-bottom: 30px;
}
.featured-collection-content .featured-description {
  font-size: 18px;
  font-weight: 400;
}
.featured-collection-content .featured-btn {
  margin-top: 48px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}
.featured-collection-content .featured-btn:hover {
  background-color: var(--white-color);
  color: var(--black-color);
  border-color: var(--black-color);
}
/* featured section end */

/* crafted by hand section start */
section.crafted-by-hand {
  margin-bottom: 60px;
  /* margin-bottom: 100px; */
}
.crafted-by-hand-wrapper {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.crafted-by-hand-wrapper .crafted-heading-col {
  max-width: calc(33.33% - 20px);
  flex: 0 0 calc(33.33% - 20px);
}
.crafted-by-hand-wrapper .crafted-heading {
  font-size: 42px;
  /* font-size: 48px; */
  font-weight: 400;
  line-height: 1;
  color: var(--title-color);
}
.crafted-by-hand-wrapper .crafted-image-col {
  max-width: calc(33.33% - 20px);
  flex: 0 0 calc(33.33% - 20px);
}
.crafted-image-wrapper {
  position: relative;
}
.crafted-image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.crafted-image-text p {
  position: absolute;
  bottom: 20px;
  left: 40px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  font-style: italic;
  font-family: emoji;
}
.crafted-by-hand-wrapper .crafted-text-col {
  flex: 1;
}
.crafted-by-hand-wrapper .crafted-text {
  font-size: 18px;
  font-weight: 400;
}
/* crafted by hand section end */

/* set us apart section start*/
section.set-us-apart {
  margin-bottom: 40px;
  /* margin-bottom: 80px; */
}
.set-us-apart-wrapper .set-us-apart-heading {
  font-size: 42px;
  /* font-size: 48px; */
  font-weight: 400;
  line-height: 1;
  color: var(--title-color);
  margin-bottom: 30px;
}
.set-us-apart-boxes {
  display: flex;
  align-items: stretch;
  column-gap: 24px;
}
.set-us-apart-boxes .set-us-apart-box {
  max-width: calc(25% - 12px);
  flex: 1;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--light-blue-bg);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.set-us-apart-boxes .set-us-apart-box .box-image {
  margin-left: auto;
}
.set-us-apart-box .box-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 12px;
  display: block;
  /* max-width: 170px; */
}
.set-us-apart-box .box-text {
  font-size: 18px;
  font-weight: 400;
  max-width: 240px;
}
/* set us apart section end */

/* categories section start */
section.product-categories-grid {
  /* margin-bottom: 80px; */
  margin-bottom: 40px;
}
section.product-categories-grid .section-title {
  font-size: 42px;
  /* font-size: 48px; */
  font-weight: 400;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 30px;
  /* margin-bottom: 45px; */
}
.categories-wrapper {
  display: flex;
  align-items: stretch;
  column-gap: 24px;
}
.categories-wrapper .category-box {
  max-width: calc(25% - 12px);
  flex: 1;
  position: relative;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.categories-wrapper .category-box a.category-box-overlay {
  display: block;
  height: 100%;
}
.categories-wrapper .category-box img {
  height: 435px;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
}
.categories-wrapper .category-box a.category-box-overlay::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    overflow: hidden;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.31%, #000000 100%); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.categories-wrapper .category-box .categories-heading {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-color);
  font-size: 21px;
  font-weight: 700;
}
.category-box.discover-box {
  padding: 30px;
  background-color: var(--title-color);
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.category-box.discover-box .category-discover-heading {
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  color: var(--white-color);
  margin-bottom: 20px;
}
.category-discover-content .category-discover-description {
  font-size: 18px;
  font-weight: 400;
}
.category-box.discover-box .category-discover-content .btn {
  display: inline-block;
  margin-top: 26px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
  transition: all 0.3s ease;
}
.category-box.discover-box .category-discover-content .btn:hover {
  background-color: var(--white-color);
  color: var(--black-color);
  border-color: var(--black-color);
}
.categories-wrapper .category-box.discover-box::before {
  display: none;
}
/* categories section end */

/* ================== PRODUCTS SECTION ================== */
.home-products {
  /* margin-bottom: 100px; */
  margin-bottom: 60px;
}

/* Header with tabs */
.home-products .hp-head {
  text-align: center;
  margin-bottom: 30px;
  /* margin-bottom: 50px; */
}

.home-products .hp-title {
  margin: 0;
  display: inline-flex;
  position: relative;
}

.home-products .hp-tab {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0 0 6px 0;
  margin: 0;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  margin: 0 13px;
}

.home-products .hp-tab:hover {
  color: #666;
}

.home-products .hp-tab.active {
  color: var(--primary-color);
  font-weight: 600;
}

.home-products .hp-tab.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--secondary-color);
}

/* Panels */
.home-products .hp-panels {
  margin-bottom: 30px;
}

.home-products .hp-panel {
  display: block;
}

/* Product Grid using Flexbox */
.home-products .lb-grid {
  display: flex;
  align-items: stretch;
  column-gap: 24px;
  margin: 0 auto;
}

/* Product Cards */
.home-products .lb-card {
  background: #fff;
  text-align: center;
  transition: transform 0.3s ease;
  max-width: calc(25% - 12px);
  flex: 1 1 calc(25% - 12px);
  margin-bottom: 20px;
}

.home-products .lb-card:hover {
  transform: translateY(-5px);
}

.home-products .lb-card-thumb {
  /* display: block; */
  display: inline-table;
  margin-bottom: 0;
  aspect-ratio: 1;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
}

.home-products .lb-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-products .lb-card:hover .lb-card-thumb img {
  transform: scale(1.05);
}

.home-products .lb-card-meta {
  padding: 14px 0 0 0;
  text-align: start;
}

.home-products .lb-card-cat {
  color: #b5b5b5;
  margin-bottom: 5px;
}
.home-products .lb-card-cat a {
  color: #b5b5b5;
  font-size: 18px;
  font-weight: 400;
}
.home-products .lb-card-cat a:hover {
  color: #666;
}
.home-products .lb-card-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}
.home-products .lb-card-title:hover {
  color: #666;
}
.home-products .lb-card-price {
  font-size: 18px;
  color: var(--black-color);
  font-weight: 600;

      display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.home-products .lb-card-price .price-regular{
  text-decoration: line-through;
    color: #838181;
    font-weight: 500;
    margin-right: 7px;
    font-size: 16px;
}
.home-products .lb-card-price .price-sale{
      font-size: 16px;
    color: var(--black-color);
    font-weight: 700;
}
.home-products .lb-card-price .lb-sale-pill{
      font-size: 14px;
    padding: 3px 8px;
    border: 1px solid #000;
    border-radius: 50px;
    margin-left: 10px;
}

/* CTA Button */
.home-products .hp-cta {
  text-align: center;
  margin-top: 40px;
}

/* product listing page */
.page-hero-wrapper {
  min-height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.page-hero-wrapper h1.page-hero__title {
  color: var(--title-color);
  /* font-size: 60px; */
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
  display: block;
  padding: 100px 0;
  /* padding: 120px 0; */
}
.page-hero-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 190px;
  height: 190px; */
  width: 170px;
  height: 170px;
  background-image: url(https://staging.lightsnbeyond.com/wp-content/uploads/2025/10/our-story-back-image.svg);
  z-index: -1;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
}
.shop-head .shop-subtitle {
  font-size: 42px;
  /* font-size: 48px; */
  font-weight: 400;
  line-height: 1;
  color: #303633;
  padding: 50px 0;
  /* padding: 70px 0; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-products.shop-grid .lb-grid {
  column-gap: 16px;
  row-gap: 20px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
form.shop-controls {
  display: flex;
  align-items: center;
  padding: 20px 0 10px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--black-color);
  border-bottom: 1px solid var(--black-color);
}
form.shop-controls .control {
  margin-bottom: 10px;
}
form.shop-controls .control:not(:last-child) {
  margin-right: 40px;
}
.control label {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  color: #c3c3c3;
  margin-right: 10px;
}
form.shop-controls select {
  border: 0;
  outline: 0;
  font-size: 14px;
  text-transform: capitalize;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 500;
  background-color: transparent;
  color: #545454;
}
.lb-load-more-wrap {
  margin-top: 40px;
  /* margin-top: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
button {
  transition: all 0.3s ease;
}
button.btn {
  font-family: 'Red Hat Display', sans-serif;
  cursor: pointer;
}

/* single product page section start */
.single-product .page-hero-wrapper h1.page-hero__title {
  font-size: var(--fs-hero);
}

.single-product .product-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 40px;
  margin: 60px 0 0;
  /* margin: 80px 0 0; */
}
.single-product .product-wrapper .product-gallery {
  flex: 1 1 55%;
  max-width: 55%;
}

.single-product .product-wrapper .product-info {
  flex: 1 1 40%;
  max-width: 40%;
  font-family: 'Red Hat Display', sans-serif;
}
.single-product .product-wrapper .product-main-slider {
  width: 100%;
  /* height: 500px; */
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  /* border: 1px solid #000000; */
}

.single-product .product-wrapper .product-main-slider img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: scale-down;
}

.single-product .product-thumb-slider {
  display: flex;
  gap: 15px;
}
.single-product .product-thumb-slider .slick-track {
  display: flex;
  align-items: center;
  gap: 18px;
}
.single-product .product-thumb-slider img {
  width: 100%;
  height: 180px;
  border-radius: 20px;
  object-fit: cover;
  background: #fff;
  cursor: pointer;
  transition: transform 0.3s;
}

.single-product .product-thumb-slider img:hover {
  transform: scale(1.05);
}

.single-product .product-info .product-category {
  font-size: var(--fs-title-md);
  line-height: 27px;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 13px;
}
.single-product .product-info .product-title {
  font-size: var(--fs-title-lg);
  line-height: 36px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.single-product .product-info .product-description{
  margin-bottom: 20px;
}

.single-product .product-info .product-short-desc {
  font-size: var(--fs-text-md);
  line-height: 27px;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 24px;
}
.single-product .product-info .product-price .price {
  font-size: 20px;
  color: var(--black-color);
  font-weight: 700;
  margin-bottom: 10px;
}
.single-product .product-info .product-price .tax-note {
  font-size: var(--fs-text-sm);
  color: #b5b5b5;
  font-weight: 500;
  margin-bottom: 20px;
}
.single-product .product-info .product-code {
  /* font-size: var(--fs-title-md); */
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 20px;
}
.single-product .product-thumb-slider .slick-active {
    border: 1px solid var(--black-color);
    border-radius: 20px;
}
.single-product .product-thumb-slider .slick-current.slick-active {
    border-color: var(--secondary-color);
}
/* Product Variations */
.single-product .product-variations {
  margin-bottom: 32px;
}

.single-product .product-variations .variation-title {
  font-size: var(--fs-title-md);
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.single-product .product-variations .size-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.single-product .product-variations .size-option {
  position: relative;
  cursor: pointer;
  display: block;
}

.single-product .product-variations .size-option input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.single-product .product-variations .size-option .size-text {
  display: block;
  padding: 10px 20px;
  border: 1px solid #000000;
  border-radius: 8px;
  font-size: var(--fs-text-md);
  font-weight: 500;
  color: #000000;
  transition: all 0.3s ease;
  min-width: 80px;
  text-align: center;
}

.single-product .product-variations .size-option:hover .size-text {
  border-color: #bbb;
}

.single-product .product-variations .size-option input[type='radio']:checked + .size-text {
  border-color: #000;
  background-color: #000;
  color: #fff;
}

/* Product Quantity */
.single-product .product-quantity {
  margin-bottom: 30px;
}

.single-product .product-quantity .quantity-label {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.single-product .product-quantity .quantity-wrapper {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--black-color);
  border-radius: 8px;
  overflow: hidden;
  height: 42px;
}

.single-product .product-quantity .qty-btn {
  width: 35px;
  height: -webkit-fill-available;
  border: none;
  background: #fff;
  font-size: var(--fs-text-md);
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product .product-quantity .input-text.qty {
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  font-size: var(--fs-text-md);
  font-weight: 500;
  text-align: center;
  color: #000;
  padding: 5px;
}

.single-product .product-quantity .input-text.qty::-webkit-outer-spin-button,
.single-product .product-quantity .input-text.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.single-product .product-quantity .input-text.qty[type='number'] {
  -moz-appearance: none;
}
.single-product .product-quantity .input-text.qty:focus {
  outline: none;
}

/* Cart Actions */
.single-product .cart-actions {
  display: flex;
  gap: 16px;
}

.single-product .cart-actions button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
}

.single-product .cart-actions .single_add_to_cart_button {
  background-color: #000000 !important;
  border: 1px solid #000000 !important;
}

.single-product .cart-actions .single_add_to_cart_button:hover {
  background-color: var(--white-color) !important;
  color: var(--black-color) !important;
  border-color: var(--black-color) !important;
}

.single-product .cart-actions .buy-now-btn {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.single-product .cart-actions .buy-now-btn:hover {
  background: var(--white-color);
  color: var(--black-color);
  border-color: var(--black-color);
}

/* Payment Section */
.single-product .payment-section .checkout-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 10px;
}

.single-product .payment-section .payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.single-product .payment-section .payment-icons img {
  width: auto;
  height: 55px;
  object-fit: scale-down;
}

/* Related Products */
.single-product .related-products-custom {
  margin: 60px 0 40px 0;
}
.single-product .related-products-custom .home-products {
  border-top: 1px solid var(--black-color);
  padding: 40px 0 0 0;
  /* padding: 40px 0 10px 0; */
  margin-bottom: 0;
  /* margin-bottom: 60px; */
}
.single-product .related-products-custom .home-products .section-title {
  font-size: 22px;
  line-height: 22.1px;
  color: #303633;
  text-align: center;
  margin-bottom: 30px;
  /* margin-bottom: 60px; */
  text-transform: uppercase;
}
.single-product .related-products-custom .view-all-products {
  text-align: center;
  margin-top: 40px;
}
.woocommerce div.product form.cart .button {
  font-family: 'Red Hat Display', sans-serif;
}

.product-price .price-wrapper{
    display: flex;
    flex-wrap: wrap;
}
.product-price span {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 10px;
}
.product-price span.regular-price{
    text-decoration: line-through;
    color: #838181;
    font-weight: 500;
    margin-right: 12px;
}
.product-price span.discount-badge{
      font-size: 13px;
    font-weight: 400;
    padding: 3px 10px;
    border: 1px solid #000;
    border-radius: 50px;
    margin-left: 20px;
    display: inline-block;
}
.stock-urgency{
      color: red;
    font-weight: 600;
    margin-bottom: 12px;
}
.stock-urgency svg{
  margin-right: 4px;
}

/* single product page section end */

/* contact css start */
.contact-section{
  margin: 60px 0;
  /* margin: 100px 0; */
}
.contact-page-row .store-info .store-title{
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 7px;
  display: block;
}
.contact-section .contact-page-row{
  display: flex;
  align-items: stretch;
  column-gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-page-row .contact-left {
  max-width: calc(40% - 20px);
  flex: 0 0 calc(40% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 10px;
}
.contact-page-row .contact-right {
  max-width: calc(60% - 20px);
  flex: 0 0 calc(60% - 20px);
  padding-left: 10px;
}
.contact-page-row .store-info .store-address {
  font-size: 30px;
  color: #303633;
  font-weight: 400;
  max-width: 390px;
}
.write_info_wrapper .write-label span{
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 7px;
  display: block;
}
.write_info_wrapper .store-email{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.write_info_wrapper .store-email img{
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.write_info_wrapper .store-email a{
  font-size: 30px;
  font-weight: 600;
  color: #303633;
}
.contact-page-row .contact-right .contact-form-title{
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 7px;
  display: block;
}
.contact-form-wrapper .contact-form-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
  width: 100%;
}
.contact-form-wrapper .contact-form-row .contact-form-col{
  max-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
  margin-bottom: 20px;
}
.contact-form-wrapper .contact-form-row input{
  width: 100%;
  padding: 12px 16px;
  /* padding: 20px 30px; */
  background-color: #F2E6DB;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #848484;
  outline: none;
  font-family: 'Red Hat Display', sans-serif;
}
.contact-form-wrapper .contact-form-row input::placeholder{
  color: #848484;
  font-family: 'Red Hat Display', sans-serif;
}
.contact-form-wrapper .contact-form-row textarea{
  width: 100%;
  padding: 12px 16px;
  /* padding: 20px 30px; */
  background-color: #F2E6DB;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #848484;
  outline: none;
  min-height: 150px;
  resize: vertical;
  font-family: 'Red Hat Display', sans-serif;
  max-height: 30px;
}
.contact-form-wrapper .contact-form-row textarea::placeholder{
  color: #848484;
  font-family: 'Red Hat Display', sans-serif;
}
.contact-form-wrapper .contact-form-row label, .contact-form-wrapper .contact-form-row span{
  display: block;
}
.contact-form-wrapper .contact-form-row .contact-textarea-col{
  max-width: 100%;
  flex: 0 0 100%;
}
.contact-form-wrapper .contact-form-submit-button input{
  width: auto;
}
.contact-form-wrapper .contact-form-submit-button .wpcf7-submit{
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--secondary-color);
  font-weight: 500;
  font-size: 16px;
  outline: 0;
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-form-wrapper .contact-form-submit-button .wpcf7-submit:hover{
  background-color: var(--white-color);
  color: var(--black-color);
  border-color: var(--black-color);
}
.contact-form-wrapper .contact-form-submit-button span{
  display: inline-block;
}
.contact-section-products .section-title{
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
  /* margin-bottom: 50px; */
}

.in-store-section{
  margin-bottom: 30px;
}
.in-store-grid {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}
.in-store-grid .in-store-box {
  padding: 0 10px;
  flex: 1;
  display: flex;
  align-items: center;
  column-gap: 7px;
}
.in-store-grid .in-store-box-image img{
  height: 20px;
  margin-bottom: -2px;
}
.in-store-grid .in-store-box-text p{
  font-size: 26px;
  font-weight: 400;
  color: #303633;
}

.enquires-section {
  background-color: var(--secondary-color);
  padding: 40px 0;
}
.enquires-section .enquires-row {
    display: flex;
    align-items: stretch;
    margin: 0 -10px;
    flex-wrap: wrap;
}
.enquires-section .enquires-box {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    padding: 0 10px;
}
.enquires-section span.enquires-title {
    font-size: 22px;
    color: var(--white-color);
    font-weight: 300;
    margin-bottom: 3px;
    display: block;
}
.enquires-section .enquires-content {
    display: flex;
    align-items: center;
}
.enquires-section .enquires-icon img {
    height: 30px;
    margin-right: 10px;
}
.enquires-section .enquires-info-wrapper p {
    font-size: 30px;
    color: var(--white-color);
    font-weight: 800;
}
.map-container{
  margin-bottom: 60px;
  /* margin-bottom: 100px; */
}
.map-container iframe{
  width: 100%;
}
/* contact css end */

/* privacy policy start */
.policy-content{
  margin: 60px 0;
  /* margin: 100px 0; */
}
.policy-content h2, .policy-content h3, .policy-content h4, .policy-content h5, .policy-content h6{
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 20px;
}
.policy-content h2{
  font-size: 28px;
}
.policy-content h3{
  font-size: 24px;
}
.policy-content h4{
  font-size: 20px;
}
.policy-content h5{
  font-size: 18px;
}
.policy-content h6{
  font-size: 16px;
}
.policy-content p{
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
}
.policy-content ul{
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc;
}
.policy-content ul li{
  font-size: 18px;
  font-weight: 400;
  color: var(--black-color);
}
.policy-content a{
  color: var(--secondary-color);
  font-weight: bold;
  text-decoration: underline;
  font-size: 16px;
}
.policy-content a:hover{
  color: #666;
}
/* privacy policy end */

/* faq page start */
.faq-section{
  /* margin: 100px 0; */
  margin: 60px 0;
}
.faq-question{
  background-color: #F2E6DB;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.faq-question::after{
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(https://staging.lightsnbeyond.com/wp-content/uploads/2025/10/plus-icon.svg);
  width: 14px;
  height: 14px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  transition: all 0.3s ease;
}
.faq-question.active::after{
  background-image: url(https://staging.lightsnbeyond.com/wp-content/uploads/2025/10/minus-icon.svg);
}
.faq-answer {
  padding: 20px 20px 10px 20px;
  font-size: 17px;
}
.faq-item + .faq-item{
  margin-top: 10px;
}
.login-section {
  margin: 100px 0;
}
.login-form{
  /* max-width: 750px; */
  max-width: 570px;
  margin: 0 auto;
}
.form_wrapper input{
  width: 100%;
  padding: 12px 16px;
  background-color: #F2E6DB;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #848484;
  outline: none;
  font-family: 'Red Hat Display', sans-serif;
  /* margin-bottom: 24px; */
}
.form_wrapper input::placeholder{
  color: #848484;
  font-family: 'Red Hat Display', sans-serif;
}
.form_wrapper input:last-child{
  margin-bottom: 0;
}
.form_wrapper .input-group{
  margin-bottom: 24px;
}
form.login-form .links a{
  color: var(--black-color);
  position: relative;
  font-size: 16px;
}
form.login-form .links a::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  transition: all 0.3s ease;
}
form.login-form .links a:hover::after{
  width: 0;
  right: 0;
  left: auto;
}
form.login-form .links a:hover{
  color: #666;
}
form .links{
  margin-top: 24px;
}
.login-section p.error{
  text-align: center;
  color: red;
  width: 100%;
  background-color: #ffd0d0;
  padding: 10px;
  border-radius: 7px;
  max-width: 570px;
  margin: 0 auto 30px auto;
  font-weight: 700;
}
.login-section p.success{
  text-align: center;
  color: green;
  width: 100%;
  background-color: rgb(187 239 187);
  padding: 10px;
  border-radius: 7px;
  max-width: 570px;
  margin: 0 auto 30px auto;
  font-weight: 700;
}
.signin_wrapper{
  margin-top: 50px;
  display: flex;
  align-items: center;
}
.signin_wrapper .submit_btn{
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--secondary-color);
  font-weight: 500;
  font-size: 16px;
  outline: 0;
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
  transition: all 0.3s ease;
  cursor: pointer;
}
.signin_wrapper .submit_btn:hover{
  background-color: var(--white-color);
  color: var(--black-color);
  border-color: var(--black-color);
}
.signin_wrapper .create_wrapper{
  margin-left: 30px;
}
.signin_wrapper .create_wrapper .account_text{
  font-size: 16px;
  color: #848484;
}
.signin_wrapper .create_wrapper a{
  color: var(--black-color);
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.signin_wrapper .create_wrapper a::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  transition: all 0.3s ease;
}
.signin_wrapper .create_wrapper a:hover::after{
  width: 0;
  right: 0;
  left: auto;
}
.signin_wrapper .create_wrapper a:hover{
  color: #666;
}
/* faq page end */

/* my account page start */
.my-account-section{
  margin: 100px 0;
}
.account-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.account-col {
  max-width: calc(50% - 20px);
  flex: 0 0 calc(50% - 20px);
}
.my-account-section h2.order-history-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 7px;
    display: block;
}
.my-account-section h2.account-details-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 7px;
    display: block;
}
.my-account-section h3.account-title-address {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 7px;
    display: block;
    margin-top: 50px;
}
.my-account-section .account-orders p{
  font-size: 30px;
  color: #303633;
  font-weight: 400;
}
.my-account-section .account-details .account-field{
    font-size: 26px;
    font-weight: 400;
    color: #303633;
}
.my-account-section .account-details .saved-address{
    font-size: 26px;
    font-weight: 400;
    color: #303633;
    font-style: normal;
    margin-bottom: 28px;
    max-width: 400px;
}
.my-account-section #add-new-address-btn{
  border: 0;
  background: none;
  outline: none;
  color: var(--black-color);
  position: relative;
  font-size: 16px;
  cursor: pointer;
}
.my-account-section #add-new-address-btn::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  transition: all 0.3s ease;
}
.my-account-section #add-new-address-btn:hover::after{
  width: 0;
  right: 0;
  left: auto;
}
form#save-address-form input {
  width: 100%;
  padding: 12px 16px;
  background-color: #F2E6DB;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  outline: none;
  font-family: 'Red Hat Display', sans-serif;
  margin-top: 7px;
  margin-bottom: 20px;
}
form#save-address-form input::placeholder{
  color: #848484;
  font-family: 'Red Hat Display', sans-serif;
}
form#save-address-form #save-address{
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--secondary-color);
  font-weight: 500;
  font-size: 16px;
  outline: 0;
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}
form#save-address-form #save-address:hover{
  background-color: var(--white-color);
  color: var(--black-color);
  border-color: var(--black-color);
}
/* my account page end */

/* our story page design start */
/* Top Header Block */
.ourstory-header-container{
  margin: 60px 0;
  /* margin: 100px 0; */
}
.ourstory-section .ourstory-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
  /* margin-bottom: 50px; */
}

.ourstory-section .ourstory-header-left h2 {
  font-size: 42px;
  /* font-size: 48px; */
  font-weight: 400;
  line-height: 1;
  /* color: var(--title-color); */
  color: var(--primary-color);
  margin: 0;
}

.ourstory-section .ourstory-header-right p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  margin: 0;
}

.ourstory-section .ourstory-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Bottom Features Block */
.ourstory-section .ourstory-features {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 60px;
  /* margin-bottom: 100px; */
}

.ourstory-section .ourstory-features-left h2 {
  font-size: 42px;
  /* font-size: 48px; */
  font-weight: 400;
  line-height: 1;
  color: var(--primary-color);
  margin: 0;
}

.ourstory-section .ourstory-features-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ourstory-section .ourstory-feature-item h4 {
  font-size: 30px;
  /* font-size: 35px; */
  font-weight: 400;
  color: #e85c2c;
  margin-bottom: 15px;
}

.ourstory-section .ourstory-feature-item p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  margin: 0;
}
.ourstory-section .set-us-apart-boxes .set-us-apart-box {
  background-color: var(--light-bg);
}

.ssk-section-container{
  margin-bottom: 60px;
  /* margin-bottom: 100px; */
}

/* Heading */
.ourstory-section .ssk-section .ssk-heading {
  font-size: 42px;
  /* font-size: 48px; */
  font-weight: 400;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* Grid layout */
.ourstory-section .ssk-section .ssk-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 40px;
  align-items: flex-start;
}

/* Image */
.ourstory-section .ssk-section .ssk-image {
  display: flex;
  align-items: center;
  width: 100%;
}
.ourstory-section .ssk-section .ssk-image img {
  width: 100%;
  width: 400px;
  height: 320px;
  border-radius: 16px;
  display: block;
}

/* Content */
.ourstory-section .ssk-section .ssk-content {
  color: #333;
}

.ourstory-section .ssk-section .ssk-subtitle {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.ourstory-section .ssk-section .ssk-content p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
}

.ourstory-section .ssk-section .ssk-content a.btn {
  margin-top: 20px;
}
/* our story page design end */

/* password eye icon design start */
.password-field {
  position: relative;
}

.password-field input {
  width: 100%;
  padding-right: 40px;
  margin-bottom: 0;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777;
  font-size: 16px;
}

.toggle-password:hover {
  color: #000;
}
/* password eye icon design end */

/* validation css start */
.error-message {
  color: #d9534f;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.input-error {
  border-color: #d9534f !important;
}
/* validation css end */

/* my account pages design start */
.woocommerce-account .woocommerce{
  margin: 60px 0;
}
nav.woocommerce-MyAccount-navigation ul {
    border: 1px solid rgba(0,0,0,.1);
    padding: 16px 20px;
    border-radius: 5px;
}
li.woocommerce-MyAccount-navigation-link.is-active a{
  color: var(--secondary-color);
}
li.woocommerce-MyAccount-navigation-link a {
    display: block;
    font-size: 16px;
}
li.woocommerce-MyAccount-navigation-link + li.woocommerce-MyAccount-navigation-link {
    border-top: 1px solid rgba(0,0,0,.1);
    margin-top: 12px;
    padding-top: 12px;
}
.woocommerce-account .woocommerce-MyAccount-content p {
    margin-bottom: 16px;
}
.woocommerce-account .woocommerce-MyAccount-content p a {
    font-weight: 500;
    color: var(--secondary-color);
    transition: all .3s ease-in;
    position: relative;
    display: inline-block;
}
.woocommerce-account .woocommerce-MyAccount-content p a::before {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    width: 0;
    height: 1px;
    bottom: -1px;
    left: auto;
    right: 0;
    transition: all .3s ease-in;
}
.woocommerce-account .woocommerce-MyAccount-content p a:hover {
    color: var(--black-color);
}
.woocommerce-account .woocommerce-MyAccount-content p a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
    background-color: var(--black-color);
}
.woocommerce-account .woocommerce-MyAccount-content p:last-child {
    margin-bottom: 0;
}
td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions {
    display: flex;
    align-items: baseline;
    column-gap: 5px;
    flex-wrap: wrap;
    row-gap: 5px;
}
.woocommerce table.my_account_orders .button {
    white-space: nowrap;
    text-align: center;
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-weight: 400;
    padding: 7px 12px;
    border-radius: 7px;
}
.woocommerce table.my_account_orders .button:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button{
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-weight: 400;
  padding: 8px 16px;
  font-size: 15px;
  border-radius: 8px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button:hover{
  background-color: var(--white-color);
  color: var(--black-color);
  border-color: var(--black-color);
}
.woocommerce-error, .woocommerce-info, .woocommerce-message{
    font-weight: 600;
}
section.woocommerce-order-details {
    margin-top: 32px;
}
.woocommerce-order-details h2.woocommerce-order-details__title{
    margin-bottom: 16px;
}
.woocommerce-order-details .woocommerce-table--order-details .woocommerce-table__line-item .woocommerce-table__product-name a{
    font-weight: 600;
    color: var(--secondary-color);
}
.woocommerce-order-details .woocommerce-table--order-details .woocommerce-table__line-item .woocommerce-table__product-name a:hover{
    color: var(--black-color);
}
.woocommerce-customer-details .woocommerce-column__title {
    margin-bottom: 16px;
}
.woocommerce .woocommerce-customer-details address {
    padding: 12px 16px;
}
.woocommerce .woocommerce-customer-details{
  margin-bottom: 0;
}
header.woocommerce-Address-title.title {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header.woocommerce-Address-title.title a {
    font-size: 15px;
    margin-top: 7px;
    color: var(--secondary-color);
}
header.woocommerce-Address-title.title a:hover {
    color: var(--primary-color);
}
.woocommerce-address-fields button.button, .woocommerce-EditAccountForm button.button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    margin-top: 24px;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce-address-fields button.button:hover, .woocommerce-EditAccountForm button.button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce-EditAccountForm fieldset{
  padding: 10px;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register{
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 18px;
    margin: 16px 0 0 0;
}
.woocommerce-form p button.button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    margin-top: 24px;
    font-family: 'Red Hat Display', sans-serif;
    margin-right: 0 !important;
}
.woocommerce-form p button.button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input{
  width: auto;
  margin-right: 10px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span{
  line-height: 1;
}
.woocommerce-LostPassword{
  margin-top: 12px;
  margin-bottom: 10px;
}
.woocommerce-LostPassword a{
  position: relative;
}
.woocommerce-LostPassword a::before{
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    right: auto;
    transition: all .3s ease-in;

}
.woocommerce-LostPassword a:hover::before{
    width: 0;
    right: 0;
    left: auto;
    background-color: var(--secondary-color);
}
.woocommerce-ResetPassword button.button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    margin-top: 16px;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce-ResetPassword button.button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce-column--shipping-address{
  margin-top: 30px;
}
.woocommerce-order-details .woocommerce-table--order-details .button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce-order-details .woocommerce-table--order-details .button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce-column--shipping-address address a{
    position: relative;
    display: inline-block;
    /* margin-top: 7px; */
    font-weight: 500;
    color: var(--secondary-color);
}
.woocommerce-column--shipping-address address a:hover{
    color: var(--black-color);
}
.woocommerce-column--shipping-address address a::before{
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    right: auto;
    transition: all .3s ease-in;
}
.woocommerce-column--shipping-address address a:hover::before{
    width: 0;
    right: 0;
    left: auto;
    background-color: var(--black-color);
}
.woocommerce-MyAccount-content .woocommerce-info .button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce-MyAccount-content .woocommerce-info .button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
body .woocommerce-notice--success{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
    padding: 12px;
    border-radius: 7px;
    background-color: green;
    color: white;
}
/* my account pages design end */

/* cart and checkout page design start */
.woocommerce-cart .woocommerce{
  margin: 60px 0;
}
.woocommerce-cart .woocommerce .shop_table, .woocommerce-checkout .woocommerce .shop_table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}
.woocommerce-cart .woocommerce .shop_table th, .woocommerce-checkout .woocommerce .shop_table th{
    color: var(--black-color);
    font-size: 16px;
}
.woocommerce-cart .woocommerce .cart-collaterals, .woocommerce-checkout .woocommerce .cart-collaterals{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 40px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2{
  margin-bottom: 24px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout .woocommerce .cart-collaterals .cart_totals{
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout{
  padding-bottom: 0;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .button{
  margin-bottom: 0;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table th, .woocommerce-checkout .woocommerce .cart-collaterals .cart_totals table th{
    font-weight: 600;
    color: var(--black-color);
    font-size: 16px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .checkout-button, .woocommerce-checkout .woocommerce .cart-collaterals .cart_totals .checkout-button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .checkout-button:hover, .woocommerce-checkout .woocommerce .cart-collaterals .cart_totals .checkout-button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce-cart table.cart .woocommerce-cart-form__cart-item .product-remove a{
    font-size: 24px;
    color: var(--black-color);
    position: relative;
    display: inline-block;
    background: rgb(170, 0, 0, 0.22);
}
.woocommerce-cart table.cart .woocommerce-cart-form__cart-item .product-remove a:hover{
  color: #fff !important;
  background: var(--wc-red);
}
.woocommerce-cart table.cart .product-thumbnail {
  min-width: 100px;
}
.woocommerce-cart table.cart .woocommerce-cart-form__cart-item .product-thumbnail img{
    width: 100px;
    height: auto;
    object-fit: contain;
    border: 1px solid #efefef;
    border-radius: 7px;
}
.woocommerce-cart table.cart .woocommerce-cart-form__cart-item .product-name a{
    font-weight: 600;
}
.woocommerce-cart table.cart .woocommerce-cart-form__cart-item .product-price, .woocommerce-cart-form__cart-item .product-subtotal{
    font-weight: 600;
    color: var(--primary-color);
}
.woocommerce-cart table.cart .woocommerce-cart-form__cart-item .product-quantity input.qty{
    width: 60px;
    padding: 8px 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    outline: none;
}
.woocommerce-cart table.cart .woocommerce-cart-form__cart-item .product-subtotal {
    font-size: 16px;
}
.woocommerce-cart-form .actions .button{
    background-color: var(--secondary-color);
    padding: 12px 24px !important;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce-cart-form .actions .button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce-cart-form .actions .coupon {
  display: flex;
  align-items: stretch;
}
.woocommerce table.cart td.actions .input-text{
  width: 200px;
}
.woocommerce-cart-form .actions .coupon .input-text{
    width: auto;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    outline: none;
    margin-right: 10px;
}
.woocommerce-cart-form .actions .coupon .input-text::placeholder{
    color: #848484;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce-cart-form .actions .coupon .button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce-cart-form .actions .coupon .button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}

.woocommerce-checkout .woocommerce{
  margin: 60px 0;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table{
    margin-bottom: 40px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-thumbnail {
  min-width: 80px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-thumbnail img{
    width: 80px;
    height: auto;
    object-fit: contain;
    border: 1px solid #efefef;
    border-radius: 7px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name a{
    font-weight: 600;
} 
.woocommerce form.checkout_coupon {
  margin-top: 0;
  margin-bottom: 30px;
  padding: 12px 18px 6px 18px;
  display: flex;
  align-items: stretch;
}
.woocommerce form.checkout_coupon input{
    border: 1px solid #cfc8d8 !important;
    border-radius: 8px !important;
}
.woocommerce-checkout .checkout_coupon .button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
    height: 100%;
}
.woocommerce-checkout .checkout_coupon .button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce .woocommerce-form-coupon-toggle .showcoupon{
  color: var(--secondary-color);
}
.woocommerce .woocommerce-form-coupon-toggle .showcoupon:hover{
  color: var(--primary-color);
}
.woocommerce form.woocommerce-checkout .woocommerce-billing-fields h3{
  margin-bottom: 10px;
}
.woocommerce form.woocommerce-checkout .woocommerce-additional-fields h3{
  margin-bottom: 10px;
}
.woocommerce form.woocommerce-checkout #order_review_heading{
  margin-top: 30px;
}
.woocommerce form.woocommerce-checkout #order_review{
  margin-top: 20px;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment{
  background: #f2e6db;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box{
  background-color: var(--white-color);
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before{
    border: 1em solid #fff;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}
.woocommerce #place_order{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce #place_order:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce #btn-razorpay{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
    margin-top: 20px;
    margin-right: 12px;
    cursor: pointer;
}
.woocommerce #btn-razorpay:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce #btn-razorpay-cancel{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
    cursor: pointer;
    margin-top: 20px;
}
.woocommerce #btn-razorpay-cancel:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce ul.order_details li.order, .woocommerce ul.order_details li.date, .woocommerce ul.order_details li.total, .woocommerce ul.order_details li.payment_method{
    margin-bottom: 10px;
}
.woocommerce ul.order_details{
    margin-bottom: 40px;
}
.woocommerce-checkout{
  overflow-x: hidden;
}
.woocommerce .return-to-shop .button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce .return-to-shop .button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.woocommerce .woocommerce-message a.button{
    background-color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
}
.woocommerce .woocommerce-message a.button:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
/* cart and checkout page design end */

.error-404{
  margin: 60px 0;
}
.error-404 h1.page-title{
  margin-bottom: 10px;
}
.error-404 .back-home-btn{
    background-color: var(--secondary-color);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
    margin-top: 30px;
    margin-bottom: 30px;
}
.error-404 .back-home-btn:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}
.error-404 ul{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 15px;
  flex-wrap: wrap;
}
.error-404 ul li a{
  background-color: var(--secondary-color);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    outline: 0;
    font-family: 'Red Hat Display', sans-serif;
    margin-top: 30px;
}
.error-404 ul li a:hover{
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}

.product-thumb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* margin-top: 15px; */
  justify-content: center;
}

.product-thumb-grid .thumb-item {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  padding: 2px;
  max-width: 140px;
}

.product-thumb-grid .thumb-item.active {
  border-color: #F38020; /* Highlight color for active thumb */
}

.product-thumb-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.delivery-time {
  margin-bottom: 1em;
  font-size: 14px;
  font-weight: 700;
}

.woocommerce div.product form.cart {
  margin-bottom: 1.5em;
}

li.wc_payment_method {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  flex-wrap: wrap;
}

.wc_payment_method input.input-radio{
  flex: 0 0 auto;
}

.wc_payment_method label {
    flex: 0 0 auto;
    line-height: 1;
}

.wc_payment_method .payment_box {
  flex: 0 0 100%;
}

/* Hide default radio */
.input-radio[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #f38020;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    outline: none;
    padding: 0px;
}

.product-gallery {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.product-thumb-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100px;
  flex-shrink: 0;
}

.product-thumb-grid .thumb-item {
  width: 100px;
  height: 100px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-thumb-grid .thumb-item:hover,
.product-thumb-grid .thumb-item.active {
  border-color: #f38020;
}

.product-thumb-grid .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-main-slider {
  flex: 1;
  max-width: calc(100% - 115px);
}

.product-main-slider .slick-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Inner dot when checked */
.input-radio[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #f38020;
    border-radius: 50%;
}

.header-icons-box {
  display: flex;
  gap: 25px;
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* responsive css start */

@media (max-width: 1299px) {
  .hero-grid .hero-logo img {
    width: 340px;
  }

  .hero-grid .hero-title p {
    font-size: 52px;
    margin: 20px 0 40px;
  }

  .our-story-wrapper {
    padding: 40px 40px 24px 40px;
  }

  .featured-collection-wrapper .featured-collection-image {
    max-width: calc(65% - 20px);
    flex: 0 0 calc(65% - 20px);
  }

  .crafted-by-hand-wrapper .crafted-heading {
    font-size: 44px;
  }
  .page-hero-wrapper h1.page-hero__title {
    font-size: 52px;
    padding: 100px 0;
  }
}

@media (max-width: 1199px) {
  nav.main-navigation ul#menu-main-menu li a {
    padding: 30px 24px;
  }

  /* .header-flex a.custom-logo-link img{
    width: 220px;
    object-fit: scale-down;
  } */

  .header-flex .header-icons{
    padding-left: 15px;
  }

  .footer-middle-content .footer-contact .footer-email a {
    font-size: 18px;
  }

  .footer-middle-content .footer-contact .footer-phone li a {
    font-size: 18px;
  }

  .footer-grid,
  .footer-extra .footer-extra-grid {
    column-gap: 20px;
  }

  .footer-grid .footer-brand {
    max-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
  }

  .footer-grid .footer-middle-content {
    max-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
  }

  .footer-extra .footer-brands {
    max-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
  }

  .footer-extra .footer-office-social {
    max-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
  }

  /* .home-hero {
    margin-bottom: 80px;
  } */

  .hero-grid {
    column-gap: 20px;
  }

  .hero-grid .hero-left {
    max-width: calc(45% - 10px);
    flex: 0 0 calc(45% - 10px);
  }

  .hero-grid .hero-right {
    max-width: calc(55% - 10px);
    flex: 0 0 calc(55% - 10px);
  }

  .hero-grid .hero-right .hero-slide img {
    height: auto;
  }

  /* .our-story {
    margin-bottom: 80px;
  } */

  .our-story-wrapper {
    padding: 30px 30px 14px 30px;
  }

  .our-story-content .our-story-title {
    max-width: calc(40% - 10px);
    flex: 0 0 calc(40% - 10px);
  }

  .our-story-title .our-story-heading {
    font-size: 32px;
  }

  .our-story-text .our-story-description {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .our-story-wrapper::before {
    right: -40px;
    width: 260px;
    height: 200px;
  }

  /* section.featured-collection {
    margin-bottom: 80px;
  } */

  .featured-collection-wrapper {
    column-gap: 30px;
  }

  .featured-collection-wrapper .featured-collection-image {
    max-width: calc(65% - 15px);
    flex: 0 0 calc(65% - 15px);
  }

  .featured-collection-content .featured-label {
    margin-bottom: 10px;
  }

  .featured-collection-content .featured-heading {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .featured-collection-content .featured-btn {
    margin-top: 24px;
  }

  /* section.crafted-by-hand {
    margin-bottom: 80px;
  } */

  .crafted-by-hand-wrapper {
    column-gap: 20px;
  }

  .crafted-by-hand-wrapper .crafted-heading-col {
    max-width: calc(33.33% - 10px);

    flex: 0 0 calc(33.33% - 10px);
  }

  .crafted-by-hand-wrapper .crafted-heading {
    font-size: 36px;
  }

  .crafted-by-hand-wrapper .crafted-image-col {
    max-width: calc(33.33% - 10px);

    flex: 0 0 calc(33.33% - 10px);
  }

  .crafted-image-text p {
    bottom: 18px;

    left: 34px;

    font-size: 18px;
  }

  /* section.set-us-apart {
    margin-bottom: 60px;
  } */

  .set-us-apart-wrapper .set-us-apart-heading {
    font-size: 40px;

    margin-bottom: 30px;
  }

  .set-us-apart-boxes {
    display: flex;

    align-items: stretch;

    column-gap: 20px;
  }

  .set-us-apart-boxes .set-us-apart-box {
    max-width: calc(25% - 10px);
  }

  .set-us-apart-box .box-title {
    font-size: 20px;

    /* max-width: 142px; */
  }

  .set-us-apart-box .box-text {
    font-size: 16px;

    max-width: 216px;
  }

  /* section.product-categories-grid {
    margin-bottom: 60px;
  } */

  section.product-categories-grid .section-title {
    font-size: 40px;

    margin-bottom: 30px;
  }

  .categories-wrapper {
    column-gap: 20px;
  }

  .categories-wrapper .category-box {
    max-width: calc(25% - 10px);
  }

  .categories-wrapper .category-box img {
    height: 375px;
  }

  .categories-wrapper .category-box .categories-heading {
    font-size: 24px;
  }

  .category-box.discover-box {
    padding: 20px;
  }

  .category-box.discover-box .category-discover-heading {
    font-size: 30px;
  }

  .category-box.discover-box .category-discover-content .btn {
    padding: 10px 12px;
  }

  /* .home-products {
    margin-bottom: 80px;
  } */

  /* .home-products .hp-head {
    margin-bottom: 40px;
  } */

  .home-products .hp-tab {
    font-size: 18px;
  }

  .home-products .hp-panels {
    margin-bottom: 20px;
  }

  .home-products .lb-grid {
    column-gap: 20px;
  }

  .home-products .lb-card {
    max-width: calc(25% - 10px);

    flex: 1 1 calc(25% - 10px);
  }

  .home-products .lb-card-cat a {
    font-size: 17px;
  }

  .home-products .lb-card-title {
    font-size: 18px;
  }

  .home-products .lb-card-price {
    font-size: 16px;
  }
  .shop-head .shop-subtitle {
    font-size: 40px;
    /* padding: 60px 0; */
  }
  /* .lb-load-more-wrap {
    margin-top: 50px;
  } */
  .home-products.shop-grid .lb-grid {
    column-gap: 12px;
    row-gap: 12px;
  }
  /* .contact-section{
    margin: 80px 0;
  } */
  .contact-page-row .store-info .store-address{
    font-size: 24px;
  }
  .write_info_wrapper .store-email a{
    font-size: 24px;
  }
  .in-store-grid .in-store-box-text p{
    font-size: 24px;
  }
  .enquires-section span.enquires-title{
    font-size: 20px;
  }
  .enquires-section .enquires-icon img {
    height: 24px;
  }
  .enquires-section .enquires-info-wrapper p {
    font-size: 26px;
  }
  /* .map-container{
    margin-bottom: 80px;
  } */
  /* .policy-content{
    margin: 80px 0;
  } */
  /* .faq-section{
    margin: 80px 0;
  } */
  .login-section {
    margin: 80px 0;
  }
  .my-account-section{
    margin: 80px 0;
  }
  .my-account-section .account-orders p{
    font-size: 24px;
  }
  .my-account-section .account-details .account-field{
    font-size: 24px;
  }
  .my-account-section .account-details .saved-address{
    font-size: 24px;
  }
  .my-account-section h3.account-title-address{
    margin-top: 40px;
  }
  form#save-address-form input{
    margin-bottom: 16px;
  }

  /* our story page start */
  /* .ourstory-header-container {
    margin: 80px 0;
  } */
  .ourstory-section .ourstory-header {
    margin-bottom: 40px;
  }
  .ourstory-section .ourstory-header-left h2{
    font-size: 40px;
  }
  .ourstory-section .ourstory-features-left h2{
    font-size: 40px;
  }
  .ourstory-section .ourstory-features-right{
    gap: 20px;
  }
  .ourstory-section .ourstory-feature-item h4{
    font-size: 26px;
  }
  /* .ourstory-section .ourstory-features{
    margin-bottom: 80px;
  } */
  /* .ssk-section-container {
    margin-bottom: 80px;
  } */
  .ourstory-section .ssk-section .ssk-heading{
    font-size: 40px;
    /* margin-bottom: 30px; */
  }
}

@media (min-width: 991px) {
    .header-flex a.custom-logo-link img {
        width: 250px;
    }
}

@media (min-width: 1200px) { 
.header-flex a.custom-logo-link img {
    width: 300px;
  }
}

@media (max-width: 991px) {
  .header-flex .site-logo {
    padding-right: 10px;
  }

  .header-flex a.custom-logo-link img {
    width: 190px;
    object-fit: scale-down;
  }

  nav.main-navigation ul#menu-main-menu li a {
    padding: 20px 16px;

    font-size: 14px;
  }

  .header-flex .header-icons {
    column-gap: 14px;

    padding-left: 10px;
  }

  .header-flex .header-icons a img {
    height: 18px;
  }

  .submenu-toggle img.chevron {
    width: 10px;

    height: 10px;
  }

  .nav-menu .sub-menu {
    left: 0;

    width: 190px;
  }

  footer.site-footer {
    padding-top: 30px;

    padding-bottom: 30px;
  }

  .footer-grid .footer-brand {
    max-width: unset;

    flex: 1;
  }

  .footer-grid .footer-brand .footer-logo img {
    width: 260px;
  }

  .footer-grid .footer-brand .footer-about {
    margin-top: 16px;

    max-width: 290px;
  }

  .footer-grid .footer-middle-content {
    max-width: calc(60% - 10px);

    flex: 0 0 calc(60% - 10px);

    margin: 0 -10px;
  }

  .footer-middle-content .footer-col .footer-links li a {
    font-size: 14px;
  }

  .footer-middle-content .footer-contact .footer-email a {
    font-size: 15px;
  }

  .footer-middle-content .footer-contact .footer-email {
    margin-bottom: 35px;
  }

  .footer-middle-content .footer-contact .footer-phone li a {
    font-size: 15px;
  }

  .footer-extra .footer-brands {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .footer-extra .footer-office-social {
    max-width: 100%;

    flex: 0 0 100%;

    margin: 0 -10px;
  }

  .footer-extra .footer-social {
    margin-bottom: 0;
  }

  .home-hero {
    /* margin-bottom: 60px; */
    margin-bottom: 40px;
  }

  .hero-grid .hero-logo img {
    width: 260px;
  }

  .hero-grid .hero-title p {
    font-size: 40px;

    margin: 20px 0 20px;
  }

  .hero-grid .hero-text {
    margin-bottom: 25px;

    font-size: 16px;
  }

  .our-story {
    margin-bottom: 40px;
    /* margin-bottom: 60px; */
  }

  .our-story-wrapper {
    padding: 30px 20px 14px 20px;
  }

  .our-story-content {
    column-gap: 10px;

    justify-content: space-between;
  }

  .our-story-content .our-story-title {
    max-width: calc(36% - 5px);

    flex: 0 0 calc(36% - 5px);
  }

  .our-story-title .our-story-heading {
    font-size: 24px;
  }

  .our-story-text {
    max-width: 400px;
  }

  .our-story-text .our-story-description {
    font-size: 16px;

    margin-bottom: 20px;
  }

  section.featured-collection {
    margin-bottom: 40px;
    /* margin-bottom: 60px; */
  }

  .featured-collection-wrapper .featured-collection-image {
    max-width: calc(60% - 15px);

    flex: 0 0 calc(60% - 15px);
  }

  .featured-collection-content .featured-label {
    margin-bottom: 7px;
  }

  .featured-collection-content .featured-heading {
    font-size: 30px;

    margin-bottom: 30px;
  }

  .featured-collection-content .featured-description {
    font-size: 16px;
  }

  section.crafted-by-hand {
    margin-bottom: 40px;
    /* margin-bottom: 60px; */
  }

  .crafted-by-hand-wrapper .crafted-heading {
    font-size: 28px;
  }

  .crafted-by-hand-wrapper .crafted-text {
    font-size: 16px;
  }

  .crafted-image-text p {
    bottom: 14px;

    left: 24px;

    font-size: 17px;
  }

  section.set-us-apart {
    margin-bottom: 20px;
    /* margin-bottom: 40px; */
  }

  .set-us-apart-wrapper .set-us-apart-heading {
    font-size: 36px;

    margin-bottom: 24px;
  }

  .set-us-apart-boxes {
    flex-wrap: wrap;

    justify-content: space-between;
  }

  .set-us-apart-boxes .set-us-apart-box {
    max-width: calc(33.33% - 10px);

    flex: 0 0 31.33%;
  }

  section.product-categories-grid {
    /* margin-bottom: 40px; */
    margin-bottom: 20px;
  }

  section.product-categories-grid .section-title {
    font-size: 36px;

    margin-bottom: 24px;
  }

  .categories-wrapper {
    flex-wrap: wrap;

    justify-content: space-between;
  }

  .categories-wrapper .category-box {
    max-width: calc(33.33% - 10px);

    flex: 0 0 31.33%;
  }

  .categories-wrapper .category-box img {
    height: 411px;
  }

  .categories-wrapper .category-box .categories-heading {
    font-size: 22px;
  }

  .category-box.discover-box .category-discover-heading {
    font-size: 28px;

    margin-bottom: 50px;
  }

  .category-discover-content .category-discover-description {
    font-size: 16px;
  }

  .category-box.discover-box .category-discover-content .btn {
    margin-top: 16px;

    padding: 10px 12px;
  }

  .home-products {
    /* margin-bottom: 60px; */
    margin-bottom: 40px;
  }

  .home-products .lb-grid {
    flex-wrap: wrap;

    justify-content: space-between;
  }

  .home-products .lb-card {
    max-width: calc(33.33% - 10px);

    flex: 0 0 31.33%;
  }

  .home-products .hp-cta {
    margin-top: 20px;
  }
  .page-hero-wrapper h1.page-hero__title {
    font-size: 40px;
    padding: 80px 0;
  }
  .shop-head .shop-subtitle {
    font-size: 36px;
    padding: 40px 0;
    /* padding: 60px 0; */
  }
  .home-products.shop-grid .lb-grid {
    column-gap: 20px;
  }
  .contact-section{
    margin: 40px 0;
    /* margin: 60px 0; */
  }
  .contact-page-row .store-info .store-address{
    font-size: 21px;
  }
  .write_info_wrapper .store-email a{
    font-size: 20px;
  }
  .in-store-grid .in-store-box-text p{
    font-size: 22px;
  }
  .enquires-section span.enquires-title{
    font-size: 18px;
  }
  .enquires-section .enquires-icon img {
      height: 22px;
  }
  .enquires-section .enquires-info-wrapper p {
      font-size: 24px;
  }
  .map-container{
    margin-bottom: 40px;
    /* margin-bottom: 60px; */
  }
  .policy-content{
    margin: 40px 0;
    /* margin: 60px 0; */
  }
  .faq-section{
    margin: 40px 0;
    /* margin: 60px 0; */
  }
  .login-section {
    margin: 60px 0;
  }
  .form_wrapper input{
    padding: 12px 16px;
    margin-bottom: 18px;
  }
  .my-account-section{
    margin: 60px 0;
  }
  .my-account-section .account-orders p{
    font-size: 22px;
  }
  .my-account-section .account-details .account-field{
    font-size: 22px;
  }
  .my-account-section .account-details .saved-address{
    font-size: 22px;
  }
  .my-account-section h3.account-title-address{
    margin-top: 30px;
  }
  /* .contact-section-products .section-title{
    margin-bottom: 40px;
  } */
  .ourstory-header-container {
    margin: 40px 0;
    /* margin: 60px 0; */
  }
  .ourstory-section .ourstory-header-left h2 {
    font-size: 36px;
  }
  .ourstory-section .ourstory-features {
    margin-bottom: 40px;
    /* margin-bottom: 60px; */
  }
  .ourstory-section .ourstory-features-left h2 {
      font-size: 30px;
  }
  .ourstory-section .ourstory-feature-item h4 {
      font-size: 22px;
  }
  .ourstory-section .ourstory-feature-item p {
    font-size: 16px;
  }
  .ssk-section-container {
    margin-bottom: 40px;
    /* margin-bottom: 60px; */
  }
  .ourstory-section .ssk-section .ssk-heading {
    font-size: 36px;
    margin-bottom: 24px;
  }
  .ourstory-section .ssk-section .ssk-content a.btn{
    margin-top: 0;
  }
  .single-product .product-wrapper{
    column-gap: 20px;
  }
  .single-product .product-wrapper .product-gallery {
    flex: 0 0 calc(55% - 10px);
    max-width: calc(55% - 10px);
  }
  .single-product .product-wrapper .product-info{
    flex: 0 0 calc(45% - 10px);
    max-width: calc(45% - 10px);
  }
  .single-product .product-thumb-slider img{
    height: auto;
  }
  .single-product .product-info .product-title{
    font-size: 26px;
    line-height: 30px;
  }
  .single-product .product-info .product-category{
    font-size: 20px;
    line-height: 1;
  }
  /* my account page start */
  .woocommerce-account .woocommerce{
    margin: 40px 0;
  }
  .woocommerce-cart .woocommerce {
    margin: 40px 0;
  }
  .woocommerce-checkout .woocommerce{
    margin: 40px 0;
  }
  .error-404{
    margin: 40px 0;
  }
  /* my account page end */
}

@media (max-width: 850px) {
  .categories-wrapper .category-box img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .btn {
    padding: 8px 16px;

    font-size: 15px;
  }

  header.site-header .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-flex {
    align-items: center;

    justify-content: space-between;
  }

  .header-flex .site-logo {
    padding: 0;

    margin: 0;
  }

  .header-flex a.custom-logo-link img {
    width: auto;
  }

  .header-flex .site-logo::before {
    display: none;
  }

  .main-navigation {
    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100vh;

    background: #fff;

    transform: translateX(-100%);

    padding: 80px 20px;

    z-index: 999;

    transition: transform 0.3s ease;
  }

  .main-navigation.active {
    transform: translateX(0);
  }

  .nav-menu {
    display: flex;

    flex-direction: column;

    gap: 20px;
  }

  .header-flex .header-icons.mobile-icons {
    display: none;
  }

  /* Show icons inside mobile menu */

  .header-flex .mobile-icons {
    display: flex;

    gap: 20px;

    margin-top: 40px;

    padding: 0;

    margin-left: 0;

    align-items: center;

    justify-content: center;
  }

  .header-flex .mobile-icons a img {
    width: 24px;

    height: 24px;
  }

  .header-flex .header-icons::before {
    display: none;
  }

  nav.main-navigation ul#menu-main-menu li a {
    padding: 10px 12px;

    font-size: 20px;

    display: block;
  }

  /* Hamburger */

  .hamburger {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    width: 25px;

    height: 20px;

    cursor: pointer;

    z-index: 1001;
  }

  .hamburger span {
    display: block;

    height: 3px;

    width: 100%;

    background: #000;

    border-radius: 3px;

    transition: all 0.3s ease;
  }

  /* Animate into X */

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .submenu-toggle {
    right: -20px;
  }

  .nav-menu .sub-menu {
    top: 100%;

    left: 0;

    width: 190px;
  }

  #search-overlay .search-box {
    padding: 20px;
  }

  footer.site-footer {
    padding-top: 25px;

    padding-bottom: 25px;
  }

  .footer-grid .footer-brand {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .footer-grid .footer-middle-content {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .footer-extra .brand-wrapper {
    column-gap: 16px;
  }

  .footer-grid .footer-brand .footer-about {
    max-width: 100%;
  }

  .home-hero {
    padding: 30px 0;

    /* margin-bottom: 40px; */
    margin-bottom: 30px;
  }

  .hero-grid .hero-left {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .hero-grid .hero-logo img {
    width: 190px;
  }

  .hero-grid .hero-title p {
    font-size: 32px;

    margin: 16px 0 12px;
  }

  .hero-grid .hero-text {
    margin-bottom: 12px;

    font-size: 15px;
  }

  .hero-grid .btn.btn-primary {
    padding: 8px 12px;

    font-size: 15px;
  }

  .hero-grid .hero-right {
    max-width: 100%;

    flex: 0 0 100%;

    margin-top: 22px;
  }

  .hero-grid {
    flex-wrap: wrap;
  }

  .our-story {
    margin-bottom: 30px;
    /* margin-bottom: 40px; */
  }

  .our-story-label-div span {
    font-size: 16px;
  }

  .our-story-content {
    justify-content: center;

    flex-wrap: wrap;
  }

  .our-story-content .our-story-title {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .our-story-title .our-story-heading {
    font-size: 26px;
  }

  .our-story-text {
    max-width: 100%;
  }

  section.featured-collection {
    /* margin-bottom: 40px; */
    margin-bottom: 30px;
  }

  .featured-collection-wrapper {
    flex-wrap: wrap;
  }

  .featured-collection-wrapper .featured-collection-image {
    max-width: 100%;

    flex: 0 0 100%;

    margin-bottom: 16px;
  }

  .featured-collection-content .featured-label {
    font-size: 16px;
  }

  .featured-collection-content .featured-heading {
    font-size: 26px;

    margin-bottom: 16px;
  }

  .featured-collection-content .featured-btn {
    margin-top: 20px;
  }

  section.crafted-by-hand {
    margin-bottom: 30px;
    /* margin-bottom: 40px; */
  }

  .crafted-by-hand-wrapper {
    flex-wrap: wrap;
  }

  .crafted-by-hand-wrapper .crafted-heading {
    font-size: 30px;
  }

  .crafted-by-hand-wrapper .crafted-heading-col {
    max-width: 100%;

    flex: 0 0 100%;

    margin-bottom: 24px;
  }

  .crafted-image-text p {
    bottom: 20px;

    left: 40px;

    font-size: 20px;
  }

  .crafted-by-hand-wrapper .crafted-image-col {
    max-width: 100%;

    flex: 0 0 100%;

    margin-bottom: 16px;
  }

  section.set-us-apart {
    margin-bottom: 10px;
    /* margin-bottom: 20px; */
  }

  .set-us-apart-wrapper .set-us-apart-heading {
    font-size: 30px;

    margin-bottom: 24px;
  }

  .set-us-apart-box .box-title {
    font-size: 18px;

    /* max-width: 124px; */

    margin-bottom: 10px;
  }

  .set-us-apart-boxes .set-us-apart-box {
    max-width: calc(50% - 10px);

    flex: 0 0 calc(50% - 10px);
  }

  section.product-categories-grid {
    margin-bottom: 10px;
    /* margin-bottom: 20px; */
  }

  section.product-categories-grid .section-title {
    font-size: 30px;

    margin-bottom: 24px;
  }

  .categories-wrapper .category-box {
    max-width: calc(50% - 10px);

    flex: 0 0 calc(50% - 10px);
  }

  .categories-wrapper .category-box img {
    height: 350px;
  }

  .category-box.discover-box .category-discover-content .btn {
    padding: 8px 12px;
  }

  .home-products {
    margin-bottom: 30px;
    /* margin-bottom: 40px; */
  }

  /* .home-products .hp-head {
    margin-bottom: 30px;
  } */

  .home-products .lb-card {
    max-width: calc(50% - 10px);

    flex: 0 0 calc(50% - 10px);
  }
  .page-hero-wrapper h1.page-hero__title {
    font-size: 32px;
    padding: 60px 0;
  }
  .shop-head .shop-subtitle {
    font-size: 30px;
    padding: 30px 0;
    /* padding: 40px 0; */
  }
  .lb-load-more-wrap {
    margin-top: 30px;
    /* margin-top: 40px; */
  }
  .home-products.shop-grid .lb-grid {
    column-gap: unset;
    row-gap: unset;
  }
  form.shop-controls {
    flex-wrap: wrap;
  }
  form.shop-controls .control:not(:last-child) {
    margin-right: 30px;
  }
  form.shop-controls {
    padding: 16px 0 6px 0;
  }
  .page-hero-wrapper::before {
    width: 150px;
    height: 150px;
  }
  :root {
    --fs-hero: 36px;
    --fs-title-lg: 26px;
    --fs-title-md: 20px;
    --fs-text-lg: 18px;
    --fs-text-md: 15px;
    --fs-text-sm: 13px;
  }

  .single-product .product-wrapper {
    margin: 30px 0 0;
    /* margin: 40px 0 0; */
    column-gap: 20px;
    row-gap: 30px;
  }

  .single-product .product-wrapper .product-gallery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .single-product .product-wrapper .product-info {
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .single-product .product-wrapper .product-main-slider {
    /* height: 380px; */
    border-radius: 12px;
  }

  .single-product .product-thumb-slider img {
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
  }

  .single-product .cart-actions button {
    padding: 12px 18px;
    border-radius: 10px;
  }

  .single-product .product-variations .size-option .size-text {
    padding: 8px 12px;
    min-width: 60px;
    border-radius: 6px;
  }

  /* .single-product .related-products-custom .home-products .section-title {
    margin-bottom: 30px;
  } */

  .single-product .related-products-custom .home-products {
    padding: 20px 0 10px 0;
    margin-bottom: 30px;
  }
  .contact-section{
    margin: 30px 0;
    /* margin: 40px 0; */
  }
  .contact-page-row .contact-left{
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 40px;
    padding: 0;
  }
  .contact-page-row .contact-right{
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }
  .contact-section .write_info_wrapper{
    margin-top: 30px;
  }
  .in-store-grid{
    flex-wrap: wrap;
  }
  .in-store-grid .in-store-box{
    max-width: 100%;
    flex: 0 0 100%;
  }
  .in-store-grid .in-store-box + .in-store-box{
    margin-top: 20px;
  }
  .in-store-grid .in-store-box-text p{
    font-size: 20px;
  }
  .enquires-section .enquires-box{
    max-width: 100%;
    flex: 0 0 100%;
  }
  .enquires-section .enquires-box + .enquires-box{
    margin-top: 20px;
  }
  .map-container{
    margin-bottom: 30px;
    /* margin-bottom: 40px; */
  }
  .policy-content{
    margin: 30px 0;
    /* margin: 40px 0; */
  }
  .faq-section{
    margin: 30px 0;
    /* margin: 40px 0; */
  }
  .faq-question{
    font-size: 16px;
  }
  .faq-answer{
    font-size: 16px;
  }
  form.login-form .links a{
    font-size: 16px;
  }
  .signin_wrapper{
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .signin_wrapper .create_wrapper {
    margin-left: 0;
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .login-section {
    margin: 40px 0;
  }
  .contact-section-products .section-title{
    /* margin-bottom: 30px; */
    font-size: 24px;
  }
  .my-account-section{
    margin: 40px 0;
  }
  .account-grid{
    flex-wrap: wrap;
  }
  .account-col {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .my-account-section h2.account-details-title{
    margin-top: 30px;
  }
  .contact-form-wrapper .contact-form-submit-button .wpcf7-submit{
    padding: 8px 16px;
    font-size: 15px;
  }
  form#save-address-form #save-address{
    margin-top: 12px;
    padding: 10px 16px;
    font-size: 15px;
  }
  .signin_wrapper .submit_btn{
    padding: 10px 16px;
    font-size: 15px;
  }
  .ourstory-header-container {
    margin: 30px 0;
    /* margin: 40px 0; */
  }
  .ourstory-section .ourstory-header {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
  }
  .ourstory-section .ourstory-features {
    margin-bottom: 30px;
    /* margin-bottom: 40px; */
    flex-wrap: wrap;
    display: flex;
  }
  .ourstory-section .ourstory-header-left h2 {
    font-size: 30px;
  }
  .ssk-section-container {
    margin-bottom: 30px;
    /* margin-bottom: 40px; */
  }
  .ourstory-section .ssk-section .ssk-heading {
    font-size: 30px;
  }
  .ourstory-section .ssk-section .ssk-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .ourstory-section .ssk-section .ssk-image img{
    width: 100%;
    height: auto;
  }
  /* my account page start */
  .woocommerce-account .woocommerce{
    margin: 30px 0;
  }
  nav.woocommerce-MyAccount-navigation ul{
    margin-bottom: 24px;
  }
  .woocommerce table.my_account_orders .button + .button{
    margin-left: 5px;
  }
  .woocommerce table.shop_table_responsive tr.woocommerce-orders-table__row:first-child .woocommerce-orders-table__cell-order-date{
    border-top: 0;
  }
  .woocommerce table.shop_table th, .woocommerce table.shop_table td {
    font-size: 15px;
  }
  .woocommerce .woocommerce-customer-details, .woocommerce .woocommerce-order-details, .woocommerce .woocommerce-order-downloads {
    margin-bottom: 24px;
  }
  section.woocommerce-order-details {
    margin-top: 24px;
  }
  .woocommerce-Addresses .woocommerce-Address + .woocommerce-Address{
    margin-top: 24px;
  }
  .woocommerce-address-fields button.button{
    padding: 8px 16px;
    font-size: 15px;
  }
  .woocommerce form .form-row .input-text, .woocommerce form .form-row select{
    padding: 10px 16px;
    font-size: 15px;
  }
  .select2-container .select2-selection{
     padding: 10px 16px;
    font-size: 15px;
  }
  .woocommerce form .form-row label, .woocommerce-page form .form-row label{
    font-size: 15px;
  }
  .woocommerce-account .woocommerce-address-fields__field-wrapper p.form-row {
    margin-bottom: 7px;
  }
  .woocommerce-form p button.button{
    padding: 8px 16px;
    font-size: 15px;
  }
  .woocommerce form.login{
    margin-bottom: 24px;
  }
  .woocommerce-ResetPassword button.button{
    padding: 8px 16px;
    font-size: 15px;
  }
  .woocommerce-order-details .woocommerce-table--order-details .button{
    padding: 10px 16px;
    font-size: 15px;
  }
  .woocommerce-column--shipping-address {
    margin-top: 24px;
  }
  .woocommerce .woocommerce-customer-details{
    margin-bottom: 0;
  }
  .woocommerce-MyAccount-content .woocommerce-info .button{
    padding: 10px 16px;
    font-size: 15px;
  }
  body .woocommerce-notice--success{
    font-size: 16px;
    padding: 10px;
  }
  /* my account page end */
  /* cart page start */
  .woocommerce-cart .woocommerce {
    margin: 40px 0;
  }
  .woocommerce-cart .woocommerce .cart-collaterals .cart_totals .checkout-button, .woocommerce-checkout .woocommerce .cart-collaterals .cart_totals .checkout-button{
    padding: 10px 16px;
    font-size: 15px;
  }
  .woocommerce-cart-form .actions .button{
    padding: 10px 16px !important;
    font-size: 15px;
  }
  .woocommerce-cart-form .actions .coupon .button{
    padding: 10px 16px;
    font-size: 15px;
  }
  .woocommerce-page table.cart td.actions .coupon .button{
    width: auto;
  }
  .woocommerce table.cart td.actions .input-text {
    width: 200px !important;
  }
  .woocommerce-page table.cart td.actions .button{
    width: auto;
  }
  .woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
    margin-bottom: 16px;
  }
  .woocommerce-cart .woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout .woocommerce .cart-collaterals .cart_totals {
    padding: 16px;
  }
  .woocommerce-cart-form .actions .coupon{
    flex-wrap: wrap;
    row-gap: 8px;
    padding-bottom: 12px !important;
  }
  .woocommerce-cart-form .actions .button{
    margin-left: auto;
  }
  .woocommerce-cart-form .actions .coupon .button{
    margin-left: 0 !important;
  }
  .woocommerce-checkout .woocommerce{
    margin: 30px 0;
  }
  .woocommerce-form-coupon-toggle .woocommerce-info{
    margin-bottom: 20px;
  }
  .woocommerce form.checkout_coupon{
    margin-bottom: 24px;
    padding: 12px 12px 6px 12px;
    flex-wrap: wrap;
  }
  .woocommerce form.woocommerce-checkout .woocommerce-additional-fields{
    margin-top: 24px;
  }
  .woocommerce form.woocommerce-checkout #order_review_heading {
    margin-top: 24px;
  }
  .woocommerce #place_order{
    margin-bottom: 0 !important;
  }
  .woocommerce-checkout .checkout_coupon .button{
    padding: 10px 16px;
    font-size: 15px;
  }
  .woocommerce form.checkout_coupon .form-row {
    width: 100%;
  }
  .woocommerce form.woocommerce-checkout #order_review {
    margin-top: 12px;
  }
  .woocommerce #btn-razorpay{
    padding: 10px 16px;
    font-size: 15px;
  }
  .woocommerce #btn-razorpay-cancel{
    padding: 10px 16px;
    font-size: 15px;
  }
  .woocommerce .return-to-shop .button{
    padding: 10px 16px;
    font-size: 15px;
  }
  .woocommerce .woocommerce-message a.button{
    padding: 10px 16px;
    font-size: 15px;
  }
  /* cart page end */
  .error-404{
    margin: 30px 0;
  }
  .error-404 .back-home-btn{
    font-size: 15px;
    margin: 20px 0;
  }
  .error-404 ul li a{
    font-size: 15px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .footer-grid .footer-middle-content {
    flex-wrap: wrap;
  }

  .footer-grid .footer-middle-content .footer-col {
    flex: auto;
  }

  .footer-extra .brand-wrapper {
    flex-wrap: wrap;
  }

  .footer-extra .footer-office-social {
    flex-wrap: wrap;
  }

  .footer-extra .footer-social {
    margin-left: 0;

    margin-top: 12px;
  }

  .set-us-apart-boxes .set-us-apart-box {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .categories-wrapper .category-box {
    max-width: 100%;

    flex: 0 0 100%;
  }

  .categories-wrapper .category-box img {
    height: 440px;
  }

  .home-products .hp-tab {
    font-size: 16px;
  }

  .home-products .lb-card {
    max-width: 100%;

    flex: 0 0 100%;
  }
  .page-hero-wrapper h1.page-hero__title {
    padding: 40px 0;
  }

  :root {
    --fs-hero: 28px;
    --fs-title-lg: 22px;
    --fs-title-md: 18px;
    --fs-text-lg: 16px;
    --fs-text-md: 14px;
    --fs-text-sm: 12px;
  }

  .single-product .product-wrapper {
    row-gap: 20px;
  }

  .single-product .product-wrapper .product-main-slider {
    /* height: 220px; */
    border-radius: 10px;
  }

  .single-product .product-thumb-slider img {
    /* height: 110px; */
    border-radius: 10px;
  }

  .single-product .cart-actions {
    gap: 12px;
  }

  .single-product .cart-actions button {
    width: 100%;
    padding: 12px;
    font-size: var(--fs-text-md);
    border-radius: 8px;
  }

  .single-product .product-variations .size-option .size-text {
    padding: 6px 10px;
    min-width: 50px;
    font-size: var(--fs-text-sm);
    border-radius: 6px;
  }

  .single-product .product-quantity .quantity-wrapper {
    height: 36px;
    border-radius: 6px;
  }

  .single-product .product-quantity .qty-btn {
    width: 25px;
    height: 36px;
    font-size: var(--fs-text-sm);
  }

  .single-product .product-quantity .input-text.qty {
    width: 40px;
    height: 36px;
    font-size: var(--fs-text-sm);
    line-height: 36px;
  }
  .single-product .related-products-custom {
    margin: 40px 0 30px 0;
  }
  .contact-form-wrapper .contact-form-row .contact-form-col{
    max-width: 100%;
    flex: 0 0 100%;
  }
  .ourstory-section .ourstory-features-right {
    gap: 14px;
    display: flex;
    flex-wrap: wrap;
  }
  .ourstory-section .ourstory-feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

/* responsive css end */

/* --- PRICE SECTION --- */
.product-info .price {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-info .price del {
    color: #999;
    font-size: 18px;
}

.product-info .price ins {
    color: #000;
    text-decoration: none;
}

/* Discount badge (like 18% OFF) */
.discount-badge {
    background: #f36f2a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
}

.quantity::before {
    content: "Quantity";
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 600;
}

/* --- TAX / SHIPPING LINE --- */
.single-product-main .tax-shipping-text {
    font-size: 14px;
    color: #666;
    margin-top: -5px;
    margin-bottom: 15px;
}

.single-product-main del .woocommerce-Price-amount.amount {
  color: #838181;
  font-weight: 500;
}

/* --- VARIATION DROPDOWN --- */
.single-product-main .variations_form table.variations td.value select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 15px;
}

/* Label styling */
.single-product-main .variations_form table.variations th.label label {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-right: 8px;
    display: inline-block;
}

/* --- QUANTITY BOX --- */
.single-product-main .quantity .qty {
    width: 70px;
    height: 42px;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* --- ADD TO CART BUTTON --- */
.single-product-main .single_add_to_cart_button {
    background: #000 !important;
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 17px;
    margin-top: 10px;
    min-width: 160px;
}

/* Disable style */
/* .single-product-main .single_add_to_cart_button.disabled {
    background: #777 !important;
} */

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled {
  cursor: pointer;
  opacity: 1;
}

/* Variation + Quantity + Add to cart layout */
.single-product-main .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
  /* flex-direction: column; */
}

.single-product-main .single_add_to_cart_button.button {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding: .618em 1em;
}
.single-product-main .single_add_to_cart_button.button:hover {
  background-color: transparent !important;
  color: #000000 !important;
}
div.product .woocommerce-notices-wrapper-box {
  margin-top: 20px;
}
div.product .woocommerce-notices-wrapper-box .woocommerce-message {
  display: flex;
  align-items: center;
}
div.product .woocommerce-notices-wrapper-box .woocommerce-message::before {
  top: 1.8em;
}
div.product .woocommerce-notices-wrapper-box .button.wc-forward {
  margin-right: 0;
  margin-left: auto;
}

.buy-now-btn, .single-product-main .single_add_to_cart_button.wc-buy-now-btn {
    padding: .618em 1em;
    background: #f36f2a !important;
    color: #fff !important;
    border: 1px solid #f36f2a !important;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    min-width: 160px;
}
.buy-now-btn:hover, .single-product-main .single_add_to_cart_button.wc-buy-now-btn:hover { background: #fff; color: #f36f2a !important;}

div.product .single-product-main form.cart div.quantity {
  min-width: 100%;
}

.single-product .delivery-checker,
.single-product .check-delivery,
.single-product .delivery-options,
.single-product [id*="delivery"],
.single-product .pincode-checker,
.single-product .bt_sync_shimpent_track_pincode_checker_wrap.classic {
    display: none !important;
}

.woocommerce div.product form.cart .variations {
  width: auto;
  max-width: 100%;
  margin-bottom: 0.3em;
}

.woocommerce div.product form.cart .variations tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Mobile fix */
@media(max-width: 600px) {
    .single-product-main .woocommerce-variation-add-to-cart {
        /* flex-direction: column; */
        align-items: flex-start;
    }
}
