:root {
  /* Professional "deep plum + champagne gold" system */
  --bg: #07060a;
  --surface: rgba(18, 16, 24, 0.86);
  --surface-strong: rgba(18, 16, 24, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --text: #f5f3ff;
  --muted: rgba(226, 232, 240, 0.72);
  --muted-2: rgba(226, 232, 240, 0.56);

  --accent: #6d28d9; /* purple */
  --accent-2: #a78bfa; /* lavender */
  --gold: #d4af37; /* champagne gold */
  --gold-soft: rgba(212, 175, 55, 0.18);

  --border-subtle: rgba(226, 232, 240, 0.14);
  --border-strong: rgba(226, 232, 240, 0.22);
  --danger: #ef4444;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.55);
  --shadow-tight: 0 10px 28px rgba(0, 0, 0, 0.45);
  --shadow-focus: 0 0 0 4px rgba(167, 139, 250, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(109, 40, 217, 0.18), transparent 55%),
    radial-gradient(900px 520px at 85% 15%, rgba(212, 175, 55, 0.08), transparent 55%),
    radial-gradient(800px 520px at 50% 110%, rgba(167, 139, 250, 0.08), transparent 55%),
    linear-gradient(180deg, #07060a, #040308 65%, #020106);
  min-height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
}

/* Better keyboard UX */
:focus {
  outline: none;
}

:focus-visible {
  box-shadow: var(--shadow-focus);
}

.page {
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  backdrop-filter: blur(26px);
  background: linear-gradient(135deg, rgba(18, 16, 24, 0.9), rgba(18, 16, 24, 0.78)),
    radial-gradient(circle at top left, rgba(167, 139, 250, 0.16), transparent 60%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 55%);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-tight);
  position: sticky;
  top: 16px;
  z-index: 40;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 25px;
  background: radial-gradient(circle at 25% 20%, rgba(245, 243, 255, 1), rgba(167, 139, 250, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #020617;
  box-shadow: 0 12px 30px rgba(109, 40, 217, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 18px;
}

.brand-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease-out;
}

.nav-link:hover {
  color: rgba(245, 243, 255, 0.95);
}

.nav-link--active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.92), rgba(167, 139, 250, 0.9));
  color: rgba(12, 10, 17, 0.96);
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.icon-button:hover {
  border-color: rgba(167, 139, 250, 0.6);
  color: rgba(245, 243, 255, 0.96);
  transform: translateY(-1px);
}

.icon {
  width: 16px;
  height: 16px;
}

.icon-search {
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
}

.icon-search::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
  right: -4px;
  bottom: -1px;
}

.icon-bag {
  border-radius: 6px;
  border: 2px solid currentColor;
  position: relative;
}

.icon-bag::before,
.icon-bag::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 2px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-bottom: none;
  top: -4px;
}

.icon-bag::before {
  left: 0;
}

.icon-bag::after {
  right: 0;
}

.cart-count {
  position: absolute;
  transform: translate(10px, -10px);
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.92);
  color: rgba(12, 10, 17, 0.92);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-weight: 600;
}

.primary-button {
  border-radius: 999px;
  border: none;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(167, 139, 250, 0.95));
  color: rgba(12, 10, 17, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, filter 0.16s ease-out;
}

.primary-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.primary-button--small {
  padding: 6px 14px;
  font-size: 12px;
}

.account-button--signed-in {
  padding: 5px 10px 5px 6px;
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6f39bc, #5b2ca2);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(90, 44, 162, 0.28);
}

.account-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.account-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  gap: 2px;
}

