:root {
  --bg: #0b0e14;
  --card: #131826;
  --text: #e6e8ee;
  --muted: #9aa4bf;
  --accent: #4f7cff;
  --success: #4cd964;
  --danger: #ff5f57;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.top {
  border-bottom: 1px solid #1f2433;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.subtitle {
  color: var(--muted);
  font-size: 1rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.updated {
  font-size: 0.875rem;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #1f2433;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.product-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.old {
  text-decoration: line-through;
  color: var(--muted);
}

.new {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--success);
}

.drop {
  margin-left: auto;
  font-weight: 600;
  color: var(--danger);
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.button {
  display: block;
  margin-top: 1rem;
  padding: 0.6rem;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
}

.footer {
  border-top: 1px solid #1f2433;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.weekly-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.weekly-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1f2433;
  align-items: center;
}

.weekly-list .drop {
  color: var(--danger);
  font-weight: 600;
}
.section-archive {
  margin-top: 3rem;
}

.week-archive {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.week-archive li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  border: 1px solid #1f2433;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.week-archive li a:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.week-title {
  font-weight: 600;
  color: var(--text);
}

.week-label {
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-links {
  margin-top: 0.75rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}
