/* Public greeting cards */
.gc-page {
  --gc-ink: #1c1410;
  --gc-muted: #5c534c;
  --gc-saffron: #b45309;
  --gc-cream: #f7f1e8;
  --gc-line: rgba(28, 20, 16, 0.12);
  color: var(--gc-ink);
  background:
    radial-gradient(900px 420px at 10% -8%, rgba(180, 83, 9, 0.1), transparent 55%),
    linear-gradient(180deg, #faf6f0 0%, var(--gc-cream) 100%);
  min-height: 70vh;
}

.gc-page .gc-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.gc-page .gc-hero {
  text-align: center;
  margin-bottom: 1.5rem;
}

.gc-page .gc-hero .brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gc-saffron);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.gc-page .gc-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin: 0 0 0.5rem;
}

.gc-page .gc-hero p {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--gc-muted);
}

.gc-page .gc-filters {
  background: rgba(255, 252, 246, 0.85);
  border: 1px solid var(--gc-line);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

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

.gc-page a.gc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid var(--gc-line);
  border-radius: 0.45rem;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gc-page a.gc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 83, 9, 0.4);
}

.gc-page .gc-card-thumb {
  position: relative;
  background: #ece4d8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.gc-page .gc-card-thumb img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.gc-page .gc-premium-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #f59e0b, #b45309);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(28, 20, 16, 0.25);
}

.gc-page .gc-card-body {
  padding: 0.65rem 0.75rem 0.85rem;
}

.gc-page .gc-card-body strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.gc-page .gc-card-body span {
  display: block;
  font-size: 0.75rem;
  color: var(--gc-muted);
}

.gc-page .gc-empty {
  text-align: center;
  color: var(--gc-muted);
  padding: 2rem 1rem;
}

.gc-detail {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.gc-detail .gc-crumb {
  font-size: 0.9rem;
  color: var(--gc-muted);
  margin-bottom: 1rem;
}

.gc-detail .gc-crumb a {
  color: var(--gc-saffron);
  text-decoration: none;
}

.gc-detail .gc-preview {
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid var(--gc-line);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.gc-detail .gc-preview img {
  max-width: 100%;
  max-height: min(70vh, 640px);
  border-radius: 0.25rem;
}

.gc-detail .gc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.gc-detail .gc-actions a,
.gc-detail .gc-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gc-line);
  background: #fff;
  color: var(--gc-ink);
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.gc-detail .gc-actions a.primary {
  background: var(--gc-saffron);
  border-color: var(--gc-saffron);
  color: #fff;
}

.gc-detail .gc-share-slot {
  margin-top: 1.25rem;
}

.gc-detail .gc-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gc-detail .gc-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.1);
  border: 1px solid rgba(180, 83, 9, 0.22);
  color: var(--gc-ink);
  font-size: 0.8rem;
  margin: 0;
}

.gc-detail .gc-badge-premium {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.2), rgba(180, 83, 9, 0.15));
  border-color: rgba(180, 83, 9, 0.35);
  color: #92400e;
  font-weight: 600;
}

.gc-premium {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.gc-premium-hero {
  text-align: center;
  margin-bottom: 1.75rem;
}

.gc-premium-hero .brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gc-saffron);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.gc-premium-crown {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f59e0b, #b45309);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.gc-premium-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  margin: 0 0 0.65rem;
}

.gc-premium-hero p {
  color: var(--gc-muted);
  margin: 0 auto;
  max-width: 28rem;
}

.gc-perks {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.gc-perks li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid var(--gc-line);
  border-radius: 0.55rem;
}

.gc-perks li > i {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(180, 83, 9, 0.12);
  color: var(--gc-saffron);
}

.gc-perks strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.gc-perks span {
  display: block;
  font-size: 0.85rem;
  color: var(--gc-muted);
}

.gc-premium-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.gc-premium-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gc-line);
  background: #fff;
  color: var(--gc-ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.gc-premium-cta a.primary {
  background: var(--gc-saffron);
  border-color: var(--gc-saffron);
  color: #fff;
}

.gc-premium-cta a.gc-link-quiet {
  border: none;
  background: transparent;
  color: var(--gc-muted);
  font-size: 0.85rem;
  padding: 0.35rem;
}
