@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{
  --pd-bg:#ece8e2;
  --pd-text:#2c2925;
  --pd-muted:#6f6a64;
  --pd-line:#d9d1c6;
  --pd-tag-bg:#d8c08a;
  --pd-btn:#7c6840;
  --pd-btn-hover:#6b5936;
  --pd-white:#ffffff;
  --pd-card:#f5f2ed;
}

.pd-artisan-section{
  background: var(--pd-bg);
  overflow: hidden;
}

.pd-breadcrumb{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pd-breadcrumb a,
.pd-breadcrumb span{
  color: #8d857d;
  text-decoration: none;
}

.pd-breadcrumb .active{
  color: var(--pd-text);
  font-weight: 500;
}

/* LEFT SIDE */
.pd-left-wrap{
  width: 100%;
}

.pd-main-slider{
  background: rgba(255,255,255,0.35);
  border-radius: 10px;
  overflow: hidden;
}

.pd-main-item{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 20px;
}

.pd-main-item img{
  width: 100%;
  max-width: 100%;
  height: 480px;
  object-fit: contain;
  display: block;
}

.pd-thumb-slider .pd-thumb-item{
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: #111;
}

.pd-thumb-slider .pd-thumb-item img{
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.pd-thumb-slider .owl-item.current .pd-thumb-item{
  border-color: var(--pd-btn);
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.pd-right-wrap{
  padding-left: 20px;
}

.pd-subtitle{
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #736d67;
  margin-bottom: 10px;
  font-weight: 600;
}

.pd-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  line-height: 0.95;
  color: var(--pd-text);
  margin-bottom: 18px;
  font-weight: 500;
}

.pd-tags{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.pd-tags span{
  background: #e0cb97;
  color: #6b5733;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 30px;
  display: inline-block;
}

.pd-desc{
  font-size: 15px;
  line-height: 1.9;
  color: var(--pd-muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.pd-feature-list{
  border-top: 1px solid var(--pd-line);
  margin-top: 10px;
  margin-bottom: 30px;
}

.pd-feature-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--pd-line);
}

.pd-feature-label{
  font-size: 14px;
  color: var(--pd-text);
  font-weight: 500;
}

.pd-feature-value{
  font-size: 14px;
  color: #5c5852;
  text-align: right;
}

.pd-btn-wrap{
  margin-top: 28px;
}

.pd-enquire-btn{
  width: 100%;
  max-width: 420px;
  background: var(--pd-btn);
  color: var(--pd-white);
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pd-enquire-btn:hover{
  background: var(--pd-btn-hover);
  color: var(--pd-white);
}

.pd-quote-link{
  display: block;
  margin-top: 16px;
  color: #7d6a49;
  text-decoration: underline;
  font-size: 14px;
  text-align: center;
  max-width: 420px;
}

/* Owl default cleanup */
.pd-main-slider .owl-dots,
.pd-main-slider .owl-nav,
.pd-thumb-slider .owl-dots,
.pd-thumb-slider .owl-nav{
  display: none;
}

/* Tablet */
@media (max-width: 991.98px){
  .pd-right-wrap{
    padding-left: 0;
  }

  .pd-title{
    font-size: 46px;
    line-height: 1;
  }

  .pd-main-item{
    min-height: 430px;
  }

  .pd-main-item img{
    height: 390px;
  }
}

/* Mobile */
@media (max-width: 767.98px){
  .pd-artisan-section{
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .pd-breadcrumb{
    font-size: 10px;
    gap: 6px;
    margin-bottom: 18px !important;
  }

  .pd-main-item{
    min-height: 300px;
    padding: 12px;
  }

  .pd-main-item img{
    height: 260px;
  }

  .pd-thumb-slider .pd-thumb-item img{
    height: 80px;
  }

  .pd-title{
    font-size: 38px;
    margin-bottom: 14px;
  }

  .pd-desc{
    font-size: 14px;
    line-height: 1.8;
  }

  .pd-feature-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0;
  }

  .pd-feature-value{
    text-align: left;
  }

  .pd-enquire-btn,
  .pd-quote-link{
    max-width: 100%;
  }
}

@media (max-width: 480px){
  .pd-title{
    font-size: 32px;
  }

  .pd-tags span{
    font-size: 10px;
    padding: 6px 10px;
  }

  .pd-main-item img{
    height: 220px;
  }

  .pd-thumb-slider .pd-thumb-item img{
    height: 70px;
  }
}
























:root{
  --bulk-bg: #F8E0B4;
  --bulk-title: #74623F;
  --bulk-text: #74623F;
  --bulk-btn-bg: #6D5C3A;
  --bulk-btn-hover: #5d4b2c;
  --bulk-btn-text: #ffffff;
  --bulk-radius: 16px;
}

.bulk-quote-section{
  background: #f4f1ec;
}

.bulk-quote-box{
  background: var(--bulk-bg);
  border-radius: var(--bulk-radius);
  padding: 34px 34px;
}

.bulk-quote-content{
  max-width: 620px;
}

.bulk-quote-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--bulk-title);
  margin-bottom: 12px;
}

.bulk-quote-text{
  font-size: 18px;
  line-height: 1.7;
  color: var(--bulk-text);
  max-width: 580px;
}

.bulk-quote-btn-wrap{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.bulk-quote-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 56px;
  padding: 0 28px;
  background: var(--bulk-btn-bg);
  color: var(--bulk-btn-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bulk-quote-btn:hover{
  background: var(--bulk-btn-hover);
  color: #fff;
}

/* Tablet */
@media (max-width: 991.98px){
  .bulk-quote-box{
    padding: 28px 24px;
  }

  .bulk-quote-title{
    font-size: 22px;
  }

  .bulk-quote-text{
    font-size: 16px;
  }

  .bulk-quote-btn{
    min-width: 145px;
    height: 52px;
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767.98px){
  .bulk-quote-box{
    padding: 24px 18px;
    border-radius: 14px;
  }

  .bulk-quote-content{
    text-align: left;
  }

  .bulk-quote-title{
    font-size: 20px;
    margin-bottom: 10px;
  }

  .bulk-quote-text{
    font-size: 15px;
    line-height: 1.6;
  }

  .bulk-quote-btn-wrap{
    justify-content: flex-start;
  }

  .bulk-quote-btn{
    width: 100%;
    min-width: 100%;
    height: 50px;
    font-size: 15px;
  }
}





















:root{
  --rp-bg: #f5f2ed;
  --rp-title: #23211d;
  --rp-text: #756f67;
  --rp-link: #7b6841;
  --rp-link-hover: #5f4f31;
  --rp-card-bg: transparent;
  --rp-img-bg: #f8f8f8;
  --rp-radius: 12px;
}

.rp-section{
  background: var(--rp-bg);
}

.rp-main-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 500;
  color: var(--rp-title);
  margin: 0;
}

.rp-main-text{
  font-size: 18px;
  line-height: 1.6;
  color: var(--rp-text);
}

.rp-top-right{
  flex-shrink: 0;
}

.rp-view-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rp-link);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.rp-view-link:hover{
  color: var(--rp-link-hover);
}

.rp-card{
  background: var(--rp-card-bg);
}

.rp-card-img-wrap{
  background: #f7f7f7;
  border-radius: var(--rp-radius);
  overflow: hidden;
  margin-bottom: 18px;
}

.rp-card-img{
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rp-card:hover .rp-card-img{
  transform: scale(1.03);
}

.rp-card-body{
  padding: 0;
}

.rp-card-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--rp-title);
  margin-bottom: 10px;
}

.rp-card-text{
  font-size: 16px;
  line-height: 1.7;
  color: var(--rp-text);
  margin-bottom: 18px;
  min-height: 78px;
}

.rp-enquire-link{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--rp-link);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.rp-enquire-link:hover{
  color: var(--rp-link-hover);
}

/* large tablets */
@media (max-width: 1199.98px){
  .rp-main-title{
    font-size: 44px;
  }

  .rp-card-title{
    font-size: 26px;
  }

  /* .rp-card-img{
    height: 240px;
  } */
}

/* tablets */
@media (max-width: 991.98px){
  .rp-main-title{
    font-size: 38px;
  }

  .rp-main-text{
    font-size: 16px;
  }

  .rp-card-title{
    font-size: 24px;
  }

  .rp-card-text{
    font-size: 15px;
    min-height: auto;
  }

  /* .rp-card-img{
    height: 250px;
  } */
}

/* mobile */
@media (max-width: 767.98px){
  .rp-section{
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .rp-top{
    margin-bottom: 26px !important;
  }

  .rp-main-title{
    font-size: 32px;
  }

  .rp-main-text{
    font-size: 15px;
    max-width: 100%;
  }

  .rp-view-link{
    font-size: 15px;
  }

  /* .rp-card-img{
    height: 240px;
  } */

  .rp-card-title{
    font-size: 22px;
    margin-bottom: 8px;
  }

  .rp-card-text{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .rp-enquire-link{
    font-size: 13px;
  }
}

/* extra small */
@media (max-width: 575.98px){
  .rp-main-title{
    font-size: 28px;
  }

  /* .rp-card-img{
    height: 220px;
  } */

  .rp-card-img-wrap{
    margin-bottom: 14px;
  }
}






















: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;
  }
}