.landing-home .hero-welcome-note,
.landing-home .hero-stats { display: none; }

.landing-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.landing-services article {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem;
}

.landing-services h3 {
  font-family: var(--font-serif);
  margin: 0 0 0.4rem;
}

.landing-join {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.landing-join .hero-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .landing-services { grid-template-columns: 1fr; }
}

#account-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notify-dock {
  position: relative;
}

.notify-icon-btn,
.notify-dash-bell {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.notify-icon-btn.has-unread,
.notify-dash.has-unread .notify-dash-bell {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 77, 0.22);
}

.notify-icon-svg,
.notify-dash-bell svg {
  width: 20px;
  height: 20px;
}

.notify-icon-btn .notify-count,
.notify-dash-bell .notify-count {
  position: absolute;
  top: -4px;
  right: -4px;
}

.notify-icon-btn.has-unread .notify-count {
  animation: notify-pulse 1.6s ease-in-out infinite;
}

@keyframes notify-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.notify-drop {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  width: min(340px, 88vw);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px rgba(0, 21, 51, 0.16);
  z-index: 40;
  overflow: hidden;
}

.notify-drop-head,
.notify-drop-foot {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
}

.notify-drop-head { background: var(--color-bg); }
.notify-drop-foot {
  border-top: 1px solid var(--color-border);
  color: var(--color-navy);
  font-weight: 600;
}

.notify-drop-list { max-height: 280px; overflow: auto; }

.notify-drop-item {
  display: block;
  padding: 0.7rem 0.9rem;
  border-top: 1px solid var(--color-border);
  color: inherit;
  text-decoration: none;
}

.notify-drop-item em {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-dark);
}

.notify-drop-item strong,
.notify-drop-item span { display: block; }

.notify-drop-item span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.notify-drop-item.is-unread { background: rgba(197, 155, 77, 0.08); }
.notify-drop-empty { padding: 0.9rem; margin: 0; }

.notify-dash {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0 0 1.75rem;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.notify-dash.has-unread {
  border-color: var(--color-gold);
}

.notify-dash-list {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.1rem;
}

.notify-dash-list .is-unread a { font-weight: 700; }

.notify-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.notify-count {
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notify-room {
  max-width: 760px;
}

.notify-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.notify-list {
  display: grid;
  gap: 0.85rem;
}

.notify-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
}

.notify-card.is-unread {
  border-color: var(--color-gold);
  box-shadow: inset 4px 0 0 var(--color-gold);
}

.notify-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.notify-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
}

.notify-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.flash {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  width: min(1200px, 92vw);
  background: #fff;
  border: 1px solid var(--color-border);
}

.flash--success { border-color: rgba(37, 140, 80, 0.35); }
.flash--info { border-color: var(--color-border-strong); }

.product-grid.has-products {
  display: grid;
}

.product-moq {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0.35rem 0 0.75rem;
}

.product-name a { color: inherit; }

.market-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.market-sidebar h3 {
  font-family: var(--font-serif);
  margin-bottom: 0.75rem;
}

.market-sidebar .category-filters {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.result-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.auth-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.auth-switch { margin-top: 1rem; font-size: 0.9rem; }
.form-error { color: #9b1c1c; font-weight: 600; }

.login-prompt {
  padding: 1rem;
  background: var(--color-bg);
  border-radius: var(--radius);
}

.table-wrap { overflow-x: auto; margin: 1rem 0 2rem; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.data-table th {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.status-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(197, 155, 77, 0.15);
  font-size: 0.72rem;
  text-transform: capitalize;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.inline-form { display: flex; gap: 0.4rem; align-items: center; }

.legal-prose { max-width: 720px; }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.capture-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2rem;
  align-items: start;
}

.drop-photo {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 280px;
  padding: 1rem;
  border: 1.5px dashed var(--color-gold);
  border-radius: var(--radius-lg);
  background: #fff;
  cursor: pointer;
}

.drop-photo em {
  color: var(--color-text-muted);
  font-style: normal;
  font-size: 0.85rem;
}

.drop-photo img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.coming-soon-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.dev-code {
  padding: 0.75rem 1rem;
  background: rgba(197, 155, 77, 0.12);
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

.chatbot {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.chatbot-toggle {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 21, 51, 0.22);
  cursor: pointer;
}

.chatbot-panel {
  width: min(400px, calc(100vw - 1.4rem));
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 21, 51, 0.22);
  overflow: hidden;
}

.chatbot-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: var(--gradient-navy);
  color: #fff;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.chatbot-head span {
  display: block;
  font-size: 0.72rem;
  color: var(--color-gold-light);
}

.chatbot-close {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-log {
  height: 320px;
  overflow: auto;
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: linear-gradient(180deg, #f6f3ee 0%, #fbfaf7 100%);
}

.chatbot-bubble {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  max-width: 92%;
}

.chatbot-bubble--bot {
  background: #fff;
  border: 1px solid var(--color-border);
  border-bottom-left-radius: 4px;
}

.chatbot-bubble--user {
  margin-left: auto;
  background: var(--color-navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chatbot-typing { opacity: 0.7; font-style: italic; }

.chatbot-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.1rem 0 0.3rem;
}

.chatbot-choice {
  border: 1px solid var(--color-gold);
  background: #fff;
  color: var(--color-navy);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.chatbot-choice--go {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

.chatbot-choice:hover {
  background: rgba(197, 155, 77, 0.12);
}

.chatbot-choice--go:hover { background: var(--color-navy-light); color: #fff; }

.chatbot-form {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.chatbot-form input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .market-layout,
  .product-detail,
  .admin-grid,
  .capture-grid,
  .form-row { grid-template-columns: 1fr; }
}
