:root {
  --green-primary: #4caf50;
  --green-light: #e8f5e9;
  --coral: #f97c5f;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background-color: #e8f5e9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon-inner {
  width: 16px;
  height: 16px;
  background-color: var(--green-primary);
  border-radius: 2px;
}

.hero-section {
  background-color: #f8f9fa;
  border-radius: 24px;
  overflow: hidden;
}

.btn-coral {
  background-color: var(--coral);
  color: white;
  border-radius: 50px;
  padding: 8px 24px;
  border: none;
}

.btn-coral:hover {
  background-color: #e56e53;
  color: white;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
}

.category-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  border: none;
}

.category-link {
  color: var(--coral);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.sale-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--green-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.product-img-container {
  background-color: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
}

td.description {
  max-width: 300px;
  word-wrap: break-word;   /* allows breaking long words */
  white-space: normal;     /* text will wrap */
}

.footer {
  background-color: #f8f9fa;
}
