@font-face {
  font-family: 'ITC Bauhaus Light';
  src: url('fonts/ITC-Bauhaus/BauhausStd-Light.woff2') format('woff2'),
       url('fonts/ITC-Bauhaus/BauhausStd-Light.woff') format('woff'),
       url('fonts/ITC-Bauhaus/BauhausStd-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'BauhausStd-Medium';
  src: url('fonts/ITC-Bauhaus/BauhausStd-Medium.woff2') format('woff2'),
       url('fonts/ITC-Bauhaus/BauhausStd-Medium.woff') format('woff'),
       url('fonts/ITC-Bauhaus/BauhausStd-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'BauhausStd-Demi';
  src: url('fonts/ITC-Bauhaus/BauhausStd-Demi.woff2') format('woff2'),
       url('fonts/ITC-Bauhaus/BauhausStd-Demi.woff') format('woff'),
       url('fonts/ITC-Bauhaus/BauhausStd-Demi.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'ITC Bauhaus Bold';
  src: url('fonts/ITC-Bauhaus/BauhausStd-Bold.woff2') format('woff2'),
       url('fonts/ITC-Bauhaus/BauhausStd-Bold.woff') format('woff'),
       url('fonts/ITC-Bauhaus/BauhausStd-Bold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans Semi Bold';
  src: url('fonts/Open Sans/OpenSans-SemiBold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Medium';
  src: url('fonts/Open Sans/OpenSans-Medium.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Regular';
  src: url('fonts/Open Sans/OpenSans-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Recline-light';
  src: url('fonts/Recline/ReclineLight.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Recline-Regular';
  src: url('fonts/Recline/Recline-Regular.ttf') format('truetype');
  font-style: normal;
}

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


html, body {
  overflow-x: hidden;
  font-family: 'Recline-Regular', 'BauhausStd-Medium', sans-serif;
  background-color: #f8f5f277;
  color: #333;
  margin:0;
}

h1 {
  font-family: 'BauhausStd-Medium', sans-serif;
  
}
h2 a, h3 {
  font-family: 'Recline-Regular', 'BauhausStd-Medium', sans-serif;
}

h4{
  font-family: 'Recline-light', 'ITC Bauhaus Light';
}

h1 a {
  text-decoration: none;
  color: #c15926;
}


/* Header */
header {
  background-color: #f8f5f2; 
  color: black;
  padding-left: 0.5rem;
  display: block;
}

.header-container {
  display: flex;
  width: 100%;
  font-size: 1.4em;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 1rem;
  background-color: #f8f5f2; 
}

.header-container h1{
  letter-spacing: 0rem;
  line-height: 1;
  font-size: 3rem;
  color: #c15926;
  transform: perspective(300px);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 2em;
  margin: 0;
  flex-grow: 1;
  word-spacing: -0.5rem;
  text-align: left;
  letter-spacing: 1px;
  color: white; 
  font-family: 'BauhausStd-Demi', sans-serif;
}

/* Hamburger Icon for mobile menu view */
#mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #545454;
  font-size: 1.4em;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  #mobile-menu-toggle {
    display: none;
    
  }
  header {
  background-color: #f8f5f2;
  color: black;
  padding-left: 2rem;
  display: block;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .category-bar {
    display: none;
  }

  #mobile-menu-toggle {
    display: inline-block;
    padding-bottom: 0.6rem;
  }

  .header-container {
    justify-content: space-between;
    margin-bottom: 0;
    align-items: center;
  }

  .header-container h1 {
    font-size: 2rem;
    padding-right: 2rem;
    text-align: center; 
    word-spacing: 0;
  }
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-link {
  font-family: 'BauhausStd-Medium';
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  color: #545454;
  font-weight: 600;
  padding-top: 0.8rem ;
  padding-bottom: 0.5em;
  margin-right: 1em;
  transition: all 0.3s ease;
}

.about-link:hover {
  background-color:#f8f5f2;
  transform: scale(1.1);
  transition: transform 0.2s ease;
  display: inline-block;
}

.about-link::after {
  opacity: 1;
}


.about-section{
margin-left: 1.5rem;
}
.about-hero h2{
  font-size: 2rem;
  font-weight: normal;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  line-height: 1;
}

.about-hero h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 2px;
  background-color: rgb(230, 92, 92); /* soft golden yellow like your image */
}

/*About Us page styling*/
.our-story {
  font-family: 'Recline-light', 'ITC Bauhaus Light';
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem; 
  color: #2d2d2d;
  line-height: 1.8;
  font-size: 1.08rem;
}

.our-story h2.about-hero {
  font-family: 'Recline-Regular', 'BauhausStd-Medium', sans-serif;
  font-size: 2.8rem;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.our-story h2.about-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.2px;

  background-color: #c15926;
}

.our-story p {
  margin-bottom: 1.2rem;
}

.our-story blockquote.our-mission {
  margin-top: 2rem;
  font-size: 1.1rem;
  font-style: italic;
  border-left: 4px solid #ffce3d;
  padding-left: 1rem;
  color: #444;
}


@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

.separator-fade-border {
  height: 1.5px;
  width: 100%;
   background: linear-gradient(
    to right,
    rgba(184, 178, 171, 0) 0%,
    rgba(184, 178, 171, 0.3) 20%,
    rgba(184, 178, 171, 0.8) 50%,
    rgba(184, 178, 171, 0.3) 80%,
    rgba(184, 178, 171, 0) 100%
  );
  border-radius: 1px;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Desktop Categories */
.category-bar {
  position: relative;
  z-index: 10;
  background-color: #f8f5f2;
}

.category-bar-fade-border {
  background-color: #F8F5F2;
  border-top: 1px solid rgba(84, 84, 84, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08); /* soft shadow */  
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
}

.nav-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-item {
  position: relative;
  color: white;
}

.nav-item > a {
  text-decoration: none;
  font-family: 'Recline-Regular', 'BauhausStd-Medium', sans-serif;
  text-shadow: 0.02em 0 #545454;
  color: #545454;
  padding: 0.5rem;
  display: inline-block;
}

/* === Mega Menu Styles === */
.mega-parent {
  position: relative;
}

.mega-parent:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
  display: inline-block; /* optional but helpful for scale */
}


/* Hide by default */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6); 
  border-radius: 5px;
  backdrop-filter: blur(8px);
  display: none;
  padding: 1rem;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 8px 16px rgba(84, 84, 84, 0.2);
}
/* Show mega menu on hover */
.nav-item:hover .mega-menu {
  display: flex;
  gap: 2rem;
}

/* When aligned left */
.mega-menu.align-left {
  left: auto;
  right: 0;
}

/* Show only on hover */
.mega-parent:hover .mega-menu {
  display: flex;
  opacity: 1;
  visibility: visible;

}

.mega-column {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.mega-column h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.mega-column a {
  color: #545454;
  text-decoration: none;
  padding: 0.3rem 0;
  font-family: 'Recline-light', 'ITC Bauhaus Light';
}

.mega-column a:hover {
  padding-left: 0.5rem;
  transition: 0.3s;
}

/*desktop homepage body styling*/
  
/* CONTAINER FLEX SETUP */
.home-split-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  background-color: #f8f5f277;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
  box-shadow:
    0 0.6rem 1.5rem rgba(0, 0, 0, 0.25),
    0 -0.6rem 1.5rem rgba(0, 0, 0, 0.15),
    inset 0 0.4rem 1rem rgba(255, 255, 255, 0.1),
    inset 0 -0.2rem 0.3rem rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(0.6rem);
  -webkit-backdrop-filter: blur(0.6rem);
}

.home-split-left {
  flex: 0 0 25%; /* Takes exactly 1/3 of total width */
  max-width: 25%;
  display: flex;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 1rem;
  background-color: #2d2d2d;
  color: #f8f5f2;
  min-width: 300px;
}

#left-section {
  /* Fallback background gradient */
  background: linear-gradient(to bottom right, rgb(163, 130, 95), rgba(0, 0, 0, 0.2));
  transition: background 0.5s ease-in-out;
}

.home-split-left h2 {
  font-size: 2rem;
  font-family: 'Recline-Regular', 'BauhausStd-Medium', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-split-left p {
  font-size: 1.1rem;
  font-family: 'Recline-light', 'ITC Bauhaus Light', sans-serif;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
}

.explore-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(0.25rem);
}

.explore-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-0.125rem);
}

.home-split-right {
  flex: 1 1 50%;
  background-color: #f8f5f2;
  color: #f8f5f2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 300px;
}

.css-slider {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.css-slider img {
  width: 100%;
  border-radius: 0rem 0.5rem 0.5rem 0rem;
  height: auto;
  object-fit: contain;
 /* max-height: 100vh;*/
  display: none;
  aspect-ratio: auto;
  opacity: 0;
  transition: opacity 4s ease-in-out;
}

 .css-slider img.active {
      display: block;
      opacity: 1;
      z-index: 1;
    }

/* MOBILE */
 @media (max-width: 900px), (max-aspect-ratio: 1/1) {
      .home-split-box {
        flex-direction: column;
      }

      .home-split-left{
        order: 2;
        flex: 1 1 100%;
        width: 100%;
        padding: 2rem;
        flex: 0 0 33.3333%; /* Takes exactly 1/3 of total width */
        max-width: 100%;
        max-height: 33.3333%;
        border-radius: 0rem 0rem 0.5rem 0.5rem;
        background-color: #f8f5f277;
      }
      .home-split-right {
        order: 1;
        flex: 1 1 100%;
        width: 100%;
        padding-top: 0;
      }
      .css-slider img {
        aspect-ratio: auto;
        border-radius: 0.5rem 0.5rem 0rem 0rem;
      }
    }

/* Mobile Nav */
/* Side Overlay Mobile Nav */
/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background-color: rgba(42, 40, 40, 0.95);
  transition: left 0.3s ease;
  color: white;
  padding: 1rem;
  z-index: 999;
}
.mobile-nav-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-categories a {
  text-decoration: none;
  color: white;
  display: block;
  margin: 0.3rem 0;
}

.mobile-nav.show {
  left: 0;
}
.submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
  color: white;
}

