/* Sim Lim Square.NET - Public Site Styles */
:root {
  --ss-primary: #0d6efd;
}
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #212529;
}
.hero-section {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}
.product-card img {
  height: 180px;
  object-fit: cover;
  background: #f8f9fa;
}
.product-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1) !important;
}
.navbar-brand {
  font-size: 1.3rem;
}
.nav-link.active {
  color: var(--ss-primary) !important;
}
footer a:hover {
  color: #ffffff !important;
}
