.empty-state a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}
.support-console,
.favorites-premium-shell,
.cart-premium-shell {
  max-width: 1240px;
  margin: 28px auto 54px;
  padding: 0 28px;
}
.support-console {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(280px, .55fr) minmax(0, 1fr);
  gap: 18px;
}
.support-ticket-list,
.support-thread-card {
  display: grid;
  gap: 10px;
}
.support-ticket-list a {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.support-ticket-list a.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,122,26,.12);
}
.support-ticket-list span,
.support-message span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.support-message {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: #fff;
}
.support-message.admin {
  border-color: rgba(10,163,91,.18);
  background: #effcf4;
}
.support-message.customer,
.support-message.seller {
  border-color: rgba(242,122,26,.22);
  background: #fff7ed;
}
.support-message p {
  margin: 8px 0;
  line-height: 1.5;
}
.inline-support-form {
  margin-top: -2px;
}
.favorites-hero,
.cart-premium-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 190px;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(135deg, #151515, #3f2b1d);
  box-shadow: var(--shadow);
}
.favorites-hero span,
.cart-premium-hero span {
  color: #ffd2a8;
  font-weight: 900;
}
.favorites-hero h1,
.cart-premium-hero h1 {
  margin: 6px 0 8px;
  font-size: 44px;
}
.favorites-hero p,
.cart-premium-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}
.favorites-hero a,
.cart-items-panel .section-head a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #151515;
  background: #fff;
  font-weight: 900;
}
.favorites-panel,
.cart-items-panel,
.checkout-premium-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.favorite-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.favorite-premium-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.favorite-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.favorite-media {
  min-height: 220px;
  background-color: #f3f3f3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}
.favorite-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.favorite-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}
.favorite-body span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}
.favorite-body h3 {
  margin: 0;
}
.premium-empty {
  display: grid;
  gap: 12px;
  place-items: center;
  min-height: 220px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-weight: 900;
}
.premium-empty a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: var(--orange);
}
.cart-premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 18px;
  align-items: start;
}
.cart-hero-total {
  min-width: 220px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.1);
}
.cart-hero-total strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}
.premium-cart-line {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 96px auto auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.premium-cart-line:last-child {
  border-bottom: 0;
}
.premium-cart-info {
  display: grid;
  gap: 5px;
}
.premium-cart-info span,
.premium-cart-info small {
  color: var(--muted);
}
.premium-cart-line label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.premium-cart-line input {
  min-height: 40px;
}
.premium-cart-line button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}
.checkout-premium-panel {
  position: sticky;
  top: 144px;
}
.checkout-premium-panel form {
  display: grid;
  gap: 12px;
}
.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkout-premium-panel button[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-weight: 900;
  cursor: pointer;
}
.cart-premium-layout.upgraded {
  grid-template-columns: minmax(0, 1fr) 480px;
}
.cart-flow-shell {
  max-width: 1240px;
  margin: 28px auto 54px;
  padding: 0 28px;
}
.cart-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 190px;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(135deg, #151515, #35271f 58%, var(--orange));
  box-shadow: var(--shadow);
}
.cart-flow-head span {
  color: #ffd2a8;
  font-weight: 900;
}
.cart-flow-head h1 {
  margin: 8px 0 10px;
  font-size: 46px;
}
.cart-flow-head p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}
.cart-flow-steps {
  display: grid;
  grid-template-columns: 44px 70px 44px;
  align-items: center;
}
.cart-flow-steps b {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.cart-flow-steps b.active {
  color: #151515;
  background: #fff;
}
.cart-flow-steps span {
  height: 2px;
  background: rgba(255,255,255,.32);
}
.cart-flow-grid,
.checkout-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: start;
}
.checkout-stage[hidden],
.cart-flow-grid[hidden] {
  display: none;
}
.premium-cart-box,
.checkout-stage-panel,
.cart-summary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.premium-cart-box,
.checkout-stage-panel {
  padding: 20px;
}
.cart-summary-card {
  position: sticky;
  top: 144px;
  display: grid;
  gap: 14px;
  padding: 20px;
}
.cart-summary-card > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}
.cart-summary-card h2 {
  margin: 0;
  font-size: 26px;
}
.summary-lines {
  display: grid;
  gap: 10px;
}
.summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.summary-lines div.grand {
  border-bottom: 0;
  padding-top: 4px;
}
.summary-lines span {
  color: var(--muted);
  font-weight: 800;
}
.summary-lines strong,
.summary-lines .grand strong {
  color: var(--ink);
  font-size: 18px;
}
.summary-lines .grand strong {
  color: var(--orange);
  font-size: 26px;
}
.cart-summary-card button,
.checkout-submit,
.checkout-stage-panel .section-head button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(242,122,26,.22);
}
.cart-summary-card button:disabled {
  cursor: not-allowed;
  opacity: .55;
  box-shadow: none;
}
.cart-summary-card > a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}
.checkout-stage-panel form {
  display: grid;
  gap: 14px;
}
.checkout-stage-panel .section-head button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}
.checkout-summary-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.checkout-summary-head span,
.checkout-step > strong {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}
.checkout-summary-head h2 {
  margin: 6px 0 0;
  font-size: 24px;
}
.checkout-step {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, #fff, #fbfbfb);
}
.address-choice-grid {
  display: grid;
  gap: 8px;
}
.address-choice {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 9px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  color: var(--ink) !important;
  background: #fff;
  cursor: pointer;
}
.address-choice input {
  grid-row: 1 / 3;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}