.submenu h4 a{
  font-family: 'Recline-Regular', 'BauhausStd-Medium', sans-serif;
  text-shadow: 0.01em 0 white;
  font-size: 1.2rem;
  padding-bottom: 1rem;
}

.submenu ul li h4 a{
  padding-left: 1rem;
    padding-bottom: 1rem;
  font-family: 'Recline-light', 'ITC Bauhaus Light';
  font-size: 1rem;
}

.mobile-category.open .submenu {
  max-height: 1000px;
}
.submenu ul{
  list-style: none;
}
.mobile-category-sub{
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
  color: white;
}

.mobile-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
  border-bottom: 1px solid #555;
}

.mobile-category-header span{
  font-family: 'Recline-Regular', 'BauhausStd-Medium', sans-serif;
  text-shadow: 0.02em 0 whitesmoke;
  font-size: 1.2rem;
}
/* Add spacing between subgroups like "Tables", "Living Storage" */
.submenu > li {
  margin-top: 1rem;
}

/* Space for the subgroup headings like "Tables" */
.submenu > li > h4 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1.05rem;
}

/* Add spacing between subcategory links like "Coffee Tables", etc. */
.submenu ul li {
  margin: 0.3rem 0;
}

/* Optional: Slightly reduce h4 padding if looking too spaced */
.submenu ul li h4 {
  margin: 0;
  font-size: 0.95rem;
}

