body {
  font-family: "Times New Roman", Georgia, serif;
}

/* header */
.nav-link.active {
  color: #6b8e23;
  border-bottom: 2px solid #6b8e23;
}

/* .navbar-brand img {
    max-height: 50px;
  } */

/* Hide Wishlist and Currency in Mobile */
@media (max-width: 991.98px) {
  .search-section {
    display: none !important;
  }
}

.offcanvas-body .input-group {
  width: 100%;
}

/* hero banner */
/* Animation Keyframes */
.typewriter-line {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

/* First line animation */
.first-line {
  width: 0;
  animation: typing 3s steps(26, end) forwards,
    blink-caret 0.7s step-end infinite;
}

/* Second line animation with delay */
.second-line {
  width: 0;
  animation: typing 3s steps(20, end) forwards;
  animation-delay: 3.2s;
  animation-fill-mode: forwards;
}

/* Typing keyframes */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Blinking cursor */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: white;
  }
}

/* Optional: Apply to the whole hero section smoothly */
.hero-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("assets/images/banner.jpg") center/cover no-repeat;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.hero-banner {
  background-image: url(../images/hero-banner.jpg);
  min-height: 500px;
  /* ↓ reduced from 100vh */
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgb(255, 255, 255) !important;
}

/* .bg-light:hover {
    --bs-bg-opacity: 1;
    background-color: rgb(235, 240, 233) !important;
  } */
/* Arched Image */
.arched-image {
  width: 260px;
  height: 360px;
  border-radius: 0 0 135% 135% / 0 0 70% 70%;
  overflow: hidden;
  border: 5px dotted #fff;
}

.arched-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-banner {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .arched-image {
    width: 200px;
    height: 280px;
  }
}

/* third */
/* animation */

/* === Handmade Button Animation === */
.handmade-btn {
  animation: floatPulse 3s ease-in-out infinite;
  animation-play-state: running;
  will-change: transform;
  transition: transform 0.3s ease;
}

.hover-color-btn-text:hover {

  color: #ffffff;
}

/* === Icon Circle Animation === */
.icon-circle {
  width: 40px;
  height: 40px;
  animation: pulseGlow 2.8s ease-in-out infinite;
  animation-play-state: running;
  will-change: box-shadow;
}

/* === Reversed Arched Image Animation === */
.arched-image {
  border-radius: 0 2 21% 24%;
  transform: scaleX(-1);
  /* Flip image horizontally */
  animation: floatPulse 4s ease-in-out infinite;
  animation-play-state: running;
  will-change: transform;
}

/* === Heading Animation === */
.all h2 {
  animation: floatPulse 3.5s ease-in-out infinite;
  animation-play-state: running;
  will-change: transform;
}

/* Custom dashed border and arched image */
.border-dashed {
  border-style: dashed !important;
}

.icon-circle {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.label-text {
  font-size: 20px;
}

.all h2 {
  color: #657340;
}

.green {
  color: #657340;
}

.brown {
  color: #523528;
}

/* Arched image wrapper */
.dotted-border-wrapper {
  border: 2px dashed #000000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 100% 60%;
  border-bottom-right-radius: 100% 60%;
  overflow: hidden;
  max-width: 250px;
}

.arched-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Optional: on smaller screens, stack text below icon */
@media (max-width: 576px) {
  .handmade-btn {
    flex-wrap: wrap;
  }
}

/* fourth */
/* animation */
.product-card {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px dashed #ccc;

}

/* .product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(40, 167, 69, 0.1) 0%,
      transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.4s ease;
    z-index: 0;
  } */

.product-card:hover::before {
  left: 0;
}

.product-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #28a745;
}

/* Image grayscale to color */
.product-card img {
  transition: filter 0.4s ease, transform 0.3s ease;
}

.product-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Glow cart icon on hover */
.cart-btn {
  background-color: #28a745;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .cart-btn {
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
}



/* === Tribal Pattern Borders === */
.border-pattern-top,
.border-pattern-bottom {
  height: 30px;
  background-repeat: repeat-x;
  background-size: contain;
}

/* === Dashed Border for Cards === */
.border-dashed {
  border: 2px dashed #70412f;
  border-radius: 20px;
}

