* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #3D384E;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  padding: 40px 20px;
  color: #ffffff;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.site-title {
  font-family: 'Trattatello', sans-serif;
  font-size: 40px;
  color: #E95E78;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

.grand-total {
  font-size: 18px;
  opacity: 0.85;
}

.revenue-total {
  font-size: 15px;
  opacity: 0.7;
  margin-top: 4px;
}

.stale-notice {
  margin-top: 10px;
  font-size: 12px;
  color: #E95E78;
  opacity: 0.8;
}

.cards-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  opacity: 0.7;
}

.variant-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.colour-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #999; /* fallback */
}

/* Map known product colours to swatches — add more as needed */
.colour-blackberry { background: #3D384E; }
.colour-palepink   { background: #f4c2d7; }

.card-heading > div:nth-child(2) {
  flex: 1;
}

.card-colour {
  font-weight: 700;
  font-size: 16px;
}

.card-design {
  font-size: 13px;
  opacity: 0.7;
}

.card-total {
  font-size: 24px;
  font-weight: 700;
  color: #E95E78;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
}

.size-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.size-table tr:last-child {
  border-bottom: none;
}

.size-table td {
  padding: 6px 0;
  font-size: 14px;
}

.size-label {
  opacity: 0.75;
}

.size-qty {
  text-align: right;
  font-weight: 600;
}
