/* =========================
   PRODUCTS HERO
========================= */

.products-hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.products-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.products-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.42);
}

.products-hero .container{
  position:relative;
}

.products-hero h1,
.products-hero h2{
  color:#fff;
}

.products-hero p,
.products-hero li{
  color:rgba(255,255,255,.88);
}
.products-hero ol,
.products-hero ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.products-hero li::marker {
    content: "";
}

/* =========================
   INTRO
========================= */

.seo-products{
  padding:70px 0 20px;
  text-align:center;
}

.seo-products h2{
  font-size:42px;
  margin-bottom:14px;
}

/* =========================
   PRODUCTS LISTING
========================= */

.products-section{
  padding:80px 0;
  background:#f8f6f2;
}

.products-section .section-header,
.seo-products{
  max-width:950px;
  margin:0 auto 55px;
  text-align:center;
}

.seo-products p{
  max-width:820px;
  margin:0 auto;
  line-height:1.8;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.product-item{
  width:100%;
}

.product-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
  height:100%;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}

.product-image{
  display:block;
  width:100%;
  height:340px;
  overflow:hidden;
  background:#eee8df;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.product-card:hover .product-image img{
  transform:scale(1.04);
}

.product-info{
  padding:24px;
  text-align:center;
}

.product-info h3{
  font-size:26px;
  margin-bottom:18px;
}

.product-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* =========================
   CTA
========================= */

.custom-furniture-cta{
  padding:90px 0;
  text-align:center;
  background:linear-gradient(135deg,#111,#2a241c);
}

.custom-furniture-cta h2{
  color:#fff;
  font-size:46px;
  margin-bottom:14px;
}

.custom-furniture-cta p{
  color:rgba(255,255,255,.82);
  max-width:720px;
  margin:0 auto 24px;
}

/* =========================
   PRODUCT DETAIL
========================= */

.product-detail-section{
  padding:70px 0;
  background:#f8f6f2;
}

.detail-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:50px;
  align-items:start;
}

.main-image-wrapper{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.main-product-image{
  width:100%;
  height:560px;
  object-fit:contain;
  background:#f4efe7;
}

.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  cursor:pointer;
  z-index:2;
}

.slider-arrow.prev{ left:14px; }
.slider-arrow.next{ right:14px; }

.thumbnail-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.thumb{
  width:82px;
  height:82px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  border:2px solid transparent;
  background:#fff;
}

.thumb.active{
  border-color:var(--gold);
}

.info-section{
  background:#fff;
  padding:34px;
  border-radius:24px;
  box-shadow:var(--shadow-sm);
}

.product-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(199,161,90,.14);
  color:var(--gold-dark);
  font-size:13px;
  font-weight:600;
  margin-bottom:16px;
}

.info-section h1{
  font-size:46px;
  margin-bottom:14px;
}

.product-tagline{
  margin-bottom:14px;
}

.product-description{
  margin-bottom:18px;
}

.product-highlights{
  display:grid;
  gap:12px;
  margin:20px 0;
}

.highlight-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.highlight-item i{
  color:var(--gold);
  margin-top:4px;
}

.product-trust-grid{
  display:grid;
  gap:12px;
  margin:20px 0;
}

.trust-box{
  background:#f8f6f2;
  padding:14px 16px;
  border-radius:14px;
}

.product-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.luxury-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  padding:14px 22px;
  border-radius:12px;
  background:var(--gold);
  color:#fff;
  font-weight:600;
}

.luxury-btn:hover{
  background:var(--gold-dark);
}

.luxury-btn-outline{
  background:transparent;
  color:var(--black);
  border:1px solid var(--gold);
}

/* =========================
   MOBILE
========================= */

@media (max-width:1100px){

  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .detail-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:768px){

  .products-hero{
    min-height:58vh;
  }

  .products-hero h1{
    font-size:38px;
  }

  .products-grid{
    grid-template-columns:1fr;
  }

  .product-image{
    height:290px;
  }

  .custom-furniture-cta h2{
    font-size:34px;
  }

  .main-product-image{
    height:340px;
  }

  .info-section{
    padding:24px;
  }

  .info-section h1{
    font-size:34px;
  }

  .product-buttons{
    flex-direction:column;
  }

  .luxury-btn{
    width:100%;
    min-width:auto;
  }

}

@media (max-width:480px){

  .product-image{
    height:240px;
  }

  .main-product-image{
    height:280px;
  }

}

/* PRODUCTS HEADER CENTER FIX */

.products-section-header{
   text-align:center;
   padding:70px 0 20px;
}

.products-section-header .container{
   max-width:950px;
   margin:0 auto;
}

.products-section-header .section-subtitle{
   display:block;
   margin-bottom:14px;
   letter-spacing:3px;
}

.products-section-header .section-title{
   margin-bottom:16px;
}

.products-section-header .section-description{
   max-width:760px;
   margin:0 auto;
}

