/* ============================================================
   New Products Section
   ============================================================ */

.furnish-new {
  padding: 80px 0;
  background: #f5f7fa;
}

/* ---------- Section Header ---------- */
.furnish-new__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.furnish-new__title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.furnish-new__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.furnish-new__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #00A651;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.furnish-new__more:hover {
  color: #0A6231;
  gap: 10px;
  text-decoration: none;
}

/* Slider arrows */
.furnish-new__arrow {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.furnish-new__arrow:hover {
  background: #00A651;
  color: #fff;
  border-color: #00A651;
  text-decoration: none;
}

/* ---------- Product Grid ---------- */
.furnish-new__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* ---------- Product Card ---------- */
.furnish-new__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.furnish-new__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 166, 81, 0.15);
}

.furnish-new__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Product Image */
.furnish-new__image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #f5f7fa;
}

.furnish-new__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.furnish-new__card:hover .furnish-new__image {
  transform: scale(1.05);
}

/* "NEW" Badge */
.furnish-new__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(135deg, #00A651 0%, #1B9C5E 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Content */
.furnish-new__content {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.furnish-new__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #00A651;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.furnish-new__name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.furnish-new__desc {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Footer */
.furnish-new__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.furnish-new__price {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}

.furnish-new__cart {
  width: 36px;
  height: 36px;
  background: #00A651;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.furnish-new__cart:hover {
  background: #0A6231;
  transform: scale(1.1);
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .furnish-new__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .furnish-new {
    padding: 60px 0;
  }

  .furnish-new__title {
    font-size: 28px;
  }

  .furnish-new__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .furnish-new__image-wrap {
    height: 160px;
  }
}

@media (max-width: 639px) {
  .furnish-new__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .furnish-new__title {
    font-size: 22px;
  }

  .furnish-new__image-wrap {
    height: 130px;
  }

  .furnish-new__content {
    padding: 12px 14px 14px;
  }

  .furnish-new__name {
    font-size: 14px;
  }

  .furnish-new__price {
    font-size: 15px;
  }

  .furnish-new__cart {
    width: 30px;
    height: 30px;
  }
}