h1 {
  font-size: 1.8rem;
  color: #e8576f;
  text-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  margin: 20px 0;
}

body {
  padding-top: 70px;
  background-color: #fdf2f5;
}

.nav-page:hover, .nav-link:hover {
  color: #ff6b81 !important;
}

/* Back Button */
.btn-back {
  display: block;
  margin: 30px auto;
  width: 200px;
  height: 50px;
  padding-top: 10px;
  border: none;
  border-radius: 16px;
  background-color: #ff6b81;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background-color: #d03e54;
  transform: scale(1.05);
}

/* Table Styling */
.table-all {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-top: 10px;
}

.table thead th {
  background-color: #ff6b81 !important;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.table td, .table th {
  text-align: center;
  vertical-align: middle;
  font-size: 0.95rem;
}

.btn-table {
  background-color: #fff5f9;
  color: #e8576f;
  border: 1px solid #e8576f;
  font-weight: 600;
  border-radius: 16px;
  width: 75%;
  padding: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-table:hover {
  background-color: #e8576f;
  color: white;
}

@media (max-width: 576px) {
  h1 { font-size: 1.5rem; }
  .btn-back { width: 180px; font-size: 16px; }
  .btn-table { font-size: 0.9rem; padding: 8px; }
  .table th, .table td { font-size: 0.85rem; }
}
.cart-button {
  background-color: #ff6b81 !important;
  color: white !important;
  border: none;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
}

.cart-button:hover {
  background-color: #cd4a5d !important;
  transform: scale(1.05);
}
a.cart-link {
  color: palevioletred;
  border: 1px solid palevioletred;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

a.cart-link:hover {
  color: white !important;
  background-color: palevioletred;
}