/* Reduce top margin for first item in a group */
.submenu > li:first-child {
  margin-top: 0.5rem;
}
.toggle-icon {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Slide-in animation for mobile menu */
#mobileNav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background-color: rgba(42, 40, 40, 0.95);
  transition: left 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

#mobileNav.show {
  left: 0;
}

#mobile-menu-toggle.open::after {
  font-size: 24px;
}

/* Optional: Hamburger base style */
.mobile-back-button {
  background: none;
  font-family: 'Recline-Regular', 'BauhausStd-Medium', sans-serif;
  text-shadow: 0.02em 0 white;
  border: none;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  text-align: left;
  padding: 0.5rem 0;
  cursor: pointer;
  margin-bottom: 1rem;
}

/* Home */
.home-body {
  text-align: center;
}
.home-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* Brand Section */
.brand-section {
  text-align: center;
  padding: 2rem;
  text-shadow: 0.02em 0 #545454;
}
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem;
  margin-bottom: 2rem;
}

.brand-logos img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  padding-right: 1rem;
   transition: all 0.3s ease-in-out;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 900px) {
  .brand-logos img {
    max-height: 70px;     /* Reduce logo height for smaller screens */
    padding-right: 0;     /* Remove extra spacing */
  }
}

@media (max-width: 600px) {
  .brand-logos img {
    max-height: 60px;     /* Even smaller on very small screens */
  }
}
/*Shop all section*/
/*
.shop-home-section {
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'sans-serif';
}

.shop-home-section h2 {
  color: #7a4f17;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.category-filters button {
  background: #f1f1f1;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
}

.category-filters .active {
  background-color: #ff7043;
  color: white;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.category-item {
  text-align: center;
}

.category-item img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 10px;
  background: radial-gradient(#f6f6f6, #e0e0e0);
  transition: transform 0.3s ease;
}

.category-item img:hover {
  transform: rotate(5deg) scale(1.05);
}

.category-item p {
  margin-top: 0.6rem;
  color: #333;
  font-weight: 500;
}
*/  

/*Product section styling*/
.product-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

.product-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden; /* This ensures image respects border-radius */
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card.fade-in img {
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 300px; /* Keeps image aspect ratio */
  object-fit: contain; /* Makes sure the full image fits inside */
  transition: transform 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  display: block;
}

.product-card h3 {
  font-family: 'Recline-Regular', 'BauhausStd-Medium',sans-serif;
  text-shadow: 0.02em 0 #545454;
  color: #545454;
  margin: 0.8rem;
  font-size: 1.1rem;
}

