/* @import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap'); */

.instrument-sans {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

p {
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #666666;
  margin: 0px;
}

span {
  font-family: "Instrument Sans", sans-serif;
}

h1 {
  font-family: "Instrument Sans", sans-serif;
}

h2 {
  font-family: "Instrument Sans", sans-serif;
}

h3 {
  font-family: "Instrument Sans", sans-serif;
}

h4 {
  font-family: "Instrument Sans", sans-serif;
}

h5,
h6 {
  font-family: "Instrument Sans", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
}

.top-bar-desktop {
  display: flex;
  justify-content: space-around;
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1d349a;
}

.top-bar-left {
  margin: 0px;
  padding: 0px;
  column-gap: 2rem;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  list-style: none;
  display: flex;
  color: white;
}

.top-bar-left li a {
  text-decoration: none;
  color: white;
}

.topbar-text span {
  color: white;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  .topbar-text span {
    font-size: 14px;
  }

  .top-bar-desktop {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.navigation-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 20px;
}

.search-container {
  display: flex;
  align-items: center;
  flex-grow: 1;
  border: 1px solid #ededed;
  background-color: #ededed;
  border-radius: 40px;
  padding: 10px;
  max-width: 38%;
}

.category-selector {
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-right: 1px solid #ddd;
  cursor: pointer;
}

.category-selector span {
  font-size: 16px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
}

.category-selector i {
  font-size: 12px;
  margin-left: 8px;
}

.search-field {
  flex-grow: 1;
  padding: 0 15px;
}

.search-field input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  background-color: #ededed;
}

.search-btn {
  background: none;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  font-size: 18px;
}

.nav-items {
  display: flex;
  gap: 25px;
  margin-left: 20px;
}

.nav-items a {
  text-decoration: none;
  color: #333;
  display: flex;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  gap: 8px;
}

.nav-items i {
  font-size: 18px;
}

.cart-icon {
  background-color: #ededed;
  border-radius: 20%;
  padding: 10px 10px 10px 10px;
  cursor: pointer;
  font-size: 14px !important;
}

.navigation-menu-mobile {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
  position: relative;
}

.mob-menu a {
  color: black;
  font-size: 22px;
  margin-right: 20px;
}

.mob-menu img {
  vertical-align: top;
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 768px) {
  .search-container {
    margin: 20px;
    max-width: 100%;
  }
}

.nav-link {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  transition: all 0.3s ease;
}

.twinkle-link {
  position: relative;
  display: inline-block;
  color: #c4301c;
  text-decoration: none;
}

.twinkle-star {
  position: absolute;
  width: 6px;
  height: 6px;
  fill: #c4301c;
  opacity: 0;
  animation: twinkle 3s infinite ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/* Positioning around the text of stars "Sale" menu item */
.star1 {
  top: 8px;
  left: -3px;
  animation-delay: 0s;
}

.star2 {
  top: 8px;
  right: -3px;
  animation-delay: 0.5s;
}

.star3 {
  bottom: 0px;
  right: 3px;
  animation-delay: 0.10s;
}

@media (max-width: 768px) {
  .star2 {
    top: 12px;
    left: 62px;
    animation-delay: 0.5s;
  }

  .star3 {
    bottom: 5px;
    left: 52px;
    animation-delay: 0.10s;
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.4) rotate(0deg);
  }
}

/* Twinling end of On sale */
.menu-item {
  padding: 10px 20px 0px 5vw;
  position: relative;
}

.icon--2xs {
  width: 1rem;
  height: 1rem;
}

hr {
  color: #e5e5e5;
  margin: 0px;
  opacity: 1;
}

/* Updated CSS for mobile menu */
.mobile-submenu {
  position: absolute;
  top: 18%;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  z-index: 9999;
  transition: max-height 0.3s ease-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-submenu.active {
  max-height: 70vh;
  overflow-y: auto;
}

.submenu-level {
  display: none;
  padding: 15px 20px;
}

.submenu-level.active {
  display: block;
}

.menu-header {
  padding: 10px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.back-button {
  color: #666;
  cursor: pointer;
  font-size: 14px;
}

.back-button i {
  margin-right: 8px;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  font-weight: 600;
}

.menu-items li:last-child a {
  border-bottom: none;
}

.fa-chevron-right {
  font-size: 12px;
  color: #999;
  transition: transform 0.3s ease;
}

.has-submenu.active .fa-chevron-right {
  transform: rotate(90deg);
}


/* Mega Menu Styles */
.mega-menu {
  position: absolute;
  top: 101%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
  padding: 3% 8%;
  flex-wrap: wrap;
  gap: 3rem;
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1;
  gap: 30px;
}

.mega-menu.active {
  display: flex;
  visibility: visible;
  overflow-y: auto;
  height: 60vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mega-menu.active::-webkit-scrollbar {
  display: none;
}

.menu-heading a{
  text-decoration: none;
  color:black;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Instrument Sans", sans-serif;
}

.dmenu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dmenu-items li {
  list-style: none;
  padding: 4px;
  margin: 0px;
}

.dmenu-items li a {
  list-style: none;
  margin: 0px;
  align-items: center;
  padding: 12px 0;
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.gap-8 {
  gap: 40px;
}

.menu-column:last-child {
  border-right: none;
}

.mega-menu__column {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
}

.megamenu-imagebg {
  background-image: url(https://productboxesshop.com/wp-content/uploads/Small-Banner.webp);
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 320px;
  width: 200px;
  display: block;
  text-align: center;
}

.megamenu-imagebg p {
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding-top: 20px;
}

.megamenu-imagebg h3 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  padding-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.megamenu-imagebg button {
  background-color: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  margin-top: 110px;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  border: none;

}
/* Mega Menu Styles for Shop By Room */
.mega-menu-room {
  display: none;
  position: absolute;
  top: 101%;
  left: 10%;
  right: 10%;
  width: 60%;
  padding: 0 20px;
  background: #fff;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mega-menu-room.active {
  display: flex;
  flex-direction: row;
  height: 400px;
}

/* Mega Menu Styles for Mobile Shop By Room */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.room-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
}

.room-grid img {
  width: 100%;
  max-width: 150px;
  border-radius: 8px;
  margin-bottom: 10px;
  object-fit: cover;
}

/* Mega Men Styles for About Us */

.mega-menu-about {
  position: absolute;
  top: 115%;
  width: 220px;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: none;
  visibility: hidden;
  z-index: 1000;
  padding: 10px 0;
  transition: 0.2 ease;
}

.mega-menu-about.active {
  display: block;
  visibility: visible;
}

.about-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-menu li {
  padding: 5px 20px;
}

.about-menu li a {
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.about-menu li a:hover {
  background: #f9f9f9;
}


/*********************************** Main Page styling Started *************************************/
/* Make images circular */
.owl-carousel .item img {
  border-radius: 60%;
  width: 70% !important;
  object-fit: cover;
  margin: 0 auto;
}
.item a {
  text-decoration: none;
}
.shop-text {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  font-family: "Instrument Sans", sans-serif;
}

/* Style for Slider */
.hero-slider {
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
  height: 500px;
}

.slide1 {
  background-image: url(/wp-content/uploads/Banner-desktop.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px !important;
  border-radius: 20px;
}

.slide-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100% !important;
  top: 20%;
  right:37%;
}

.subheading {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
}

.heading {
  text-align: center;
  margin-top: 0px;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
}

.slide-content a {
  text-decoration: none;
}

.slider-btn {
  background-color: #283b96;
  border-radius: 15px;
  padding: 10px 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border: none;
  font-family: "Instrument Sans", sans-serif;
  transition: all 300ms ease-in-out;
}

.slider-btn:hover {
  background-color: white;
  color: #000;
  transition: all 0.3s ease;
}


@media (max-width: 768px) {
 .slide1M {
  background-image: url(https://productboxesshop.com/wp-content/uploads/Banner-Mobile.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px !important;
  border-radius: 20px;
} 
.shop-text {
  font-size:12px;
}
}

/* New Arrivals Section Vanilla CSS */
.headingh2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.tab-head {
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #666670;
  cursor: pointer;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.tab-head:hover {
  color: #000000;
}

.tab-head.active {
  color: #000000;
}

.tab-head.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background-color: #000;
}

.new-arrival {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tabs {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-end;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.promo-card {
  position: relative;
  /* width: 226px; */
  height: 362px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.promo-subtitle {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
}

.promo-title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
}

.promo-btn {
  background-color: white;
  color: black;
  padding: 9px 30px;
  border-radius: 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.promo-btn:hover {
  background-color: #f0f0f0;
}

.product-img-container {
  position: relative;
  width: 100%;
  border-radius: 10px;
}

.image {
  height: auto;
  border-radius: 13px;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
}

.overlay-button {
  color: #000;
  background-color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  position: relative;
  bottom: 50px;
  left: 24px;
  text-decoration: none;
  padding: 11px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.overlay-button:hover {
  background-color: #000000;
  color: white;
}

.product-img-container:hover .overlay {
  opacity: 1;
}

.product-subtitle {
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  color: #666;
  font-weight: 700;
  opacity: 1;
  padding-top: 20px;
  margin-bottom: 3px;

}

.product-subtitle a {
  text-decoration: none;
  color: #666;
}

.product-title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  padding-top: 8px;
  font-weight: 800;
  color: #000;
  margin-bottom: 0px;
}

.product-discount {
  color: #c4301c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  padding-top: 8px;
  font-weight: 800;
  margin-bottom: 0px;
}

.product-price {
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  color: #666;
  font-weight: 500;
  opacity: 1;
  text-decoration: line-through;
}

.owl-nav {
  position: absolute;
  top: 110%;
  gap: 10px;
  right: 0%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-prev,
.owl-next {
  font-size: 28px !important;
  background-color: #ffffff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #dcdcdc !important;
  display: flex;
  justify-content: center;
  align-items: center !important;
  cursor: pointer;
  pointer-events: all;
  padding: 0;
  margin: 0;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 24px;
  }
  .promo-card-m {
    position: relative;
    margin-bottom: 10px;
  }

  .promo-card-m img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  .promo-overlay {
    gap: 5vh;
    top:10px;
  }
  .promo-btn {
    padding: 5px 15px;
    font-size: 12px;
  }

  .hot-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }
  .hot-item a {
    text-decoration: none;
  }
  .hot-item {
    margin-bottom: 10px;
  }
}

.banner-sale {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 40px 46px 40px 46px;
  background-color: #f4f691;
  margin-top: 100px;
  border-radius: 10px;
}

#countdown {
  font-size: 34px;
  font-weight: bold;
  color: black;
  font-family: "Instrument Sans", sans-serif;
}

.button-general {
  color: #ffffff;
  background-color: #000000;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 11px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.button-general:hover {
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 768px) {
  .banner-sale {
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
  }
}

.display-product img {
  border-radius: 10px;
}

.box img {
  border-radius: 4px;
}

.overlay-display-product {
  position: absolute;
  bottom: 0;
  background-color: rgba(34, 33, 33, 0.049);
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.titles {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 20px;
  ;
  margin-bottom: 20px
}

.sub-odp {
  font-size: 16px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: "Instrument Sans", sans-serif;
}

.title-odp {
  font-size: 30px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: "Instrument Sans", sans-serif;
}

.pricing {
  background-color: #2d2c29;
  padding: 10px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.box {
  width: 17%;
  color: #ffffff;
}

.text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-box p {
  margin: 0;
  font-weight: 700;
  color: white;
}

.box-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-btn {
  background-color: #fff;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 17px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .titles {
    margin-bottom: 0px;
  }

  .text-box p {
    font-size: 12px;
  }

  .title-odp {
    font-size: 24px;
  }

  .sub-odp {
    font-weight: 16px;
  }
}

.headings {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.headings h2,
.headings p {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  color: #000;
}

.rowscategories {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: 1px solid rgb(229 229 229 / 50%);
}

.imagee {
  border: 1px solid rgb(229 229 229 / 60%);
  text-align: center;
  padding: 20px;
}

.imagee a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .circle-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .circle-con img{
   width:100%;
  }

  .rowscategories {
    border: none;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.featured-collection {
  display: flex;
  font-family: "Instrument Sans", sans-serif;
  gap: 40px;
  padding: 40px;
  flex-direction: column;
}

.collection-list h6 {
  padding-top: 4vw;
  font-weight: 700;
  color: #000;
  margin-bottom: 3vw;
}

.collection-item {
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 10px;
  color: #999;
}

.collection-item.active {
  color: #000;
  font-weight: bold;
  border-bottom: 2px solid #000;
  width: fit-content;
}

.image-preview img {
  width: 95%;
  border-radius: 16px;
}

#collectionDescription {
  width: 80%;
}

.featured-btn {
  text-decoration: none;
  background-color: #000000;
  border-radius: 50px;
  padding: 14px 40px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #000000;
  font-family: "Instrument Sans", sans-serif;
  transition: all 300ms ease-in-out;
}

.featured-btn:hover {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .collection-item{
    font-size: 24px;
  }
  .collection-list {
    margin-bottom: 60px;
  }

  .featured-collection {
    padding: 20px;
  }
}

/********************** Get Inspired *********************/
.owl-carousel .inspired-item img {
  height: 508px;
  border-radius: 10px;
}

.inspired-btn {
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 0%;
  right: 0px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 17px;
  border-radius: 30px;
  transition: all 0.3s ease;

}

.shop-card {
  position: absolute;
  bottom: 15%;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  z-index: 10;
  font-family: "Instrument Sans", sans-serif;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

.shop-header .close-card {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.shop-items {
  max-height: 400px;
  overflow-y: auto;
}

.shop-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  gap: 10px;
}

.shop-item img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover;
  border-radius: 8px;
}

.item-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.item-price {
  font-size: 13px;
  margin: 4px 0 0;
}

.discount .new-price {
  color: #c0392b;
  font-weight: bold;
}

.discount .old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 5px;
}

.shop-item svg {
  margin-left: auto;
  color: #999;
}

.get-inspired .owl-nav {
  top: 103%;
}
@media screen and (max-width: 768px) {
  .owl-carousel .inspired-item img {
    height: 508px;
    object-fit: cover;
    border-radius: 10px;
}
}

/********************** Turn Chairs Banner *********************/
.con-banner {
  margin-top: 100px;
}

.chair-card {
  padding: 50px 40px !important;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.bg-image-1 {
  background-image: url('../images/home-banner-01.webp');
}

.bg-image-2 {
  background-image: url('../images/home-banner-02.jpg');
}

.discount-badge {
  position: absolute;
  top: -102px;
  right: 2px;
  border-radius: 50%;
  padding: 15px 12px;
  text-align: center;
  font-size: 25px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
}

.bg-yellow {
  background-color: #fff87c;
}

.bg-red {
  background-color: #b23b29;
}

.btn-banner {
  background-color: #000000;
  color: white;
}

.btn-banner:hover {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

@media screen and (max-width: 768px) {
  .chair-card {
    padding: 20px !important;
  }

  .bg-image-1 {
    background-size: cover;
    background-position: center;
  }

  .bg-image-2 {
    background-size: cover;
    background-position: center;
  }

  .chair-p {
    margin-bottom: 100px !important;
  }

  .con-banner {
    margin-top: 0px !important;
  }
}

/* ********************** Categories Carousel *********************/
.categories-carosuel-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding: 5px;
  border-radius: 50px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.categories-carosuel-item p {
  color: #000000;
}

.categories-carosuel-item:hover p {
  color: #ffffff;
}

.categories-carosuel-item:hover {
  background-color: #000000;
}

.owl-carousel .categories-carosuel-item img {
  width: 2.8rem !important;
}

/* ********************** Shop Our Offers *********************/
.tabs-shop {
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.sale-tag {
  color: #ffffff;
  background-color: #c4301c;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/************************** Our Teams *************************/
/* .img-col{
  padding: 0px 20px 0px 50px;
}
.img-col img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  --scale-x: 1;
  --scale-y: 1;
  transition: .7s cubic-bezier(.3, 1, .3, 1);
  transition-property: transform;
  transform: scaleX(var(--scale-x)) scaleY(var(--scale-y)) rotate(.02deg);
}
.img-col img:hover{
  --scale-x: 1.03;
  --scale-y: 1.03;
} */

.team-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.3, 1, .3, 1);
  transform: scale(1);
}

.img-col {
  padding-left: 40px;
  position: relative;
}

.contet-col {
  padding-left: 90px;
}

.team-section .team-image:hover {
  transform: scale(1.01);
}

.team-h2 {
  font-size: 40px;
}

.rotating-badge {
  position: absolute;
  top: 60px;
  right: -55px;
  width: 130px;
  height: 130px;
  background-color: #f4f691;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 5px;
  justify-content: center;
}

.center-icon {
  position: absolute;
  z-index: 2;
}

.img-icon {
  width: 40%;

  object-fit: cover;
}

.rotating-ring {
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
  transform-origin: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@media (max-width: 768px) {

  .team-section h2,
  .team-h2 {
    font-size: 1.75rem;
  }

  .team-section .btn {
    width: 100%;
    text-align: center;
  }

  .img-col {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contet-col {
    padding: 20px;
  }

  .rotating-badge {
    top: 22px;
    right: 13px;
    width: 85px;
    height: 85px;
    background-color: #f4f691;
    padding: 5px;
  }

  .team-image {
    width: 90%;
  }
}

/* ********************Testimonial Section ******************** */

.testimonial-card {
  display: grid;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

img.profile-pic {
  width: 50px !important;
  height: 50px !important;
}

.product-iconns {
  width: 40px !important;
  height: 40px !important;
}

/**********************Dining & Kitchen Section ***************** */
.content-imagw {
  position: absolute;
  bottom: 8%;
}

.btn-banner-light {
  background-color: #ffffff;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-banner-light:hover {
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .section4 {
    font-size: 12px;
  }

  .left-col {
    padding-bottom: 18rem !important;
  }
}

/***********************Sliding Banner Section ******************** */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
}

.slider-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.slide-item {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.slide-item h3 {
  font-size: 30px;
  font-weight: bold;
  color: #002f9f;
  margin-bottom: 8px;
}

.slide-item img {
  width: 100%;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

/********************** Blogger Section********************/
.blog-p {
  text-align: left;
  font-size: 14px;
}

.blog-h {
  text-align: left;
  color: black;
}

.blog-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  font-family: "Instrument Sans", sans-serif;
  background: linear-gradient(to left, #f4f691 50%, #000 50%);
  background-size: 210% 110%;
  background-position: right bottom;
  transition: all 0.8s ease;
}

.blog-pill:hover {
  background-position: left bottom;
  color: #f4f691 !important;
}

@media (max-width: 768px) {
  .blog-pill{
  font-size: 13px;
  padding: 10px 7px;
  }
}

/* ********************** Instagram Section ******************** */
.gram-section {
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.gram-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: "Instrument Sans", sans-serif;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gram-card {
  background: white;
  border-radius: 10px;
  margin: 0 10px;
  width: 342px;
  height: 307px;
  flex-shrink: 0;
  overflow: hidden;
}

.gram-card img.main {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.info {
  display: flex;
  align-items: center;
  padding: 10px;
}

.info img.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.info .username {
  font-weight: bold;
  font-size: 14px;
  color: #000;
  font-family: "Instrument Sans", sans-serif;
}

.info img.insta-icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
}

.account {
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: "Instrument Sans", sans-serif;
}
.account a{
  text-decoration: none;
  color: white;
}

/* ********************** Footer Section ******************** */
.email-container {
  display: flex;
  align-items: center;
}

.email-input {
  padding: 10px 17px;
  border: none;
  border-radius: 9999px;
  background-color: #eee;
  color: #333;
  font-size: 13px;
  outline: none;
  width: 50%;
}

.subscribe {
  margin-top: 1rem;
}

.ft_headings {
  margin-bottom: 1rem;
}

.signup-button {
  margin-left: 10px;
  padding: 9px 26px;
  border: none;
  border-radius: 9999px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.signup-button:hover {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.footer-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #000;
}

.footer_bottom_bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer_info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.footer_info a {
  text-decoration: none;
}

.bottom_bar {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: none;
}
.text-muted a {
  text-decoration: none;
  color: #212529bf;
}

@media (max-width: 768px) {
  .footer-icons {
    margin-top: 20px;
    margin-bottom: 10px;
    justify-content: flex-start;
  }

  .footer_bottom_bar {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .footer_info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 15px;
  }

  .footer_bottom_bar {
    margin-bottom: 1rem;
  }

  .email-input {
    width: 69%;
  }

  .subscribe {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .ft_headings {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
  }
}

/* ********************** Collection Page Top Banner ******************** */
.collection-banner {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  font-family: "Instrument Sans", sans-serif;
  overflow: hidden;
}

.dining-image {
  flex: 1 1 50%;
  min-width: 300px;
}

.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px 0 0 10px;
}

.dining-content {
  flex: 1 1 50%;
  background-color: #f7e4e4;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  border-radius: 0 10px 10px 0;
}

.dining-content h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dining-content p {
  font-size: 16px;
  color: #555;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-top: 10px;
  font-family: sans-serif;
}

.breadcrumb a {
  color: #000000;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 5px;
  color: #888;
}

@media (max-width: 768px) {
  .collection-banner {
    flex-direction: column;
  }

  .dining-image,
  .dining-content {
    flex: 1 1 100%;
    min-width: unset;
    width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .dining-image img {
    border-radius: 10px 10px 0 0;
    height: auto;
  }

  .dining-content {
    border-radius: 0 0 10px 10px;
    padding: 20px;
  }

  .dining-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .dining-content p {
    font-size: 14px;
  }
}

/*****************************Collections Page Products************************ */
.image-collections {
  width: 100%;
  border-radius: 20px;
}

.collection-row {
  row-gap: 40px;
}

.overlay-btn {
  color: #000;
  background-color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  position: relative;
  bottom: 86px;
  left: 22%;
  text-decoration: none;
  padding: 11px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.overlay-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.product_name {
  padding-left: 20px;
}

.product_name a {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .overlay-btn {
    font-size: 13px;
    bottom: 40px;
    left: 11%;
    padding: 8px 20px;
  }

  .collection-row {
    row-gap: 30px;
  }
}

/* *****************************Collections Page Description************************ */
.cat-desc {
  padding: 4rem 5rem;
  background-color: #f6f6f6;
  border-radius: 10px;
}

.cat-desc span {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
}

.cat-desc-text p, .cat-desc-text{
  margin-bottom: 10px;
  word-spacing: 3px;
  color: black;
  font-weight:400;
}
.cat-desc-text h2{
  font-size: 24px;
  margin: 10px 0px 5px 0px;
}
/* if you want to enable the prodcut-category Description in future with view less or more uncomment this  */
/* .cat-desc-text.collapsed {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
} */

.view-more-btn {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #000;
  color: #000;
  cursor: pointer;
}


/* CSS */
.cat-desc {
  padding: 3rem 1rem;
  background-color: #f6f6f6;
  border-radius: 10px;
}

.faq-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
  justify-content: space-between;
}

.faq-box {
  padding: 10px;
}

.faq-box h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 0.8rem;
  margin-bottom: 0.6rem;
  color: #231f20;
}

.faq-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0.8rem;
  margin-bottom: 0.6rem;
  color: #231f20;
}

.faq-box ul li{
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
}

.faq-box p {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

/* Responsive: 2 columns on medium screens and up */
@media (min-width: 768px) {
  .faq-box {
    flex: 1 1 calc(50% - 1rem);
  }
}


/* *****************************Collections Page Universal Banner************************ */
.cat-banner {
  overflow: hidden;
  width: 100%;
  background-color: #f4f691;
}

.cat-banner-track {
  display: flex;
  gap: 90px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.track-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 8px;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.cat-banner:hover .cat-banner-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .cat-banner-track {
    gap: 65px;
  }

  .track-item h3 {
    font-size: 18px;
  }

  .cat-desc {
    padding: 2rem 2rem;
    background-color: #f6f6f6;
    border-radius: 10px;
  }
}

/******************** Product Page CSS ********************/
.product-gallery {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.thumbnail-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 500px;
  overflow-y: auto;
}

.thumbnail-column img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: border 0.3s;
}

.thumbnail-column img.active {
  border-color: black;
}

.main-image {
  flex: 1;
}

.main-image img {
  width: 100%;
  max-height: 562px;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
  }

  .thumbnail-column {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
  }

  .thumbnail-column img {
    width: 60px;
    height: 60px;
  }
}

.product-badge {
  background-color: #1d349a;
  color: #fff;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: bold;
  width: fit-content;
}

.sec-sku {
  font-family: "Instrument Sans", sans-serif;
}

.sku {
  border-bottom: 1px solid #1d349a;
  color: #1d349a;
}

.tick-div {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.tick-p {
  margin-bottom: 0px !important;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  font-weight: 600;
}

.product-actions {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quantity-and-cart {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.quantity-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 999px;
  padding: 8px 16px;
  background-color: #fff;
}

.qty-plus,
.qty-minus {
  color: #000;
  border: none;
  background: none;
  font-size: 20px;
  padding: 0 10px;
  cursor: pointer;
}

.qty-value {
  font-size: 16px;
  font-weight: bold;
  min-width: 30px;
  text-align: center;
}

.add-to-cart {
  padding: 12px 30px;
  width: 100%;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Instrument Sans", sans-serif;
  background: linear-gradient(to left, #eee 50%, #000 50%);
  background-size: 210% 110%;
  background-position: right bottom;
  transition: all 0.6s ease;
}

.add-to-cart:hover {
  background-position: left bottom;
  color: #fff;
}

/* .buy-now {
  width: 77%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
} */

.service-content {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: #000;
  padding-left: 10px;
}

.icon-thick {
  width: 19px;
  height: 19px;
}

/* Responsive for larger screens */
@media (max-width: 768px) {
  /* .buy-now {
    width: 100%;
  } */

  .add-to-cart {
    width: 100%;
  }
}

/* Accordion Css under GALLERY */
.accordionf {
  border: 0;
  font-family: "Instrument Sans", sans-serif;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  padding: 20px 0;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  display: flex;
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
}

.accordion-icon .vertical {
  display: inline;
}

.accordion-item.active .accordion-icon .vertical {
  display: none;
}

.accordion-content {
  padding: 0 0 20px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Colmd-5 CSS */
.store-pickup-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px;
  font-family: "Instrument Sans", sans-serif;
  background-color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.text .title {
  font-weight: 600;
  color: #000;
  font-size: 16px;
  font-family: "Instrument Sans", sans-serif;
}

.text .subtext {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.arrow {
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow svg {
  width: 16px;
  height: 16px;
  color: #000;
}

/* Responsive */
@media (max-width: 480px) {
  .store-pickup-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .arrow {
    align-self: flex-end;
  }
}

/* Promo Cards */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #049b6e1a;
  color: #049b6e;
  border-radius: 10px;
  padding: 20px;
  font-family: "Instrument Sans", sans-serif;
}

.promo-banner .icon,
.promo-banner .close {
  font-size: 20px;
  cursor: pointer;
}

.promo-banner .text-content {
  flex: 1;
  margin-left: 10px;
}

.promo-banner a {
  color: #01875f;
  text-decoration: underline;
  font-weight: 500;
  margin-left: 5px;
  font-family: "Instrument Sans", sans-serif;
}

.promo-banner .close {
  margin-left: 15px;
}

.icon-flash {
  color: #049b6e !important;
}

.subtext1 {
  font-size: 12px;
  margin-top: 5px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
}

.title1 {
  color: #049b6e;
  font-size: 15px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
}

/* Perfect Match With */
.perfect_view {
  padding: 5px 20px;
  text-decoration: none;
  background-color: #000000;
  color: #fff;
  font-size: 15px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
}

.perfect_view:hover {
  background-color: #fff;
  color: #000000;
  border: 1px solid #000;
}

/* Payment Section - with Logos */
.payment-box {
  background-color: #f0f2ff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  font-family: "Instrument Sans", sans-serif;
}

.payment-box h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.payment-box p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Read More Section */
.read-more-box {
  margin-bottom: 0;
}

.read-more-box.sp-short-desc-full {
  display: -webkit-box;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sp-short-desc-full {
  color: #000;
  font-weight:400;
}
.read-more-box.sp-long-desc-full {
  display: -webkit-box;
  -webkit-line-clamp: 10 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-text {
  font-weight: 700;
  cursor: pointer;
  display: flex;
  font-size: 14px;
}

.sp-short-desc-full~.read-text {
  place-content: start;
}

.sp-long-desc-full~.read-text {
  place-content: center;
}
/*************Product Tabs Sepcifications and OTHERS ************/
.ptabs-container {
  font-family: "Instrument Sans", sans-serif;
  margin: auto;
  padding: 20px;
}

.ptabs {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  overflow-x: auto;
}

.ptab {
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  font-family: "Instrument Sans", sans-serif;
  cursor: pointer;
  padding: 10px 0;
  color: #999;
  border-bottom: 2px solid transparent;
  flex: 0 0 auto;
}

.ptab.active {
  color: #000;
  border-color: #000;
}

.ptab-content {
  display: none;
}

.ptab-content.active {
  display: block;
}

.specs-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.chair-imgss {
  height: auto;
  width: 80%;
  transition: transform 0.7s cubic-bezier(0.3, 1, 0.3, 1);
  transform: scale(1);
}

.chair-imgss:hover {
  transform: scale(1.08);
}

.specs-text h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.specific {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.specs-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/***************** Take Closer LOOK Tabs *******************/
.line {
  height: 2px;
  width: 100%;
  background:
    repeating-linear-gradient(90deg, #e5e5e5 0 6px, #0000 0 10px) bottom;
  /*10px red then 2px transparent -> repeat this!*/
}

/****************All Eco-Certified Section ****************/
.eco-title {
  font-size: 36px;
  font-weight: 700;
}

.eco-subtitle {
  padding-top: 60px;
}

@media (max-width: 480px) {
  .eco-subtitle {
    padding-top: 0px;
  }
}

/*****************Related Products *******************/
.related-button {
  color: #000;
  background-color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  position: relative;
  bottom: 50px;
  left: 39px;
  text-decoration: none;
  padding: 11px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.related-button:hover {
  background-color: #000000;
  color: #ffffff;
}

/***********************FAQS PAGE STARTED FROM HERE************************/
.card {
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 0px;

}

.owl-carousel .owl-item .card-img-top {
  width: 50px;
  height: 50px;
}

.card-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.card a {
  color: #ffffff;
  background-color: #000000;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 11px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.faqs-section {
  padding: 0px 200px;
}

.accordion-question {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  font-family: "Instrument Sans", sans-serif;
  text-align: left;
}

@media (max-width: 768px) {
  .faqs-section {
    padding: 20px 30px;
  }
}

/************************Contact Page CSS************************ */
.contact-heading {
  padding: 0px;
}

.contact-heading p {
  width: 50%;
}

select,
input,
textarea {
  font-family: "Instrument Sans", sans-serif !important;
}

textarea {
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  background-color: #eee;
  color: #000000;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  height: 120px;
  width: 100%;
}

.contact-form {
  padding: 13px 20px;
  border: none;
  border-radius: 9999px;
  background-color: #eee;
  color: #000000;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  width: 100%;
}

.contact-form:focus {
  border: 0.5px solid #000000;
}

.contact-btn {
  border-radius: 9999px;
  padding: 10px 28px;
  background-color: #000000;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif !important;
  font-weight: 600;
  font-size: 15px;
}

.contact-btn:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}

.form-label {
  font-size: 14px;
  color: #000;
  font-family: "Instrument Sans", sans-serif !important;
  font-weight: 500;
}

.contact-sidebar {
  border-left: 1px solid #e5e5e5;
}

.icon-sidebar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.icon-sidebar p {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .contact-sidebar {
    border-left: none;
    margin-top: 50px;
  }

  .contact-heading {
    padding: 10px;
  }

  .contact-heading p {
    width: 100%;
  }

}

/************************Blogs Page CSS*************************/
.blog-banner img {
  border-radius: 10px;
}

.blog-banner-content {
  display: flex;
  flex-direction: column;
  padding: 60px 30px;
  gap: 15px;
}

.blog-banner-content p {
  font-size: 12px;
  font-weight: 600;
}

.blog-banner-content a {
  text-decoration: none;
  color: #000;
}

.blog-btn {
  border-radius: 9999px;
  padding: 10px 28px;
  background-color: #000000;
  color: #ffffff !important;
  font-family: "Instrument Sans", sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  width: max-content;
}

.tablets {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
}

.tablets-btn {
  padding: 10px 22px;
  background-color: #000000;
  color: #ffffff !important;
  font-family: "Instrument Sans", sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  flex: 0 0 auto;
}

.tablets-btn2 {
  padding: 10px 22px;
  background-color: #ffffff;
  color: #000000 !important;
  font-family: "Instrument Sans", sans-serif !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  flex: 0 0 auto;
}

.blog-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.blog-dis {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-dis img {
  border-radius: 10px;
}

.blog-dis p {
  font-size: 12px;
  font-weight: 600;
}

.blog-dis a {
  color: #000;
  text-decoration: none;
}

/* Pagination */
.pagination-wrap {
  display: flex;
  width: 100%;
  place-content: center;
  margin: 30px 0;
}

.page-numbers {
  position: relative;
  text-decoration: none;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #000066;
}

.page-numbers.current {
  color: #fff !important;
  pointer-events: none;
  cursor: auto;
  background-color: #000066 !important;
  border-color: #000066 !important;
}

/* Pagination End */
@media screen and (max-width: 768px) {
  .blog-banner-content {
    padding: 10px 10px;
    gap: 10px;
  }
}

/* ************************Single Blog Page CSS************************ */
.single-content {
  padding: 0;
}

.single-content p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.single-content h2 {
  font-size: 24px;
  padding-top: 10px;
  font-weight: 700;
}

.single-content ul,
ol {
  margin-bottom: 10px;
}

.single-content a {
  text-decoration: none;
}

.blog-diss {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.blog-diss img {
  border-radius: 10px;
}

.blog-diss p {
  font-size: 12px;
  font-weight: 600;
}

.blog-diss a {
  color: #000;
  text-decoration: none;
}

.social-icons-blog {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.social-icons-blog a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #000;
}

@media screen and (max-width: 768px) {
  .single-content {
    padding: 10px 10px;
  }

}

#specialOffersTab {
  position: fixed;
  right: 0;
  top: 70%;
  background-color: #c62828;
  color: white;
  z-index: 9999;
  padding: 10px;
  border-radius: 8px 0 0 8px;
  transform: rotate(90deg);
  transform-origin: right top;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.sticky-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sticky-text {
  font-size: 16px;
  white-space: nowrap;
  font-weight: 500;
}

.close-sticky {
  margin-left: 5px;
  font-size: 16px;
  font-weight: bold;
}

/* ************************404 Page CSS************************ */
.page404 {
  margin: 100px auto;
}

/* ************************About Us Page CSS************************ */
.about-banner-content {
  position: absolute;
  top: 10%;
  left: 4%;
  color: #ffffff;
  padding: 8px;
}

.about-center {
  width: 50vw;
  margin: 0 auto;
}

.about-center h2 {
  padding-bottom: 14px;
}
.main-about-heading {
  font-size:70px;
}
@media screen and (max-width: 768px) {
  .about-center {
    width: 80vw;
    margin: 0 auto;
  }
  .main-about-heading {
    font-size:24px;
  }
}
/* ************************Our Services Page CSS************************ */
.care-section {
  padding: 50px 20px;
  background-color: #fff;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.care-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.care-card:hover{
  background: #f4f691;
}

.icon-services {
  font-size: 80px;
  margin-bottom: 15px;
}

.care-card h3 {
  font-family: "Instrument Sans", sans-serif !important;
  font-size: 18px;
  margin: 10px 0;
  color: #222;
}

.care-card p {
  font-family: "Instrument Sans", sans-serif !important;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.gapx {
  gap:1vw;	
}