@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: #c8b184;
  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{
  --craft-bg: #f6f3ee;
  --craft-title: #1C1C19;
  --craft-text: #1C1C19;
  --craft-gold: #6D5C3A;
  --craft-badge-bg: #c7b181;
  --craft-white: #ffffff;
}

.craft-hero-section{
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background-image: url("{% static 'images/Luxury\ Table\ Setting.png' %}");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.craft-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.42);
  z-index: 1;
}

.craft-hero-section .container{
  position: relative;
  z-index: 2;
}

.craft-hero-content{
  max-width: 700px;
  padding: 60px 0;
}

.craft-hero-badge{
  display: inline-block;
  background: var(--craft-badge-bg);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.craft-hero-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1.02;
  font-weight: 700;
  color: var(--craft-title);
  margin-bottom: 22px;
}

.craft-hero-title span{
  color: var(--craft-gold);
  font-style: italic;
  font-weight: 500;
}

.craft-hero-text{
  max-width: 520px;
  font-size: 22px;
  line-height: 1.7;
  color: var(--craft-text);
  margin: 0;
}

/* Large screen */
@media (max-width: 1199.98px){
  .craft-hero-section{
    min-height: 560px;
  }

  .craft-hero-title{
    font-size: 60px;
  }

  .craft-hero-text{
    font-size: 19px;
  }
}

/* Tablet */
@media (max-width: 991.98px){
  .craft-hero-section{
    min-height: 500px;
    background-position: center;
  }

  .craft-hero-content{
    padding: 50px 0;
  }

  .craft-hero-title{
    font-size: 50px;
  }

  .craft-hero-text{
    font-size: 17px;
    max-width: 480px;
  }
}

/* Mobile */
@media (max-width: 767.98px){
  .craft-hero-section{
    min-height: 430px;
    align-items: center;
    background-position: center center;
  }

  .craft-hero-overlay{
    background: rgba(255,255,255,0.50);
  }

  .craft-hero-content{
    padding: 40px 0;
    max-width: 100%;
  }

  .craft-hero-badge{
    font-size: 10px;
    padding: 6px 12px;
    margin-bottom: 18px;
  }

  .craft-hero-title{
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .craft-hero-text{
    font-size: 15px;
    line-height: 1.65;
    max-width: 100%;
  }
}

/* Small mobile */
@media (max-width: 575.98px){
  .craft-hero-section{
    min-height: 390px;
  }

  .craft-hero-title{
    font-size: 31px;
  }

  .craft-hero-text{
    font-size: 14px;
  }
}




















:root{
  --legacy-bg:#FCF9F4;
  --legacy-title:#1C1C19;
  --legacy-text:#1C1C19;
  --legacy-gold:#6D5C3A;
  --legacy-divider:#D8D0C5;
  --legacy-white:#ffffff;
  --legacy-radius:14px;
}

.legacy-section{
  background: var(--legacy-bg);
  padding: 80px 0;
}

.legacy-image-wrap{
  position: relative;
  max-width: 100%;
  padding-right: 70px;
  padding-bottom: 30px;
}

.legacy-image{
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-height: 420px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.legacy-overlay-card{
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--legacy-gold);
  color: var(--legacy-white);
  min-width: 180px;
  padding: 28px 24px;
  border-radius: 8px;
  box-shadow: 0 16px 28px rgba(0,0,0,0.12);
  text-align: center;
}

.legacy-overlay-card h3{
  margin: 0 0 6px;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  color: var(--legacy-white);
}

.legacy-overlay-card p{
  margin: 0;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.92);
}

.legacy-content{
  max-width: 560px;
}

.legacy-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--legacy-title);
  margin-bottom: 26px;
}

.legacy-text{
  font-size: 18px;
  line-height: 1.9;
  color: var(--legacy-text);
  margin-bottom: 18px;
}

.legacy-divider{
  border-bottom: 1px solid var(--legacy-divider);
  margin: 28px 0 24px;
}

.legacy-stats{
  display: flex;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
}

.legacy-stat h4{
  margin: 0 0 8px;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: var(--legacy-title);
}

.legacy-stat span{
  display: block;
  font-size: 12px;
  letter-spacing: 0.9px;
  color: #6C645C;
}

@media (max-width: 1199.98px){
  .legacy-title{
    font-size: 48px;
  }

  .legacy-text{
    font-size: 17px;
  }
}

