/* ============================================================
   Sell Features Section - Model12 Homepage
   ============================================================ */

.furnish-sell {
  padding: 80px 0;
  background: #fff;
}

/* Section Header */
.furnish-sell__header {
  text-align: center;
  margin-bottom: 60px;
}

.furnish-sell__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #00A651;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 16px;
}

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

.furnish-sell__desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.furnish-sell__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* Feature Item */
.furnish-sell__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.furnish-sell__item:hover {
  background: #f5f7fa;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 166, 81, 0.1);
}

/* Icon */
.furnish-sell__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e8f5e9 0%, #d5edd8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #00A651;
  transition: all 0.3s ease;
}

.furnish-sell__item:hover .furnish-sell__icon {
  background: linear-gradient(135deg, #00A651 0%, #1B9C5E 100%);
  color: #fff;
}

.furnish-sell__icon svg {
  width: 32px;
  height: 32px;
}

/* Feature Title */
.furnish-sell__item-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.3;
}

/* Feature Description */
.furnish-sell__item-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .furnish-sell__grid {
    gap: 24px;
  }
  .furnish-sell__item {
    padding: 32px 24px;
  }
}

@media (max-width: 959px) {
  .furnish-sell {
    padding: 60px 0;
  }
  .furnish-sell__title {
    font-size: 28px;
  }
  .furnish-sell__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 639px) {
  .furnish-sell__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .furnish-sell__item {
    padding: 30px 20px;
  }
  .furnish-sell__title {
    font-size: 22px;
  }
  .furnish-sell__item-title {
    font-size: 18px;
  }
  .furnish-sell__icon {
    width: 60px;
    height: 60px;
  }
  .furnish-sell__icon svg {
    width: 26px;
    height: 26px;
  }
}
