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

  /* background-color: var(--light-white); */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  top: 0px !important;
}

:root {
  --black: #351109;
  --white: #fff;
  --light-white: #f6f6f6;
  --border-color: rgb(224, 224, 224);
  --bg-overlay: #00000057;
  --golden-color: #e4a805;
  --para-font: "Jost", sans-serif;
  --line-border: rgba(32, 11, 11, 0.082);
  --main-font: "Jost", sans-serif;
  --red: #ff0000;
  /* =======Font Weight======= */
  --h2-fontWeight: 500;
  --h2-letterspacing: 0.2rem;
  --image-comparison-slider-width: min(80vw, 768px);
  --image-comparison-slider-handle-width: 50px;
}

h1 {
  font-size: 4.5rem;
  font-family: var(--main-font);
  font-weight: 400;
}

h2 {
  font-size: 2.6rem;
  text-transform: uppercase;
  color: var(--black);
  font-weight: var(--h2-fontWeight);
  letter-spacing: var(--h2-letterspacing);
  font-family: var(--main-font);
}

h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: var(--main-font);
}

h4 {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--main-font);
}

p {
  font-size: 1.6rem;
  color: rgba(53, 53, 53, 0.863);
  line-height: 2.4rem;
  font-family: var(--para-font);
}

a {
  font-family: var(--para-font);
  display: block;
  text-decoration: none;
}

span {
  font-family: var(--para-font);
  /* text-transform: lowercase; */
}

li {
  list-style: none;
}

i {
  color: var(--green-color);
}

.sub-span {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: inline-block;
  letter-spacing: 0.2rem;
}

.all-rugs-rates-colors {
  color: rgb(48 48 48 / 65%);
}

/* ====================
  common btn css 
==================== */
.common-btn {
  position: relative;
  text-decoration: none;
  color: var(--black);
  padding: 1.3rem;
  text-transform: uppercase;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end stretch;
  letter-spacing: 2px;
  z-index: 1;
  transition: all 1s ease;
  display: inline-block;
  margin-top: 2rem;
  background-color: var(--golden-color);
}

.common-btn:before,
.common-btn:after {
  content: "";
  height: 500px;
  width: 500px;
  position: absolute;
  z-index: -1;
  top: 150%;
  transition: all 1.4s ease;
}

.common-btn:before {
  border-radius: 60% 70% 20% 40%;
  background: var(--golden-color);
  opacity: 0.2;
  animation: water 13s ease-in-out infinite both alternate;
}

.common-btn:after {
  border-radius: 60% 70% 20% 40%;
  background: var(--golden-color);
  opacity: 0.5;
  animation: water 14s ease-in-out infinite both alternate;
}

.common-btn:hover {
  background: var(--golden-color);
  color: white;
}

.common-btn:hover:before,
.common-btn:hover:after {
  opacity: 1;
  top: -100%;
}

@keyframes water {
  0% {
    transform: rotate(0);
  }

  20% {
    border-radius: 50% 63% 80% 49%;
  }

  40% {
    border-radius: 60% 64% 64% 48%;
  }

  60% {
    border-radius: 80% 63% 51% 49%;
  }

  80% {
    border-radius: 40% 60% 42% 58%;
  }

  100% {
    border-radius: 62% 67% 70% 53%;
    transform: rotate(180deg);
  }
}

/* ============= */
.wrapper-heading {
  max-width: 142rem;
  margin: auto;
  padding: 11rem 2.8rem 0rem 2.8rem;
  text-align: center;
}

.wrapper {
  max-width: 142rem;
  margin: auto;
  padding: 3.6rem 2.8rem;
  text-align: center;
}

.contact-wrapper {
  max-width: 100rem;
  margin: auto;
  padding: 8.6rem 2.8rem;
  text-align: center;
}

.footer-wrapper {
  max-width: 142rem;
  margin: auto;
  padding: 3.6rem 2.8rem;
}

.productList-subLink-wrapper {
  max-width: 185rem;
  margin: auto;
  padding: 2rem 2.8rem;
}

.grid {
  display: grid;
  gap: 3rem;
}

.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-two-cols-index {
  grid-template-columns: 1fr 4fr;
}

.product-list-grid-two-cols {
  grid-template-columns: 0.5fr 3fr;
  align-items: flex-start;
}
.devindia span {
  text-transform: capitalize;
  text-decoration: underline;
}
/* =========product-list-rugs-grid-four-cols========= */
.product-list-rugs-grid-four-cols {
  grid-template-columns: repeat(4, 1fr);
}

/* ==================
reusabel code 
================== */
/* ====================
top navbar css 
==================== */
.main-top-nav {
  background-color: var(--black);
  padding: 0.5rem 0;
}

