/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

/* Header */
.header {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #f5e8d9, #ffffff);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.hh-title {
  font-size: 36px;
  font-weight: 700;
  color: #9e5318;
  margin-bottom: 10px;
}
.subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Container */
.hh-container {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Card Layout */
.card-bds {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.card-bds:hover {
  transform: translateY(-5px);
}
.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 16px;
}
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 6px 0;
}
.card-desc {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 8px;
  max-height: 60px;
  overflow: hidden;
}
.card-price {
  font-size: 16px;
  font-weight: 600;
  color: #9e5318;
  margin-bottom: 6px;
}
.card-status {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  background: #e5e7eb;
  color: #333;
  display: inline-block;
  margin-bottom: 8px;
}
.card-status.dang-mo-ban {
  background: #dcfce7;
  color: #15803d;
}
.phone a {
  color: #9e5318;
  text-decoration: none;
  font-weight: 600;
}
.phone a:hover {
  text-decoration: underline;
}

/* Footer & Social Icons */
.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid #9e5318;
  color: #9e5318;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-action:hover {
  background: #9e5318;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}
.social-icons a:hover {
  transform: scale(1.1);
  border-color: #9e5318;
}
.social-icons a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Responsive Fix */
@media (max-width: 480px) {
  .actions {
    flex-direction: column;
  }
  .btn-action {
    width: 100%;
    text-align: center;
  }
  .social-icons {
    justify-content: flex-start;
  }
}
