/* ==== Gift Product Card (chuẩn layout + font như Elementor kit) ==== */
.gift-product-block {
  margin: 16px 0;
  font-family: "Inter", sans-serif;
  position: relative;
}

/* Card chính */
.gift-card {
  border: 1px solid #e1e5e9;
  border-radius: 6px;
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
}

.gift-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

/* Nhãn “Quà tặng” */
.gift-header {
  display: block;
  margin-bottom: 0;
}

.gift-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e53935;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 6px;
}

.gift-icon img {
  width: 14px;
  height: 14px;
}

/* Ẩn menu ba chấm */
.gift-menu {
  display: none;
}

/* Layout: ảnh trái – chữ phải */
.gift-content {
  margin: 0;
}

.gift-product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gift-product-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  background: #f8f9fa;
  flex-shrink: 0;
}

.gift-product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== Text bên phải ====== */
.gift-product-details {
  flex: 1;
  min-width: 0;
}

.gift-product-name {
  margin: 0 0 4px;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  color: #222;
  line-height: 1.4;
}

.gift-product-name a {
  color: inherit;
  text-decoration: none;
}

.gift-product-name a:hover {
  color: #007bff;
  text-decoration: underline;
}

.gift-product-price {
  font-size: 13.5px;
  font-weight: 600;
  color: #007bff;
  margin-top: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .gift-card {
    padding: 10px;
  }

  .gift-product-icon {
    width: 38px;
    height: 38px;
  }

  .gift-product-name {
    font-size: 13px !important;
  }

  .gift-product-price {
    font-size: 12.5px;
  }

  .gift-label {
    font-size: 12px;
    padding: 2px 6px;
  }
}