.product-card .brand {
  margin: 0 0.8rem 0.8rem;
  font-family: 'Open Sans Semi Bold';
  color: #c15926;
}

.color-options {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0.3rem 0;
}

.brand {
  font-size: 2px;
  color: #898888;
  margin-left: 10px;
  margin-bottom: 1em;
}

.rating {
  font-size: 0.85rem;
  color: #f57c00;
  margin-bottom: 6px;
}

.badge {
  background-color: #ffe0b2;
  color: #f57c00;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 5px;
}


.price {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.current-price {
  font-weight: bold;
  color: #222;
  margin-left: 10px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin: 0 8px;
}

.discount {
  color: green;
  font-weight: bold;
}

.product-card p {
  color: #b05f3c;
  font-weight: bold;
  font-size: 1rem;
}

.no-products-message {
  text-align: center;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.no-products-message h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.no-products-message p {
  font-size: 1rem;
  color: #666;
}

/* Hover Overlay Effect */
.go-to-top-tile {
  position: fixed;
  bottom: 80px;
  right: 30px;
  padding: 0.7rem 1rem;
  background-color: rgba(54, 54, 54, 0.5);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Open Sans Semi Bold',sans-serif;
  z-index: 1000;
  overflow: hidden;
  transition: opacity 0.4s ease-out, color 0.3s ease;
  opacity: 0;
  pointer-events: none;
}


.go-to-top-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(115, 93, 93, 0.95);
  z-index: -1;
  transition: right 0.3s ease-out;
}

.go-to-top-tile:hover::before {
  left: 0;
}

.go-to-top-tile:hover {
  color: #ffcc00;
}

.go-to-top-visible {
  opacity: 1;
  pointer-events: auto;
}
/* Footer */

.footer-Top-fade-border{
height: 1.5px;
width: 100%;
background: linear-gradient(
  to right,
  rgba(184, 178, 171, 0) 0%,
  rgba(184, 178, 171, 0.3) 20%,
  rgba(184, 178, 171, 0.8) 50%,
  rgba(184, 178, 171, 0.3) 80%,
  rgba(184, 178, 171, 0) 100%
);
border-radius: 1px;
margin: 0;
padding: 0;
line-height: 0;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.15); /* Top shadow */

}


.footer {
  background-color: #f8f5f2;
  color: #545454;
  position: relative;
  padding-top: 5px;
  border-radius: 5px;
}
.footer-top {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-catalog-text {
  font-family: 'Recline-light', 'ITC Bauhaus Light';
  font-size: 1rem;
  color: #545454;/* You can change this to fit your theme */
  line-height: 1.6;
  text-align: justify;
  margin: 1rem 0;
  padding-bottom: 1rem;
}
.footer-column {
  flex: 1;
  min-width: 250px;
  padding-left: 30px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 2rem;
}

.footer-column p a {
    color: #545454;
}

.footer-column h3 a{
  color: #545454;
}
.footer-column h3{
  font-family: 'Recline-Regular','Open Sans Semi Bold';
  line-height: 0.2;
  text-shadow: 0.02em 0 #545454;
}
.spaced-heading {
  margin-top: 2.5rem;
  display: flex; 
}
.footer p {
  margin: 0.5rem 0;
}
.footer a {

  text-decoration: none;
}

.map-box {
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  margin-top: 10px;
  display: block;
}

.footer-divider {
  border: none;
  height: 1.2px;
  width: 100%;
  background: linear-gradient(
  to right,
  rgba(42, 40, 40, 0) 0%,
  rgba(42, 40, 40, 0.2) 15%,
  rgba(42, 40, 40, 0.5) 50%,
  rgba(42, 40, 40, 0.2) 85%,
  rgba(42, 40, 40, 0) 100%
  );
  border-radius: 1px;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.footer-bottom {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0px;
  box-sizing: border-box;
  background-color: #f8f5f2;
  color: #545454;
}
.social-icons {
  display: flex;
   flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icons a img {
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-icons a img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 120%; /* ⬅️ Move below the icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}


.tooltip:hover::after {
  opacity: 1;
}

@media (max-width: 1168px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
    padding-bottom: 2rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    padding-left: 30px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 2rem;
}
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
  }
  
  .footer-catalog-text{
    font-family: 'OpenSans-Regular';
    font-size: 1rem;
    color: #545454; 
    line-height: 1.6;
    text-align: justify;
    margin: 1rem 1rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
  }
}

.breadcrumb-nav {
  background-color: #F8F5F2;
  border-top: 1px solid rgba(84, 84, 84, 0.2);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08); /* soft shadow */  
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb li {
  color: #555;
}

.breadcrumb li::after {
  content: "›";
  margin: 0 0.5rem;
  color: #bbb;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: #2d2d2d;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #2d2d2d;
  font-weight: bold;
}
