.shell {
  max-width: 1180px;
  margin: auto;
  padding: 40px 24px;
}
.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.product {
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
}
.product-image{height:190px;display:flex;align-items:center;justify-content:center;padding:16px;background:#f7faf9;border-bottom:1px solid var(--line)}
.product-image img{width:100%;height:100%;object-fit:contain;display:block}
.product-copy{padding:20px;display:grid;gap:8px}
.product h3 {
  margin: 0;
  overflow-wrap: anywhere;
}
.product p {
  color: var(--muted);
  margin: 0;
}
.product-category{font-size:13px}
.free-current-price{display:flex;align-items:end;justify-content:space-between;gap:12px;margin-top:8px;padding-top:14px;border-top:1px solid var(--line)}
.free-current-price span{font-weight:750}
.free-current-price strong{color:var(--green);font-size:22px;white-space:nowrap}
.product-copy small{color:var(--muted)}
.product-store-link{margin-top:8px;width:100%;text-align:center}
.empty {
  padding: 45px;
  border: 1px dashed #adbfba;
  border-radius: 16px;
  text-align: center;
  color: var(--muted);
}
.subscription-notice {
  margin: 0 0 24px;
  padding: 14px 18px;
  border: 1px solid #8fd3a6;
  border-radius: 12px;
  background: #edf9f1;
  color: #08752f;
  font-weight: 700;
}
.subscription-status {
  color: var(--muted);
  margin: 8px 0 0;
}
.dash-head .primary {
  text-align: center;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.account-email {
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 650px) {
  .shell {
    padding: 28px 16px 48px;
  }
  .dash-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .dash-head .primary {
    width: 100%;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .product{padding:0}
  .empty{padding:18px}
  .product-image{height:220px}
  .product-copy{padding:18px}
}
