@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
    
    
    body {
       font-family: "Manrope", sans-serif !important;
      background: #fff;
      margin: 0;
      padding: 0;
    }

/* Navbar */
.custom-navbar {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo img {
  max-height: 46px;
  width: auto;
  display: block;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #c6ae7b;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #c6ae7b;
}

/* desktop right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-btn {
  font-size: 18px;
  color: #4b4b4b;
  text-decoration: none;
  transition: 0.3s ease;
}

.search-btn:hover {
  color: #c6ae7b;
}

.quote-btn {
  background: #6f4934;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-btn:hover {
  background: #b59d71;
  color: #fff;
}

/* mobile right */
.mobile-right {
  display: none;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  color: #333;
  padding: 0;
  line-height: 1;
}

/* Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 20px rgba(0,0,0,0.12);
  z-index: 2000;
  transition: right 0.4s ease;
  padding: 24px 20px;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-sidebar-top img {
  max-height: 40px;
}

.close-sidebar {
  border: none;
  background: transparent;
  font-size: 26px;
  color: #333;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 18px;
}

.mobile-menu li a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu li a:hover,
.mobile-menu li a.active {
  color: #c6ae7b;
}

/* overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1500;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 991.98px) {
  .nav-center,
  .nav-right {
    display: none;
  }

  .mobile-right {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-inner {
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .nav-logo img {
    max-height: 30px;
  }

  .mobile-search-btn {
    font-size: 17px;
  }

  .mobile-quote-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .mobile-toggle {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .custom-navbar {
    padding: 10px 0;
  }

  .nav-logo img {
    max-height: 34px;
  }

  .mobile-right {
    gap: 10px;
  }

  .mobile-quote-btn {
    padding: 7px 12px;
    font-size: 12px;
  }

  .mobile-search-btn {
    font-size: 16px;
  }

  .mobile-toggle {
    font-size: 24px;
  }
}

/* Search section */
.nav-search-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, padding-top 0.35s ease;
  padding-top: 0;
}

.nav-search-wrap.active {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 16px;
}

.nav-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e5dccb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.nav-search-input {
  flex: 1;
  height: 50px;
  border: none;
  outline: none;
  padding: 0 16px;
  font-size: 14px;
  color: #333;
  background: #fff;
}

.nav-search-input::placeholder {
  color: #9c9c9c;
}

