body {
  margin: 0;
  font-family: 'Maduratna', serif;
  -webkit-font-smoothing: antialiased;
}
/* REGULAR */
@font-face {
  font-family: 'Maduratna';
  src: url('../fonts/MaduratnaRegular-BWwgl.woff') format('woff');
  font-weight: 400;
}

/* MEDIUM */
@font-face {
  font-family: 'Maduratna';
  src: url('../fonts/MaduratnaMedium-9YR27.woff') format('woff');
  font-weight: 500;
}

/* SEMIBOLD */
@font-face {
  font-family: 'Maduratna';
  src: url('../fonts/MaduratnaSemibold-6YIrM.woff') format('woff');
  font-weight: 600;
}

/* BOLD */
@font-face {
  font-family: 'Maduratna';
  src: url('../fonts/MaduratnaBold-lg0re.woff') format('woff');
  font-weight: 700;
}
/* HEADINGS */
h1, h2, h3 {
  font-weight: 600; /* semibold */
}

/* SUB HEADINGS */
h4, h5 {
  font-weight: 500;
}

/* NORMAL TEXT */
p, a, span {
  font-weight: 400;
}
/* TOP BAR */
.top-bar {
  background: linear-gradient(to right, #2f3e46, #d4c1a5);
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

/* MAIN NAV */
.main-navbar {
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

/* LOGO FIX */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 100px;   /* control size here */
  width: auto;    /* maintain aspect ratio */
}

/* ABOUT */
.about-link {
  margin-left: 20px;
  font-weight: 500;
}

/* SEARCH */
.search-box {
  flex: 1;
  max-width: 600px;
  margin: 0 20px;
}

.search-box input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-right: none;
  outline: none;
}

.search-box button {
  background: #789e6a;
  color: #fff;
  border: none;
  padding: 0 15px;
}

/* ICONS */
.nav-icons {
  gap: 25px;
}

.icon-item {
  text-align: center;
  font-size: 13px;
  cursor: pointer;
}

.icon-item i {
  font-size: 18px;
  display: block;
}

/* QUOTE BUTTON */
.quote-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;

  background: #fff8e7; /* paper feel */
  border: 1px dashed #d6c3a3;

  color: #5c4b2d;
  font-weight: 600;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  position: relative;
  transition: 0.3s;
}

/* NOTEBOOK LINES EFFECT */
.quote-btn::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #d6c3a3,
    #d6c3a3 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.6;
}

/* HOVER */
.quote-btn:hover {
  background: #f3e6c9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* CATEGORY MENU */
/* CATEGORY MENU - PREMIUM */
.category-menu {
  background: #789e6a;
  padding: 14px 0;
}

/* CENTER ALIGN */
.category-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* LINKS */
.category-list li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
.category-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #d1b352;
  transition: width 0.35s ease;
}

/* HOVER EFFECT */
.category-list li a:hover {
  color: #d1b352;
}

.category-list li a:hover::after {
  width: 100%;
}

.category-list li a:hover {
  color: #d1b352;
  opacity: 0.9;
  /* font-weight: 600; */
}