.top-nav {
  /* width: 67%; */
  padding: 0.5rem 7rem;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-nav1 {
  display: flex;
  align-items: center;

  gap: 1rem;
}

.top-nav1-left {
  display: flex;
  align-items: end;
  gap: 1rem;
  color: var(--white);
  font-size: 1.5rem;
  width: 100%;
}

.top-nav2 a {
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: var(--golden-color);

  &:hover {
    color: var(--bg-overlay);
  }
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-link i {
  font-size: 1.8rem;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ====================
navbar css 
==================== */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--white);
  /* background-color: white; */
  padding: 4rem 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 150;
  height: 3rem;
  border-bottom: 1px solid var(--line-border);
}

.logo {
  width: 20%;
  height: auto;
}

.logo img {
  width: 35%;
}

.menu {
  list-style: none;
}

.menu li {
  position: relative;
  float: left;
}

.menu li a {
  font-size: 1.5rem;
  color: var(--black);
  display: block;
  text-decoration: none;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  height: 7rem;
  text-transform: uppercase;
  font-weight: 450;
}
.submenu-drop {
  max-width: 300px;
}
.menu .submenu li a:hover {
  background: var(--black);
  color: var(--light-white);
}

.submenu li {
  color: var(--white) !important;
  width: 100%;
  border-top: 0.1rem solid var(--dark-blue);
  list-style: none;
  border-top: 0.5px solid var(--border-color);
  border-bottom: 0.5px solid var(--border-color);
  border: 0.5px solid var(--border-color);
}
.submenu li a {
  font-size: 1.2rem !important;
  height: 2rem;
}
.submenu {
  position: absolute;
  /* left: 0; */
  background: var(--white);
  display: none;
  transition: all 0.3s ease-in-out;
  width: 600px;
  border-top: 2px solid var(--black);
}

.nav-icons-down {
  color: var(--dark-blue);
}

.submenu-wrapper:hover .submenu,
.submenu-wrapper:focus-within .submenu {
  display: initial;
}

.toggle-btn {
  display: none;
  /* Initially hide the toggle button */
  z-index: 1000;
}

.icon {
  position: relative;
  border: 1px solid var(--green-color);
  cursor: pointer;
  z-index: 100;
}

.icon i {
  font-size: 3rem;
}

@media (max-width: 1200px) {
  .navbar {
    padding: 3rem 4rem;
  }

  .toggle-btn {
    display: block;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
  }

  .menu {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-white);
    border-top: 0.1rem solid var(--border-color);
    display: none;
  }

  .menu.active {
    display: initial;
  }

  .menu li {
    width: 100%;
    border-bottom: 0.1rem solid rgb(224, 224, 224);
  }

  .menu li a {
    color: var(--black);
  }

  .submenu {
    position: relative;
    width: 100%;
  }

  .submenu li {
    background: var(--white);
  }

  .nav-icons-down {
    color: var(--white);
  }

  .submenu li a {
    padding-left: 2rem;
    color: var(--dark-blue);
  }

  .logo img {
    width: 140px;
    height: auto;
  }
}

