body {
  font-family: "Figtree", sans-serif;
  padding: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.top-bar {
  background-color: #000000;
  color: #5c5c5b;
  font-size: 14px;
  text-align: center;
  padding: 5px 20px;
}

.top-bar a {
  text-decoration: none;
}

.navbar-custom {
  background-color: #721900;
  padding: 0.8rem 0;
}

.navbar-custom .navbar-nav {
  flex: 1;
}

.navbar-custom .nav-link {
  color: #fff;
  margin: 0 10px;
  font-weight: 500;
}

.navbar-custom .nav-link:hover {
  color: #bd9456;
}

.navbar-logo {
  background-color: #721900;
  border: 1px solid #bd945617;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5px;
  z-index: 10;
}

.navbar-logo img {
  width: 70%;
  height: auto;
}

.navbar-icons {
  display: flex;
  align-items: center;
}

.navbar-icons .nav-link {
  color: #fff;
  font-size: 18px;
  margin-left: 15px;
}

.navbar-icons .nav-link:hover {
  color: #b98c3c;
}

.hero-section {
  background: url("../FrontAssets/handicraft-banner.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 220px 0 160px 0;
  font-family: "Gowun Batang", serif;
  text-transform: uppercase;
  font-size: 32px;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.side-line {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.side-line::before,
.side-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #ffeed5;
}

.side-line::before {
  left: -100%;
}

.side-line::after {
  right: -100%;
}

.collection-item {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.collection-item:hover {
  transform: translateY(-6px);
}

.collection-item img {
  width: 175px;
  height: 175px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.collection-row {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.live-card {
  background: url("../FrontAssets/ratten-basket.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  max-height: 381px;
  position: relative;
  overflow: hidden;
  padding: 40px 10px;
  border-radius: 15px;
}

.live-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 100%);
}

.live-card button {
  background: #fff;
  color: #721900;
  width: 70%;
  border: none;
  padding: 10px;
  transition: 0.3s;
}

.live-card button:hover {
  background: #721900;
  color: #fff;
}

.product-card {
  border: 1px solid #f3f3f3;
  box-shadow: 0px 4px 10px 0px #0000000d;
  padding-bottom: 10px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  overflow: hidden;
}

.product-card:hover {
  /* transform: translateY(-4px); */
  box-shadow: 2px 5px 10px 10px #fd20200d;
}

.product-width {
  min-width: 230px;
  height: auto;
  box-shadow: 0px 4px 15px 0px #0000000d;
}

.product-width:hover {
  box-shadow: 0px 5px 10px 10px #fd20200d;
}
.product-card:hover img {
  transform: scale(1.08); /* smooth zoom-in */
}
.product-card img {
  width: 100%;

  max-height: 230px;
  /* height: 100%; */
  object-fit: cover;
  transition: transform 0.5s ease; 
    transform-origin: center center;
}

.product-card p {
  font-size: 16px;
  color: #212212;
}

.carousel-control {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000000;
  color: #7575756b;
  border: 2px solid #7575756b;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.carousel-control-left i {
  transform: rotate(180deg);
}

.carousel-control:hover {
  background-color: #fff;
  border: 2px solid #757575;
  color: #757575;
}

.how-we-work {
  background-color: #fff7f2;
}

.how-we-work h2 {
  font-family: "Just Another Hand", cursive;
  font-style: italic;
}

.text-brown {
  color: #212212;
}

.work-step img {
  width: 40px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%);
}

.work-step h5 {
  font-family: "Jomolhari", serif;
  margin-bottom: 8px;
}

.work-step p {
  color: #6b6b6b;
}

.heritage-section {
  background: linear-gradient(180deg, #742a00 39.15%, #721900 126.77%);
  color: #fff;
}

.heritage-text p {
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #f3f3f3;
}

.heritage-text .btn {
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  background: #fff;
  color: #721900;
  transition: all 0.3s ease;
}

.heritage-text .btn:hover {
  background: #721900;
  border: 1px solid #fff;
  color: #fff;
}

.heritage-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.heritage-card {
  height: 100%;
  width: 100%;
  max-height: 430px;
  border-radius: 15px;
  overflow: hidden;
}

.view-all a {
  color: #721900;
  text-decoration: none;
  font-weight: 500;
}

.view-all a:hover {
  text-decoration: underline;
}

.testimonial-section {
  text-align: center;
}

.testimonial-card {
  background: #fff;
  border: none;
  padding: 25px;
  border-radius: 8px;
  height: 100%;
}

.feedback-section h5 {
  font-family: "Playfair Display", serif;
}

.testimonial-card h5 {
  font-style: italic;
  margin: 15px 0 10px;
}

.testimonial-card p {
  font-size: 15px;
  color: #6b6b6b;
}

.stars {
  color: #f39c12;
  font-size: 25px;
}

.why-us {
  background: linear-gradient(90.01deg, #721900 18.76%, #721900 83.88%);

  color: white;
}

.why-us img {
  width: 66px;
  height: auto;
  margin-bottom: 10px;
}

.faq-section {
  background-color: #fff;
}

.faq-section .accordion-button {
  background-color: #fff;
  color: #000;
  box-shadow: none;
  border: none;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  text-transform: capitalize;
}

.faq-section .accordion-button::after {
  content: "+";
  font-weight: bold;
  font-size: 1.25rem;
  background-image: none !important;
  transform: none !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "–";
  transform: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #721900;
  box-shadow: none;
}

.faq-section .accordion-body {
  background-color: #fff;
  border-top: none;
  padding: 1rem 1.25rem;
  line-height: 1.6;
}

.faq-section .accordion-item {
  border: none;
  border-radius: 0;
}

.img-card {
  max-height: 295px;
  min-width: 220px;
  width: 100%;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-section h5 {
  font-family: "Just Another Hand", cursive;
  font-style: italic;
  text-decoration: underline;
}

.footer-top {
  background-color: #721900;
  border-radius: 5px;
  padding: 20px 0;
  margin-bottom: -15px;
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Figtree", sans-serif;
}

.footer-top .btn {
  background-color: #000000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 99px;
}

.footer-main {
  background-color: #000;
}

.footer-main h6 {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-family: "Figtree", sans-serif;
}

.footer-main p,
.footer-main li {
  color: #ccc;
  line-height: 1.6;
  word-break: break-all;
}

.footer-main ul li {
  margin-bottom: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-main ul li:hover {
  text-decoration: underline;
}

.social-icon {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #b58953;
}

.footer-bottom {
  background-color: #1e1e1e;
  color: #fff;
  font-family: "Just Another Hand", cursive;
  font-style: italic;
}

.product-section {
  padding: 95px 0 40px 0;
}

.product-name {
  background-color: #000;
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  padding-right: 0;
}

.product-name li a {
  color: #fff;
}

.product-thumbs {
  flex-shrink: 0;
}

.product-thumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-thumbs img {
  max-height: 130px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #bd945633;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-thumbs img:hover {
  transform: scale(1.03);
  border-color: #bd9456;
}

.product-main img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  object-fit: cover;
  transition: all 0.3s ease;
}

.spec-table th,
td {
  border: 1px solid #dddddd;
  padding: 10px 16px;
  color: #5c5c5b;
}

.light-white {
  background-color: #7219000d;
}

.enquire button {
  background-color: #721900;
  color: #fff;
  border-radius: 5px;
  border: none;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.enquire button:hover {
  background-color: #fff;
  color: #721900;
  border: 1px solid #721900;
}

.enquire span {
  border: 1px solid #a1a1a1;
  border-radius: 6px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-reviews-section {
  background-color: #fff4f1;
  color: #333;
}

.customer-reviews-section h2 {
  color: #222;
}

.review-item img {
  object-fit: cover;
  border: 2px solid #ddd;
}

.text-warning {
  letter-spacing: 2px;
}

.btn-outline-warning {
  color: #721900;
  border: 2px solid #721900;
}

.btn-outline-warning:hover {
  background-color: #721900;
  color: #fff;
  border-color: #721900;
}

.enquiry-section {
  padding: 60px 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1000;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
}

.enquiry-section.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #2b2b29;
  text-decoration: none;
  z-index: 1000;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  cursor: pointer;
}

.enquiry-section .container {
  position: relative;
  transform: translateY(-6.5%);
  width: 100%;
  z-index: 1000;
  height: 100vh;
  padding: 30px 20px 60px 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #721900 #fff;
  background-color: #fff;
  overflow-x: hidden;
  border-radius: 0 10px 10px 0;
}

.form-card {
  background: #fff;
  box-shadow: 0px 4px 15px 0px #00000040;
  border-radius: 5px;
  padding: 15px;
}

.form-card h6 {
  color: #721900;
}

.form-label {
  color: #6b6b6b;
}

.form-control,
.form-select {
  background-color: #fff3ef;
  border: none;
}

.form-control::placeholder,
.form-select::placeholder {
  color: #757575;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border: 1px solid #bd9456;
}

.order-type label {
  font-size: 0.95rem;
  color: #000;
}

.btn-submit {
  background-color: #000;
  color: #fff;
  padding: 10px 45px;
  border: none;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.popup-product-card {
  text-align: left;
}

.popup-product-card img {
  width: 100%;
  border-radius: 5px;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
}

.order-type input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid #a3a3a3cd;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
  margin-right: 8px;
}

.order-type input[type="radio"]:checked {
  background-color: #ffffff;
  border-color: #721900;
}

.order-type input[type="radio"]:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 14px;
  color: #721900;
  font-weight: 600;
}

.search-box {
  width: 50%;
}

.form-check-label {
  color: #757575;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}

.products-section {
  padding: 160px 0 50px 0;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #aaa;
}

.search-wrapper input {
  border: none;
  outline: none;
  flex: 1;
  width: 100%;
  padding: 10px 0 10px 40px;
  background-color: #f8f8f8;
  border: 1px solid #cdcdcd85;
  border-radius: 5px 0 0 5px;
}

.search-button {
  background-color: #721900;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 0 5px 5px 0;
}

.category-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.category-card .category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: height 0.4s ease;
  font-weight: 500;
}

.category-card:hover .category-overlay {
  height: 100%;
  border-radius: 5px;
}

.col-20 {
  flex: 0 0 20%;
  max-width: 20%;
}

.text-gold {
  color: #721900;
}

.contact-section .container {
  position: relative;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0px 4px 55.1px 0px #00000040;
  padding: 30px 30px 70px 30px;
  border-radius: 15px 15px 0 0;
  margin-top: -60px;
}

.contact-form-card {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 20px 40px 20px;
  box-shadow: 0px 4px 30.6px 0px #00000026;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 5px;
}

.contact-form-card .btn-submit {
  background-color: #721900;
  color: #ffffff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.contact-form-card .btn-submit:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.multiple-products {
  padding: 120px 0 50px 0;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 1rem;
}

.filter-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
}

.page-item div {
  width: 4px;
  height: 4px;
  border: 1px solid #86868561;
  border-radius: 50%;
  background-color: #86868561;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.pagination .page-link {
  background-color: #5c5c5b61;
  padding: 4px 12px;
  color: #ffffff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.pagination .page-link:hover {
  background-color: #721900;
  border-color: #721900;
  color: #fff;
}

.pagination .active .page-link {
  background-color: #721900;
  border-color: #721900;
  color: #fff;
}

.filter-section .accordion-button:not(.collapsed) {
  color: black;
  background-color: #ffffff;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.filter-section .accordion-header span {
  font-size: 18px;
}

.filter-section .accordion-item {
  margin: 10px 0;
  border-bottom: 1px solid #ddd;
  background-color: #fff3ef;
}

.filter-section .accordion-button {
  background-color: #fff3ef;
}

.filter-wrapper {
  background: #fff3ef;
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}

.input-group-text {
  background-color: #fff3ef;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #fff3ef;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.filter-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.filter-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.filter-icon span {
  display: block;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

.filter-icon span:nth-child(1) {
  width: 100%;
}

.filter-icon span:nth-child(2) {
  width: 70%;
}

.filter-icon span:nth-child(3) {
  width: 30%;
}

.form-check {
  display: flex;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 8px;
}

.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #757575;
  background-color: #fff;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.custom-checkbox:checked {
  background-color: #fefefe;
  border-color: #5a5a5a;
}

.custom-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #282828;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  padding: 2px;
}

.range-slider {
  position: relative;
  width: 100%;
  height: 2px;
  background: #ccc;
  margin: 20px 0;
}

.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 2px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #343333;
  cursor: pointer;
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #5a2e1c;
  cursor: pointer;
}

.contact-hero {
  background: url(../FrontAssets/banner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 220px 0 160px 0;
  font-family: "Gowun Batang", serif;
  text-transform: uppercase;
  font-size: 32px;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

/* Parent Category */
.category-parent a {
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

/* Level 1 Children */
.category-child.level-1 {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Level 2 Children */
.category-child.level-2 {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Level 3 Children (if any) */
.category-child.level-3 {
  font-size: 0.75rem;
  opacity: 0.75;
}

/* Improve small screen readability */
@media (max-width: 576px) {
  .category-parent a {
    font-size: 0.95rem;
  }

  .category-child {
    font-size: 0.80rem;
  }
}