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

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
button {
  font-family: "Roboto", sans-serif;
}

.home-furnishing-container {
  display: flex;
  max-width: 63rem;
  align-items: center;
  overflow: hidden;
  padding: 2rem 0px 2rem 3rem;
  justify-content: space-around;
}

.home-furnishing-heading {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.2rem;
  letter-spacing: 0;
  text-align: left;
}

.home-furnishing-titles {
  padding-right: 3rem;
}
.home-furnishing-titles #towels-padding {
  padding: 0px 10px;
}

.home-furnishing-titles a {
  font-family: "Roboto", sans-serif;
  color: rgb(26, 26, 26);
  padding: 0px 2rem;
  border-right: 1px solid;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
}

#border-right-unstyle {
  border-right: none;
}

/* banner page */
.home-furnishing-sliding-img .banner-img {
  height: 100vh;
  width: 100vw;
  display: none;
}

.home-furnishing-banner {
  position: relative;
  text-align: center;
}

/* .mobile-banner {
    display: none;
  }
  
  .dekstop-banner {
    display: none;
  } */

.banner-img.active-banner-img {
  display: block;
}

#prev-btn,
#next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0.5rem 0px;
  background-color: #fff;
  color: rgb(22, 6, 127);
}

#prev-btn {
  left: 10px;
}

#next-btn {
  right: 10px;
}

.radio-btns {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* sub banner */
.home-furnishing-sub-banner {
  padding-top: 1.25rem;
}

.home-furnishing-sub-banner-container {
  display: flex;
  width: 100%;
  /* flex-wrap: wrap; */
  justify-content: space-around;
}

.home-furnishing-sub-banner-container a {
  text-decoration: none;
}

.home-furnishing-sub-banner-container a:hover img {
  transform: scale(1.01);
}

.home-furnishing-sub-banner-container a img {
  max-width: 100%;
  transition: transform 0.3s ease;
}

.home-furnishing-sub-banner-container a .sub-banner-text {
  font-family: "Roboto", sans-serif;
  margin-top: 0.5rem;
  color: black;
  font-weight: 700;
  padding-bottom: 1rem;

  width: 4rem;
}

.home-furnishing-banner-individual-image {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
}

.home-furnishing-sub-banner-container a:hover .sub-banner-text {
  transform: translateY(1px);
  border-bottom: 1px solid #000;
}

/* blanket banner image */
.blanket-image {
  padding-top: 2rem;
  padding-bottom: 1.75rem;
}

.blanket-image img {
  height: auto;
  max-width: 100%;
}

/* bedsheet image banner with desc  */
.bedsheet-image-details {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bedsheet-image {
  width: 66.67%;
}

.bedsheet-image img {
  width: 100%;
}

.bedsheet-details {
  font-family: "Roboto", sans-serif;
  padding-left: 2rem;
  width: 33.33%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bedsheet-details h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.bedsheet-details p {
  font-family: "Roboto", sans-serif;
  color: rgb(69, 67, 67);
}

.shop-bedsheet,
.shop-blanket,
.shop-towels {
  font-family: "Roboto", sans-serif;
  background-color: #494343;
  color: #fff;
  padding: 1rem;
  font-weight: 700;
  font-size: 1rem;
}

/* best seller */
.best-seller {
  margin-top: 3rem;
}

.best-seller .best-seller-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.best-seller-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.best-seller-heading h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3.5rem;
}

.best-seller-heading p {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  margin: 0.75rem 0px;
  font-size: 0.75rem;
  line-height: 1.5rem;
}

.best-seller-cards {
  max-width: 100%;
  display: flex;
  justify-content: space-around;
  padding-top: 2.5rem;
}

.best-seller-cards .best-seller-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.best-seller-card a img {
  max-width: 100%;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.best-seller-card a {
  text-decoration: none;
  color: #494343;
}

.best-seller-card a p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.best-seller-card p {
  color: #494343;
}

/* Hide the first image on hover */
.hiding-image-div:hover img:nth-child(1) {
  display: none;
}

/* Initially hide the second image */
.hiding-image-div img:nth-child(2) {
  display: none;
}

/* Display the second image on hover */
.hiding-image-div:hover img:nth-child(2) {
  display: block;
}

/* Initially hide the button */
.add-to-cart-button {
  position: absolute;
  bottom: 90px;
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(251, 251, 251);
  color: #494343;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  border: none;
  cursor: pointer;
  display: none;
}

.coloured-span-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgb(198, 42, 42);
  transform: translateX(-50%);
}

.wishlist-dropup {
  position: absolute;
  top: -50px;
  right: -10px;
  color: #fff !important;
  background-color: #494343;
  padding: 0.25rem;
  font-weight: 400;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 75%,
    75% 75%,
    63% 100%,
    50% 75%,
    0% 75%
  );
  padding-bottom: 1rem;
  display: none;
}

/* Display the button on hover */
.hiding-image-div:hover .add-to-cart-button {
  display: block;
}

/* luxury container */
.luxury-container {
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff3da;
}

.luxury-details {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.luxury-details h2 {
  color: #3e2222;
  font-weight: 200;
  font-size: 2rem;
  line-height: 2.5rem;
}

.luxury-details p {
  color: #3e2222;
  font-size: 1rem;
  line-height: 1.75rem;
}

.shop-blanket {
  background-color: #3e2222;
}

.luxury-images {
  width: 33%;
  max-width: 33%;
}

.luxury-images img {
  width: 100%;
  max-width: 100%;
}

.luxury-images p {
  font-family: "Roboto", sans-serif;
  padding-bottom: 1rem;

  width: 8rem;
}

.luxury-images p:hover {
  border-bottom: 1px solid #000;
}
.luxury-images a {
  text-decoration: none;
  color: #3e2222;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.luxury-images a:hover {
  text-decoration: underline;
}

.shop-now {
  font-family: "Roboto", sans-serif;
  position: relative;
  bottom: 110px;
  left: 35%;
  padding: 1rem;
  background-color: #fff;
  color: #000;
  border: none;
  letter-spacing: 2px;
  font-size: 1rem;
  overflow: hidden;

  display: inline-block;
}

button {
  cursor: pointer;
}

#give-me-padding {
  padding-top: 3rem;
}

/* shop gift card  */
.shop-gift-card-container {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-gift-card {
  width: 100%;
}

.shop-gift-card a img {
  width: 100%;
}

.shop-gift-btn {
  font-family: "Roboto", sans-serif;
  left: 10%;
  border-radius: 0.5rem;
}

.shop-gift-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0.3;
  background-color: #7b7575;
  transition: height 0.3s ease-out;
}

.shop-gift-btn:hover::before {
  height: 100%;
}

.four-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem;
}