.nav-support {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-support i {
  font-size: 3rem;
  cursor: pointer;
  color: var(--golden-color);
  display: block;
}

.ns-text p {
  color: var(--black);
  font-size: 1.6rem;
}

/* /////////mega menu///// */
/* ================= MEGA MENU ================= */
.submenu-wrapper.mega {
  position: static;
}

.mega-menu {
  position: absolute;
  /* left: 0; */
  top: 100%;
  width: 100%;
  background: var(--white);
  display: none;
  /* padding: 3rem 7rem; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 200;
}

.submenu-wrapper.mega:hover .mega-menu {
  display: flex;
}

.mega-menu {
  display: flex;
  gap: 4rem;
  padding: 2rem;
}

.mega-column {
  flex: 1;
}

.mega-column h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

.mega-column a {
  display: block;
  font-size: 1.4rem;
  color: var(--black);
  padding: 0.6rem 0;
  text-decoration: none;
}

.mega-column a:hover {
  color: var(--golden-color) !important;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .mega-menu {
    position: relative;
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    box-shadow: none;
  }

  .submenu-wrapper.mega.active .mega-menu {
    display: block;
  }
}

/* ====================
nav search bar 
==================== */
.nav-searchbar {
  position: relative;
  padding: 1rem;
  background-color: var(--golden-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-search-form {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-search-form input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 33rem;
  padding: 1rem;
}

.nav-search-form input::placeholder {
  font-size: 1.6rem;
  color: var(--bg-overlay);
  display: inline-block;
}

.nav-search-form button {
  position: absolute;
  right: 0%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  border-top-right-radius: 2rem;
  background-color: var(--black);
  border-bottom-right-radius: 2rem;
}

.nav-search-form button i {
  padding-right: 2rem;
  font-size: 2.5rem;
  color: var(--golden-color);
  right: 2rem;
}

/* ====================
hero slider css 
==================== */
.slider-btn {
  border: 1px solid #ffffff;
  border-radius: 0;
  font-family: "montserratregular";
  font-size: 1.4rem;
  padding: 0.9rem 2rem;
  color: #fff;
  line-height: 2.8rem;
}

/* ====================== */

/* ====================
hero slider css 
==================== */
.slider-btn {
  border: 1px solid #ffffff;
  border-radius: 0;
  font-family: "montserratregular";
  font-size: 1.4rem;
  padding: 0.9rem 2rem;
  color: #fff;
  line-height: 2.8rem;
}

/* ====================== */
.down-btn-slider {
  position: absolute;
  z-index: 200;
  /* background-color: #303030; */
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.down-btn-slider-icon {
  color: var(--golden-color);
}

/* ====================== */

.container {
  width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.hero-slider {
  width: 100%;
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
}

@media (max-width: 991px) {
  .hero-slider {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 500px;
  }
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-repeat: no-repeat;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid #d4d3d3;
  /* border-radius: 55px; */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f060";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-size: 15px;
  color: #d4d3d3;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: left;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 0.3;
  background: #fff;
  transition: all 0.2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

@media screen and (min-width: 992px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-pagination-fraction {
    /*     display: none; */
  }
}

.swiper-pagination {
  text-align: left;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 8px !important;
}

.hero-slider .swiper-pagination-bullet {
  width: 4rem;
  height: 0.5rem;
  border-radius: 0%;
  -webkit-border-radius: 0%;
  -moz-border-radius: 0%;
  -ms-border-radius: 0%;
  -o-border-radius: 0%;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 767px) {
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    left: 90%;
  }
}

/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
  height: calc(100vh - 14rem);
  transition: all 0.4s ease;
  /* margin-top: 0.5rem; */
  /* min-height: 100vh; */
}

@media (max-width: 991px) {
  .hero-style {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .hero-style {
    height: 500px;
  }
}

@media screen and (min-width: 992px) {
  .hero-style .container {
    padding-top: 95px;
  }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  /*max-width: 690px;
  */
  text-align: center;
  position: absolute;
  /* bottom: 10%;
  left: 50%; */
  top: 50%;

  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.hero-style .slide-title h2 {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 40px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.hero-style .slide-title h3 {
  font-size: 4.5rem;
}

@media (max-width: 1199px) {
  .hero-style .slide-title h2 {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .hero-style .slide-title h2 {
    font-size: 50px;
    margin: 0 0 35px;
  }
}

@media (max-width: 767px) {
  .hero-style .slide-title h2 {
    font-size: 35px;
    margin: 0 0 30px;
  }
}

.hero-style .slide-text p {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.5rem;
  color: #ffffff;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  font-family: var(--main-font);
}

@media (max-width: 767px) {
  .hero-style .slide-text p {
    font-size: 2rem;
    font-weight: normal;
    margin: 0 0 30px;
  }
}

.hero-style .slide-btns > a:first-child {
  margin-right: 10px;
}

/* ====hero slider bg overlay==== */
.slide-bg-image {
  position: relative;
  z-index: 2;
}

.clearfix::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg-overlay);
  z-index: 3;
  width: 100%;
  height: 100%;
}

.slide-title,
.slide-text,
.swiper-pegination,
.swiper-button-nex,
.swiper-button-perv {
  z-index: 4;
  position: relative;
}

/*--------------------------------------------------------------
      #button-style
  --------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
  background-color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #2b3b95;
  padding: 9px 32px;
  border: 0;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  line-height: initial;
  transition: all 0.4s ease;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.9);
  color: #131e4a;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
  background-color: #2b3b95;
  color: #fff;
}

.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}

i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}

a:hover {
  text-decoration: none;
}

@media (max-width: 991px) {
  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 13px;
    padding: 15px 25px;
  }
}

@media (max-width: 767px) {
  .theme-btn,
  .theme-btn-s2 {
    padding: 13px 20px;
    font-size: 13px;
  }
}

/* <!-- ========================
        FOOTER SECTION
   ========================= --> */
footer {
  width: 100%;
  height: 100%;
}

footer .wrapper {
  text-align: left;
}

footer .left-footer img {
  width: 70%;
  height: auto;
  padding-bottom: 3rem;
}

footer .left-footer p {
  letter-spacing: 0.1rem;
}

footer .center-footer {
  margin-left: 10rem;
}

footer .center-footer h3 {
  padding-bottom: 3rem;
}

footer .right-footer h3 {
  padding-bottom: 3rem;
}

footer .footer-socila-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  /* color: #f8cf9d8c; */
}

footer .footer-socila-links i {
  font-size: 2rem;
  color: var(--black);
  background-color: var(--light-white);
  padding: 1rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* ================ */
.footer-links ul {
  padding-left: 0rem;
}

footer .center-footer ul li {
  list-style: none;
  padding-bottom: 2rem;
}

footer .center-footer ul li a {
  color: var(--black);
  letter-spacing: 0.1rem;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  font-size: 1.6rem;
  text-transform: uppercase;
}

footer .center-footer ul li a:hover {
  color: var(--bg-overlay);
}

/* ======right footer======== */

.footer-address-box {
  padding-bottom: 2rem;
  color: var(--white-color);
}

.footer-address-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-color);
  padding-bottom: 1rem;
  letter-spacing: 0.2rem;
}

.footer-address-box .footer-address h4 {
  color: var(--white-color);
}

.footer-address-box p {
  color: var(--white-color);
  /* font-weight: 200; */
  letter-spacing: 0.1rem;
}

.footer-icons {
  vertical-align: bottom;
  font-size: 2rem;
}

.offering-container .item {
  width: 100%;
  /* Ensure the item takes full width */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* To center the image if needed */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* Center the image horizontally */
}

.offering-container .item img {
  width: 100%;
  /* Make images responsive */
  height: auto;
  /* Maintain aspect ratio */
}

.footer-address {
  padding-top: 1rem;
}

.footer-address .footer-icons-phone {
  font-size: 2.5rem;
}

.footer-address-box .footer-email {
  font-weight: 500;
  padding-top: 1rem;
  border-bottom: 1px solid white;
}

.footer-address-box .footer-phone-no {
  font-weight: 400;
  padding-top: 1rem;
}

/* 
=======================================================
Privacy Policy section css
======================================================= */

.privacyPocliy-data p {
  line-height: 2.5rem;
  color: var(--bg-overlay);
}

.privacyPage {
  display: flex;

  gap: 2rem;
  align-items: center;
  justify-content: center;
  background-color: var(--footer-bg);
  padding: 1rem 0;
}

.privacyPage a {
  color: var(--white-color);
  opacity: 0.8;
  /* text-decoration: underline; */
  transition: 0.3s linear;
  text-align: center;
  font-size: 1.5rem;
}

.privacyPage p {
  color: var(--white-color);
  font-weight: 200;
  /* text-decoration: underline; */
  transition: 0.3s linear;
  text-align: center;
}

.privacyPage a:hover {
  color: var(--black-color);
}

/*=======================================================
                subfooter section css
======================================================= */
.subfooter {
  padding: 1.5rem 0;
  display: flex;

  justify-content: center;
  gap: 1rem;
}

.subfooter p {
  color: var(--black);
}

.subfooter a {
  color: var(--black);
  font-size: 1.6rem;
  display: inline-block;
}

/*=======================================================
                 NEW ARRIVAL CSS
======================================================= */
.product-list-arrival {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-list-subLinks {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.3rem;
}

.product-list-subLinks a span {
  text-transform: uppercase;
  color: var(--bg-overlay);
}

.product-list-subLinks span {
  text-transform: uppercase;
  color: var(--bg-overlay);
}

.product-list-top-heading {
  max-width: 185rem;
  margin: auto;
  padding: 0rem 2.8rem;
  text-align: center;
}

.product-list-top-heading h2 {
  font-size: 3.2rem;
  font-weight: 400;
}

/*=======================================================
                 PRODUCT SHOR BY CSS
======================================================= */
.product-shortBy {
  width: 100%;
  height: 100%;
  position: relative;
  border: 1px solid var(--line-border);
}

.product-shortBy-no {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  height: 5rem;
}

.product-shortBy-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.product-shortBy-icons i {
  font-size: 2.3rem;
  color: var(--bg-overlay);
}

.product-shortBy-dropdown {
  position: relative;
  display: inline-block;
}

.product-shortBy-dropdown-content {
  display: none;
  position: absolute;
  right: -3rem;
  background-color: var(--white);
  min-width: max-content;
  border: 1px solid var(--line-border);
  padding: 12px 16px;
  z-index: 1;
}

.product-shortBy-dropdown-content a p {
  padding: 0.5rem 0;

  margin: 0.5rem 0;
}

.product-shortBy-dropdown:hover .product-shortBy-dropdown-content {
  display: block;
}

/*=======================================================
                 PRODUCT ALL RUGS CSS
======================================================= */

.product-all-rugs {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-all-rugs-data .wrapper {
  padding-bottom: 2rem;
}

.product-all-rugs-data .grid {
  gap: 2rem;
}

/* -------- */
.product-all-rugs-img-area {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* square image (change if needed) */
  overflow: hidden;
}

.product-all-rugs-img-area img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  border-bottom: 1px solid var(--line-border);
}
.product-all-rugs-img-area img.product-all-rugs-img-front:hover {
  opacity: 0;
  cursor: pointer;
}

.product-all-rugs-box {
  overflow: hidden;
  border: 1px solid var(--line-border);
  margin: 0 auto;
  padding: 0;
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-all-rugs-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  border-color: var(--golden-color);
}

.product-all-rugs-price-data {
  padding: 1.5rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  border-top: 1px solid #e9ecef;
}

.product-all-rugs-price-data > p:first-child {
  padding: 0;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-view-btn {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 1rem;
  background-color: var(--golden-color);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid var(--golden-color);
}

.product-view-btn:hover {
  background-color: transparent;
  color: var(--golden-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(228, 168, 5, 0.3);
}

.product-view-btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.product-view-btn:hover i {
  transform: translateX(5px);
}
.all-rugs-details-page .wrapper-heading {
  padding-top: 2.8rem;
}
/* -----------product-list-rugs-left-------- */
.product-list-rugs-left {
  /* border: 1px solid var(--line-border); */
  text-align: left;
}

#myDIV {
  width: 100%;
  margin-top: 1.6rem;
}

.pl-availability {
  padding: 1rem;
  text-align: left;
}

/* Header Styling */
.availability-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.availability-header p {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.4rem;
}

.check-box-div {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  transition: all 0.3s ease-in-out;
}

.check-box-div p {
  font-size: 1.2rem;
}

/* Hidden by default */
.check-box-div.hidden {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* Switch Button */
.switch {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 0.4rem;
  bottom: 0.3rem;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider-toggle {
  background-color: var(--golden-color);
}

input:checked + .slider-toggle:before {
  transform: translateX(26px);
}

/* Rounded Switch */
.slider-toggle.round {
  border-radius: 34px;
}

.slider-toggle.round:before {
  border-radius: 50%;
}

/* ==================================== */

/* ==================================== */
.price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
  flex-direction: column;
  gap: 2rem;
}

.price-input .field {
  display: flex;
  width: 100%;
  height: 34px;
  align-items: center;
  gap: 0.4rem;
}

.field h4 {
  color: rgb(90, 90, 90);
  font-size: 1.2rem;
}

.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 15px;
  margin-left: 2px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  color: rgb(90, 90, 90);
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 3px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
  margin-top: 3rem;
}

.slider .progress {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: #161616;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: 3rem;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #161616;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #161616;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.material-a {
  color: var(--bg-overlayk);
  font-size: 1.3rem;
  padding: 0.5rem 0;
}

.material-a:hover {
  color: var(--black);
}

/* --------------------- */

.product-details {
  position: relative;
  width: 100%;
  margin: 0 auto;
  align-self: flex-start;
}

.img-selection {
  width: 100%;
  max-width: 500px; /* 🔥 same as big-img */
  overflow-x: auto;
  overflow-y: hidden;

  display: flex;
  flex-wrap: nowrap;
  gap: 1.2rem;

  -webkit-overflow-scrolling: touch;
  /* touch-action: pan-x; */

  margin-top: 1.5rem;
}

.img-thumbnail:first-of-type {
  margin-top: 0;
}

.img-thumbnail {
  flex: 0 0 auto; /* 🔥 prevent shrinking */
  width: 60px; /* adjust as needed */
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
  background: #fff;
}

.img-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.img-thumbnail:hover {
  opacity: 1;
}

.img-thumbnail.selected {
  opacity: 1;
}

.big-img {
  position: relative;
  width: 100%;
  max-width: 500px; /* 👈 yahi main fix hai */
  flex-shrink: 0;
  height: auto;
  border: 1px solid #ddd;
  cursor: zoom-in;
  overflow: hidden;
}

.big-img img {
  width: 100%;
  height: auto;
}

.big-img img.zoom {
  position: absolute;
  transition:
    width 0.2s ease-out,
    opacity 0.2s ease-out 0.2s;
}

.display-img {
  width: 100%;
}

/* ------ */
.plus-minus {
  border: 1px solid var(--border-color);
  /* width: 30%; */
  /* padding: 1.2rem 2rem; */
  text-align: center;
}

.plus-minus span {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.plus-minus span.num {
  font-size: 1.6rem;
  padding: 0 2rem;
  pointer-events: none;
}

.plus-minus .minus,
.plus-minus .plus {
  font-size: 1.6rem;
  padding: 1.2rem 1.6rem;
}

/* =============== */
.product-details-data .sub-span {
  margin-bottom: 1.5rem;
}

.product-details-data h3 {
  margin-top: 1rem;
  padding-bottom: 2rem;
}

/* Product Information Styles */
.product-info-item {
  padding: 1.2rem 1.8rem;
  margin: 1rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid var(--golden-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(228, 168, 5, 0.15);
  background: linear-gradient(135deg, #fff9e6 0%, #fef5d4 100%);
}

.product-info-label {
  font-weight: 600;
  color: var(--black);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-info-label i {
  color: var(--golden-color);
  font-size: 1.6rem;
}

.product-info-value {
  color: #555;
  font-size: 1.5rem;
  line-height: 1.8;
  flex: 1;
}

.product-description {
  padding: 2rem;
  margin: 2rem 0;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  line-height: 1.8;
  color: #666;
  font-size: 1.4rem;
}

.product-description:empty {
  display: none;
}

.product-details-data .common-btn:hover {
  color: var(--black);
}

/* 
============================
PRODUCT PRICING STYLES
============================ */
.price-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.price-mrp {
  font-size: 1.8rem;
  color: #dc3545;
  text-decoration: line-through;
  font-weight: 500;
  opacity: 0.8;
}

.price-selling {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--black);
}

/* For product listing cards */
.product-all-rugs-price-data .price-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}

.product-all-rugs-price-data .price-mrp {
  font-size: 1.3rem;
  order: 1;
  font-weight: 500;
}

.product-all-rugs-price-data .price-selling {
  font-size: 1.8rem;
  order: 2;
  font-weight: 700;
  color: var(--golden-color);
}

/* For related products in product details page */
.product-all-rugs-price-data p {
  margin: 0;
}

/* For slider products on index page */
.beads-price .price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.beads-price .price-mrp {
  font-size: 1.4rem;
}

.beads-price .price-selling {
  font-size: 1.8rem;
}

/* 
============================
CLICK TO TOP BUTTON 
============================ */
.to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: var(--golden-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.to-top-btn:hover {
  background-color: var(--bg-overlay);
  transform: scale(1.1);
}

.to-top-btn:active {
  transform: scale(1);
}

/* ============================
CLICK TO TOP BUTTON 
============================ */
/* ======================================
======================================
        website loader
======================================
====================================== */

/* ===================================
          CONTACT US CSS
=================================== */
.contact {
  width: 100%;
  height: 100%;
  position: relative;
}

.contact-box input {
  width: 49%;
  padding: 2rem;
  margin: 1rem 0;
  height: 5rem;
  border: none;
  outline: none;
  border: 1px solid var(--border-color);
}

.contact-box textarea {
  border: 1px solid var(--border-color);
  width: 98%;
  padding: 2rem;
  margin: 1.6rem 0;
  height: 15rem;
  /* border: none; */
  outline: none;
}

.contact-box .common-btn {
  display: block;
  width: 98%;
  margin: auto;
  font-size: 1.6rem;
}

.contact-data {
  text-align: left;
}

.customRug-color h3 {
  font-weight: 400;
}

.contact-wrapper-cr {
  max-width: 100rem;
  margin: auto;
  padding: 8.6rem 2.8rem 0rem 2.8rem;
  text-align: center;
  text-align: left;
}

/* ===================================
          contact map CSS
=================================== */
.map {
  margin-top: 5rem;
}
.map h2 {
  padding-bottom: 2rem;
  text-align: center;
}
/* ===================================
          GUIDE CSS
=================================== */
/* ===================================
          GUIDE CSS
=================================== */
.guide {
  width: 100%;
  height: 100%;
  position: relative;
}

.guide .wrapper {
  max-width: 100rem;
  text-align: left;
}

.guide h2 {
  padding-bottom: 2rem;
}

.guide img {
  width: 70%;
  height: auto;
}

/* ======== */

/* ===================================
      index-page-data css
=================================== */
.index-page-data {
  width: 100%;
  height: 100%;
  position: relative;
}

.index-page-data .ipd-left .ipd-left-one {
  margin-bottom: 2rem;
  text-align: left;
  overflow: hidden;
}

.index-page-data .ipd-left .ipd-left-one img {
  width: 100%;
  height: auto;
}

/* ////////////ipd-left-two data////////////// */
/* ////////////ipd-left-two data////////////// */
/* ////////////ipd-left-two data////////////// */
.ipd-left-two .ipdlt-heading {
  text-align: left;
  border-bottom: 2px solid var(--line-border);
  width: 100%;
}

.ipd-left-two-boxes {
  margin-top: 2rem;
}

.ipd-left-two-boxes .ipd-left-two-box {
  margin-bottom: 1.5rem;
}

.ipd-left-two-boxes .ipd-left-two-box a {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
}

.ipd-left-two-boxes .ipd-left-two-box a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(228, 168, 5, 0.2);
  border-color: rgba(228, 168, 5, 0.3);
}

.latest-product-img {
  width: 100px;
  height: 100px;
  min-width: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f8f9fa;
}

.latest-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.ipd-left-two-box a:hover .latest-product-img img {
  transform: scale(1.05);
}

.ipdltb-data {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.ipdltb-data h5 {
  text-align: left !important;
  color: #353535;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.ipdltb-data h4 {
  text-align: left !important;
  color: #666;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}

.latest-product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.3rem;
}

.latest-product-price .mrp {
  color: #dc3545;
  font-size: 1.2rem;
  text-decoration: line-through;
  font-weight: 500;
}

.latest-product-price .price {
  color: var(--golden-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.ipdltb-data h2 {
  text-align: left !important;
  color: var(--red);
}

/* ////////////ipd-left-three data////////////// */
/* ////////////ipd-left-three data////////////// */
/* ////////////ipd-left-three data////////////// */
.ipd-left-three {
  margin-top: 3rem;
  border: 1px solid var(--line-border);
  padding: 3rem;
  border-radius: 1rem;
}

.ipdlt-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ipdlt-box i {
  font-size: 3.5rem;
  color: var(--golden-color);
}

.ipdltb-b {
  border-bottom: 1px solid var(--line-border);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

/* ////////////ipd-left-four data////////////// */
/* ////////////ipd-left-four data////////////// */
/* ////////////ipd-left-four data////////////// */
.ipd-left-four {
  margin-top: 5rem;
  text-align: left;
}

.ipd-left-four img {
  width: 100%;
  height: auto;
}

/* ////////////ipd-left-four data////////////// */
/* ////////////ipd-left-four data////////////// */
/* ////////////ipd-left-four data////////////// */
.ipd-left-five {
  margin-top: 3rem;
  text-align: left;
}

.ipd-left-five img {
  width: 100%;
  height: auto;
}

/* =======================
      ipd-right
      ======================= */
.ipd-right {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ////////////ipd-right-one data////////////// */
/* ////////////ipd-right-one data////////////// */
/* ////////////ipd-right-one data////////////// */
.ipd-right-two-slider {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.ipd-right-one {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ipdro-box {
  background-color: var(--light-white);
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  padding: 1.5rem;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ipdro-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(228, 168, 5, 0.15);
  border-color: rgba(228, 168, 5, 0.3);
}

.ipdro-img-container {
  width: 100px;
  height: 100px;
  min-width: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #f8f9fa;
}

.ipdro-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.ipdro-box:hover .ipdro-img-container img {
  transform: scale(1.08);
}

.ipdrob-data {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.ipdrob-data h4 {
  color: #666;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}

.ipdrob-data h3 {
  color: #353535;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.ipdrob-data a {
  font-size: 1.3rem;
  color: var(--golden-color);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.ipdrob-data a:hover {
  gap: 1rem;
  color: #c59004;
}

.ipdrob-data a i {
  background-color: var(--golden-color);
  color: var(--white);
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ipdrob-data a:hover i {
  background-color: #c59004;
  transform: translateX(3px);
}

/* ////////////ipd-right-two data////////////// */
/* ////////////ipd-right-two data////////////// */
/* ////////////ipd-right-two data////////////// */
/* ////////////ipd-right-two data////////////// */
.ipd-right-two {
  margin-top: 2rem;
}

.tab-container {
  /* margin: 5% 10%; */
  /* background-color: #c1e3d9; */
  /* padding: 3%; */
  /* border-radius: 4px; */
}

.tab-menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 2rem;
}

.tab-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab-menu ul li {
  list-style-type: none;
  /* display: inline-block; */
  margin: 0 0 1rem 0;
}

.tab-menu ul li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.4);
  background-color: #b4cbc4;
  padding: 7px 25px;
  border-radius: 4px;
  font-size: 1.4rem;
}

.tab-menu ul li a.active-a {
  background-color: var(--black);
  color: #ffffff;
}

.tab {
  display: none;
}

.tab.tab-active {
  display: block;
}

.tab-container-box {
  display: flex;
  align-items: center;
  gap: 4rem;
  align-items: start;
}

.tab-container-box-img {
  width: 18%;
}

.tab-container-box-img h3 {
  font-family: "Great Vibes", cursive;
  text-transform: capitalize;
  font-size: 5rem;
  color: var(--black);
}

.tab-container-box-slider {
  width: 78% !important;
  min-width: 0;
  overflow: hidden !important;
}

/* ========================================
   PRODUCT SLIDER CARDS - REDESIGNED
   ======================================== */
.beads-swiper {
  position: relative;
  padding: 2rem 0;
}

.beads-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  width: 280px !important;
  max-width: 280px;
}

.product-slider-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e9ecef;
  width: 100%;
}

.product-slider-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--golden-color);
}

.product-slider-card-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #f8f9fa;
}

.product-slider-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-slider-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.beads-sub-name {
  text-align: left;
  font-size: 1.2rem;
  color: var(--golden-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beads-name {
  text-align: left;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  color: var(--black);
  font-weight: 600;
  line-height: 1.4;
  min-height: 4.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.beads-price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.beads-price .price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.beads-price .price-mrp {
  font-size: 1.2rem;
  order: 1;
}

.beads-price .price-selling {
  font-size: 2rem;
  order: 2;
  margin: 0;
}

/* Navigation arrows for product slider */
.beads-prev,
.beads-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 4.5rem;
  height: 4.5rem;
  background: white;
  color: var(--golden-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid var(--golden-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.beads-prev:hover,
.beads-next:hover {
  background: var(--golden-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.beads-prev {
  left: -2rem;
}

.beads-next {
  right: -2rem;
}

.beads-prev i,
.beads-next i {
  font-size: 2rem;
}

/* Responsive adjustments for product slider */
@media (max-width: 1200px) {
  .beads-swiper .swiper-slide {
    width: 260px !important;
    max-width: 260px;
  }

  .beads-prev {
    left: -1rem;
  }

  .beads-next {
    right: -1rem;
  }
}

@media (max-width: 768px) {
  .beads-swiper .swiper-slide {
    width: 240px !important;
    max-width: 240px;
  }

  .beads-prev,
  .beads-next {
    width: 3.5rem;
    height: 3.5rem;
  }

  .beads-prev {
    left: 0;
  }

  .beads-next {
    right: 0;
  }

  .tab-container-box {
    flex-direction: column;
    gap: 2rem;
  }

  .tab-container-box-img,
  .tab-container-box-slider {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .beads-swiper .swiper-slide {
    width: 90% !important;
    max-width: 100%;
  }

  .beads-prev i,
  .beads-next i {
    font-size: 1.6rem;
  }

  /* Latest Products Responsive */
  .ipd-left-two-boxes .ipd-left-two-box a {
    gap: 1rem;
    padding: 0.8rem;
  }

  .latest-product-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }

  .ipdltb-data h5 {
    font-size: 1.2rem;
  }

  .ipdltb-data h4 {
    font-size: 1rem;
  }

  .latest-product-price .mrp {
    font-size: 1rem;
  }

  .latest-product-price .price {
    font-size: 1.3rem;
  }

  /* Featured Products Responsive */
  .ipdro-box {
    gap: 1rem;
    padding: 1rem;
  }

  .ipdro-img-container {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }

  .ipdrob-data h4 {
    font-size: 1rem;
  }

  .ipdrob-data h3 {
    font-size: 1.3rem;
  }

  .ipdrob-data a {
    font-size: 1.1rem;
  }
}
/* ////////////payment banner/////////// */
/* ////////////payment banner/////////// */
/* ////////////payment banner/////////// */
/* ////////////payment banner/////////// */
/* ////////////payment banner/////////// */
/* ////////////payment banner/////////// */
.ipd-right-payment-banner {
  margin-top: 5rem;
}
.ipd-right-payment-banner img {
  width: 100%;
  height: auto;
}
.line-border {
  border-bottom: 2px solid var(--line-border);
}

/* ============================================
   EMPTY STATE - NO PRODUCTS AVAILABLE
   ============================================ */
.empty-product-state {
  width: 100%;
  text-align: center;
  padding: 60px 20px;
  margin: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px dashed #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.empty-product-state:hover {
  border-color: var(--golden-color);
  box-shadow: 0 6px 20px rgba(228, 168, 5, 0.1);
}

.empty-product-state i {
  font-size: 6rem;
  color: #d4d4d4;
  margin-bottom: 20px;
  display: block;
  animation: fadeInScale 0.5s ease;
}

.empty-product-state h3 {
  font-size: 2.4rem;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 10px;
  font-family: var(--main-font);
  letter-spacing: 0.1rem;
}

.empty-product-state p {
  font-size: 1.6rem;
  color: #666;
  font-family: var(--para-font);
  margin-top: 10px;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .empty-product-state {
    padding: 40px 15px;
    margin: 20px 0;
  }

  .empty-product-state i {
    font-size: 4.5rem;
  }

  .empty-product-state h3 {
    font-size: 2rem;
  }

  .empty-product-state p {
    font-size: 1.4rem;
  }
}

/* ============================================
   LOADING SPINNER ANIMATION
   ============================================ */
.fa-spinner {
  animation: spin 1s linear infinite !important;
  color: var(--golden-color) !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ============================================
   SEARCH SPECIFIC STYLES
   ============================================ */
.fa-magnifying-glass {
  color: #b8b8b8 !important;
}

.fa-triangle-exclamation {
  color: #ff6b6b !important;
}
.uplaod-sda {
  height: auto;
  width: 100%;
}