/* === Cart Button Styling === */
.cart-btn {
  background-color: #70412f;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* === Responsive Card Width === */
.product-card {
  min-width: 170px;
  background-color: #fff;
  padding: 15px;
}

/* === Optional: Hide Scrollbar in WebKit === */
.product-card::-webkit-scrollbar {
  display: none;
}

/* === Full Width Patterned Section with Background Image === */
.patterned-section {
  background-image: url("../images/lase.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-left: calc(-50vw + 50%);
  position: relative;
  min-height: 60vh;
  /* 👈 Reduced from 100vh */
  padding: 40px 0;
  /* Adjust vertical padding */
  overflow: hidden;
}

.collection h3 {
  color: #657340;
}

.collection .btn {
  background-color: #657340;
}

/* Block printing */
/* animation */

.slide-in-left,
.slide-in-right,
.slide-in-top,
.slide-in-bottom {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

.slide-in-left {
  animation-name: slideFromLeft;
}

.slide-in-right {
  animation-name: slideFromRight;
}

.slide-in-top {
  animation-name: slideFromTop;
}

.slide-in-bottom {
  animation-name: slideFromBottom;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.giftkit-img {
  animation: breathing 4s ease-in-out infinite;
  border-radius: 12px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

h1 span {
  display: inline-block;
  animation: inkRipple 3s ease-in-out infinite;
  will-change: transform, letter-spacing;
}

/* === Decorative Strip Flutter === */
@keyframes flutter {

  0%,
  100% {
    transform: translateX(0) scaleX(1);
  }

  50% {
    transform: translateX(5px) scaleX(1.03);
  }
}

.strip-fade {
  animation: flutter 5s ease-in-out infinite;
  will-change: transform;
}

/* === General Styling for the Section === */
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* === Responsive Image Containers === */
.flex-column img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

/* === Decorative Strip Image === */
.strip {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto 0;
}

/* === Fix height ratios on larger screens === */
@media (min-width: 768px) {
  .flex-60 {
    flex-basis: 60%;
    max-height: 60%;
  }

  .flex-40 {
    flex-basis: 40%;
    max-height: 40%;
  }

  .h-100-md {
    height: 100%;
  }
}

/* === On small screens: stack naturally === */
@media (max-width: 767.98px) {
  .flex-column {
    flex-direction: column !important;
  }

  .gap-2 {
    gap: 1rem !important;
  }

  .strip {
    padding-top: 2rem;
  }
}

/* what they say */
/* animation */
/* Base transition */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Dashed Border */
.border-dashed {
  border: 2px dashed #70412f;
}

/* Avatar size */
.client-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Optional: Full height card to align bottoms */
.testimonial-card {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Responsive heading */
.b-p-text {
  font-size: 2rem;
  font-weight: 600;
  color: #523528;
}

/* faq */
/* === General Section Padding === */
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* === Accordion Button Customization (optional) === */
.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: #523528;
  background-color: #f9f7f3;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #e4e0d8;
  color: #ffffff;
}

.accordion-body {
  font-size: 0.95rem;
  color: #333;
}

/* === Static Paragraph Below Accordion === */
.accordion+p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

/* === Heading Styling (Right Side) === */
section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #523528;
}

section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* === Button === */
.btn-success {
  background-color: #70412f;
  border: none;
}

.btn-success:hover {
  background-color: #523528;
}

/* === Decorative Strip Image === */
.strip {
  max-width: 100%;
  height: auto;
  margin-top: 3rem;
  display: block;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  section h2 {
    font-size: 2rem;
    text-align: center;
  }

  section p {
    text-align: center;
  }

  .btn-success {
    display: block;
    margin: 0 auto;
  }

  .accordion-button {
    font-size: 0.95rem;
  }

  .accordion-body {
    font-size: 0.9rem;
  }
}

/* blog */
/* animation */
/* Container setup */
.card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Dark overlay on image */
.card-img-top {
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.card:hover::before {
  opacity: 1;
}

/* Slide-up body */
.card-body {
  transform: translateY(15px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.9;
  position: relative;
  z-index: 3;
}

.card:hover .card-body {
  transform: translateY(0);
  opacity: 1;
}

/* Learn more fade + subtle pop */
.card a {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.card:hover a {
  opacity: 1;
  transform: translateY(0);
}

.card-img-top {
  animation: slowZoom 10s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

/* === Heading Float Animation === */
.b-p-text span {
  display: inline-block;
  animation: blogTitleFloat 3.5s ease-in-out infinite;
}

/* === Learn More Slide-Right Highlight === */

.card a {
  animation: slideHighlight 2.5s ease-in-out infinite;
  display: inline-block;
  will-change: transform;
}

.border-dashed {
  border: 2px dashed #70412f;
}

.card-title {
  color: #523528;
}

.card-text {
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .card-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .card-text,
  .card-body {
    text-align: center;
  }

  .card-body .d-flex {
    justify-content: center;
  }
}

/* footer */
/* === Footer Styles === */
/* Footer Base */
.footer-widgets {
  background-color: #fff;
  font-size: 15px;
  color: #333;
}

.footer-widgets h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-widgets ul {
  padding-left: 0;
  list-style: none;
}

.footer-widgets .footer-link {
  display: inline-block;
  color: #333;
  transition: color 0.3s ease;
}

.footer-widgets .footer-link:hover {
  color: #000;
  text-decoration: underline;
}

/* Social Icons */
.footer-widgets .btn.rounded-circle {
  width: 38px;
  height: 38px;
  padding: 0;
  text-align: center;
  line-height: 38px;
  font-size: 16px;
}

/* App Store Buttons */
.footer-widgets img.rounded-3 {
  transition: transform 0.3s ease;
}

.footer-widgets img.rounded-3:hover {
  transform: scale(1.05);
}

/* Newsletter Input */
.footer-widgets .input-group .form-control {
  border-radius: 0.375rem 0 0 0.375rem;
}

.footer-widgets .input-group .btn {
  border-radius: 0 0.375rem 0.375rem 0;
}

/* Bottom Strip */
.footer-widgets .small {
  font-size: 14px;
  color: #666;
}

.footer-widgets a.text-decoration-none {
  color: #666;
}

.footer-widgets a.text-decoration-none:hover {
  color: #000;
}

/* Payment Icons */
.footer-widgets img[src*="payments"] {
  vertical-align: middle;
  height: 30px;
}

/* Responsive Layout */
@media (max-width: 991.98px) {

  .footer-widgets .col-lg-4,
  .footer-widgets .col-lg-3,
  .footer-widgets .col-lg-2 {
    text-align: center;
  }

  .footer-widgets .social-link {
    justify-content: center;
  }

  .footer-widgets .d-flex.gap-3 {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .footer-widgets .input-group.input-group-lg {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-widgets .input-group .form-control,
  .footer-widgets .input-group .btn {
    width: 100%;
    border-radius: 0.375rem;
  }

  .footer-widgets img[src*="payments"] {
    height: 26px;
    margin: 4px;
  }

  .footer-widgets .small {
    text-align: center !important;
  }
}





/* breadcrumb */

/* Banner Section */
.bread-banner {
  position: relative;
  overflow: hidden;
}

/* Responsive Image Styling */
.banner-img {
  width: 100%;
  height: 100%;
  /* Let height adjust automatically */
  display: block;
}

/* Overlay Content Centered */
.overlay-content {
  position: absolute;
  inset: 0;
  /* shorthand for top:0; right:0; bottom:0; left:0 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: 2;
}

/* Banner Heading */
.heading-text {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}

/* Elegant Breadcrumb */
.custom-breadcrumb {
  background-color: white;
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 90vw;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #999;
  padding: 0 8px;
}

.custom-breadcrumb .breadcrumb-item a {
  color: #198754;
  font-weight: 500;
  text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #6c757d;
}

/* Decorative Border Below Banner */
.decorative-border-wrapper {
  margin-top: -5px;
  position: relative;
  z-index: 1;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 576px) {
  .bread-banner {
    height: 250px;
  }

  .heading-text {
    font-size: 1.8rem;
  }

  .custom-breadcrumb {
    font-size: 13px;
    padding: 5px 14px;
    text-align: center;
  }
}

/* TAG AREA */
/* === Wrapper with Reduced Fixed Height === */
.tag-image-wrapper {
  height: 300px;
  /* reduced from 400px */
  position: relative;
  overflow: hidden;
}

/* === Image Covers the Wrapper === */
.tag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Overlay Text Positioning === */
.custom-text-center {
  position: absolute;
  top: 38%;
  /* adjust as needed to keep text centered */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 1rem;
}

/* === Text Styling === */
.tag-text {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
}

/* === Tablet View === */
@media (max-width: 768px) {
  .tag-image-wrapper {
    height: 240px;
  }

  .custom-text-center {
    top: 35%;
  }

  .tag-text {
    font-size: 1.5rem;
  }
}

/* === Mobile View === */
@media (max-width: 576px) {
  .tag-image-wrapper {
    height: 200px;
  }

  .custom-text-center {
    top: 33%;
  }

  .tag-text {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

/* belive */
/* ========== BELIEFS SECTION ========== */
/* .beliefs {
    padding: 50px 0;
    text-align: center;
    color: #ffffff;
  }
  
  .beliefs h2 {
    font-family: "Inria Serif-Bold", Helvetica, serif;
    font-size: 35px;
    margin-bottom: 30px;
  } */

/* Wrapper for all belief cards */
/* .belief-cards {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 20px;
    row-gap: 30px;
    padding: 0 15px;
  } */

/* Single belief card */
/* .belief-card {
    border: 2px dashed #000000;
    border-radius: 145px 145px 0 0;
    background-color: #ffffff;
    overflow: hidden;
    padding-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  
   
    width: 100%;
    max-width: 245px;
    flex: 1 1 245px;
    box-sizing: border-box;
  } */

/* Image inside card */
/* .belief-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 145px 145px 0 0;
    margin-bottom: 4px;
  } */

/* Card heading */
/* .belief-card h3 {
    font-family: "Inria Serif-Regular", Helvetica, serif;
    font-size: 20px;
    color: #647340;
    margin: 15px 0;
  } */

/* Card description */
/* .belief-card p {
    font-family: "Inria Serif-Regular", Helvetica, serif;
    font-size: 15px;
    color: #000000;
    padding: 0 20px;
  } */

/* ========== RESPONSIVE STYLES ========== */
/* @media (max-width: 768px) {
    .beliefs h2 {
      font-size: 1.8rem;
    }
  
    .belief-card {
      max-width: 90%;
    }
  } */
/* 
  @media (max-width: 480px) {
    .beliefs {
      padding: 40px 10px;
    }
  
    .belief-card {
      max-width: 100%;
    }
  
    .belief-card p {
      padding: 0 10px;
    }
  
    .belief-card h3 {
      font-size: 18px;
    }
  } */

.beliefs {
  padding: 50px 0;
  text-align: center;
  color: #ffffff;
}

.beliefs h1 {
  font-family: "Inria Serif-Bold", Helvetica, serif;
  font-size: 35px;
  margin-bottom: 30px;
  color: #000;
}

/* Wrapper for all belief cards */
.belief-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 30px;
  padding: 0 15px;
}

/* Single belief card */
.belief-card {
  border: 2px dashed #000000;
  border-radius: 145px 145px 0 0;
  background-color: #ffffff;
  overflow: hidden;
  padding-bottom: 20px;
  text-align: center;
  transition: transform 0.3s ease;

  width: 100%;
  max-width: 245px;
  flex: 1 1 245px;
  box-sizing: border-box;
}

/* Image styling */
.belief-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 145px 145px 0 0;
  margin-bottom: 4px;
}

/* Card heading */
.belief-card h3 {
  font-family: "Inria Serif-Regular", Helvetica, serif;
  font-size: 20px;
  color: #647340;
  margin: 15px 0;
}

/* Card text */
.belief-card p {
  font-family: "Inria Serif-Regular", Helvetica, serif;
  font-size: 15px;
  color: #000000;
  padding: 0 20px;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
  .beliefs h1 {
    font-size: 1.8rem;
  }

  .belief-card {
    flex: 1 1 45%;
    max-width: 100%;
  }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
  .beliefs {
    padding: 40px 10px;
  }

  .belief-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .belief-card p {
    padding: 0 10px;
  }

  .belief-card h3 {
    font-size: 18px;
  }
}

/* Optional: Improve image gap on older browsers */
* {
  box-sizing: border-box;
}

/* scrapbook */

.custom-gap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  /* space between tiles */
}

.color-tile {
  border-radius: 20px 20px 100% 100% / 20px 20px 60% 60%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.color-tile:hover {
  transform: scale(1.05);
}

.color-tile img {
  border-radius: 20px 20px 100% 100% / 20px 20px 60% 60%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Background Image Section */
/* Full-width background image section */
.gallery-bg {
  background-image: url("../images/gallery.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  width: 100%;

  padding: 60px 0;
}

/* Ensures content inside doesn't overlap image */
.gallery-bg h1 {
  color: #647343;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Collage Layout */
.collage-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual Column */
.collage-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Image Box */
.dotted-border-wrapper {
  border: 2px dotted #ccc;
  padding: 6px;
  border-radius: 10px;
  background: #fff;
}

.box-tile img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Responsive Tweak */

@media (max-width: 768px) {
  .collage-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .collage-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .collage-column .dotted-border-wrapper {
    width: 140px;
  }
}

/* Custom tile sizes and colors */
.tile-1 {
  background-color: #caa872;
  width: 148px;
  height: 186px;
}

.tile-2 {
  background-color: #d67f6a;
  width: 165px;
  height: 186px;
}

.tile-3 {
  background-color: #5c4d3d;
  width: 113px;
  height: 186px;
}

.tile-4 {
  background-color: #497c3a;
  width: 137px;
  height: 186px;
}

.tile-5 {
  background-color: #f3ddb1;
  width: 186px;
  height: 186px;
}

.tile-6 {
  background-color: #cbccba;
  width: 172px;
  height: 169px;
}

.tile-7 {
  background-color: #926344;
  width: 114px;
  height: 169px;
}

.tile-8 {
  background-color: #3f6064;
  width: 92px;
  height: 169px;
}

.tile-9 {
  background-color: #6e9c95;
  width: 169px;
  height: 169px;
}

.tile-10 {
  background-color: #d69b7a;
  width: 82px;
  height: 169px;
}

.tile-11 {
  background-color: #87966e;
  width: 111px;
  height: 169px;
}

/* lookbook */
.collage-wrapper {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
}

.collage-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.box-tile {
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Updated class names for tiles */
.box-1 {
  width: 168px;
  height: 252px;
  background-color: #d8bfd8;
}

.box-2 {
  width: 168px;
  height: 299px;
  background-color: #b0e0e6;
}

.box-3 {
  width: 168px;
  height: 299px;
  background-color: #ffdab9;
}

.box-4 {
  width: 168px;
  height: 112px;
  background-color: #98fb98;
}

.box-5 {
  width: 168px;
  height: 252px;
  background-color: #e6e6fa;
}

.box-6 {
  width: 168px;
  height: 215px;
  background-color: #f08080;
}

.box-8 {
  width: 168px;
  height: 168px;
  background-color: #f5deb3;
}

.box-9 {
  width: 168px;
  height: 168px;
  background-color: #bdb76b;
}

.box-10 {
  width: 168px;
  height: 259px;
  background-color: #ffb6c1;
}

.box-11 {
  width: 168px;
  height: 168px;
  background-color: #d3d3d3;
}

.box-12 {
  width: 168px;
  height: 168px;
  background-color: #e0ffff;
}

.box-13 {
  width: 168px;
  height: 112px;
  background-color: #f0e68c;
}

.box-14 {
  width: 168px;
  height: 259px;
  background-color: #f5f5dc;
}

.box-15 {
  width: 168px;
  height: 252px;
  background-color: #dda0dd;
}

.box-16 {
  width: 168px;
  height: 168px;
  background-color: #87cefa;
}

.box-17 {
  width: 168px;
  height: 205px;
  background-color: #ffe4e1;
}

.box-19 {
  width: 168px;
  height: 234px;
  background-color: #90ee90;
}

.box-20 {
  width: 168px;
  height: 168px;
  background-color: #ffefd5;
}

.box-21 {
  width: 168px;
  height: 305px;
  background-color: #f0fff0;
}

.box-22 {
  width: 168px;
  height: 165px;
  background-color: #e6e6fa;
}

.box-22-second {
  width: 168px;
  height: 295px;
  background-color: #e6e6fa;
}

.box-23 {
  width: 168px;
  height: 299px;
  background-color: #fffacd;
}

.box-24 {
  width: 168px;
  height: 299px;
  background-color: #f0f8ff;
}

.box-25 {
  width: 168px;
  height: 235px;
  background-color: #fff0f5;
}

.box-26 {
  width: 168px;
  height: 252px;
  background-color: #fff0f5;
}

.box-27 {
  width: 168px;
  height: 299px;
  background-color: #fff0f5;
}

.box-tile img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px 20px 100% 100% / 20px 20px 60% 60%;
}

@media (max-width: 768px) {
  .collage-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* products-sidebar-section */
/* Sidebar Container */
.sidebar {
  background-color: #fff;
  padding: 24px 16px;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 20px;
}

/* Section Separation */
.sidebar-section {
  margin-bottom: 24px;
}

.sidebar-wrapper {
  margin-bottom: 24px;
}

.wrapper-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
}

.wrapper-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

/* Sidebar List Items */
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sidebar-list input[type="checkbox"] {
  accent-color: #000;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.sidebar-list label {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

/* Horizontal Line Styling */
.sidebar-section hr {
  border-top: 1px solid #eaeaea;
  margin: 20px 0;
}

/* Price Range Section Placeholder (Customize with noUiSlider JS if used) */
.range-slider {
  padding: 8px 0;
}

.range-slider span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Sidebar Bottom Promo Block */
.sidebar-shop-section {
  margin-top: 30px;
  padding: 20px;
  border: 1px dashed #ddd;
  border-radius: 12px;
  background-color: #fafafa;
  text-align: center;
}

.sidebar-shop-section .wrapper-heading {
  font-size: 1rem;
  margin: 10px 0;
}

.shop-btn.deal-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.shop-btn.deal-btn:hover {
  background-color: #333;
}

/* === Product Sorting Section === */
.product-sorting-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.product-sorting-section .result p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.product-sorting-section .result span {
  font-weight: 600;
  color: #000;
}

.product-sorting {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-sort {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
}

.product-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
}

.product-list:hover {
  background-color: #f0f0f0;
}

.product-list .default {
  font-size: 0.9rem;
  color: #222;
}

/* === Product Deal Section === */
.product-deal-section {
  background-color: #f8f8f8;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: 16px;
}

.product-deal-section .wrapper-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.product-deal-section .shop-btn {
  background-color: #000;
  color: #fff;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.product-deal-section .shop-btn:hover {
  background-color: #333;
}

/* product card */
.product-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px dashed #d1e7dd;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

/* .product-card:hover {
    transform: translateY(-4px);
  } */

.product-image img {
  width: 100%;
  display: block;
}

.product-info {
  padding: 16px;
  text-align: left;
}

.product-row {
  max-width: 500px;
  margin: auto;
}

.product-price .old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
}

.product-price .new-price {
  color: #d9534f;
  font-weight: 600;
  font-size: 1rem;
}

.add-to-cart-btn {
  background-color: #647343;
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 8px;
  line-height: 1;
  height: auto;
}

.product-rating {
  font-size: 0.85rem;
  color: #ffc107;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 6px 0;
  color: #222;
}

.product-price {
  font-size: 0.95rem;
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-top: 4px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.85rem;
}

.new-price {
  color: #e91e63;
  font-weight: 600;
}

/* Adjusted button area */
.add-to-cart-wrap {
  margin-top: 10px;
  text-align: right;
}

.add-to-cart-btn {
  background-color: #647343;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  padding: 6px 16px;
  border-radius: 18px;
  align-content: center;
  margin-right: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: #637443;
}

/* Pagination shop */

.pagination .page-link {
  color: #523528;
}

.pagination .page-item.active .page-link {
  background-color: #637443;
  border-color: #637443;
  color: #fff;
}

.pagination .page-link:hover {
  background-color: #e9ece2;
  color: #637443;
}

/* dashboard */
/* General section styling */
.blog.about-blog {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

/* Breadcrumb styling */
.blog-breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.blog-breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-breadcrumb a:hover {
  color: #000;
  text-decoration: underline;
}

.blog-breadcrumb .devider {
  margin: 0 8px;
  color: #aaa;
}

/* Heading styling */
.blog-heading.about-heading {
  margin-top: 10px;
}

.blog-heading .heading {
  font-size: 36px;
  color: #333;
  font-weight: 600;
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .blog-heading .heading {
    font-size: 28px;
    text-align: center;
  }

  .blog-breadcrumb {
    text-align: center;
    font-size: 13px;
  }
}

/* Sidebar */
.sidebar {
  background-color: #fff;
  border-right: 1px solid #eee;
  height: 100%;
}

.sidebar h5 {
  font-weight: bold;
}

.sidebar .nav-link {
  color: #444;
  padding: 10px 8px;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  background-color: #647343;
  color: #ffffff;
}

.sidebar .nav-link i {
  font-size: 1.1rem;
  color: #55382b;
}

section h2 {
  color: #647343;
}

/* Dashboard cards */
.card-box {
  background-color: #f2f5ec;
  color: #000;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-box i {
  color: #55382b;
}

.card-box h2 {
  font-weight: bold;
  font-size: 2rem;
}

/* Info cards */
.info-card {
  background-color: #f2f5ec;
  border-radius: 12px;
  line-height: 1.6;
}

/* Switch Dashboard Toggle */
.form-check-input:checked {
  background-color: #55382b;
  border-color: #55382b;
}

/* personal info */
/* Outer Wrapper Spacing */
.account-section {
  background-color: #fff;
  padding: 20px;
}

/* Inner form fields spacing */
.account-inner-form {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.review-form-name {
  flex: 1;
}

/* Image Upload Logo Box */
.logo-upload {
  position: relative;
  width: 270px;
  height: 270px;
  margin: 0 auto;
  border: 1px solid #c35cb2;
  border-radius: 50%;
  overflow: hidden;
}

.upload-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Upload Button on Top of Image */
.upload-input {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.upload-input label {
  background-color: #c35cb2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.upload-input input[type="file"] {
  display: none;
}

/* Submit Buttons */
.shop-btn {
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.cancel-btn {
  background-color: transparent;
  color: red;
  border: none;
  margin-right: 10px;
}

a {
  color: #647343;
}

/* Group Cancel & Update Buttons */
.submit-btn {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

/* Responsive tweak */
@media (max-width: 767px) {
  .account-inner-form {
    flex-direction: column;
  }
}

/* login */

.login-card {
  max-width: 400px;
  margin: auto;
  margin-top: 80px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  background-image: url(../images/contact-3.jpg) !important;
}

.login-card h4 {
  margin-bottom: 25px;
  font-weight: 600;
}

.form-check-label {
  font-size: 0.9rem;
}

.text-muted a {
  text-decoration: none;
  color: #523528;
  font-weight: bold;
}

.text-muted a:hover {
  text-decoration: underline;
}

.btn-login {
  border: none;
  padding: 10px 0 10px;
  border-radius: 5px;
  font-weight: bold;
  color: white;
  background-color: #647343;
}

/* User Dropdown Menu Styling - My Account */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  color: #fff !important;
  background-color: #657340 !important;
  transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  color: #fff !important;
  background-color: #657340 !important;
}

/* User icon dropdown toggle hover */
.dropdown-toggle:hover,
.dropdown-toggle:focus,
.dropdown-toggle.show {
  color: #657340 !important;
}

.dropdown-toggle:hover i,
.dropdown-toggle:focus i,
.dropdown-toggle.show i {
  color: #657340 !important;
}

/* Navigation Links Hover - Frontend Header */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #657340 !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
  color: #657340 !important;
}

/* Desktop Menu Navigation */
.desktop-menu .nav-link:hover,
.desktop-menu .nav-link:focus {
  color: #657340 !important;
}

.desktop-menu .nav-link.active {
  color: #657340 !important;
}

/* User Dropdown Menu Styling */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  color: #fff !important;
  background-color: #657340 !important;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  color: #fff !important;
  background-color: #657340 !important;
}

/* User icon dropdown hover */
.dropdown-toggle:hover,
.dropdown-toggle:focus {
  color: #657340 !important;
}

.dropdown-toggle.show {
  color: #657340 !important;
}

/* create account */

.login-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: 60px auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.login-card h4,
.login-card h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.account-inner-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.review-form-name {
  flex: 1;
  min-width: 100px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.remember {
  margin: 0;
  font-size: 0.9rem;
}

.inner-text {
  color: #657340;
  font-weight: 500;
}

.shop-btn {
  display: inline-block;
  background-color: #647343;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
}

.shop-btn:hover {
  background-color: #647343;
}

.shop-account {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
}

.shop-account a {
  text-decoration: none;
  color: #523528;
  font-weight: bold;
}

.shop-account a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .account-inner-form {
    flex-direction: column;
  }
}

/* payment method */
.payment-card {
  border-bottom: 1px solid #eee;
  background-color: #fff;
  border-radius: 0.5rem;
}

.payment-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.payment-info h5 {
  font-size: 1rem;
  font-weight: 700;
}

.btn-manage {
  background-color: #647343;
  color: white;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.btn-manage:hover {
  background-color: #523528;
  color: white;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.btn-cart {
  background-color: #647343;
  color: white;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  padding-top: 1rem;
  font-weight: 500;
  border: none;
}

.btn-cart:hover {
  background-color: #523528;
  color: white;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  padding-top: 1rem;
  font-weight: 500;
  border: none;
}

.sidebar .nav-link.active {
  font-weight: bold;
  color: #ffffff;
}

.shop-btn.bank-btn {
  border: 1px solid #000;
  background: transparent;
  color: #000;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
}

/* ORDER */
.cart-table th,
.cart-table td {
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-info img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.quantity-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.quantity-box .number {
  min-width: 20px;
  text-align: center;
}

/* address */
.btn-submit-address {
  background-color: #513026;
  color: white;
}

.btn-submit-address:hover {
  background-color: #647343;
  color: white;
}

.modal-content {
  background-image: url(../images/contact.jpg) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* contact */
.bg-contact {
  background-image: url(../images/contact-1.jpg) !important;
}

.btn-send {
  background-color: #647343;
  color: white;
}

.btn-send:hover {
  background-color: #647343;
  color: white;
}

.border-contact {
  border-color: #647343;
}

/* product info */
.product-info {
  padding: 60px 0;
}

.blog-bradcrum {
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-bradcrum span {
  color: #555;
}

.blog-bradcrum a {
  text-decoration: none;
  color: #222;
}

.blog-bradcrum .devider {
  margin: 0 5px;
}

.product-info-img {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
}

.product-discount-content {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #dc3545;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 10;
}

.slider-top-img img,
.slider-bottom-img img {
  width: 100%;
  border-radius: 6px;
}

.product-bottom {
  margin-top: 15px;
}

.product-bottom .swiper-slide {
  width: 80px !important;
  height: auto;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.product-info-content {
  padding-left: 30px;
}

.wrapper-subtitle {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info-content h5 {
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.ratings {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ratings .text {
  font-size: 14px;
  color: #777;
}

.price {
  margin: 15px 0;
}

.price-cut {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.new-price {
  color: #dc3545;
  font-weight: 600;
  font-size: 18px;
}

.content-paragraph {
  font-size: 14px;
  color: #666;
}

.inner-text {
  color: #333;
  font-weight: 500;
}

.product-availability,
.product-details p {
  font-size: 14px;
  margin-bottom: 8px;
}

.size-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 10px;
}

.size-option {
  list-style: none;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 20px;
  display: none;
}

.size-option .option {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.size-option .option:last-child {
  border-bottom: none;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 5px 15px;
  border-radius: 4px;
}

.quantity span {
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  font-size: 18px;
  margin: 0 5px;
}

.quantity .number {
  width: 30px;
  text-align: center;
}

.shop-btn {
  background-color: #647343;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.shop-btn:hover {
  background-color: #4f5c32;
}

.modal-wrapper {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-wrapper.active {
  display: block;
}

.modal-main {
  background: white;
  border-radius: 10px;
  padding: 30px;
  max-width: 500px;
  margin: 10% auto;
  position: relative;
}

.modal-main .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.product-share .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #f1f1f1;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

/* zoom image */
.imagezoom {
  position: relative;
  width: 550px;
  height: 700px;
  overflow: hidden;
}

.imagezoom img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
  transform-origin: center;
}

.thumb-box {
  width: 90px;
  height: 90px;
  background-color: #e0e0e0;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
  overflow: hidden;
}

.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* blog */
.blog-leftside {
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.blog-img {
  height: 250px;
  overflow: hidden;
}

.blog-img:hover img {
  transform: scale(1.05);
}

.post-title {
  font-size: 1.75rem;
  color: #333;
}

.post-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hstack .bi {
  color: #888;
}

.hstack a {
  text-decoration: none;
  color: #333;
}

.hstack a:hover {
  color: #007bff;
}

.post-comments {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 16px;
}

.user-comments {
  align-items: flex-start;
}

.user-comment-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.user-comment-text {
  font-size: 0.95rem;
  color: #555;
}

.user-img img {
  border: 2px solid #ccc;
}

.user-comments .btn {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.user-comments .btn:hover {
  background-color: #333;
  color: #fff;
}

.post-leave-form .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.post-leave-form .btn {
  font-weight: 600;
  font-size: 1rem;
}

.blog-rightside {
  padding: 30px 20px;
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-control-search {
  border-radius: 12px;
  padding-left: 20px;
  padding-right: 50px;
}

.recent-posts-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post-title {
  font-size: 1rem;
  color: #333;
  transition: color 0.3s;
}

.recent-post-title:hover {
  color: #007bff;
}

.recent-posts-details p {
  margin-bottom: 4px;
  font-size: 0.85rem;
  color: #777;
}

.post-categories-list-item {
  font-size: 1rem;
  padding: 10px 15px;
}

.post-categories-list-item:hover {
  border-radius: 8px;
  color: #333;
  transition: background 0.3s;
}

.post-tags .btn {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 30px;
  transition: all 0.3s;
}

.post-tags .btn:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {

  .blog-leftside,
  .blog-rightside {
    padding: 20px;
  }

  .blog-img {
    height: 180px;
  }

  .recent-posts-img img {
    width: 65px;
    height: 65px;
  }
}

/* certified tutors */

.video-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}

/* Responsive 16:9 wrapper */
.video-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Badge */
.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #28a745;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* Text styles */
.video-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.video-instructor {
  font-size: 0.9rem;
  color: #666;
}

.video-info {
  font-size: 0.85rem;
  color: #777;
}

/* tour */
.main-heading {
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
}

.main-subheading {
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
}

.section-glance {
  border: 40px solid transparent;
  border-image: url("../images/tour-para-1.jpg") 40 round;
  padding: 20px;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.section-glance p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

@media (max-width: 768px) {
  .section-glance {
    border-width: 20px;
  }
}

.section-artist {
  border: 40px solid transparent;
  border-image: url("../images/artist.jpg") 40 round;
  padding: 20px;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

.section-artist h5 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #222;
}

.section-artist p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.5rem;
  color: #333;
}

@media (max-width: 768px) {
  .section-artist {
    border-width: 20px;
  }
}

.section-artist h5 {
  font-size: 1.3rem;
  text-align: center;
}

.section-artist p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-tour-section {
  background-image: url("../images/tour-3.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.about-tour-section::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: -1;
}

/* Optional: Add some horizontal padding to avoid edge hugging */
.about-tour-section .row {
  padding-left: 4%;
  padding-right: 4%;
}

.custom-list {
  padding-left: 12px;
  /* remove browser default */
  list-style-position: inside;
  /* optional */
}

.custom-list li {
  margin-bottom: 0.5rem;
  /* spacing between items */
}

/* Tour cost box background tweak */
.tour-cost-box {
  background-color: rgba(255, 255, 255, 0.95);
  /* Slightly transparent white */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.custom-list {
  padding-left: 20px;
}

.custom-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.rounded-corner-img {
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

h3 {
  font-weight: 600;
  margin-bottom: 30px;
}

.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  background-color: #f9f9f9;
}

.accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-button:not(.collapsed) {
  background-color: #4c5d2f;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  margin-bottom: 10px;
  border: none;
}

.tour-cost-box {
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tour-cost-box table {
  font-size: 0.95rem;
}

.tour-cost-box h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.book-now-btn {
  background-color: #5d6d3a;
  color: #fff;
  border: none;
}

.placeholder-box {
  width: 100%;
  height: 250px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .about-tour-section {
    padding: 40px 20px;
  }

  .tour-cost-box {
    padding: 20px;
  }

  .about-tour-section h5,
  .about-tour-section h3 {
    text-align: center;
  }

  .accordion-button {
    font-size: 0.95rem;
  }
}

.placeholder-box::before {
  content: "Image Placeholder";
  color: #666;
  font-size: 16px;
}

.table td,
.table th {
  padding: 0.5rem;
}

.table {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .placeholder-box {
    height: 180px;
  }
}

h5 {
  font-size: 30px;
}

/* workshop */
.workshop-card {
  border: 14px solid transparent;
  border-image: url("../images/back-backgroundj.jpg") 30 round;
  /* triangle border image */
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  align-items: flex-start;
  /* align image and text top */
}

.workshop-date {
  min-width: 80px;
  text-align: center;
  font-weight: 600;
  border-right: 1px solid #ccc;
  padding-right: 15px;
}

.workshop-date span {
  display: block;
  font-size: 14px;
  color: #666;
}

.workshop-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.workshop-info h5 {
  font-weight: 600;
  font-size: 1.1rem;
}

.workshop-info p {
  font-size: 14px;
  color: #444;
  margin-bottom: 0.5rem;
}

.btn-book {
  background-color: #ddd;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 500;
}

.hurry-text {
  font-weight: bold;
  font-size: 1rem;
  margin-left: 10px;
}

/* Grid View Toggle Styles */
.grid-view .workshop-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.grid-view .workshop-image {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.grid-view .workshop-info {
  text-align: center !important;
}

/* main content */
.circle-item {
  text-align: center;
}

.circle-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.label-text {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.gift-box {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background-color: white;
  transition: box-shadow 0.3s ease;
}

.gift-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.small-thumb {
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  border: 2px solid transparent;
}

.small-thumb:hover {
  border-color: #000;
}



/*--------------------.................... ANIMATION CSS....................-------------------------- */
/*--------------------.........................START........................-------------------------- */

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


.handmade-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.handmade-section .bg-image-left {
  position: absolute;
  top: 18%;
  left: -165px;
  width: 310px;
  height: auto;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
  animation: rotate-slow 25s linear infinite;
  transform-origin: center center;
}

.handmade-section .bg-image-right {
  position: absolute;
  top: 18%;
  right: -165px;
  width: 310px;
  height: auto;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
  animation: rotate-slow 25s linear infinite;
  transform-origin: center center;
}

.handmade-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}


/* Start: hidden + subtle slide down */
.product-card {
  /* opacity: 1; */
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out,
    box-shadow 0.4s ease;
  will-change: opacity, transform;
}

/* When in view */
.product-card.visible {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


/* Staggered animation delay */
.product-card:nth-child(1).visible {
  transition-delay: 0.2s;
}

.product-card:nth-child(2).visible {
  transition-delay: 0.4s;
}

.product-card:nth-child(3).visible {
  transition-delay: 0.6s;
}

/* Initial hidden state */
.collection {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When visible (JS adds this) */
.collection.visible {
  opacity: 1;
  transform: translateX(0);
}



/* Entry animation for slide-in-left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Handmade buttons styling with hover animation */
.handmade-btn {
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.handmade-btn:hover {
  transform: scale(1.05);
  background-color: #ffeedd;
  /* light warm highlight */
  border-color: #ff7f50;
  /* coral-ish border */
  color: #d14a00;
  /* dark orange text */
}

.handmade-btn:hover .icon-circle {
  border-color: #d14a00;
  background-color: #ffd9c2;
  color: #d14a00;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Icon circle default */
.icon-circle {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Optional: subtle shadow on hover */
.handmade-btn:hover {
  box-shadow: 0 8px 15px rgba(255, 127, 80, 0.3);
}

/* Make label-text slightly bolder on hover */
.handmade-btn:hover .label-text {
  font-weight: 600;
}







/* Handmade-style custom cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;

  background: repeating-conic-gradient(from 0deg,
      #a0522d 0deg 2deg,
      transparent 2deg 8deg);
  background-color: #fbf7f0;
  /* Off-white fabric base */
  border: 2px dashed #8b4513;
  /* Thread color */
  border-radius: 50%;
  box-shadow:
    0 0 8px rgba(139, 69, 19, 0.4),
    inset 0 0 4px rgba(255, 228, 181, 0.6);
  animation: embroideryPulse 2.5s infinite ease-in-out;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

/* Pulse effect */
@keyframes embroideryPulse {
  0% {
    box-shadow: 0 0 4px rgba(139, 69, 19, 0.3), inset 0 0 2px rgba(255, 228, 181, 0.5);
  }

  50% {
    box-shadow: 0 0 12px rgba(139, 69, 19, 0.8), inset 0 0 6px rgba(255, 228, 181, 0.8);
  }

  100% {
    box-shadow: 0 0 4px rgba(139, 69, 19, 0.3), inset 0 0 2px rgba(255, 228, 181, 0.5);
  }
}

/* On hoverable element (optional glow up) */
.custom-cursor.hovered {
  transform: translate(-50%, -50%) scale(1.3);
  border-color: #5c2d0d;
  box-shadow:
    0 0 14px rgba(139, 69, 19, 0.9),
    inset 0 0 6px rgba(255, 228, 181, 0.6);
}

/* === Reversed Arched Image Animation === */
.arched-image {
  border-radius: 0 2 21% 24%;
  transform: scaleX(-1);
  /* Flip image horizontally */
  animation: floatPulse 4s ease-in-out infinite;
  animation-play-state: running;
  will-change: transform;
}

/* Optional: Improve image gap on older browsers */
* {
  box-sizing: border-box;
}

.hover-color-btn {
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  background-color: #657340;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  font-weight: 500;
}

.hover-color-btn:hover {
  background-color: #859352;
  /* lighter green on hover */
}

.btn-one {
  background-color: #657340;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  color: #ffffff;
  padding: 10px;
  padding-left: 25px;
  padding-right: 25px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  border-radius: 30px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.4s ease;
  font-weight: 600;

}

/* Hover background fill */
.btn-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #523528;
  transition: width 0.4s ease;
  z-index: 1;
}

.btn-one:hover::before {
  width: 100%;
}

/* Make both text and icon stay on top */
.btn-one span,
.btn-one i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Icon animation */
.btn-one:hover i {
  transform: translateX(6px);
}

/* Container perspective for 3D effect */
.flip-container {
  perspective: 1000px;
}

/* Flipper holds front and back images */
.flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}




.flip-container {
  perspective: 1000px;
  /* Enables 3D space */
}

.dotted-border-wrapper {
  border: 2px dashed #000;
  border-radius: 20px 20px 100% 100% / 20px 20px 60% 60%;
  overflow: hidden;
  max-width: 250px;
  display: inline-block;
}

.flip-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.flip-container:hover img {
  transform: rotateY(360deg) scale(1.1);
  /* Flip and zoom together */
}


.scroll-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Common base animation class */
.scroll-animate {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Appear when in view */
.scroll-animate.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Directional modifier classes */
.scroll-left {
  transform: translateX(-40px);
}

.scroll-right {
  transform: translateX(40px);
}

.scroll-zoom {
  transform: scale(0.9);
}

.scroll-zoom.visible {
  transform: scale(1);
}



/* --- SCROLL ANIMATION --- */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- STAGGER EFFECT --- */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.5s;
}

/* --- IMAGE HOVER ZOOM --- */
.card-img-top {
  transition: transform 0.4s ease;
  transform-origin: center;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* About us */

/* Initial hidden state */
.fade-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

/* Active animation class */
.fade-slide-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Initial hidden state */
.zoom-rotate {
  opacity: 0;
  transform: scale(0.8) rotate(-8deg);
  transition: all 1s ease;
}

/* Final visible state */
.zoom-rotate.show {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Initial hidden state */
.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease-out;
}

/* Visible state */
.fade-up-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hidden by default */
.fade-up-banner {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease-out;
}

/* Visible when in viewport */
.fade-up-banner.show {
  opacity: 1;
  transform: translateY(0);
}


.fade-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional colors */
.green {
  color: #657340;
}

.brown {
  color: #523528;
}

/* Animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-heading {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 0.3s;
}


@keyframes imageEnter {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-tile {
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  transition: all 0.8s ease;
  will-change: opacity, transform;
}

.animate-tile.visible {
  animation: imageEnter 0.7s ease-out forwards;
}

/* Optional subtle hover effect */
.box-tile:hover img {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.velvet-cushion-main img {
  transition: transform 0.4s ease;
  cursor: pointer;
  /* optional, so cursor changes on hover */
}

.velvet-cushion-main img:hover {
  transform: scale(1.1);
}

.blog-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.blog-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom animation style */
.zoom-on-scroll {
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;
}

.zoom-on-scroll.in-view {
  transform: scale(1);
  opacity: 1;
}


.heading-text {
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.custom-breadcrumb a {
  transition: color 0.3s ease;
}

.custom-breadcrumb a:hover {
  color: #657340;
  text-decoration: underline;
}