/* ============================================
   Project Details CSS
   Amenities & Features Section Styling
   ============================================ */

/* Main SSR Feature Section */
.SSR-single-property-feature {
  margin-bottom: 30px;
}

.SSR-single-property-feature .h7 {
  margin-bottom: 20px;
}

/* Wrap Feature Container */
.SSR-wrap-feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Individual Feature Item */
.SSR-feature-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
}

.SSR-feature-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-color: #e8a66b;
  transform: translateY(-2px);
}

/* Feature Icon (Left Side) */
.SSR-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 12px;
  border-radius: 50%;
  background-color: #f0f2f5;
  transition: all 0.3s ease;
}

.SSR-feature-icon i {
  font-size: 16px;
  color: #e8a66b;
  transition: all 0.3s ease;
}

.SSR-feature-item:hover .SSR-feature-icon {
  background-color: #e8a66b;
}

.SSR-feature-item:hover .SSR-feature-icon i {
  color: white;
  transform: scale(1.1);
}

/* Feature Content (Right Side - Name) */
.SSR-feature-content {
  display: flex;
  align-items: center;
}

.SSR-feature-name {
  font-size: 14px;
  font-weight: 500;
  color: #161e2d;
  margin: 0;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .SSR-wrap-feature {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .SSR-wrap-feature {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .SSR-feature-item {
    padding: 12px;
  }

  .SSR-feature-name {
    font-size: 13px;
  }

  .SSR-feature-icon {
    width: 28px;
    height: 28px;
  }

  .SSR-feature-icon i {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .SSR-wrap-feature {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .SSR-feature-item {
    padding: 10px;
  }

  .SSR-feature-name {
    font-size: 12px;
  }

  .SSR-feature-icon {
    width: 26px;
    height: 26px;
    margin-right: 8px;
  }

  .SSR-feature-icon i {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .SSR-wrap-feature {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .SSR-feature-item {
    padding: 10px;
    width: fit-content;
  }

  .SSR-feature-name {
    font-size: 12px;
  }

  .SSR-feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  .SSR-feature-icon i {
    font-size: 11px;
  }
}