@media (max-width: 991.98px){
  .legacy-section{
    padding: 65px 0;
  }

  .legacy-image-wrap{
    padding-right: 55px;
    padding-bottom: 25px;
  }

  .legacy-image{
    min-height: 360px;
  }

  .legacy-overlay-card{
    min-width: 160px;
    padding: 24px 20px;
  }

  .legacy-overlay-card h3{
    font-size: 38px;
  }

  .legacy-title{
    font-size: 40px;
    margin-bottom: 20px;
  }

  .legacy-text{
    font-size: 16px;
    line-height: 1.8;
  }

  .legacy-stats{
    gap: 34px;
  }

  .legacy-stat h4{
    font-size: 34px;
  }
}

@media (max-width: 767.98px){
  .legacy-section{
    padding: 55px 0;
  }

  .legacy-image-wrap{
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .legacy-image{
    min-height: 300px;
    border-radius: 10px;
  }

  .legacy-overlay-card{
    right: 14px;
    bottom: 14px;
    min-width: 145px;
    padding: 18px 16px;
    border-radius: 8px;
  }

  .legacy-overlay-card h3{
    font-size: 30px;
  }

  .legacy-overlay-card p{
    font-size: 10px;
  }

  .legacy-title{
    font-size: 34px;
    line-height: 1.1;
  }

  .legacy-text{
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .legacy-divider{
    margin: 22px 0 20px;
  }

  .legacy-stats{
    gap: 24px;
    justify-content: flex-start;
  }

  .legacy-stat h4{
    font-size: 30px;
  }

  .legacy-stat span{
    font-size: 11px;
  }
}

@media (max-width: 575.98px){
  .legacy-title{
    font-size: 29px;
  }

  .legacy-image{
    min-height: 260px;
  }

  .legacy-overlay-card{
    min-width: 130px;
    padding: 16px 14px;
  }

  .legacy-overlay-card h3{
    font-size: 26px;
  }

  .legacy-stats{
    flex-direction: column;
    gap: 18px;
  }
}




























:root{
  --mv-bg: #F6F3EE;
  --mv-title: #1C1C19;
  --mv-text: #1C1C19;
  --mv-icon: #1C1C19;
}

.mv-section{
  background: var(--mv-bg);
  padding: 80px 0;
}

.mv-card{
  max-width: 420px;
}

.mv-icon{
  margin-bottom: 24px;
  color: var(--mv-icon);
  font-size: 26px;
  line-height: 1;
}

.mv-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 500;
  color: var(--mv-title);
  margin-bottom: 18px;
}

.mv-text{
  font-size: 18px;
  line-height: 1.8;
  color: var(--mv-text);
  margin: 0;
  max-width: 360px;
}

@media (max-width: 1199.98px){
  .mv-title{
    font-size: 40px;
  }

  .mv-text{
    font-size: 17px;
  }
}

@media (max-width: 991.98px){
  .mv-section{
    padding: 65px 0;
  }

  .mv-title{
    font-size: 34px;
  }

  .mv-text{
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (max-width: 767.98px){
  .mv-section{
    padding: 55px 0;
  }

  .mv-card{
    max-width: 100%;
  }

  .mv-icon{
    margin-bottom: 18px;
    font-size: 24px;
  }

  .mv-title{
    font-size: 30px;
    margin-bottom: 14px;
  }

  .mv-text{
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }
}

@media (max-width: 575.98px){
  .mv-title{
    font-size: 27px;
  }

  .mv-text{
    font-size: 14px;
  }
}

























:root{
  --principles-bg: #FCF9F4;
  --principles-title: #1C1C19;
  --principles-text: #1C1C19;
  --principles-icon: #6D5C3A;
}

.principles-section{
  background: var(--principles-bg);
  padding: 80px 0;
}

.principles-head{
  max-width: 760px;
  margin: 0 auto 55px;
}

.principles-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 500;
  color: var(--principles-title);
  margin-bottom: 16px;
}

.principles-subtext{
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--principles-text);
}

.principle-card{
  max-width: 190px;
  margin: 0 auto;
}

.principle-icon{
  font-size: 26px;
  line-height: 1;
  color: var(--principles-icon);
  margin-bottom: 20px;
}

.principle-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--principles-title);
  margin-bottom: 12px;
}

.principle-text{
  font-size: 15px;
  line-height: 1.7;
  color: var(--principles-text);
  margin: 0;
}

/* Responsive */
@media (max-width: 1199.98px){
  .principles-title{
    font-size: 50px;
  }

  .principles-subtext{
    font-size: 17px;
  }

  .principle-title{
    font-size: 24px;
  }
}