.account-greeting {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.account-name {
  font-size: 12px;
  font-weight: 600;
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  border-radius: 14px;
  border: 1px solid rgba(91, 44, 162, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(49, 31, 77, 0.22);
  padding: 8px;
  z-index: 80;
  display: none;
}

.account-menu--open {
  display: block;
}

.account-menu-header {
  padding: 8px 10px 10px;
  border-bottom: 1px solid rgba(91, 44, 162, 0.1);
  margin-bottom: 4px;
}

.account-menu-header strong {
  display: block;
  font-size: 13px;
  color: #2f1f4f;
}

.account-menu-header span {
  font-size: 11px;
  color: #786a95;
}

.account-menu-item {
  width: 100%;
  border: none;
  background: transparent;
  color: #3f2f60;
  font-size: 13px;
  text-align: left;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.account-menu-item:hover {
  background: #f3ebff;
}

.account-menu-item--danger {
  color: #8a2f4b;
}

.auth-inline-link {
  width: max-content;
  padding: 0;
  margin-top: -4px;
  font-size: 12px;
}

.auth-inline-link--hidden {
  display: none;
}

.account-page {
  display: grid;
  gap: 16px;
}

.account-kicker {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7d6f97;
}

.account-profile-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(91, 44, 162, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 239, 255, 0.9));
}

.account-profile-avatar--hero {
  width: 60px;
  height: 60px;
  font-size: 18px;
}

.account-profile-hero-copy .section-title {
  margin: 2px 0 2px;
}

.account-profile-hero-copy .section-subtitle {
  margin: 0;
}

.account-badges {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.account-badge {
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  color: #5d4f78;
  background: #f4eaff;
  border: 1px solid rgba(91, 44, 162, 0.16);
}

.account-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-card {
  border-radius: 16px;
  border: 1px solid rgba(91, 44, 162, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.account-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.account-card-head h3 {
  margin: 0;
  font-size: 14px;
  color: #2f1f4f;
}

.account-details-list {
  display: grid;
  gap: 8px;
}

.account-details-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-details-list span {
  font-size: 12px;
  color: #7a6d95;
}

.account-details-list strong {
  font-size: 13px;
  color: #352653;
}

.account-details {
  display: grid;
  gap: 8px;
}

.account-detail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-detail-item span {
  font-size: 12px;
  color: #7a6d95;
}

.account-detail-item strong {
  font-size: 13px;
  color: #352653;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-kpi-card h3 {
  margin: 0;
  font-size: 13px;
  color: #59497a;
}

.admin-kpi-value {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #2d1f48;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(91, 44, 162, 0.12);
  border-radius: 12px;
  background: rgba(250, 246, 255, 0.76);
  padding: 10px;
}

.admin-list-row strong {
  display: block;
  font-size: 13px;
  color: #2f1f4f;
}

.admin-list-row span {
  font-size: 11px;
  color: #74678f;
}

.admin-list-metric {
  text-align: right;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-listing-manager {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.modal-card--admin-catalog {
  width: min(720px, 100%);
}

.modal-body--admin-scroll {
  max-height: min(70vh, 640px);
  overflow-y: auto;
}

.admin-listing-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-listing-form textarea {
  min-height: 72px;
  resize: vertical;
}

.admin-listing-preview-wrap {
  margin-top: 4px;
}

.admin-listing-preview {
  max-height: 220px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid rgba(91, 44, 162, 0.14);
  background: rgba(255, 255, 255, 0.6);
}

.admin-list-row--listing {
  align-items: center;
}

.admin-listing-thumb-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(91, 44, 162, 0.15);
  background: #f6f0ff;
}

.admin-listing-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-listing-copy span {
  display: block;
}

.admin-listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.admin-listings-hint {
  margin: 0 0 12px;
  max-width: 52rem;
}

.account-preferences {
  display: grid;
  gap: 8px;
}

.account-preferences label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4f4269;
}

.account-muted {
  margin: 0;
  font-size: 13px;
  color: #6a5d84;
}

.maker-hub-layout {
  display: grid;
  gap: 14px;
}

.maker-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.maker-hub-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.maker-hub-card {
  border-radius: 16px;
  border: 1px solid rgba(91, 44, 162, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.maker-hub-card h3 {
  margin: 0;
  font-size: 15px;
  color: #2f1f4f;
}

.maker-hub-card--story .link {
  justify-self: start;
}

.maker-hub-cta {
  border-radius: 14px;
  border: 1px solid rgba(91, 44, 162, 0.16);
  background: linear-gradient(135deg, rgba(244, 234, 255, 0.9), rgba(255, 255, 255, 0.92));
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.maker-hub-dos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-profile-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(91, 44, 162, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.account-profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6f39bc, #5b2ca2);
}

.account-profile-copy strong {
  display: block;
  font-size: 16px;
  color: #2f1f4f;
}

.account-profile-copy span {
  display: block;
  font-size: 12px;
  color: #75668f;
}

.account-profile-copy p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #5d4f78;
}

@media (max-width: 900px) {
  .maker-hub-grid,
  .maker-hub-grid--three,
  .maker-hub-dos,
  .account-profile-grid,
  .account-grid,
  .admin-kpi-grid,
  .admin-listing-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .maker-hub-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.primary-button--full {
  width: 100%;
  justify-content: center;
}

.search-bar {
  margin-top: -4px;
  transition: max-height 0.22s ease-out, opacity 0.22s ease-out, transform 0.22s ease-out;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;
}

.search-bar--visible {
  max-height: 96px;
  opacity: 1;
  transform: translateY(0);
}

.search-bar-inner {
  margin-top: 8px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(120deg, rgba(18, 16, 24, 0.92), rgba(18, 16, 24, 0.82));
  backdrop-filter: blur(22px);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-bar-inner input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}

.search-bar-inner input::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  padding: 5px 11px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.16s ease-out;
}

.chip:hover,
.chip--active {
  border-color: rgba(167, 139, 250, 0.55);
  color: rgba(245, 243, 255, 0.96);
  background: rgba(255, 255, 255, 0.04);
}

.main {
  flex: 1;
  display: flex;
}

#app-root {
  width: 100%;
}

.layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.15fr);
  gap: 20px;
  margin-top: 10px;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  background: radial-gradient(circle at top left, rgba(167, 139, 250, 0.12), transparent 60%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.06), transparent 55%),
    linear-gradient(135deg, rgba(18, 16, 24, 0.92), rgba(18, 16, 24, 0.86));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.panel--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 0, rgba(167, 139, 250, 0.16), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(212, 175, 55, 0.1), transparent 60%);
  opacity: 1;
}

.panel-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.eyebrow-badge {
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(167, 139, 250, 0.16));
  color: rgba(245, 243, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.eyebrow-text {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.8);
}

.hero-title {
  margin: 16px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero-title span.hero-highlight {
  background: linear-gradient(135deg, rgba(212, 175, 55, 1), rgba(167, 139, 250, 1));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0;
  margin-bottom: 20px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 15px;
  max-width: 480px;
}

.hero-subtitle span {
  color: rgba(212, 175, 55, 0.96);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.secondary-button {
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.16s ease-out;
}

.secondary-button:hover {
  border-color: rgba(167, 139, 250, 0.55);
  color: rgba(245, 243, 255, 0.96);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  color: rgba(226, 232, 240, 0.7);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.95);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.28);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.hero-stat {
  min-width: 90px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-stat-value {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 500;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 11px;
  color: var(--muted);
}

.badge-soft-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.9);
}

.hero-visual {
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
}

.hero-marquee {
  border-radius: var(--radius-md);
  padding: 10px 16px;
  background: radial-gradient(circle at left, rgba(168, 85, 247, 0.3), transparent 60%),
    linear-gradient(120deg, rgba(24, 16, 48, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.hero-marquee-text {
  font-size: 12px;
  color: rgba(209, 213, 219, 0.9);
}

.hero-marquee-avatars {
  display: flex;
  align-items: center;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.9);
  background: radial-gradient(circle at 20% 10%, #fefce8, #a855f7);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.8);
}

.avatar + .avatar {
  margin-left: -10px;
}

.avatar-more {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(148, 163, 184, 0.92);
  margin-left: -10px;
}

.hero-marquee-pill {
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: rgba(209, 213, 219, 0.95);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 10px;
}

.hero-card-large {
  border-radius: var(--radius-md);
  padding: 16px;
  background: radial-gradient(circle at top, rgba(55, 48, 163, 0.9), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-card-large-jewel {
  position: absolute;
  inset: 40% -10% -40% 10%;
  background: radial-gradient(circle at 20% 0, rgba(251, 191, 36, 0.9), transparent 52%),
    radial-gradient(circle at 86% 20%, rgba(168, 85, 247, 0.95), transparent 40%),
    radial-gradient(circle at 68% 100%, rgba(234, 179, 8, 0.8), transparent 55%);
  opacity: 0.6;
  filter: blur(10px);
}

.hero-card-large-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero-card-label {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
}

.hero-card-title {
  margin: 8px 0;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.hero-card-meta {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.9);
}

.hero-card-pill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.pill-sparkle {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.7);
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.9), rgba(248, 250, 252, 0.96));
  color: #1f2937;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pill-sparkle span.sparkle {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #eab308, #a855f7);
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.9);
}

.pill-soft {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(209, 213, 219, 0.95);
  font-size: 11px;
}

.hero-card-stack {
  display: grid;
  gap: 10px;
}

.hero-card-small {
  border-radius: var(--radius-md);
  padding: 12px;
  background: radial-gradient(circle at 10% 0, rgba(147, 51, 234, 0.5), transparent 65%),
    linear-gradient(135deg, rgba(24, 24, 27, 0.96), rgba(17, 24, 39, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.hero-card-small-content {
  font-size: 11px;
}

.hero-card-small-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
}

.hero-card-pill {
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-card-value {
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.section-title {
  font-size: 18px;
  font-weight: 500;
}

.section-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.pill-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-filter {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(17, 24, 39, 0.9);
  color: rgba(209, 213, 219, 0.9);
  transition: all 0.16s ease-out;
}

.pill-filter:hover,
.pill-filter--active {
  border-color: rgba(168, 85, 247, 0.9);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.5);
}

.grid {
  display: grid;
  gap: 12px;
}

.grid--products {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.product-card {
  border-radius: 18px;
  padding: 10px;
  background: radial-gradient(circle at top, rgba(167, 139, 250, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(18, 16, 24, 0.92), rgba(18, 16, 24, 0.86));
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.13s ease-out, box-shadow 0.13s ease-out, border-color 0.13s ease-out;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  border-color: rgba(212, 175, 55, 0.35);
}

.product-image {
  border-radius: 14px;
  height: 150px;
  background: radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.55), transparent 58%),
    radial-gradient(circle at 88% 18%, rgba(167, 139, 250, 0.42), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.02);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 12% 24%;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  opacity: 0.9;
}

.product-chip-row {
  position: absolute;
  inset: 10px 10px auto auto;
  display: flex;
  gap: 6px;
}

.product-chip {
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(245, 243, 255, 0.96);
}

.product-meta-row--cta {
  margin-top: 2px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-maker-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-maker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.95);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-size: 13px;
  font-weight: 500;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.product-price {
  font-size: 14px;
  font-weight: 500;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.rating-stars {
  font-size: 11px;
  color: rgba(212, 175, 55, 0.95);
}

.rating-count {
  font-size: 10px;
  color: var(--muted);
}

.maker-card {
  border-radius: 20px;
  padding: 14px;
  background: radial-gradient(circle at 0 0, rgba(167, 139, 250, 0.1), transparent 55%),
    linear-gradient(135deg, rgba(18, 16, 24, 0.92), rgba(18, 16, 24, 0.86));
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out, border-color 0.14s ease-out;
}

.maker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  border-color: rgba(212, 175, 55, 0.28);
}

.maker-header-row {
  display: flex;
  gap: 10px;
}

.maker-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, rgba(245, 243, 255, 1), rgba(167, 139, 250, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.45);
}

.maker-info {
  flex: 1;
}

.maker-name {
  font-size: 14px;
  font-weight: 500;
}

.maker-location {
  font-size: 12px;
  color: var(--muted);
}

.maker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.maker-tag {
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.maker-metrics {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.maker-metric {
  font-size: 11px;
  color: var(--muted);
}

.maker-metric span {
  display: block;
}

.maker-metric strong {
  color: var(--text);
}

.maker-quote {
  font-size: 12px;
  color: rgba(209, 213, 219, 0.9);
}

.maker-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.link {
  border: none;
  background: none;
  padding: 0;
  color: rgba(212, 175, 55, 0.95);
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.tag-muted {
  font-size: 10px;
  color: var(--muted);
}

.section-divider {
  margin: 18px 0 14px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(148, 163, 184, 0.35),
    rgba(168, 85, 247, 0.7),
    rgba(148, 163, 184, 0.35),
    transparent
  );
}

.testimonial-card {
  border-radius: 18px;
  padding: 14px;
  background: radial-gradient(circle at 0 0, rgba(236, 72, 153, 0.4), transparent 55%),
    linear-gradient(135deg, rgba(24, 24, 27, 0.96), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 12px;
  color: rgba(209, 213, 219, 0.95);
}

.testimonial-name {
  margin-top: 8px;
  font-weight: 500;
}

.testimonial-meta {
  font-size: 11px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  margin-bottom: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  border-radius: 0;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 -12px 48px rgba(15, 23, 42, 0.35);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 22px 18px;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  font-size: 13px;
}

.footer-title {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.footer-text {
  margin: 0;
  color: var(--muted);
}

.footer-heading {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.newsletter {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.newsletter input {
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  color: var(--text);
  font-size: 13px;
}

.newsletter input::placeholder {
  color: rgba(226, 232, 240, 0.6);
}

.newsletter-feedback {
  margin: 4px 0 0;
  min-height: 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(226, 232, 240, 0.88);
}

.newsletter-feedback:empty {
  display: none;
}

.email-verify-hint {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.email-verify-hint strong {
  color: var(--text);
  font-weight: 600;
}

.email-verify-success {
  text-align: center;
}

.email-verify-success p {
  margin: 0 0 8px;
}

.footer-brand {
  min-width: 0;
}

.footer-social {
  margin-top: 14px;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

.footer-social-link:hover {
  color: #fff;
  background: rgba(167, 139, 250, 0.22);
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-1px);
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 16px;
  font-size: 11px;
  color: var(--muted);
}

.footer-small {
  opacity: 0.9;
}

.cart-panel {
  position: fixed;
  right: 18px;
  top: 90px;
  width: 320px;
  max-height: calc(100vh - 130px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 16, 24, 0.94), rgba(18, 16, 24, 0.86));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  z-index: 50;
}

.cart-panel--open {
  transform: translateX(0);
  opacity: 1;
}

.cart-panel-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-panel-header h2 {
  margin: 0;
  font-size: 16px;
}

.cart-panel-body {
  padding: 10px 14px;
  overflow: auto;
  flex: 1;
  display: grid;
  gap: 8px;
}

.cart-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 12px;
}

.cart-item-thumb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--pp-border, rgba(60, 37, 95, 0.14));
  background: #f0e8e0;
}

.cart-item-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-item-name {
  font-size: 12px;
}

.cart-item-maker {
  font-size: 11px;
  color: var(--muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-qty-button {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(209, 213, 219, 0.95);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-panel-footer {
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  margin-bottom: 8px;
}

.cart-note {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--muted);
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.72));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 30;
}

.overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

/* Product modal */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease-out;
  z-index: 60;
}

.modal--open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(980px, 100%);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(18, 16, 24, 0.96), rgba(18, 16, 24, 0.9));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.modal-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title {
  font-size: 16px;
  font-weight: 500;
}

.modal-subtitle {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

.modal-body {
  padding: 16px;
}

.modal-card--auth {
  width: min(480px, 100%);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.auth-tab {
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  padding: 8px 10px;
  font-size: 12px;
  cursor: pointer;
}

.auth-tab--active {
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.45);
  color: var(--text);
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-field {
  display: grid;
  gap: 5px;
}

.auth-field span {
  font-size: 11px;
  color: var(--muted);
}

.auth-field input {
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 10px 11px;
  font-size: 13px;
}

.auth-field--hidden {
  display: none;
}

.auth-feedback {
  margin: 0;
  min-height: 18px;
  font-size: 12px;
  color: #f3b4b4;
}

.auth-signed-in {
  display: grid;
  gap: 12px;
}

.auth-user-pill {
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}

.auth-user-pill strong {
  display: block;
  font-size: 14px;
}

.auth-user-pill span {
  font-size: 12px;
  color: var(--muted);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 16px;
}

.product-modal-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  min-height: 320px;
}

.product-modal-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.96;
}

.product-modal-badges {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-modal-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-modal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.product-modal-price {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 0.01em;
}

.product-modal-description {
  margin: 0;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.82);
  line-height: 1.55;
}

.product-modal-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

.product-modal-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.product-modal-list {
  margin: 0;
  padding-left: 16px;
  color: rgba(226, 232, 240, 0.82);
  font-size: 13px;
  display: grid;
  gap: 4px;
}

.product-modal-muted {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.78);
}

.product-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.product-modal-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-modal-option {
  display: grid;
  gap: 6px;
}

.product-modal-option span {
  font-size: 11px;
  color: var(--muted);
}

.product-modal-option select {
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 8px 10px;
  font-size: 13px;
}

.product-modal-delivery {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.product-modal-delivery input {
  flex: 1;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 8px 10px;
  font-size: 13px;
}

.product-modal-recommendations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-modal-rec {
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  padding: 0;
}

.product-modal-rec img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  display: block;
}

.product-modal-rec-body {
  padding: 8px;
  display: grid;
  gap: 3px;
}

.product-modal-rec-name {
  font-size: 12px;
  font-weight: 500;
}

.product-modal-rec-meta {
  font-size: 10px;
  color: var(--muted);
}

.product-modal-rec-price {
  font-size: 12px;
  color: rgba(212, 175, 55, 0.95);
}

@media (max-width: 960px) {
  .product-modal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-modal-media {
    min-height: 240px;
  }

  .product-modal-options {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-modal-recommendations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-modal-recommendations {
    grid-template-columns: minmax(0, 1fr);
  }
}

.maker-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 18px;
  margin-top: 10px;
}

.maker-hero {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: radial-gradient(circle at 0 0, rgba(236, 72, 153, 0.5), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(168, 85, 247, 0.55), transparent 60%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(17, 24, 39, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
  overflow: hidden;
}

.maker-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
}

.maker-hero-orbit {
  position: relative;
  width: 114px;
  height: 114px;
  filter: drop-shadow(0 10px 26px rgba(90, 56, 143, 0.22));
  transition: transform 0.24s ease;
}

.maker-hero-orbit::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.maker-hero-orbit::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(183, 137, 47, 0.22) 0%, rgba(110, 55, 183, 0.08) 42%, transparent 70%);
  z-index: -1;
  opacity: 0.7;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.maker-hero-avatar {
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(36, 22, 58, 0.24);
}

.maker-hero-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.maker-hero-glow {
  position: absolute;
  inset: 20%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 0, rgba(245, 243, 255, 0.18), transparent 65%);
  opacity: 0.7;
}

.maker-hero-badge {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 6px 11px 6px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #4f3676;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 236, 255, 0.96));
  border: 1px solid rgba(91, 44, 162, 0.22);
  box-shadow: 0 8px 18px rgba(55, 34, 82, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.maker-hero-badge-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #6d39b6, #b7892f);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.maker-hero:hover .maker-hero-orbit {
  transform: translateY(-2px);
}

.maker-hero:hover .maker-hero-orbit::after {
  opacity: 0.95;
  transform: scale(1.04);
}

.maker-hero:hover .maker-hero-avatar-img {
  transform: scale(1.08) translateY(-1px);
  filter: saturate(1.04) contrast(1.03);
}

.maker-layout--noor-jaipur .maker-hero-avatar-img {
  object-position: 50% 40%;
}

.maker-layout--sea-moon-goa .maker-hero-avatar-img {
  object-position: 50% 56%;
}

.maker-layout--kalika-chennai .maker-hero-avatar-img {
  object-position: 48% 38%;
}

.maker-hero-heading {
  font-size: 46px;
  font-family: "Playfair Display", serif;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}

.maker-hero-sub {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--muted);
}

.maker-hero-sub span {
  color: rgba(248, 250, 252, 0.86);
}

.maker-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 14px;
}

.maker-hero-tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 13px;
}

.maker-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.maker-hero-stat {
  font-size: 15px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.maker-hero-stat strong {
  display: block;
  color: var(--text);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 4px;
}

.maker-story {
  font-size: 17px;
  line-height: 1.45;
  color: rgba(209, 213, 219, 0.96);
  margin: 0;
}

.maker-story strong {
  color: rgba(212, 175, 55, 0.96);
}

.maker-story-card {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.maker-story-card--note {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}

.maker-tabs {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}

.maker-tab {
  cursor: pointer;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.92);
  font-size: 11px;
  color: var(--muted);
}

.maker-tab--active {
  border-color: rgba(168, 85, 247, 0.9);
  color: var(--text);
}

.maker-products-panel {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.pill-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  margin-bottom: 10px;
}

.pill-breadcrumb {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
}

.pill-breadcrumb--dim {
  color: var(--muted);
}

.pill-breadcrumb--cta {
  border-color: rgba(168, 85, 247, 0.9);
}

.maker-section-heading {
  font-size: 15px;
  margin-bottom: 4px;
}

.maker-section-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.maker-collection-row {
  display: flex;
  gap: 10px;
}

.maker-collection-meta {
  font-size: 11px;
  color: var(--muted);
}

.badge-collection {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 10px;
}

.maker-collection-count {
  font-size: 24px;
  font-weight: 500;
}

.maker-list-section {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.97));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 20px;
  margin-top: 10px;
}