@media (max-width: 991px) {
  .category-menu {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 991px) {

  .navbar-toggler {
    margin-right: 10px;
  }

  .nav-icons {
    gap: 15px;
  }

  .icon-item i {
    font-size: 20px;
  }

  .mobile-menu {
    background: #fff;
    border-top: 1px solid #eee;
  }
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

/* SIDEBAR */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* ACTIVE STATE */
.mobile-sidebar.active {
  left: 0;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HEADER */
.sidebar-header {
  background: #3b2414;
  color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sidebar-header img {
  height: 80px;
  width: auto;
}

.back-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
}

/* CONTENT */
.sidebar-content {
  overflow-y: auto;
  flex: 1;
}

/* TITLE */
.menu-title {
  padding: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-title .badge {
  background: red;
  color: #fff;
  font-size: 10px;
  margin-left: auto;
  padding: 3px 6px;
}

/* LIST */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  align-items: center;
  padding: 14px 15px;
  border-top: 1px solid #eee;
  cursor: pointer;
  transition: 0.2s;
}

.menu-list li:hover {
  background: #f8f8f8;
}

.menu-list img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  margin-right: 12px;
}

.menu-list span {
  flex: 1;
}

.menu-list i {
  color: #888;
}

/* EXTRA */
.menu-extra {
  border-top: 1px solid #eee;
}

.menu-extra div {
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* hero section css */
.swiper {
  overflow: visible; /* allows partial next slide */
}

/* SLIDE WIDTH CONTROL */
/* .swiper-slide {
  width: 350px !important;  
} */

/* IMAGE STYLE */
.swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

/* GAP CONTROL */
.swiper-wrapper {
  align-items: center;
}

/* DOTS */
.swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #d1b352;
}





/* SWIPER FIX */
.swiper {
  overflow: hidden; /* IMPORTANT */
  padding-bottom: 40px;
}

/* TRACK */
.swiper-wrapper {
  align-items: center;
}

/* SLIDES (CRITICAL) */
.swiper-slide {
  width: 320px;   /* REQUIRED for loop */
}

/* IMAGE */
.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .swiper-slide {
    width: 260px;
  }

  .swiper-slide img {
    height: 260px;
  }
}

/* categories section css */
/* HEADER */
.category-header {
  margin-bottom: 25px;
}

.category-header .title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-header h2 {
  /* font-size: 28px; */
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

.category-header .arrow {
  font-size: 36px;
  font-weight: 700;
  cursor: pointer;
}

/* DIVIDER LINE */
.category-header .divider {
  height: 1px;
  background: #e5e5e5;
  margin-top: 12px;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* CARD */
.category-item {
  text-align: center;
  cursor: pointer;
}

/* IMAGE */
.category-item img {
  width: 100%;
  /* height: 170px; */
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

/* TEXT */
.category-item p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.3px;
}

/* HOVER */
.category-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* TABLET */
@media (max-width: 991px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .category-item img {
    height: 130px;
  }

  .category-header h2 {
    font-size: 22px;
  }
}

/* New launch section css */
/* SECTION */
.launch-wrapper {
  background: #6a989e;
  padding: 25px;
  border-radius: 16px;
}

/* BANNER */
.launch-banner {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
  height: 160px;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px;
  color: #fff;
}

/* OVERLAY */
.launch-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
}

.launch-banner h3 {
  position: relative;
  z-index: 2;
}

/* TAGS */
.banner-tags {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}
a{
    text-decoration: none;
}
.banner-tags a span {
  background: #789e6a;
  padding: 6px 10px;
  margin-left: 5px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h4 {
  font-size: 13px;
  margin: 8px 0;
}

.price {
  font-weight: 600;
}

/* SLIDER */
.productSwiper {
  margin-top: 20px;
}

.productSwiper .swiper-slide {
  width: 240px;
}

/* BUTTON */
.view-all {
  text-align: center;
  margin-top: 20px;
}

.view-all button {
  background: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* IMAGE */
.product-img {
  position: relative;
}

.product-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* SALE BADGE */
.sale-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #2ecc71;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
}

/* WISHLIST */
.wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  padding: 5px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* INFO */
.product-info {
  margin-top: 10px;
  flex: 1;
}

/* TITLE */
.product-info h4 {
  font-size: 13px;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
}

/* PRICE TOP */
.price-top {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.mrp {
  text-decoration: line-through;
  color: #888;
  font-size: 12px;
}

.off {
  color: green;
  font-size: 12px;
  font-weight: 600;
}

/* MAIN PRICE */
.price-main {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.price-main span {
  font-size: 12px;
  font-weight: 400;
}

/* SUB PRICE */
.price-sub {
  color: red;
  font-size: 12px;
  margin-top: 3px;
}

/* ACTIONS */
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* CART */
.cart-btn {
  flex: 1;
  border: 1px solid #ddd;
  background: #f8f8f8;
  padding: 8px;
  border-radius: 8px;
}

/* WHATSAPP */
.whatsapp-btn {
  background: #25D366;
  border: none;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
}

/* HOVER (PREMIUM TOUCH) */
.product-card:hover {
  transform: translateY(-4px);
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* fluted panel section css */
/* WRAPPER */
.fluted-wrapper {
  background: #6a989e;
  padding: 20px;
  border-radius: 18px;
}

/* TOP IMAGE */
.fluted-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
}

/* CARDS ROW */
.fluted-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* CARD */
.fluted-card {
  text-align: center;
}

/* IMAGE BOX */
.fluted-card img {
  width: 100%;
  /* height: 120px; */
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 5px;
  background: rgba(255,255,255,0.1);
  transition: 0.3s;
}

/* TEXT */
.fluted-card p {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
}

/* HOVER */
.fluted-card:hover img {
  transform: scale(1.05);
}

/* TABLET */
@media (max-width: 991px) {
  .fluted-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .fluted-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .fluted-banner img {
    height: 200px;
  }

  .fluted-card img {
    height: 100px;
  }
}

/* laminates section css */
/* WRAPPER */
.laminate-wrapper {
  /* background: #f5f5f5; */
  padding: 20px;
  border-radius: 18px;
}

/* BANNER */
.laminate-banner img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

/* SLIDER */
.laminateSwiper {
  margin-top: 20px;
}

/* SLIDE WIDTH */
.laminateSwiper .swiper-slide {
  width: 200px;
}

/* CARD */
.laminate-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* IMAGE */
.laminate-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

/* LABEL */
.laminate-card span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(139, 94, 60, 0.9);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 10px;
  text-align: center;
}

/* HOVER */
.laminate-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}

/* MOBILE */
@media (max-width: 768px) {
  .laminateSwiper .swiper-slide {
    width: 150px;
  }

  .laminate-card img {
    height: 200px;
  }

  .laminate-banner img {
    height: 140px;
  }
}


/* rattan & cane section css */
/* GRID */
.rattan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.rattan-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f8f8f8;
  padding: 6px;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}

/* IMAGE */
.rattan-card img {
  width: 100%;
  /* height: 260px; */
  object-fit: cover;
  border-radius: 14px;
}

/* LABEL */
.rattan-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #d6cbbd;
  color: #333;
  text-align: center;
  padding: 8px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
}

/* HOVER */
.rattan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* TABLET */
@media (max-width: 991px) {
  .rattan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .rattan-grid {
    grid-template-columns: 1fr;
  }

  .rattan-card img {
    height: 220px;
  }
}

/* map section css */
/* WRAPPER */
.store-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
}