.address-choice span {
  font-weight: 900;
}
.address-choice small,
.checkout-note {
  color: var(--muted);
  line-height: 1.45;
}
.checkout-mini-link {
  width: fit-content;
  color: var(--orange);
  font-weight: 900;
}
.customer-console {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 28px auto 54px;
  padding: 0 28px;
}
.customer-sidebar,
.customer-topbar,
.customer-panel,
.customer-metrics article,
.coupon-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.customer-sidebar {
  position: sticky;
  top: 144px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 18px;
}
.customer-sidebar strong {
  font-size: 20px;
}
.customer-sidebar span {
  color: var(--muted);
  font-weight: 800;
}
.customer-sidebar nav {
  display: grid;
  gap: 8px;
}
.customer-sidebar a {
  display: flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  font-weight: 900;
}
.customer-sidebar a.active,
.customer-sidebar a:hover {
  color: #fff;
  background: var(--orange);
}
.customer-logout {
  color: #fff;
  background: #151515;
}
.customer-workspace {
  display: grid;
  gap: 18px;
}
.customer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}
.customer-topbar span {
  color: var(--orange);
  font-weight: 900;
}
.customer-topbar h1 {
  margin: 6px 0 0;
}
.customer-topbar a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: #151515;
  font-weight: 900;
}
.customer-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.customer-metrics article,
.customer-panel {
  padding: 18px;
}
.customer-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 900;
}
.customer-metrics strong {
  font-size: 26px;
}
.customer-order-list {
  display: grid;
  gap: 10px;
}
.customer-order-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}
.customer-order-list.detailed article {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.customer-order-list span,
.customer-order-list li {
  color: var(--muted);
  line-height: 1.45;
}
.customer-order-list ul {
  grid-column: 1 / -1;
  margin: 0;
  padding-left: 18px;
}
.customer-profile-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.customer-profile-form button {
  grid-column: 1 / -1;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}
.coupon-shell {
  max-width: 1240px;
  margin: 28px auto 54px;
  padding: 0 28px;
}
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.coupon-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.coupon-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #151515);
}
.coupon-card span {
  color: var(--orange);
  font-weight: 900;
}
.coupon-card h2 {
  margin: 10px 0;
  font-size: 34px;
}
.coupon-card strong {
  display: block;
  font-size: 20px;
}
.coupon-card p,
.coupon-card small {
  color: var(--muted);
}
.seller-page {
  background:
    linear-gradient(135deg, rgba(242,122,26,.08), transparent 28%),
    linear-gradient(180deg, #f7f7f7, #eeeeee);
}
.seller-auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 24px;
  max-width: 1240px;
  margin: 28px auto 54px;
  padding: 0 28px;
}
.seller-auth-story {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 8px;
  padding: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(135deg, #151515, #3d2a1e 58%, #f27a1a);
  box-shadow: var(--shadow);
}
.seller-auth-story::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  border: 42px solid rgba(255,255,255,.1);
  border-radius: 50%;
  animation: heroFloat 5s ease-in-out infinite;
}
.seller-auth-story > span {
  color: #ffd2a8;
  font-weight: 900;
}
.seller-auth-story h1 {
  max-width: 620px;
  margin: 12px 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .95;
}
.seller-auth-story p {
  max-width: 580px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.6;
}
.seller-motion-board {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.seller-motion-board article {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  animation: sellerPulse 3.8s ease-in-out infinite;
}
.seller-motion-board article:nth-child(2) { animation-delay: .35s; }
.seller-motion-board article:nth-child(3) { animation-delay: .7s; }
.seller-motion-board strong {
  display: block;
  margin-bottom: 8px;
  color: #ffd2a8;
}
.seller-motion-board span {
  font-weight: 900;
}
.seller-auth-card {
  align-self: center;
}
.seller-auth-tabs button {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  font-weight: 900;
  cursor: pointer;
}
.seller-auth-tabs button.active {
  color: #fff;
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
@keyframes sellerPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.seller-console {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 22px;
  max-width: 1500px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px;
}
.seller-sidebar,
.seller-panel,
.seller-topbar,
.seller-alert,
.seller-metrics article {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--soft-shadow);
}
.seller-sidebar {
  position: sticky;
  top: 18px;
  align-self: start;
  display: flex;
  min-height: calc(100vh - 36px);
  flex-direction: column;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(21,21,21,.96), rgba(38,38,38,.94)),
    #151515;
  color: #fff;
}
.seller-logo {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.seller-logo img {
  width: 148px;
  height: auto;
  filter: brightness(0) invert(1);
}
.seller-logo span {
  color: rgba(255,255,255,.64);
  font-size: 13px;
  font-weight: 900;
}
.seller-store-card {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 16px;
  background: rgba(255,255,255,.08);
}
.seller-store-card strong {
  font-size: 18px;
}
.seller-store-card span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.seller-status {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: #151515;
  background: #ffd36c;
  font-size: 11px;
  text-transform: uppercase;
}
.seller-status.active { background: #73e4a1; }
.seller-status.passive,
.seller-status.rejected { background: #ff9a90; }
.seller-nav {
  display: grid;
  gap: 8px;
}
.seller-nav a,
.seller-logout {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: rgba(255,255,255,.78);
  font-weight: 900;
}
.seller-nav a:hover,
.seller-nav a.active {
  color: #151515;
  background: #fff;
}
.seller-logout {
  margin-top: auto;
  color: #ffd2a8;
  background: rgba(242,122,26,.12);
}
.seller-workspace {
  display: grid;
  align-content: start;
  gap: 18px;
}
.seller-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 98px;
  padding: 20px 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.7)),
    #fff;
  backdrop-filter: blur(18px);
}
.seller-topbar span,
.seller-section-head span,
.seller-panel > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}
.seller-topbar h1 {
  margin: 6px 0 0;
  font-size: 30px;
  letter-spacing: 0;
}
.seller-topbar a,
.seller-section-head a,
.seller-panel.dark a,
.seller-row-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  padding: 0 13px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}
.seller-thread-link {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: #151515;
  font-weight: 900;
}
.seller-alert {
  padding: 13px 16px;
  font-weight: 900;
}
.seller-alert.success {
  border-color: rgba(10,163,91,.2);
  background: #effcf4;
}
.seller-alert.danger {
  border-color: rgba(232,65,53,.22);
  background: #fff1ef;
}
.seller-alert.warning {
  border-color: rgba(242,122,26,.26);
  background: #fff7ed;
}
.seller-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.seller-metrics article {
  padding: 18px;
}
.seller-metrics span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.seller-metrics strong {
  font-size: 28px;
}
.seller-grid {
  display: grid;
  gap: 18px;
}
.seller-grid.two {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
}
.seller-grid.form-grid {
  grid-template-columns: minmax(420px, .72fr) minmax(0, 1fr);
}
.seller-panel {
  padding: 20px;
  overflow: hidden;
}
.seller-panel.dark {
  display: grid;
  align-content: center;
  min-height: 260px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.14), transparent 24%),
    linear-gradient(135deg, #151515, #3c2b20);
}
.seller-panel.dark strong {
  margin: 8px 0;
  font-size: 46px;
}
.seller-panel.dark p {
  max-width: 520px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.seller-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.seller-section-head h2,
.seller-panel h2 {
  margin: 0;
  font-size: 22px;
}
.seller-form {
  display: grid;
  gap: 12px;
}
.seller-form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.seller-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.seller-form input,
.seller-form select,
.seller-form textarea,
.listing-request-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  padding: 9px 12px;
  background: #fff;
  outline: none;
}
.seller-form textarea {
  min-height: 98px;
  resize: vertical;
}
.seller-form input:focus,
.seller-form select:focus,
.seller-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,122,26,.12);
}
.seller-form button,
.seller-ticket-list button,
.seller-row-actions button,
.listing-request-form button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-weight: 900;
  cursor: pointer;
}
.seller-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.seller-check input {
  width: auto;
  min-height: 0;
}
.seller-list,
.seller-product-table,
.seller-ticket-list,
.seller-earning-list,
.seller-history {
  display: grid;
  gap: 10px;
}
.seller-list article,
.seller-product-table article,
.seller-ticket-list article,
.seller-earning-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.seller-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.seller-list span,
.seller-product-main span,
.seller-product-main small,
.seller-ticket-list span,
.seller-ticket-list p,
.seller-earning-list small,
.seller-history p {
  color: var(--muted);
  line-height: 1.45;
}
.seller-thumb {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background-color: #f3f3f3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 72%;
  overflow: hidden;
}
.seller-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-product-table article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(180px, auto);
  gap: 12px;
  align-items: center;
}
.seller-row-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.seller-row-actions form {
  margin: 0;
}
.listing-request-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  min-width: 260px;
}
.seller-ticket-list article {
  display: grid;
  gap: 10px;
}
.seller-ticket-list blockquote {
  margin: 0;
  border-left: 4px solid var(--orange);
  padding: 10px 12px;
  background: #fff7ed;
  font-weight: 800;
}
.seller-ticket-list form {
  justify-self: start;
}
.seller-earning-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  align-items: center;
}
.seller-earning-list small {
  grid-column: 1 / -1;
}
.seller-earning-list b {
  color: var(--orange);
}
.seller-earning-list.slim article {
  grid-template-columns: minmax(0, 1fr) auto;
}
.seller-empty {
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}
.account-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 24px;
  max-width: 1240px;
  margin: 30px auto;
  padding: 0 28px;
}
.account-premium-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 26px;
  max-width: 1240px;
  margin: 30px auto 54px;
  padding: 0 28px;
}
.account-premium-shell::before {
  content: "";
  position: absolute;
  inset: -20px 10px auto 10px;
  height: 360px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 22%, rgba(242, 122, 26, .22), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(0, 166, 166, .18), transparent 26%),
    linear-gradient(135deg, rgba(21,21,21,.08), rgba(255,255,255,0));
  filter: blur(.2px);
  pointer-events: none;
}
.account-brand-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 22%, rgba(255,255,255,.22), transparent 18%),
    linear-gradient(125deg, rgba(21,21,21,.98), rgba(242,122,26,.76)),
    #151515;
  box-shadow: 0 28px 90px rgba(0,0,0,.18);
}
.account-brand-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 80px;
  width: 320px;
  height: 320px;
  border: 44px solid rgba(255,255,255,.11);
  border-radius: 50%;
}
.account-brand-panel::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 180px;
  height: 180px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04)),
    rgba(255,255,255,.06);
  transform: rotate(-8deg);
}
.brand-glass {
  position: relative;
  z-index: 1;
  max-width: 650px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 24px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.brand-glass p,
.auth-heading span {
  margin: 0 0 10px;
  color: #ffd2a8;
  font-weight: 900;
}
.brand-glass h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: .95;
  letter-spacing: 0;
}
.brand-glass span {
  display: block;
  max-width: 540px;
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.6;
}
.account-proof-grid {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.account-proof-grid article {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.account-proof-grid strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 22px;
}
.account-proof-grid span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.4;
}
.premium-auth-card {
  align-self: center;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.82);
  box-shadow: 0 28px 90px rgba(0,0,0,.14);
  backdrop-filter: blur(18px);
}
.auth-heading {
  margin-bottom: 16px;
}
.auth-heading span {
  display: block;
  color: var(--orange);
}
.auth-heading h2 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: 0;
}
.auth-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.account-hero,
.account-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.favorites-shell {
  max-width: 1180px;
  margin: 28px auto;
  padding: 0 28px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  max-width: 1180px;
  margin: 28px auto;
  padding: 0 28px;
}
.cart-panel h1,
.checkout-panel h2 {
  margin-top: 0;
}
.cart-line {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 76px auto auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.cart-line span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.cart-line input {
  min-height: 38px;
}
.cart-line button {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 36px;
  background: #fff;
  cursor: pointer;
}
.mini-visual {
  width: 74px;
  height: 64px;
  border-radius: 8px;
  background-color: #f3f3f3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 72%;
  overflow: hidden;
}
.mini-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.cart-total strong {
  color: var(--orange);
  font-size: 24px;
}
.checkout-panel textarea {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  resize: vertical;
}
.payment-box,
.bank-warning,
.address-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
  background: #fff;
}
.payment-box strong,
.bank-warning strong {
  display: block;
  margin-bottom: 10px;
}
.payment-box label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}
.bank-warning {
  background: #fff7ed;
  border-color: rgba(242,122,26,.28);
}
.bank-warning pre {
  white-space: pre-wrap;
  margin: 0 0 8px;
  font: inherit;
  font-weight: 800;
}
.bank-warning p,
.address-card p {
  margin: 6px 0 0;
  color: var(--muted);
}
.address-card a,
.action-list a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  margin-top: 10px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}
.address-card .inline-form {
  display: inline-flex;
  margin-left: 6px;
}
.address-card .inline-form button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: #c0392b;
  font-weight: 900;
}
.review-form {
  display: grid;
  gap: 10px;
  max-width: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 16px;
  background: #fff;
}
.review-form textarea {
  min-height: 90px;
}
.empty-line {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  background: #fff;
}
.account-hero {
  min-height: 520px;
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(125deg, rgba(21,21,21,.98), rgba(242,122,26,.72)),
    #151515;
  overflow: hidden;
  position: relative;
}
.account-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 34px solid rgba(255,255,255,.1);
}
.account-hero p {
  margin: 0 0 10px;
  color: #ffd2a8;
  font-weight: 900;
}
.account-hero h1 {
  max-width: 560px;
  margin: 0 0 16px;
  font-size: 58px;
  line-height: .96;
}
.account-hero span {
  display: block;
  max-width: 480px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.account-card {
  align-self: start;
  padding: 24px;
  position: relative;
}
.account-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--orange), #151515);
}
.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.account-tabs a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  font-weight: 900;
  transition: .18s ease;
}
.account-tabs a.active {
  color: #fff;
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 12px 28px rgba(242,122,26,.24);
}
.account-card form {
  display: grid;
  gap: 13px;
}
.account-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.account-card input {
  min-height: 48px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  padding: 0 14px;
  outline: none;
  background: rgba(255,255,255,.82);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.account-card input:focus,
.checkout-panel textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 122, 26, .12);
}
.account-card button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(242,122,26,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.account-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(242,122,26,.28);
}
.account-message {
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  background: #fff3e8;
  font-weight: 800;
}
.account-benefits {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.account-benefits span {
  border-left: 3px solid var(--orange);
  padding-left: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.empty-state {
  max-width: 760px;
  margin: 50px auto;
  padding: 42px;
  text-align: center;
}
.empty-state h1 {
  margin: 0 0 12px;
  font-size: 44px;
}
.empty-state p {
  color: var(--muted);
  margin-bottom: 20px;
}
@media (max-width: 860px) {
  .support-console,
  .seller-auth-shell,
  .cart-premium-layout,
  .cart-flow-grid,
  .checkout-stage,
  .favorite-premium-grid,
  .customer-console,
  .customer-metrics,
  .coupon-grid,
  .customer-order-list.detailed article,
  .customer-profile-form {
    grid-template-columns: 1fr;
  }
  .favorites-hero,
  .cart-premium-hero,
  .cart-flow-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .premium-cart-line {
    grid-template-columns: 70px minmax(0, 1fr);
  }
  .checkout-premium-panel {
    position: static;
  }
  .cart-summary-card {
    position: static;
  }
  .checkout-field-row {
    grid-template-columns: 1fr;
  }
  .customer-sidebar {
    position: static;
  }
  .customer-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .seller-auth-story {
    min-height: 560px;
  }
  .seller-motion-board {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
  .seller-console {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .seller-sidebar {
    position: static;
    min-height: auto;
  }
  .seller-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seller-metrics,
  .seller-grid.two,
  .seller-grid.form-grid,
  .seller-form-row,
  .seller-product-table article {
    grid-template-columns: 1fr;
  }
  .seller-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .seller-row-actions {
    justify-items: stretch;
  }
  .listing-request-form {
    min-width: 0;
    grid-template-columns: 1fr;
  }
  .account-premium-shell,
  .account-shell {
    grid-template-columns: 1fr;
  }
  .account-brand-panel {
    min-height: 520px;
  }
  .account-proof-grid {
    grid-template-columns: 1fr;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .cart-line {
    grid-template-columns: 64px 1fr;
  }
  .account-hero {
    min-height: auto;
  }
  .account-hero h1 {
    font-size: 40px;
  }
}

/* Customer account panel hardening */
.customer-console .customer-panel {
  overflow: hidden;
}
.customer-console .customer-profile-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.customer-console .customer-profile-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.customer-console .customer-profile-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.customer-console .customer-profile-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,122,26,.12);
}
.customer-console .customer-profile-form input:disabled {
  color: #777;
  background: #f4f4f4;
}
.customer-console .customer-profile-form button {
  grid-column: 1 / -1;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(242,122,26,.22);
}
.customer-console .customer-panel h2 {
  margin-top: 0;
  font-size: 24px;
}
.premium-product-page {
  max-width: 1240px;
  margin: 28px auto 54px;
  padding: 0 28px;
}
.premium-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 22px;
  align-items: start;
}
.premium-product-gallery,
.premium-product-info,
.product-description-card,
.product-reviews-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.premium-product-gallery {
  padding: 18px;
}
.premium-product-gallery > span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
}
.premium-product-info {
  position: sticky;
  top: 144px;
  display: grid;
  gap: 14px;
  padding: 22px;
}
.product-category {
  margin: 0;
  color: var(--orange);
  font-weight: 900;
}
.premium-product-info h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}
.product-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.product-score {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff7ed;
}
.product-score strong {
  color: var(--orange);
  font-size: 28px;
}
.product-score span {
  color: var(--muted);
  font-weight: 900;
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-actions button {
  min-height: 48px;
}
.product-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.product-assurance span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  gap: 22px;
  margin-top: 22px;
}
.product-description-card,
.product-reviews-card {
  padding: 20px;
}
.product-description-card > p {
  color: var(--soft);
  line-height: 1.7;
}
.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.product-spec-grid span {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
}
.product-spec-grid strong {
  color: var(--ink);
}
.review-list.premium {
  display: grid;
  gap: 10px;
}
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: #fff;
}
.review-card p {
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 860px) {
  .customer-console .customer-profile-form {
    grid-template-columns: 1fr;
  }
  .premium-product-hero,
  .product-content-grid,
  .product-spec-grid {
    grid-template-columns: 1fr;
  }
  .premium-product-info {
    position: static;
  }
}