.nav-search-submit {
  width: 58px;
  height: 50px;
  border: none;
  background: #c8b184;
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.nav-search-submit:hover {
  background: #b59d71;
}

/* remove default anchor jump feel */
.search-btn {
  cursor: pointer;
}

/* Responsive search bar */
@media (max-width: 767.98px) {
  .nav-search-wrap.active {
    padding-top: 14px;
  }

  .nav-search-input {
    height: 46px;
    font-size: 13px;
    padding: 0 14px;
  }

  .nav-search-submit {
    width: 52px;
    height: 46px;
    font-size: 16px;
  }
}



















    :root{
      --showroom-bg: #F6F3EE;
      --showroom-title: #1C1C19;
      --showroom-text: #6D5C3A;
      --showroom-gold: #B7A27A;
      --showroom-icon-bg: #EFE9DF;
      --showroom-map-bg: #ECE8E2;
      --showroom-white: #FFFFFF;
      --showroom-border: #E6DED1;
      --showroom-shadow: 0 14px 40px rgba(28, 28, 25, 0.08);
      --showroom-radius: 22px;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Inter', sans-serif;
      background:var(--showroom-bg);
      color:var(--showroom-title);
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    .blog-detail-section{
      padding:80px 0;
      background:var(--showroom-bg);
    }

    .blog-detail-wrap{
      max-width:1060px;
      margin:0 auto;
    }

    .blog-detail-card{
      background:var(--showroom-white);
      border:1px solid var(--showroom-border);
      border-radius:var(--showroom-radius);
      overflow:hidden;
      box-shadow:var(--showroom-shadow);
    }

    .blog-detail-image-wrap{
      position:relative;
      overflow:hidden;
    }

    .blog-detail-image{
      width:100%;
      height:480px;
      object-fit:cover;
      display:block;
    }

    .blog-detail-body{
      padding:34px 34px 38px;
    }

    .blog-detail-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 16px;
      border-radius:40px;
      background:var(--showroom-icon-bg);
      color:var(--showroom-gold);
      font-size:12px;
      font-weight:700;
      letter-spacing:.05em;
      text-transform:uppercase;
      margin-bottom:18px;
    }

    .blog-detail-title{
      font-size:clamp(1.9rem, 4vw, 3rem);
      font-weight:800;
      line-height:1.22;
      color:var(--showroom-title);
      margin-bottom:20px;
    }

    .blog-detail-meta{
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
      padding-bottom:24px;
      margin-bottom:28px;
      border-bottom:1px solid var(--showroom-border);
    }

    .blog-meta-item{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--showroom-text);
      font-size:14px;
      font-weight:500;
    }

    .blog-meta-icon{
      width:38px;
      height:38px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--showroom-icon-bg);
      color:var(--showroom-gold);
      font-size:15px;
      flex-shrink:0;
    }

    .blog-detail-content{
      color:var(--showroom-text);
      font-size:16px;
      line-height:1.95;
    }

    .blog-detail-content p{
      margin-bottom:20px;
    }

    .blog-detail-content h2,
    .blog-detail-content h3,
    .blog-detail-content h4{
      color:var(--showroom-title);
      font-weight:700;
      margin-top:30px;
      margin-bottom:14px;
      line-height:1.4;
    }

    .blog-detail-content h2{
      font-size:1.75rem;
    }

    .blog-detail-content h3{
      font-size:1.4rem;
    }

    .blog-detail-content ul,
    .blog-detail-content ol{
      padding-left:20px;
      margin-bottom:20px;
    }

    .blog-detail-content li{
      margin-bottom:10px;
    }

    .blog-quote-box{
      margin:30px 0;
      padding:24px 24px 24px 28px;
      background:linear-gradient(135deg, #faf8f4, #f1ebe2);
      border-left:4px solid var(--showroom-gold);
      border-radius:18px;
      color:var(--showroom-title);
      font-size:1.05rem;
      font-weight:600;
      line-height:1.8;
      position:relative;
    }

    .blog-quote-box i{
      color:var(--showroom-gold);
      font-size:1.4rem;
      margin-right:8px;
    }

    .blog-share-row{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid var(--showroom-border);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }

    .blog-share-title{
      font-size:15px;
      font-weight:700;
      color:var(--showroom-title);
      margin:0;
    }

    .blog-share-icons{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }

    .blog-share-icons a{
      width:42px;
      height:42px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--showroom-icon-bg);
      color:var(--showroom-gold);
      font-size:16px;
      transition:all .3s ease;
    }

    .blog-share-icons a:hover{
      background:var(--showroom-gold);
      color:#fff;
      transform:translateY(-3px);
    }

    .back-to-blog{
      display:inline-flex;
      align-items:center;
      gap:10px;
      margin-bottom:24px;
      color:var(--showroom-title);
      font-weight:600;
      font-size:15px;
      transition:all .3s ease;
    }

    .back-to-blog:hover{
      color:var(--showroom-gold);
    }

    @media (max-width: 991.98px){
      .blog-detail-section{
        padding:70px 0;
      }

      .blog-detail-image{
        height:400px;
      }

      .blog-detail-body{
        padding:28px 28px 32px;
      }
    }

    @media (max-width: 767.98px){
      .blog-detail-image{
        height:290px;
      }

      .blog-detail-body{
        padding:22px 20px 26px;
      }

      .blog-detail-meta{
        gap:12px;
        padding-bottom:18px;
        margin-bottom:22px;
      }

      .blog-detail-content{
        font-size:15px;
        line-height:1.85;
      }

      .blog-detail-content h2{
        font-size:1.45rem;
      }

      .blog-detail-content h3{
        font-size:1.2rem;
      }

      .blog-quote-box{
        padding:20px;
        font-size:.98rem;
      }

      .blog-share-row{
        align-items:flex-start;
        flex-direction:column;
      }
    }

    @media (max-width: 575.98px){
      .blog-detail-section{
        padding:55px 0;
      }

      .blog-detail-image{
        height:230px;
      }

      .blog-detail-badge{
        font-size:11px;
        padding:8px 14px;
      }

      .blog-meta-icon{
        width:34px;
        height:34px;
        font-size:14px;
      }

      .blog-meta-item{
        font-size:13px;
      }

      .blog-share-icons a{
        width:38px;
        height:38px;
        font-size:15px;
      }
    }