@import url('/assets/store.css');

html {
  scroll-behavior: smooth;
}

body.storefront-body {
  background:
    radial-gradient(circle at top left, rgba(230, 119, 53, 0.13), transparent 24%),
    radial-gradient(circle at top right, rgba(38, 146, 140, 0.12), transparent 22%),
    linear-gradient(180deg, #f6efe7 0%, #efe7dd 100%);
}

.storefront-shell {
  padding-bottom: 48px;
}

.storefront-topbar {
  margin-top: 18px;
}

.storefront-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #7c3d16;
  font-weight: 700;
  font-size: 13px;
}

.storefront-hero {
  align-items: stretch;
}

.storefront-hero-wide {
  grid-template-columns: 1fr;
}

.storefront-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.05);
  color: #5f554c;
  font-size: 14px;
  line-height: 1.7;
}

.storefront-side {
  justify-content: center;
}

.storefront-side-grid {
  display: grid;
  gap: 14px;
}

.storefront-side-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 237, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.storefront-side-item strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 24px;
  color: #131a24;
}

.storefront-side-item p {
  margin: 0;
  color: #5f554c;
  line-height: 1.6;
}

.side-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(230, 119, 53, 0.12);
  color: #8b4a1f;
  font-size: 12px;
  font-weight: 700;
}

.storefront-feature-btn {
  margin-top: 8px;
}

.storefront-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 22px;
}

.storefront-plan-card {
  min-height: 250px;
  justify-content: flex-start;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.storefront-plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.storefront-plan-head strong {
  font-size: 18px;
  line-height: 1.4;
  color: #121a24;
}

.storefront-plan-duration {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #6c5a4d;
  font-size: 12px;
  font-weight: 700;
}

.storefront-plan-desc {
  margin: 0;
  color: #5f554c;
  line-height: 1.7;
  min-height: 72px;
}

.storefront-plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.storefront-plan-now {
  font-size: 32px;
  font-weight: 800;
  color: #131a24;
  letter-spacing: -0.03em;
}

.storefront-plan-old {
  color: #9d958b;
  text-decoration: line-through;
  font-size: 14px;
}

.storefront-plan-btn {
  width: 100%;
  margin-top: 14px;
}

.storefront-loading-card {
  min-height: 180px;
}

.storefront-balance-head {
  justify-content: flex-start;
}

.storefront-balance-summary {
  color: #6c5a4d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.storefront-entry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront-entry-card {
  min-height: 220px;
  justify-content: space-between;
}

.storefront-entry-card p {
  margin: 0;
  color: #5f554c;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .storefront-product-grid,
  .storefront-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .storefront-product-grid,
  .storefront-entry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .storefront-topbar {
    margin-top: 12px;
  }
}