.about-panel {
  border-radius: var(--radius-lg);
  padding: 20px;
  background: radial-gradient(circle at 0 0, rgba(147, 51, 234, 0.45), transparent 60%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.97));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.about-copy {
  font-size: 14px;
  color: rgba(209, 213, 219, 0.96);
}

.about-copy p {
  margin: 0 0 8px;
}

.about-points {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.about-point-label {
  font-weight: 500;
}

.about-metrics {
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.97));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-metric {
  font-size: 12px;
  color: var(--muted);
}

.about-metric strong {
  display: block;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 2px;
}

.badge-theme {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-theme-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eab308, #a855f7);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.9);
}

.empty-state {
  border-radius: 18px;
  padding: 18px 16px;
  background: linear-gradient(135deg, #fdf8f2, #f8efe4);
  border: 1px solid rgba(91, 44, 162, 0.14);
  font-size: 13px;
  color: #62577a;
  text-align: center;
}

.empty-state span {
  display: block;
  margin-top: 7px;
  font-size: 12px;
}

.empty-state--marketplace {
  padding: 22px 18px;
  box-shadow: 0 14px 30px rgba(67, 43, 102, 0.08);
}

.empty-state-title {
  font-size: 18px;
  line-height: 1.25;
  font-family: "Playfair Display", serif;
  color: #2b1f42;
}

.empty-state-subtitle {
  color: #6f6488;
}

.empty-state-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.secondary-button--small {
  padding: 8px 12px;
  font-size: 12px;
}

@media (max-width: 960px) {
  .page {
    padding: 16px 14px 0;
  }

  .header {
    flex-wrap: wrap;
    position: static;
    border-radius: 20px;
    gap: 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .search-bar-inner {
    flex-wrap: wrap;
  }

  .layout-grid,
  .maker-layout,
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .maker-hero-heading {
    font-size: 38px;
  }

  .maker-hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title {
    font-size: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cart-panel {
    right: 10px;
    left: 10px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Professional light luxury theme override                                   */
/* -------------------------------------------------------------------------- */
:root {
  --text: #1b1230;
  --muted: #6f6686;
  --muted-2: #8d86a1;
  --accent: #5b2ca2;
  --accent-2: #7b4ac0;
  --gold: #b7923a;
  --gold-soft: rgba(183, 146, 58, 0.16);
  --border-subtle: rgba(64, 44, 98, 0.14);
  --border-strong: rgba(64, 44, 98, 0.24);
  --shadow-soft: 0 20px 55px rgba(49, 31, 78, 0.12);
  --shadow-tight: 0 10px 28px rgba(49, 31, 78, 0.1);
  --shadow-focus: 0 0 0 4px rgba(91, 44, 162, 0.14);
}

html,
body {
  color: var(--text);
  background: radial-gradient(1200px 600px at 12% -8%, rgba(123, 74, 192, 0.12), transparent 55%),
    radial-gradient(900px 520px at 95% 5%, rgba(183, 146, 58, 0.12), transparent 60%),
    linear-gradient(180deg, #fcfaf6, #f6f1ea 70%, #f3ede4);
}

.header {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(64, 44, 98, 0.14);
}

.nav {
  background: rgba(91, 44, 162, 0.06);
  border-color: rgba(91, 44, 162, 0.14);
}

.nav-link {
  color: #5d5378;
}

.nav-link:hover {
  color: #31234f;
}

.nav-link--active {
  background: linear-gradient(135deg, #5b2ca2, #7b4ac0);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(91, 44, 162, 0.28);
}

.brand-tagline,
.section-subtitle,
.footer-text,
.tag-muted,
.product-meta-row,
.maker-location,
.maker-metric,
.maker-section-sub,
.about-copy,
.about-metric,
.rating-count {
  color: #6f6686;
}

.icon-button {
  background: rgba(91, 44, 162, 0.05);
  color: #5d5378;
}

.icon-button:hover {
  color: #2e2547;
}

.primary-button {
  background: linear-gradient(135deg, #5b2ca2, #7b4ac0);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(91, 44, 162, 0.28);
}

.secondary-button {
  background: #ffffff;
  color: #4a3f68;
}

.panel,
.footer,
.maker-products-panel,
.maker-list-section,
.about-panel,
.about-metrics,
.testimonial-card,
.cart-panel,
.modal-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(64, 44, 98, 0.14);
  box-shadow: var(--shadow-soft);
}

.panel--hero::before {
  background-image: radial-gradient(circle at 10% 0, rgba(123, 74, 192, 0.13), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(183, 146, 58, 0.1), transparent 60%);
}

.hero-title {
  color: #201338;
}

.hero-title span.hero-highlight {
  background: linear-gradient(135deg, #5b2ca2, #b7923a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-meta,
.eyebrow,
.badge-soft,
.pill-soft,
.pill-filter,
.chip,
.product-chip,
.product-maker-tag,
.maker-tag,
.pill-breadcrumb,
.hero-card-pill,
.hero-marquee-pill {
  background: rgba(91, 44, 162, 0.06);
  border-color: rgba(91, 44, 162, 0.14);
  color: #5f547b;
}

.hero-card-large,
.hero-card-small,
.hero-marquee {
  background: linear-gradient(135deg, rgba(123, 74, 192, 0.08), rgba(183, 146, 58, 0.06));
  border-color: rgba(91, 44, 162, 0.14);
}

.product-card,
.maker-card {
  background: #ffffff;
  border-color: rgba(64, 44, 98, 0.14);
}

.product-card:hover,
.maker-card:hover {
  border-color: rgba(91, 44, 162, 0.38);
  box-shadow: 0 16px 36px rgba(91, 44, 162, 0.14);
}

.product-image {
  border-color: rgba(91, 44, 162, 0.18);
}

.product-image::after {
  border-color: rgba(91, 44, 162, 0.24);
}

.product-name,
.maker-name,
.maker-hero-heading,
.section-title,
.footer-title,
.modal-title,
.product-modal-price {
  color: #22153c;
}

.link {
  color: #5b2ca2;
}

.link:hover {
  color: #46218a;
}

.rating-stars,
.product-modal-rec-price,
.badge-soft-dot,
.hero-meta-dot,
.product-maker-dot {
  color: #b7923a;
  background: #b7923a;
}

.cart-count {
  background: #5b2ca2;
  color: #ffffff;
}

.overlay {
  background: radial-gradient(circle at top, rgba(91, 44, 162, 0.12), rgba(36, 24, 58, 0.32));
}

/* Landing page contrast fixes for the light theme */
.eyebrow-text,
.hero-subtitle,
.hero-card-meta,
.hero-marquee-text,
.testimonial-card,
.testimonial-meta,
.about-copy {
  color: #5b5273;
}

.hero-card-label,
.hero-stat-label {
  color: #6a6083;
}

.hero-card-title,
.testimonial-name {
  color: #22153c;
}

.hero-subtitle span {
  color: #9b7a2a;
}

/* Fine-tuned readability on landing hero cards */
.eyebrow {
  background: rgba(91, 44, 162, 0.08);
}

.eyebrow-badge {
  background: linear-gradient(135deg, rgba(123, 74, 192, 0.16), rgba(183, 146, 58, 0.2));
  color: #4b2a8f;
  border-color: rgba(91, 44, 162, 0.2);
  font-weight: 600;
}

.eyebrow-text {
  color: #5f5579;
  font-weight: 500;
}

.hero-meta {
  color: #665d80;
  font-size: 12px;
}

.hero-stat-label {
  color: #645a7f;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.hero-card-label {
  color: #645a7f;
  font-weight: 600;
}

.hero-card-title {
  font-size: 21px;
  line-height: 1.2;
}

.hero-card-meta {
  color: #544a6f;
  font-size: 13px;
  line-height: 1.45;
}

.hero-marquee-text {
  color: #4f456a;
  font-size: 13px;
  font-weight: 500;
}

.hero-card-small-content {
  color: #4f456a;
  font-size: 12px;
  line-height: 1.45;
}

.hero-card-small-title {
  color: #2a1d45;
  font-size: 16px;
  font-weight: 600;
}

.hero-card-value {
  color: #2d1f48;
}

.pill-filter,
.hero-card-pill,
.hero-marquee-pill {
  color: #5b5076;
}

/* -------------------------------------------------------------------------- */
/* Purple Peak V2 - Full Premium Redesign                                     */
/* -------------------------------------------------------------------------- */
:root {
  --pp-bg: #f7f2eb;
  --pp-surface: #fffdf9;
  --pp-surface-2: #f4ece2;
  --pp-ink: #1f1530;
  --pp-muted: #6d637d;
  --pp-accent: #5b2ca2;
  --pp-accent-2: #7d4ec2;
  --pp-gold: #b7892f;
  --pp-border: rgba(60, 37, 95, 0.14);
  --pp-shadow: 0 20px 48px rgba(67, 43, 102, 0.12);
}

body {
  color: var(--pp-ink);
  background:
    radial-gradient(1000px 440px at 10% -5%, rgba(125, 78, 194, 0.1), transparent 65%),
    radial-gradient(900px 420px at 95% -2%, rgba(183, 137, 47, 0.1), transparent 65%),
    linear-gradient(180deg, #fbf8f2, #f5eee5 62%, #f2e8dd);
}

.page {
  max-width: 1240px;
  padding: 26px 22px 0;
  gap: 24px;
}

.header {
  border-radius: 22px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--pp-border);
  box-shadow: var(--pp-shadow);
}

.brand-mark {
  width: 40px;
  height: 40px;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--pp-accent), var(--pp-accent-2));
  box-shadow: 0 10px 22px rgba(91, 44, 162, 0.26);
}

.brand-name {
  color: #2b1e43;
}

.brand-tagline {
  color: #7c7192;
}

.nav {
  background: #f7f0e8;
  border: 1px solid rgba(91, 44, 162, 0.1);
  border-radius: 14px;
  padding: 5px;
}

.nav-link {
  border-radius: 10px;
  padding: 8px 14px;
  color: #5f5476;
  font-weight: 500;
}

.nav-link--active {
  background: linear-gradient(135deg, var(--pp-accent), var(--pp-accent-2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(91, 44, 162, 0.28);
}

.icon-button {
  background: #f5efe7;
  border-color: rgba(91, 44, 162, 0.18);
  color: #615676;
}

.icon-button:hover {
  border-color: rgba(91, 44, 162, 0.4);
  background: #efe6dc;
  color: #352651;
}

.primary-button {
  border-radius: 12px;
  padding: 10px 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  background: linear-gradient(135deg, var(--pp-accent), var(--pp-accent-2));
  color: #fff;
  box-shadow: 0 12px 26px rgba(91, 44, 162, 0.24);
}

.primary-button--small {
  padding: 8px 14px;
  font-size: 12px;
}

.secondary-button {
  border-radius: 12px;
  background: #fff;
  border-color: rgba(91, 44, 162, 0.2);
  color: #4e4268;
  font-weight: 500;
}

.search-bar-inner {
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--pp-border);
}

.panel,
.maker-products-panel,
.maker-list-section,
.about-panel,
.about-metrics,
.cart-panel,
.modal-card {
  border-radius: 22px;
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  box-shadow: var(--pp-shadow);
}

.footer {
  margin-top: auto;
  margin-bottom: 0;
  border-radius: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  padding: 0;
  border: none;
  border-top: 1px solid var(--pp-border);
  box-shadow: 0 -20px 50px rgba(67, 43, 102, 0.1);
  background: var(--pp-surface);
}

.layout-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: start;
}

.hero-title {
  color: #22163a;
  font-size: 56px;
  line-height: 1.02;
}

.hero-title .hero-highlight {
  background: linear-gradient(135deg, #6e37b7, #b7892f);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: #5f5476;
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
}

.hero-subtitle span {
  color: #946f26;
}

.hero-meta {
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid var(--pp-border);
  background: #f8f1e9;
  color: #685d80;
}

.hero-meta-dot,
.badge-soft-dot,
.product-maker-dot {
  background: var(--pp-gold);
}

.hero-stat-value {
  color: #2a1c43;
  font-size: 31px;
}

.hero-stat-label {
  color: #726783;
}

.hero-marquee,
.hero-card-small,
.hero-card-large {
  background: linear-gradient(135deg, #f9f3ec, #f4ebe1);
  border: 1px solid var(--pp-border);
}

.hero-card-title,
.hero-card-small-title,
.maker-hero-heading,
.section-title {
  color: #271a40;
}

.hero-card-meta,
.hero-marquee-text,
.section-subtitle,
.maker-story,
.testimonial-card,
.testimonial-meta,
.about-copy {
  color: #685d80;
}

.grid--products {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.product-card {
  border-radius: 18px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--pp-border);
  gap: 10px;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 44, 162, 0.36);
  box-shadow: 0 16px 34px rgba(91, 44, 162, 0.14);
}

.product-image {
  height: 180px;
  border-radius: 14px;
}

.product-chip,
.product-maker-tag,
.chip,
.pill-filter,
.pill-soft,
.hero-card-pill,
.hero-marquee-pill,
.maker-tag,
.pill-breadcrumb {
  background: #f5ecff;
  color: #5e4f79;
  border-color: rgba(91, 44, 162, 0.2);
}

.product-price {
  color: #2d1f49;
  font-size: 17px;
  font-weight: 600;
}

.link {
  color: #5b2ca2;
  font-weight: 500;
}

.rating-stars {
  color: #9a7428;
}

.maker-card {
  border-radius: 18px;
  background: #fff;
}

.maker-avatar {
  background: linear-gradient(135deg, #6d39b6, #8a5ed0);
}

.maker-hero {
  border-radius: 26px;
  padding: 20px;
  background: radial-gradient(circle at 0 0, rgba(128, 78, 188, 0.2), transparent 46%),
    radial-gradient(circle at 85% 105%, rgba(183, 137, 47, 0.18), transparent 55%),
    linear-gradient(135deg, #fff8ef, #f6ede3);
  border: 1px solid rgba(74, 52, 108, 0.16);
  box-shadow: 0 18px 42px rgba(63, 39, 97, 0.12);
}

.maker-hero-badge {
  background: linear-gradient(135deg, #ffffff, #f7ecff);
  color: #4d3476;
  border-color: rgba(91, 44, 162, 0.2);
  box-shadow: 0 8px 20px rgba(76, 46, 118, 0.16);
}

.maker-hero-heading {
  font-size: 46px;
  line-height: 1.02;
  color: #271943;
}

.maker-hero-sub {
  font-size: 14px;
  color: #5f5478;
}

.maker-hero-sub span {
  color: #8a81a0;
}

.maker-hero-tag {
  padding: 4px 10px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(91, 44, 162, 0.2);
  color: #473567;
}

.maker-hero-stat {
  font-size: 12px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(91, 44, 162, 0.16);
  color: #695d82;
}

.maker-hero-stat strong {
  font-size: 22px;
  margin-bottom: 2px;
  color: #2c1d49;
}

.maker-story-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(91, 44, 162, 0.14);
}

.maker-story-card--note {
  background: linear-gradient(135deg, rgba(255, 248, 232, 0.9), rgba(255, 255, 255, 0.78));
  border-color: rgba(183, 137, 47, 0.2);
}

.maker-story {
  font-size: 14px;
  line-height: 1.4;
  color: #61547a;
}

.maker-story strong {
  color: #ad852f;
}

.section-divider {
  background: linear-gradient(90deg, transparent, rgba(91, 44, 162, 0.2), rgba(183, 137, 47, 0.28), rgba(91, 44, 162, 0.2), transparent);
}

.testimonial-card {
  font-size: 13px;
  line-height: 1.6;
}

.footer {
  background: #fffaf3;
}

.footer-social-link {
  color: #5b4d78;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(91, 44, 162, 0.22);
}

.footer-social-link:hover {
  color: var(--pp-accent);
  background: #f5ecff;
  border-color: rgba(91, 44, 162, 0.38);
}

.footer-bottom {
  border-top-color: rgba(91, 44, 162, 0.14);
}

.newsletter input,
.product-modal-option select,
.product-modal-delivery input {
  background: #fff;
  border-color: rgba(91, 44, 162, 0.22);
  color: #36284f;
}

.footer .newsletter-feedback {
  color: #6f6488;
}

.cart-panel {
  background: #fffdf9;
}

.cart-count {
  background: var(--pp-accent);
  color: #fff;
}

.overlay {
  background: radial-gradient(circle at top, rgba(91, 44, 162, 0.18), rgba(34, 23, 52, 0.32));
}

.modal-title {
  font-size: 19px;
}

.modal-subtitle,
.product-modal-muted,
.product-modal-rec-meta {
  color: #706684;
}

.product-modal-price {
  color: #271a40;
}

.product-modal-rec {
  background: #fff;
}

/* Hero visual refinement: premium editorial cards */
.hero-visual {
  gap: 12px;
}

.hero-marquee {
  padding: 12px 16px;
  border-radius: 16px;
  background: #fbf5ee;
  border: 1px solid rgba(91, 44, 162, 0.11);
  box-shadow: 0 8px 20px rgba(67, 43, 102, 0.06);
}

.hero-marquee-text {
  color: #4a3f63;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  max-width: 40ch;
}

.avatar {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 14px rgba(47, 31, 74, 0.2);
}

.avatar + .avatar,
.avatar-more {
  margin-left: -11px;
}

.avatar-more {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-style: solid;
  background: #201738;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 12px;
}

.hero-card-large,
.hero-card-small {
  background: #fdf8f2;
  border: 1px solid rgba(91, 44, 162, 0.11);
  box-shadow: 0 10px 24px rgba(67, 43, 102, 0.06);
}

.hero-card-large {
  border-radius: 16px;
  padding: 16px;
  min-height: 0;
}

.hero-card-large-jewel {
  inset: 56% -10% -40% 26%;
  opacity: 0.15;
  filter: blur(18px);
}

.hero-card-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #66577f;
}

.hero-card-title {
  margin: 8px 0 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #24153d;
}

.hero-card-meta {
  font-size: 13px;
  line-height: 1.45;
  color: #5a4f72;
  max-width: 36ch;
}

.hero-card-pill-row {
  margin-top: 14px;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.pill-sparkle,
.pill-soft {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.1;
  border: 1px solid rgba(91, 44, 162, 0.14);
}

.pill-sparkle {
  background: linear-gradient(135deg, #f7e7bd, #f3d886);
  color: #34271a;
}

.pill-sparkle span.sparkle {
  width: 10px;
  height: 10px;
}

.pill-soft {
  background: #f4efff;
  color: #4e3f6e;
}

.hero-card-small {
  border-radius: 16px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.hero-card-small-content {
  color: #4d4167;
  font-size: 13px;
  line-height: 1.4;
}

.hero-card-small-title {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: #24153d;
}

.hero-card-small > div:last-child {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.hero-card-pill {
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-card-value {
  color: #2a1d45;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 960px) {
  .hero-title {
    font-size: 42px;
  }

  .layout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card-title {
    font-size: 20px;
  }

  .hero-card-small-title {
    font-size: 14px;
  }

  .hero-card-small-content,
  .hero-card-meta {
    font-size: 13px;
  }

  .header {
    border-radius: 18px;
  }
}

/* Landing revamp: luxury showcase */
.home-showcase {
  padding: 0;
  overflow: hidden;
}

.home-showcase-inner {
  padding: 0;
}

.home-showcase-topnav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: linear-gradient(90deg, #14111c, #1b1825);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-showcase-brand {
  color: #f2e8d9;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: auto;
}

.home-showcase-links {
  color: rgba(233, 225, 243, 0.8);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  opacity: 0.88;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.home-showcase-links:hover {
  color: #f6ecd9;
  opacity: 1;
}

.home-showcase-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 20px;
  padding: 26px 24px 20px;
  background:
    radial-gradient(860px 420px at 12% 0, rgba(175, 128, 255, 0.14), transparent 58%),
    radial-gradient(700px 340px at 88% 20%, rgba(214, 168, 67, 0.12), transparent 62%),
    linear-gradient(140deg, #0f0d15, #191722 56%, #0f0e14);
}

.home-showcase-copy {
  color: #f6f1e8;
  align-self: center;
}

.home-showcase-kicker {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(236, 222, 197, 0.74);
}

.home-showcase-title {
  margin: 10px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff9ef;
}

.home-showcase-subtitle {
  margin: 0;
  max-width: 38ch;
  color: rgba(236, 230, 246, 0.84);
  font-size: 15px;
  line-height: 1.5;
}

.home-showcase-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-showcase-filmstrip {
  display: grid;
  gap: 12px;
}

.home-showcase-main {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: #12101a;
  height: 230px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.home-showcase-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(8, 6, 12, 0.35);
}

.home-showcase-main:hover img {
  transform: scale(1.03);
}

.home-showcase-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.home-showcase-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #181421;
  padding: 0;
  cursor: pointer;
  min-height: 96px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-showcase-card img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.home-showcase-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 22px rgba(8, 6, 12, 0.32);
}

.home-showcase-card:hover img {
  transform: scale(1.04);
}

.home-showcase-card--active {
  border-color: rgba(235, 199, 121, 0.9);
  box-shadow: 0 0 0 1px rgba(235, 199, 121, 0.6), 0 12px 24px rgba(8, 6, 12, 0.35);
}

.home-showcase-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 244, 221, 0.9);
}

.home-showcase-nav {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.home-showcase-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.home-showcase-line {
  height: 2px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(190, 151, 63, 0.98), rgba(255, 255, 255, 0.22));
}

.home-showcase-index {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 0.9;
}

.home-categories {
  padding: 20px 22px 24px;
  background: #fff;
}

.home-categories-title {
  margin: 0 0 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-family: "Playfair Display", serif;
  font-size: 31px;
  color: #2b1f42;
}

.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.home-category {
  border: none;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 8px;
  justify-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.home-category-media {
  width: 98px;
  height: 98px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(91, 44, 162, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-category-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-category-label {
  color: #3f3459;
  font-size: 15px;
  font-family: "Playfair Display", serif;
  transition: color 0.2s ease;
}

.home-category:hover {
  transform: translateY(-2px);
}

.home-category:hover .home-category-media {
  border-color: rgba(91, 44, 162, 0.34);
  box-shadow: 0 8px 20px rgba(60, 37, 95, 0.15);
}

.home-category:hover .home-category-media img {
  transform: scale(1.05);
}

.home-category:hover .home-category-label {
  color: #2a1e43;
}

@media (max-width: 1080px) {
  .home-showcase-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-showcase-title {
    font-size: 44px;
  }

  .home-categories-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-showcase-topnav {
    gap: 10px;
  }

  .home-showcase-title {
    font-size: 36px;
  }

  .home-showcase-subtitle {
    font-size: 14px;
  }

  .home-showcase-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .home-category-media {
    width: 88px;
    height: 88px;
  }

  .home-categories-title {
    font-size: 29px;
  }
}

/* Makers listing refresh: premium structured cards */
.maker-list-section {
  padding: 22px;
  background: linear-gradient(135deg, #fffdf9, #f8f1e8);
  border: 1px solid rgba(91, 44, 162, 0.12);
}

.maker-list-section .grid {
  gap: 14px;
}

.maker-card {
  border-radius: 18px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(91, 44, 162, 0.16);
  background: linear-gradient(145deg, #ffffff, #fdf8f2);
  box-shadow: 0 12px 30px rgba(67, 43, 102, 0.08);
  gap: 12px;
}

.maker-card:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 44, 162, 0.28);
  box-shadow: 0 18px 34px rgba(67, 43, 102, 0.12);
}

.maker-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
}

.maker-card-left {
  min-width: 0;
}

.maker-header-row {
  align-items: center;
  gap: 12px;
}

.maker-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(91, 44, 162, 0.24);
  box-shadow: 0 8px 16px rgba(67, 43, 102, 0.18);
}

.maker-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.06);
}

.maker-avatar-gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.38), transparent 45%);
  pointer-events: none;
}

.maker-name {
  font-size: 26px;
  line-height: 1.1;
}

.maker-location {
  margin-top: 2px;
  font-size: 13px;
  color: #706687;
}

.maker-tags {
  margin-top: 10px;
}

.maker-headline {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: #4f4368;
}

.maker-meta-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.maker-meta-item {
  border: 1px solid rgba(91, 44, 162, 0.12);
  background: #fbf6ef;
  border-radius: 12px;
  padding: 8px 10px;
}

.maker-meta-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #84799f;
  margin-bottom: 3px;
}

.maker-meta-item strong {
  font-size: 14px;
  color: #261a41;
}

.maker-card-right {
  display: grid;
  align-content: start;
  gap: 8px;
}

.maker-side-pill {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(91, 44, 162, 0.18);
  background: #f5ecff;
  color: #4c3f67;
  font-size: 12px;
  font-weight: 600;
}

.maker-side-block {
  border: 1px solid rgba(91, 44, 162, 0.12);
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
}

.maker-side-block strong {
  display: block;
  font-size: 14px;
  color: #2d2048;
}

.maker-quote {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #6f6488;
}

.maker-cta-row {
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(91, 44, 162, 0.1);
}

.tag-muted {
  color: #867b9f;
}

/* Maker profile product grid: editorial crop, no dashed overlay, chips on bottom gradient */
.product-card--maker-profile .product-image--maker-profile {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
}

.product-card--maker-profile .product-image--maker-profile::after {
  display: none;
}

.product-card--maker-profile .product-image--maker-profile .product-img {
  object-position: center center;
}

.product-card--maker-profile .product-chip-row {
  inset: auto 0 0 0;
  padding: 14px 12px 10px;
  background: linear-gradient(
    to top,
    rgba(18, 12, 32, 0.72) 0%,
    rgba(18, 12, 32, 0.28) 50%,
    transparent 100%
  );
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card--maker-profile .product-chip {
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #342848;
  box-shadow: 0 2px 10px rgba(18, 12, 32, 0.18);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 5px 10px;
}

/* Maker story panel luxury pass */
.maker-layout .maker-products-panel {
  border-radius: 26px;
  padding: 20px;
  background: radial-gradient(circle at 0 0, rgba(128, 78, 188, 0.16), transparent 46%),
    radial-gradient(circle at 100% 100%, rgba(183, 137, 47, 0.14), transparent 52%),
    linear-gradient(135deg, #fff8ef, #f6ede3);
  border: 1px solid rgba(74, 52, 108, 0.16);
  box-shadow: 0 18px 42px rgba(63, 39, 97, 0.12);
}

.maker-layout .pill-breadcrumb {
  background: rgba(255, 255, 255, 0.88);
  color: #645681;
  border-color: rgba(91, 44, 162, 0.2);
  font-size: 11px;
}

.maker-layout .pill-breadcrumb--cta {
  background: rgba(111, 57, 188, 0.12);
  color: #4d3575;
  border-color: rgba(111, 57, 188, 0.28);
}

.maker-layout .maker-section-heading {
  font-size: 22px;
  color: #281b43;
  margin-bottom: 6px;
}

.maker-layout .maker-section-sub {
  font-size: 13px;
  line-height: 1.5;
  color: #6a5e83;
  margin-bottom: 14px;
}

.maker-layout .maker-products-panel .product-card {
  border-radius: 18px;
  border: 1px solid rgba(91, 44, 162, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(63, 39, 97, 0.08);
}

.maker-layout .maker-products-panel .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 44, 162, 0.3);
  box-shadow: 0 18px 36px rgba(63, 39, 97, 0.14);
}

.maker-layout .maker-products-panel .product-name {
  font-size: 15px;
  color: #2d1f49;
}

.maker-layout .maker-products-panel .product-meta-row {
  font-size: 12px;
  color: #6f6487;
}

.maker-layout .maker-products-panel .product-price {
  font-size: 18px;
  color: #2d1f49;
}

@media (max-width: 960px) {
  .maker-layout .maker-products-panel .product-price {
    font-size: 17px;
  }

  .maker-layout .maker-section-heading {
    font-size: 20px;
  }

  .maker-hero-heading {
    font-size: 34px;
  }

  .maker-hero-sub {
    font-size: 13px;
  }

  .maker-card-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .maker-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maker-name {
    font-size: 22px;
  }
}

