
 .about-sofa-squares {
  padding: 130px 0; /* more breathing space */
  background: transparent;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px; /* increased space between image & content */
  align-items: center;
    padding: 0 20px;
}

.about-images {
  position: relative;
}

.about-images img {
  width: 100%;
  border-radius: 20px;
  /*box-shadow: 0 25px 50px rgba(0,0,0,0.14);*/
}

.about-images img:last-child {
  position: absolute;
  width: 70%;
  bottom: -60px;   /* softer overlap */
  right: -60px;
  border: 8px solid #fff;
}

.about-content {
  padding-left: 30px; /* separation from images */
}

.about-tag {
  letter-spacing: 2.5px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.7;
  display: inline-block;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  margin: 15px 0 30px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 20px;
  max-width: 540px; /* luxury readability */
}

.about-highlight {
  font-weight: 600;
  margin-top: 30px;
}

/* 🔥 Responsive Fix */
@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images img:last-child {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    border: none;
  }

  .about-content {
    padding-left: 0;
  }
}

    


.ss-products {
  padding: 180px 0;
  /*background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(245,245,245,0.4) 100%
  );*/
}

.ss-products-container {
  max-width: 1250px;
  margin: auto;
    padding: 0 20px;
}

.ss-products-header {
  max-width: 650px;
  margin-bottom: 90px;
}

.ss-products-tag {
  font-size: 12px;
  letter-spacing: 3.5px;
  font-weight: 600;
  opacity: 0.6;
  display: inline-block;
  margin-bottom: 18px;
}

.ss-products-header h2 {
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.ss-products-header p {
  font-size: 17px;
  line-height: 2;
  opacity: 0.82;
}

.ss-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.ss-product-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.ss-product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.ss-product-card h4 {
  padding: 26px 28px;
  font-size: 18px;
  font-weight: 600;
}

.ss-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.12);
}

@media (max-width: 991px) {
  .ss-products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .ss-products {
    padding: 120px 0;
  }

  .ss-products-grid {
    grid-template-columns: 1fr;
  }

  .ss-product-card img {
    height: 240px;
  }
}
      