/* CSS riêng trang chủ / mua hàng */

body {
  background: #f7f9fc;
}

.product-card2 {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card2__head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.product-card2__avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  flex: 0 0 auto;
}

.product-card2__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.product-card2__name {
  color: #111827;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.product-card2__desc {
  margin-top: 4px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card2__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.product-card2__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
}

.product-card2__features i {
  color: #10b981;
  margin-top: 2px;
  flex: 0 0 auto;
}

.product-card2__meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.product-card2__meta-label {
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 2px;
}

.product-card2__meta-value {
  color: #111827;
  font-weight: 800;
}

.product-card2__country-text{
  font-weight: 800;
  line-height: 1.1;
}
.product-card2__flag{
  width: 26px;
  height: 26px;
  display: block;
  margin-top: 6px;
  object-fit: contain;
}

.btn-buy2 {
  background: #ff0055;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(245, 0, 87, 0.24);
}
.btn-buy2:hover {
  background: #f50057;
  color: #fff;
}
.btn-buy2:disabled {
  opacity: 0.6;
  box-shadow: none;
}

.empty-state {
  border: 1px dashed rgba(15, 23, 42, 0.18);
  background: #ffffff;
}

.cat-section{
  margin-bottom: 18px;
}
.cat-section__bar{
  background: #ff0055;
  border-radius: 16px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 18px rgba(245, 0, 87, 0.18);
  border: 1px solid rgba(245, 0, 87, 0.35);
}
.cat-section__ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  flex: 0 0 auto;
}
.cat-section__ico--placeholder{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
}
.cat-section__title{
  color: #fff;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
}