/* CARD BASE */
.store-card {
  position: relative;
  padding: 30px;
}

/* BACKGROUNDS */
.store-card.dark {
  background: #6a989e;
}

.store-card.light {
  background: #6a989e;
}

/* MAP BOX */
.map-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.map-box iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%) contrast(95%);
}

/* LOCATION LABEL */
.store-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6d8a8;
  padding: 10px 25px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ICON */
.store-label i {
  color: red;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .store-wrapper {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    height: 250px;
  }
}

/* faq section css */
/* WRAPPER */
.faq-wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.faq-left h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-left img {
  width: 100%;
  /* max-width: 300px; */
  /* opacity: 0.8; */
}

/* RIGHT */
.faq-right {
  border-top: 1px solid #ddd;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

/* ICON */
.faq-question .icon {
  transition: 0.3s;
  font-size: 26px;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  color: #555;
  margin-top: 5px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .faq-left {
    text-align: center;
  }

  .faq-left img {
    margin: auto;
  }
}

/* testimonial section css */
/* HEADER */
.testimonial-header h2 {
  font-size: 30px;
  font-weight: 600;
}

.testimonial-header p {
  color: #666;
  margin-bottom: 20px;
}

/* WRAPPER */
.testimonial-wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 20px;
  height: 500px; /* 🔥 fixed height */
}

/* LEFT */
.summary-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.rating {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.rating-number {
  font-size: 22px;
  font-weight: 600;
}

.stars {
  color: #f4b400;
}

/* RIGHT */
.testimonial-right {
  overflow-y: auto; /* 🔥 scroll */
  padding-right: 10px;
}

/* GRID */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* CARD */
.review-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* TOP */
.review-top {
  display: flex;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #6a1b9a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* TEXT */
.review-card h4 {
  margin: 0;
  font-size: 14px;
}

.review-card span {
  font-size: 12px;
  color: #777;
}

/* GOOGLE LINK */
.google-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
}

.google-link img {
  width: 18px;
}

/* SCROLLBAR (PREMIUM) */
.testimonial-right::-webkit-scrollbar {
  width: 6px;
}

.testimonial-right::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }

  .testimonial-right {
    overflow: visible;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* footer section css */
.footer {
  background: #3b2414;
  color: #fff;
  padding: 40px 0;
}

.footer h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
  color: #bbb;
  cursor: pointer;
}

.footer ul li:hover {
  color: #fff;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

/* ICON BASE */
.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* SOFT GLOW EFFECT */
.social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: 0.3s;
}

/* HOVER BASE */
.social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* SHOW GLOW */
.social-icons a:hover::before {
  opacity: 1;
}

/* BRAND COLORS ON HOVER */
.social-icons a:nth-child(1):hover { background: #E1306C; } /* Instagram */
.social-icons a:nth-child(2):hover { background: #1877F2; } /* Facebook */
.social-icons a:nth-child(3):hover { background: #1DA1F2; } /* Twitter */
.social-icons a:nth-child(4):hover { background: #FF0000; } /* YouTube */

.social-icons a:hover {
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* STORE */
.store-block p {
  margin: 2px 0;
  color: #bbb;
  font-size: 13px;
}

/* BUTTONS */
.btn-location,
.btn-call,
.btn-chat {
  width: 100%;
  border: none;
  border-radius: 25px;
  padding: 8px;
  margin-top: 8px;
  font-size: 14px;
}

.btn-location {
  background: #eee;
}

.btn-chat {
  background: #25D366;
  color: #fff;
}

.btn-call {
  background: #ddd;
}

/* PAYMENT */
.payment img {
  height: 25px;
  margin: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* BUTTON BASE */
#goTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #d1b352;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
  z-index: 999;
}

/* SHOW BUTTON */
#goTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER EFFECT */
#goTopBtn:hover {
  background: #789e6a;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


/* boards and panels products page css */
.filters {
  position: sticky;
  top: 100px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

/* TITLE */
.filter-title {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* CONTENT */
.filter-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.filter-item.active .filter-content {
  max-height: 200px;
  padding: 10px 0;
}

.filter-content label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}