.four-steps-title {
  width: 25%;
}

.four-steps-title h3,
.four-steps-title h2 {
  font-family: "Roboto", sans-serif;
  color: rgb(23, 23, 53);
}

.four-steps-title h2 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5rem;
  margin-top: 0.5rem;
}

.four-steps-div {
  display: grid;
  grid-gap: 3rem;
  gap: 3rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 400px);
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.four-steps-details {
  display: flex;
  text-align: left;
  margin: 0;
}

.four-steps-details .free-delivery {
  width: 3rem;
  height: 2rem;
}
.four-steps-details img {
  width: 2rem;
  height: 1.5rem;
  margin-bottom: 1rem;
}

.four-steps-details svg {
  width: 3rem;
}

.individual-details h6 {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #776f6f;
}

/* sidebar */

.sidebar {
  width: 20%;
  position: absolute;
  height: 100vh;
  background-color: #fff;
  overflow-y: auto;

  left: 0px;

  z-index: 1;
  display: block;
  margin-top: 3rem;
  padding: 3rem 2rem;
  padding-bottom: 30%;
  /* 
    position: sticky;
    display: block; */
}

.sidebar-price,
.price-range {
  display: flex;
  padding-top: 1.5rem;
  cursor: pointer;
}

.sidebar-price {
  justify-content: space-between;
}

.price-range {
  flex-wrap: wrap;
  /* flex-direction: column; */
  gap: 1rem;
}

.price-range .range {
  width: 100%;
}

.from-to-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  justify-content: space-between;
  cursor: pointer;
}

.price-range-from,
.price-range-to {
  display: flex;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
  gap: 1.75rem;
  padding-top: 1rem;
  padding-left: 0.5rem;
  padding-bottom: 1rem;
  border: 1px solid rgb(230, 230, 230);
  width: 100%;
}

.sidebar-items {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  cursor: pointer;
}

.price-number-from-input,
.price-number-to-input {
  width: 4rem;
  border: none;
}

.price-range-from .rupees-span,
.price-range-to .rupees-span {
  color: #776f6f;
  font-size: 1rem;
}

.sidebar-item-individual {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.sidebar-price h3,
.sidebar-price span,
.sidebar-item-individual h3,
.sidebar-item-individual span {
  color: rgb(22, 6, 127);
}

/* filter-sort by */
.filter-sortby-section {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 9999999;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.filter-sortby {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100vw;
}

.filter-btn,
.sortby-btn {
  color: rgb(22, 6, 127);
  width: 10rem;
  border: none;
  background-color: #fff;
  display: flex;
  flex: 1 0 0;
  justify-content: center;
  align-items: center;
  padding: 11px;

  vertical-align: middle;
}
.filter-btn {
  padding-right: 3rem;
  border-right: 1px solid black;
}
.sortby-btn {
  padding-left: 3rem;
}

.filter-btn span {
  font-size: 1rem;
  margin-right: 1rem;
}
.sortby-btn img {
  margin-right: 1rem;
  width: 1rem;
}

.search-button-popup,
.cart-button-popup {
  background-color: #25306e;
  border: none;
  color: #fff;
}

.tablet-filter-close-btn-pop,
.view-results-btn {
  display: none;
}

.navbar.scrolled button {
  background-color: #24234e;
}