@media (max-width: 991.98px){
  .principles-section{
    padding: 65px 0;
  }

  .principles-head{
    margin-bottom: 42px;
  }

  .principles-title{
    font-size: 42px;
  }

  .principle-card{
    max-width: 100%;
  }
}

@media (max-width: 767.98px){
  .principles-section{
    padding: 55px 0;
  }

  .principles-head{
    margin-bottom: 34px;
  }

  .principles-title{
    font-size: 34px;
    margin-bottom: 12px;
  }

  .principles-subtext{
    font-size: 15px;
    line-height: 1.7;
  }

  .principle-icon{
    font-size: 24px;
    margin-bottom: 16px;
  }

  .principle-title{
    font-size: 22px;
    margin-bottom: 10px;
  }

  .principle-text{
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 575.98px){
  .principles-title{
    font-size: 29px;
  }

  .principle-title{
    font-size: 20px;
  }

  .principle-text{
    font-size: 13px;
  }
}




















:root{
  --preferred-bg: #FCF9F4;
  --preferred-title: #1C1C19;
  --preferred-text: #1C1C19;
  --preferred-gold: #6D5C3A;
  --preferred-radius: 10px;
}

.preferred-section{
  background: var(--preferred-bg);
  padding: 80px 0;
}

.preferred-left{
  max-width: 470px;
}

.preferred-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 0.98;
  font-weight: 500;
  color: var(--preferred-title);
  margin-bottom: 24px;
}

.preferred-title span{
  display: block;
  font-style: italic;
}

.preferred-text{
  font-size: 18px;
  line-height: 1.8;
  color: var(--preferred-text);
  margin-bottom: 28px;
  max-width: 420px;
}

.preferred-image-wrap{
  overflow: hidden;
  border-radius: var(--preferred-radius);
}

.preferred-image{
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--preferred-radius);
}

.preferred-feature{
  max-width: 270px;
}

.preferred-icon{
  color: var(--preferred-gold);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 16px;
}

.preferred-feature h3{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--preferred-title);
  margin-bottom: 10px;
}

.preferred-feature p{
  font-size: 15px;
  line-height: 1.75;
  color: var(--preferred-text);
  margin: 0;
}

/* Responsive */
@media (max-width: 1199.98px){
  .preferred-title{
    font-size: 50px;
  }

  .preferred-text{
    font-size: 17px;
  }

  .preferred-feature h3{
    font-size: 26px;
  }
}

@media (max-width: 991.98px){
  .preferred-section{
    padding: 65px 0;
  }

  .preferred-left{
    max-width: 100%;
  }

  .preferred-title{
    font-size: 42px;
    line-height: 1.02;
  }

  .preferred-text{
    max-width: 100%;
    margin-bottom: 22px;
  }

  .preferred-feature{
    max-width: 100%;
  }
}

@media (max-width: 767.98px){
  .preferred-section{
    padding: 55px 0;
  }

  .preferred-title{
    font-size: 34px;
    margin-bottom: 18px;
  }

  .preferred-text{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .preferred-icon{
    font-size: 20px;
    margin-bottom: 14px;
  }

  .preferred-feature h3{
    font-size: 22px;
    margin-bottom: 8px;
  }

  .preferred-feature p{
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 575.98px){
  .preferred-title{
    font-size: 30px;
  }

  .preferred-feature h3{
    font-size: 20px;
  }

  .preferred-feature{
    max-width: 100%;
  }
}




















:root{
  --trusted-bg: #F6F3EE;
  --trusted-box-1: #F3EFE8;
  --trusted-box-2: #EEE8DE;
  --trusted-title: #1C1C19;
  --trusted-text: #1C1C19;
  --trusted-gold: #B7A27A;
  --trusted-gold-dark: #A98F57;
  --trusted-border: #E3DBCF;
  --trusted-radius: 18px;
}

.trusted-cta-section{
  background: var(--trusted-bg);
  padding: 80px 0;
}

.trusted-cta-box{
  background: linear-gradient(135deg, var(--trusted-box-1) 0%, var(--trusted-box-2) 100%);
  border-radius: 18px;
  padding: 70px 20px;
  border: 1px solid rgba(0,0,0,0.04);
}

.trusted-cta-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
  color: var(--trusted-title);
  margin-bottom: 20px;
}

.trusted-cta-text{
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--trusted-text);
}

