/**
 * 積分提示樣式
 * 在預約摘要中顯示會員可用積分
 */

.points-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin: 16px 0;
  background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
  border: 1px solid #FC3130;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.points-hint:hover {
  background: linear-gradient(135deg, #FFE8E8 0%, #FFD8D8 100%);
  transform: translateX(2px);
}

.points-hint-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.points-hint-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.points-hint-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.points-hint-label strong {
  color: #FC3130;
  font-weight: 700;
}

.points-hint-value {
  font-size: 12px;
  color: #666;
}

.points-hint-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: #FC3130;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.points-hint:hover .points-hint-arrow {
  transform: translateX(4px);
}

/* 手機版優化 */
@media (max-width: 768px) {
  .points-hint {
    padding: 10px 14px;
    gap: 10px;
    margin: 12px 0;
  }
  
  .points-hint-icon {
    width: 18px;
    height: 18px;
  }
  
  .points-hint-label {
    font-size: 13px;
  }
  
  .points-hint-value {
    font-size: 11px;
  }
  
  .points-hint-arrow {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .points-hint {
    padding: 8px 12px;
    gap: 8px;
    margin: 10px 0;
  }
  
  .points-hint-icon {
    width: 16px;
    height: 16px;
  }
  
  .points-hint-label {
    font-size: 12px;
  }
  
  .points-hint-value {
    font-size: 10px;
  }
}
