/* Tipografia geral */
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9fa;
  color: #495057;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
}

header h1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6f42c1;       /* roxo principal */
  letter-spacing: 1px;
}

header img {
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-radius: 8px;
}

/* Cards de produtos */
.card {
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
}
.card-text {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Botão Presentear personalizado - COR NOVA #654321 */
.btn-presentear {
  background-color: #654321 !important;
  border-color: #654321 !important;
  color: white !important;
  font-weight: 500;
}
.btn-presentear:hover,
.btn-presentear:focus {
  background-color: #543210 !important;
  border-color: #543210 !important;
  color: white !important;
}

/* Botões principais (mantendo o roxo original para outros botões) */
.btn-primary {
  background-color: #6f42c1;
  border-color: #6f42c1;
  font-weight: 500;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #8a5fd1;
  border-color: #8a5fd1;
}

/* Botão admin (header) */
.btn-outline-primary {
  border-color: #6f42c1;
  color: #6f42c1;
}
.btn-outline-primary:hover {
  background-color: #6f42c1;
  color: #fff;
}

/* Estilos para preços */
.text-success {
  color: #28a745 !important;
}

.fw-bold {
  font-weight: 600 !important;
}

.h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Estilos para o botão Voltar melhorado */
.btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: white;
  transform: translateX(-5px);
}

/* Botão Pagar com Cartão (mantido azul) */
.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* Melhorias gerais para a página product */
.fw-bold {
  font-weight: 700 !important;
}

.fs-5 {
  font-size: 1.1rem !important;
  line-height: 1.6;
}

.img-thumbnail {
  border: 2px solid #dee2e6;
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}