.trusted-cta-buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trusted-btn{
  min-width: 155px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.trusted-btn-primary{
  background: var(--trusted-gold);
  color: #fff;
  box-shadow: 0 8px 18px rgba(183,159,107,0.22);
}

.trusted-btn-primary:hover{
  background: var(--trusted-gold-dark);
  color: #fff;
}

.trusted-btn-outline{
  background: transparent;
  color: #6C6153;
  border: 1px solid var(--trusted-border);
}

.trusted-btn-outline:hover{
  background: #fff;
  color: #3a342d;
}

/* Responsive */
@media (max-width: 1199.98px){
  .trusted-cta-title{
    font-size: 48px;
  }

  .trusted-cta-text{
    font-size: 17px;
  }
}

@media (max-width: 991.98px){
  .trusted-cta-section{
    padding: 65px 0;
  }

  .trusted-cta-box{
    padding: 56px 22px;
  }

  .trusted-cta-title{
    font-size: 40px;
  }
}

@media (max-width: 767.98px){
  .trusted-cta-section{
    padding: 55px 0;
  }

  .trusted-cta-box{
    padding: 42px 18px;
    border-radius: 14px;
  }

  .trusted-cta-title{
    font-size: 32px;
    margin-bottom: 14px;
  }

  .trusted-cta-text{
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .trusted-btn{
    min-width: 140px;
    padding: 12px 22px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px){
  .trusted-cta-title{
    font-size: 28px;
  }

  .trusted-cta-buttons{
    flex-direction: column;
    gap: 12px;
  }

  .trusted-btn{
    width: 100%;
    max-width: 240px;
  }
}























:root{
  --showroom-bg: #F6F3EE;
  --showroom-title: #1C1C19;
  --showroom-text: #6D5C3A;
  --showroom-gold: #B7A27A;
  --showroom-icon-bg: #EFE9DF;
  --showroom-map-bg: #ECE8E2;
}

/* body{
  font-family: 'Poppins', sans-serif;
} */

.showroom-section{
  background: var(--showroom-bg);
  padding: 80px 0;
}

.showroom-content{
  max-width: 470px;
}

.showroom-title{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--showroom-title);
  margin-bottom: 34px;
}

.showroom-info-list{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.showroom-info-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.showroom-icon-box{
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: var(--showroom-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showroom-icon-box i{
  color: var(--showroom-gold);
  font-size: 20px;
  line-height: 1;
}

.showroom-info-text h4{
  font-size: 18px;
  font-weight: 600;
  color: #27231e;
  margin-bottom: 6px;
}

.showroom-info-text p{
  font-size: 16px;
  line-height: 1.7;
  color: var(--showroom-text);
  margin: 0;
}

.showroom-info-text a{
  color: var(--showroom-text);
  text-decoration: none;
  transition: 0.3s ease;
}

.showroom-info-text a:hover{
  color: var(--showroom-gold);
}

.showroom-map-wrap{
  background: var(--showroom-map-bg);
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.showroom-map-wrap iframe{
  width: 100%;
  height: 100%;
  display: block;
  min-height: 380px;
  /* filter: grayscale(100%); */
}

/* Responsive */
@media (max-width: 1199.98px){
  .showroom-title{
    font-size: 46px;
  }
}

@media (max-width: 991.98px){
  .showroom-section{
    padding: 65px 0;
  }

  .showroom-content{
    max-width: 100%;
  }

  .showroom-title{
    font-size: 40px;
    margin-bottom: 26px;
  }

  .showroom-map-wrap,
  .showroom-map-wrap iframe{
    min-height: 340px;
  }
}

@media (max-width: 767.98px){
  .showroom-section{
    padding: 55px 0;
  }

  .showroom-title{
    font-size: 34px;
    margin-bottom: 22px;
  }

  .showroom-info-list{
    gap: 22px;
  }

  .showroom-info-item{
    gap: 14px;
  }

  .showroom-icon-box{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .showroom-icon-box i{
    font-size: 18px;
  }

  .showroom-info-text h4{
    font-size: 17px;
  }

  .showroom-info-text p{
    font-size: 15px;
  }

  .showroom-map-wrap,
  .showroom-map-wrap iframe{
    min-height: 300px;
    border-radius: 18px;
  }
}

@media (max-width: 575.98px){
  .showroom-title{
    font-size: 30px;
  }

  .showroom-info-text h4{
    font-size: 16px;
  }

  .showroom-info-text p{
    font-size: 14px;
    line-height: 1.6;
  }

  .showroom-map-wrap,
  .showroom-map-wrap iframe{
    min-height: 260px;
  }
}


















:root{
  --footer-bg: #070809;
  --footer-bg-bottom: #0b0c0f;
  --footer-title: #ffffff;
  --footer-text: #9b9ca3;
  --footer-link: #d7d8dd;
  --footer-gold: #B89B67;
  --footer-border: rgba(255,255,255,0.08);
  --footer-input: #8f9199;
}

body{
  font-family: 'Poppins', sans-serif;
}

.cp-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
}

.cp-footer-top{
  padding: 70px 0 42px;
}

.cp-footer-logo{
  display: inline-block;
  margin-bottom: 24px;
}

.cp-footer-logo img{
  max-width: 145px;
  height: auto;
  display: block;
}

.cp-footer-desc{
  max-width: 240px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--footer-text);
  margin-bottom: 24px;
}

.cp-footer-social{
  display: flex;
  align-items: center;
  gap: 16px;
}

.cp-footer-social a{
  color: var(--footer-gold);
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cp-footer-social a:hover{
  color: #d7ba86;
  transform: translateY(-2px);
}

.cp-footer-title{
  font-size: 28px;
  font-weight: 500;
  color: var(--footer-title);
  margin-bottom: 24px;
}

.cp-footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-footer-links li{
  margin-bottom: 16px;
}

.cp-footer-links li:last-child{
  margin-bottom: 0;
}

.cp-footer-links a{
  text-decoration: none;
  color: var(--footer-link);
  font-size: 17px;
  line-height: 1.5;
  transition: 0.3s ease;
}

.cp-footer-links a:hover{
  color: var(--footer-gold);
  padding-left: 4px;
}

.cp-footer-news-text{
  max-width: 250px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--footer-text);
  margin-bottom: 20px;
}

.cp-newsletter-form{
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
}

.cp-newsletter-form input{
  flex: 1;
  height: 46px;
  background: rgba(255,255,255,0.10);
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  font-size: 14px;
}

.cp-newsletter-form input::placeholder{
  color: #bfc3cc;
}

.cp-newsletter-form button{
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: var(--footer-gold);
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.cp-newsletter-form button:hover{
  background: #c9ad7a;
}

.cp-footer-bottom{
  border-top: 1px solid var(--footer-border);
  background: var(--footer-bg-bottom);
  padding: 22px 0;
}

.cp-footer-copy{
  font-size: 13px;
  color: #7f8189;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cp-footer-bottom-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cp-footer-bottom-links a{
  text-decoration: none;
  font-size: 13px;
  color: #8f9199;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.cp-footer-bottom-links a:hover{
  color: var(--footer-gold);
}

/* Responsive */
@media (max-width: 1199.98px){
  .cp-footer-title{
    font-size: 24px;
  }

  .cp-footer-desc,
  .cp-footer-links a,
  .cp-footer-news-text{
    font-size: 15px;
  }
}

@media (max-width: 991.98px){
  .cp-footer-top{
    padding: 60px 0 36px;
  }

  .cp-footer-title{
    margin-bottom: 18px;
  }

  .cp-footer-copy{
    text-align: center;
  }

  .cp-footer-bottom-links{
    justify-content: center;
  }
}

@media (max-width: 767.98px){
  .cp-footer-top{
    padding: 50px 0 30px;
  }

  .cp-footer-logo img{
    max-width: 130px;
  }

  .cp-footer-desc{
    max-width: 100%;
    margin-bottom: 20px;
  }

  .cp-footer-title{
    font-size: 22px;
    margin-bottom: 16px;
  }

  .cp-footer-links li{
    margin-bottom: 12px;
  }

  .cp-newsletter-form{
    max-width: 100%;
  }

  .cp-footer-bottom{
    padding: 18px 0;
  }

  .cp-footer-copy{
    font-size: 12px;
    line-height: 1.7;
  }

  .cp-footer-bottom-links{
    gap: 16px;
  }

  .cp-footer-bottom-links a{
    font-size: 12px;
  }
}

@media (max-width: 575.98px){
  .cp-footer-top{
    padding: 45px 0 28px;
  }

  .cp-footer-title{
    font-size: 20px;
  }

  .cp-footer-desc,
  .cp-footer-links a,
  .cp-footer-news-text{
    font-size: 14px;
  }

  .cp-footer-social a{
    font-size: 18px;
  }

  .cp-newsletter-form{
    flex-direction: row;
  }

  .cp-newsletter-form input{
    height: 44px;
    font-size: 13px;
  }

  .cp-newsletter-form button{
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .cp-footer-bottom-links{
    flex-direction: column;
    gap: 10px;
  }
}