.fh-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://fabbhome.com/wp-content/uploads/2026/03/17-MasterLounge.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fh-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}

.fh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  color: #fff;
}

.fh-hero-eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
}

.fh-hero-content h1 {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #fff;
}


.fh-hero-sub {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.fh-btn {
  display: inline-block;
  min-width: 220px;
  padding: 16px 28px;
  background: #ffffff;
  color: #111;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.fh-btn:hover {
  background: #0e4a48;
  color: #fff;
}

@media (max-width: 1200px) {
  .fh-hero {
    min-height: 680px;
  }

  .fh-hero-content h1 {
    font-size: 54px;
  }
}

@media (max-width: 767px) {
  .fh-hero {
    min-height: 560px;
    background-position: center center;
  }

  .fh-hero-content h1 {
    font-size: 28px;
    line-height: 1.12;
  }
  
   .fh-section-title {
    font-size: 16px;
    margin-bottom: 24px;
  }
   

  .fh-hero-sub {
    font-size: 16px;
  }

  .fh-btn {
    min-width: 190px;
    padding: 14px 22px;
  }
}

.fh-footer {
  background: #f5f5f5;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.fh-best-sellers {
  padding: 90px 0 70px;
  background: #fff;
}

.fh-section-title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
  color: #1f1f1f;
}

.fh-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.fh-product-card {
  display: flex;
  flex-direction: column;
}

.fh-product-image-link {
  display: block;
  text-decoration: none;
}

.fh-product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f3f3f3;
}

.fh-product-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #efefef;
}

.fh-product-info {
  padding-top: 18px;
}

.fh-product-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
}

.fh-product-title a {
  color: #222;
  text-decoration: none;
}

.fh-product-price-note {
  margin-bottom: 14px;
  font-size: 14px;
  color: #555;
}

.fh-product-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fh-product-swatches span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-block;
}

.fh-product-swatches span:nth-child(1) { background: #aeb89a; }
.fh-product-swatches span:nth-child(2) { background: #6f87a0; }
.fh-product-swatches span:nth-child(3) { background: #8a8578; }
.fh-product-swatches span:nth-child(4) { background: #5c5548; }

.fh-product-swatches em {
  font-style: normal;
  font-size: 14px;
  color: #666;
  margin-left: 2px;
}

@media (max-width: 1200px) {
  .fh-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .fh-best-sellers {
    padding: 60px 0 40px;
  }

  .fh-section-title {
    font-size: 34px;
    margin-bottom: 28px;
  }

  .fh-products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ===== MOBILE FIX ===== */
@media (max-width: 767px) {
  .fh-section-title {
    font-size: 20px !important;
    line-height: 1.15 !important;
    margin-bottom: 24px !important;
  }

  .fh-best-sellers {
    padding: 48px 0 32px !important;
  }

  .fh-products-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .fh-product-title {
    font-size: 17px !important;
    line-height: 1.3 !important;
  }

  .fh-product-price-note {
    font-size: 13px !important;
  }

  .fh-product-swatches span {
    width: 16px !important;
    height: 16px !important;
  }
}

.fh-style-section {
  padding: 80px 0;
  background: #fff;
}

.fh-style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fh-style-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.fh-style-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .4s ease;
}

.fh-style-card span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
  font-family: "SainteColombe", serif;
  font-size: 26px;
}

.fh-style-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .fh-style-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .fh-style-card img {
    height: 240px;
  }

  .fh-style-card span {
    left: 14px;
    bottom: 14px;
    font-size: 18px;
  }
}


.fh-hero{
  position: relative;
  min-height: 760px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fh-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
}

.fh-hero__content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 40px 20px;
}

.fh-hero-eyebrow{
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.fh-hero__title{
  margin: 0 0 18px;
  font-family: "SainteColombe", serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.08;
  color: #fff;
}

.fh-hero__subtitle{
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255,255,255,.92);
}

@media (max-width: 767px){
  .fh-hero{
    min-height: 560px;
  }

  .fh-hero__title{
    font-size: 28px;
    line-height: 1.14;
  }

  .fh-hero__subtitle{
    font-size: 16px;
  }
}