.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 10px 0 20px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 25, 50, 0.6);
  border: 1px solid rgba(68, 218, 255, 0.25);
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.shop-card:hover,
.shop-card:focus-visible {
  transform: translateY(-3px);
  border-color: #44daff;
}

.shop-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.shop-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  flex: 1;
}

.shop-card-body h3 {
  margin: 0;
  font-size: 17px;
  color: #e6f7ff;
}

.shop-card-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.shop-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-weight: 600;
}

.shop-price { color: #e6f7ff; }
.shop-cta { color: #44daff; }

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.shop-button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  background: #44daff;
  color: #04121f;
}

.shop-button.coffee {
  background: #ffdd00;
  color: #000;
}

html.light .shop-card {
  background: #fff;
  border-color: rgba(2, 132, 199, 0.25);
}

html.light .shop-card-body h3,
html.light .shop-price { color: #0f172a; }
html.light .shop-cta { color: #0284c7; }
