/*
 * GoldConnect Enterprise UI Beta 4 - Official Brand Palette
 * Light financial marketplace visual layer.
 * Preserves existing plugin markup and functionality.
 */
:root {
  --gc-navy: #0b0055;
  --gc-navy-hover: #18007a;
  --gc-gold: #f86303;
  --gc-gold-hover: #e35700;
  --gc-bg: #ffffff;
  --gc-section: #f5f7fa;
  --gc-section-2: #eef3f8;
  --gc-card: #ffffff;
  --gc-text: #050505;
  --gc-muted: #667085;
  --gc-border: #dfe5ec;
  --gc-success: #15803d;
  --gc-danger: #b42318;
  --gc-warning: #b54708;
  --gc-shadow: 0 10px 30px rgba(11, 0, 85, 0.08);
  --gc-shadow-hover: 0 18px 42px rgba(11, 0, 85, 0.14);
  --gc-radius: 12px;
  --gc-radius-lg: 18px;
}

.gc-marketplace-home,
.gc-dashboard,
.gc-dealer-dashboard,
.gc-membership-account,
.gc-conversation,
.gc-review-list,
.gc-notification-list,
.gc-rfq-grid,
.gc-offer-timeline,
.gc-panel,
.gc-form-card {
  color: var(--gc-text);
}

.gc-marketplace-home {
  background: var(--gc-bg);
}

.gc-market-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-lg);
  background: linear-gradient(115deg, #ffffff 0%, #f7f9fc 62%, #eef3f8 100%);
  box-shadow: var(--gc-shadow);
}

.gc-market-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(38%, 520px);
  background: linear-gradient(135deg, rgba(248,99,3,.12), rgba(11,0,85,.03));
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.gc-market-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.gc-market-hero h1,
.gc-market-section h2,
.gc-market-cta h2,
.gc-card h2,
.gc-card h3,
.gc-premium-listing-card h3,
.gc-dealer-card h3,
.gc-rfq-card h3,
.gc-plan-card h3 {
  color: var(--gc-navy);
}

.gc-market-hero p,
.gc-market-section p,
.gc-card p,
.gc-dealer-card p,
.gc-rfq-card p,
.gc-plan-card p,
.gc-notice,
.gc-card-meta,
.gc-dealer-line {
  color: var(--gc-muted);
}

.gc-eyebrow,
.gc-price,
.gc-count {
  color: var(--gc-gold-hover);
}

.gc-market-search,
.gc-search,
.gc-form,
.gc-form-card,
.gc-rfq-filter,
.gc-reply-form,
.gc-message-form,
.gc-review-form,
.gc-rfq-response-form {
  background: var(--gc-card);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  box-shadow: 0 8px 24px rgba(11,0,85,.06);
}

.gc-market-search input,
.gc-market-search select,
.gc-form input,
.gc-form select,
.gc-form textarea,
.gc-search input,
.gc-search select,
.gc-rfq-filter input,
.gc-rfq-filter select,
.gc-rfq-response-form input,
.gc-rfq-response-form select,
.gc-rfq-response-form textarea,
.gc-message-form textarea,
.gc-reply-form textarea,
.gc-review-form textarea {
  color: var(--gc-text) !important;
  background: #fff !important;
  border: 1px solid #cfd8e3 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

.gc-market-search input:focus,
.gc-market-search select:focus,
.gc-form input:focus,
.gc-form select:focus,
.gc-form textarea:focus,
.gc-search input:focus,
.gc-search select:focus,
.gc-rfq-response-form input:focus,
.gc-rfq-response-form textarea:focus,
.gc-message-form textarea:focus {
  border-color: var(--gc-gold) !important;
  box-shadow: 0 0 0 3px rgba(248,99,3,.16) !important;
  outline: none;
}

.gc-btn,
button.gc-btn,
input.gc-btn,
.gc-form button,
.gc-market-search button {
  border: 1px solid var(--gc-gold) !important;
  background: var(--gc-gold) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 16px rgba(248,99,3,.16) !important;
  text-decoration: none !important;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease !important;
}

.gc-btn:hover,
button.gc-btn:hover,
.gc-form button:hover,
.gc-market-search button:hover {
  background: var(--gc-gold-hover) !important;
  border-color: var(--gc-gold-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(248,99,3,.22) !important;
}

.gc-btn-outline {
  background: #fff !important;
  color: var(--gc-navy) !important;
  border-color: var(--gc-navy) !important;
  box-shadow: none !important;
}

.gc-btn-outline:hover {
  background: var(--gc-navy) !important;
  color: #fff !important;
}

.gc-category-card,
.gc-premium-listing-card,
.gc-dealer-card,
.gc-card,
.gc-panel,
.gc-stat,
.gc-stat-card,
.gc-rfq-card,
.gc-plan-card,
.gc-notification,
.gc-offer-summary,
.gc-conversation-list,
.gc-message-thread,
.gc-ad-card {
  background: var(--gc-card) !important;
  border: 1px solid var(--gc-border) !important;
  border-radius: var(--gc-radius) !important;
  box-shadow: var(--gc-shadow) !important;
}

.gc-category-card,
.gc-premium-listing-card,
.gc-dealer-card,
.gc-rfq-card,
.gc-plan-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gc-category-card:hover,
.gc-premium-listing-card:hover,
.gc-dealer-card:hover,
.gc-rfq-card:hover,
.gc-plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(248,99,3,.65) !important;
  box-shadow: var(--gc-shadow-hover) !important;
}

.gc-category-card__icon,
.gc-stat-icon {
  color: var(--gc-gold);
  background: rgba(248,99,3,.12);
}

.gc-card-badge,
.gc-sponsored-label,
.gc-verified-badge,
.gc-badge,
.gc-featured {
  border-radius: 999px !important;
  font-weight: 700 !important;
}

.gc-card-badge,
.gc-sponsored-label,
.gc-featured {
  background: #fff6d9 !important;
  color: #7a5b00 !important;
  border: 1px solid #ead18a !important;
}

.gc-verified-badge {
  background: #ecfdf3 !important;
  color: var(--gc-success) !important;
  border: 1px solid #abefc6 !important;
}

.gc-stats-grid,
.gc-dashboard-summary {
  gap: 16px;
}

.gc-stats-grid > div,
.gc-dashboard-summary > div,
.gc-stat,
.gc-stat-card {
  background: #fff !important;
  color: var(--gc-text) !important;
  border: 1px solid var(--gc-border) !important;
  box-shadow: var(--gc-shadow) !important;
}

.gc-stats-grid strong,
.gc-dashboard-summary strong,
.gc-stat strong,
.gc-stat-card strong {
  color: var(--gc-navy) !important;
}

.gc-market-section,
.gc-dashboard-section {
  background: transparent;
}

.gc-market-cta {
  background: var(--gc-navy) !important;
  color: #fff !important;
  border-radius: var(--gc-radius-lg) !important;
  box-shadow: var(--gc-shadow) !important;
}

.gc-market-cta h2,
.gc-market-cta p,
.gc-market-cta .gc-eyebrow {
  color: #fff !important;
}

.gc-market-cta .gc-btn-outline {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.7) !important;
}

.gc-market-cta .gc-btn-outline:hover {
  background: #fff !important;
  color: var(--gc-navy) !important;
}

.gc-dashboard-nav {
  background: var(--gc-navy) !important;
  color: #fff !important;
  border-radius: var(--gc-radius) !important;
}

.gc-dashboard-nav a {
  color: rgba(255,255,255,.86) !important;
}

.gc-dashboard-nav a:hover,
.gc-dashboard-nav a[aria-current="page"],
.gc-dashboard-nav .is-active {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  box-shadow: inset 3px 0 0 var(--gc-gold);
}

.gc-dashboard-section {
  background: var(--gc-section) !important;
  border-radius: var(--gc-radius-lg) !important;
}

.gc-conversation-list,
.gc-message-thread,
.gc-notification-list,
.gc-review-list {
  background: #fff !important;
}

.gc-message-mine {
  background: #eef4fa !important;
  color: var(--gc-text) !important;
}

.gc-message-theirs {
  background: #fff8e7 !important;
  color: var(--gc-text) !important;
}

table,
.gc-table,
.gc-dashboard table,
.gc-panel table {
  width: 100%;
  background: #fff !important;
  color: var(--gc-text) !important;
  border-collapse: collapse;
  border: 1px solid var(--gc-border) !important;
}

table th,
.gc-table th,
.gc-dashboard table th,
.gc-panel table th {
  background: #f1f5f9 !important;
  color: var(--gc-navy) !important;
  border-bottom: 1px solid var(--gc-border) !important;
}

table td,
.gc-table td,
.gc-dashboard table td,
.gc-panel table td {
  color: var(--gc-text) !important;
  border-bottom: 1px solid #edf1f5 !important;
}

.gc-alert-success { background:#ecfdf3 !important; color:#166534 !important; border-color:#bbf7d0 !important; }
.gc-alert-error { background:#fef3f2 !important; color:#991b1b !important; border-color:#fecaca !important; }
.gc-alert-warning { background:#fffaeb !important; color:#92400e !important; border-color:#fde68a !important; }

.gc-pagination a,
.gc-pagination span {
  background:#fff !important;
  color:var(--gc-navy) !important;
  border:1px solid var(--gc-border) !important;
}

.gc-pagination .current,
.gc-pagination a:hover {
  background:var(--gc-navy) !important;
  color:#fff !important;
  border-color:var(--gc-navy) !important;
}

@media (max-width: 782px) {
  .gc-market-hero { border-radius: 12px; }
  .gc-market-search { display: grid !important; grid-template-columns: 1fr !important; }
  .gc-dashboard { display: block !important; }
  .gc-dashboard-nav { margin-bottom: 18px; }
  .gc-panel,
  .gc-dashboard-section { overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .gc-category-card,
  .gc-premium-listing-card,
  .gc-dealer-card,
  .gc-rfq-card,
  .gc-plan-card,
  .gc-btn { transition: none !important; }
}


/* ==========================================================
   Official GoldConnect brand palette override
   Primary: #F86303 | Secondary: #0B0055 | Text: #050505 | Accent: #FFFFFF
========================================================== */
:root {
  --gc-primary: #F86303;
  --gc-primary-hover: #E35700;
  --gc-primary-light: #FFE8DA;
  --gc-secondary: #0B0055;
  --gc-secondary-hover: #18007A;
  --gc-secondary-light: #ECEAFF;
  --gc-navy: #0B0055;
  --gc-navy-hover: #18007A;
  --gc-gold: #F86303;
  --gc-gold-hover: #E35700;
  --gc-bg: #FFFFFF;
  --gc-section: #F7F8FC;
  --gc-card: #FFFFFF;
  --gc-text: #050505;
  --gc-muted: #60646C;
  --gc-border: #E5E7EB;
}

.gc-marketplace-home, .gc-dashboard, .gc-dealer-dashboard, .gc-membership-account,
.gc-conversation, .gc-review-list, .gc-notification-list, .gc-rfq-grid,
.gc-offer-timeline, .gc-panel, .gc-form-card { color: #050505; }

.gc-market-hero {
  background: linear-gradient(115deg, #FFFFFF 0%, #FAFAFC 68%, #F2F0FF 100%);
  border-color: #E5E7EB;
}
.gc-market-hero::after {
  background: linear-gradient(135deg, rgba(248,99,3,.10), rgba(11,0,85,.035));
}
.gc-market-hero h1, .gc-market-section h2, .gc-market-cta h2,
.gc-card h2, .gc-card h3, .gc-premium-listing-card h3,
.gc-dealer-card h3, .gc-rfq-card h3, .gc-plan-card h3 { color: #0B0055; }

.gc-btn, button.gc-btn, input.gc-btn, .gc-form button, .gc-market-search button,
.gc-rfq-response-form button, .gc-message-form button, .gc-reply-form button {
  background: #F86303 !important;
  border-color: #F86303 !important;
  color: #FFFFFF !important;
  box-shadow: 0 7px 18px rgba(248,99,3,.18) !important;
}
.gc-btn:hover, button.gc-btn:hover, input.gc-btn:hover, .gc-form button:hover,
.gc-market-search button:hover, .gc-rfq-response-form button:hover,
.gc-message-form button:hover, .gc-reply-form button:hover {
  background: #E35700 !important;
  border-color: #E35700 !important;
  color: #FFFFFF !important;
}
.gc-btn-outline { background: #FFFFFF !important; color: #0B0055 !important; border-color: #0B0055 !important; }
.gc-btn-outline:hover { background: #0B0055 !important; color: #FFFFFF !important; }

.gc-eyebrow, .gc-price, .gc-count, .gc-category-card__icon, .gc-stat-icon { color: #F86303 !important; }
.gc-category-card__icon, .gc-stat-icon { background: #FFE8DA !important; }
.gc-category-card:hover, .gc-premium-listing-card:hover, .gc-dealer-card:hover,
.gc-rfq-card:hover, .gc-plan-card:hover { border-color: rgba(248,99,3,.58) !important; }

.gc-card-badge, .gc-sponsored-label, .gc-featured { background: #F86303 !important; color: #FFFFFF !important; }
.gc-verified-badge, .gc-verified { background: #ECFDF3 !important; color: #166534 !important; }

.gc-market-search input:focus, .gc-market-search select:focus, .gc-form input:focus,
.gc-form select:focus, .gc-form textarea:focus, .gc-search input:focus,
.gc-search select:focus, .gc-rfq-response-form input:focus,
.gc-rfq-response-form textarea:focus, .gc-message-form textarea:focus {
  border-color: #F86303 !important;
  box-shadow: 0 0 0 3px rgba(248,99,3,.14) !important;
}

.gc-dashboard-nav, .gc-dashboard-sidebar, .gc-sidebar { background: #0B0055 !important; color: #FFFFFF !important; }
.gc-dashboard-nav a, .gc-dashboard-sidebar a, .gc-sidebar a { color: rgba(255,255,255,.88) !important; }
.gc-dashboard-nav a:hover, .gc-dashboard-nav a.is-active,
.gc-dashboard-sidebar a:hover, .gc-dashboard-sidebar a.is-active,
.gc-sidebar a:hover, .gc-sidebar a.is-active { background: rgba(248,99,3,.16) !important; color: #FFFFFF !important; }

.gc-table th, table.gc-table th { background: #0B0055 !important; color: #FFFFFF !important; }
.gc-table tr:hover, table.gc-table tr:hover { background: #FFF7F2 !important; }

/* ==========================================================
   Beta 5: Admin-inspired light frontend
   Light grey canvas, white panels, navy headings, orange actions.
========================================================== */
html, body {
  background: #F1F3F6 !important;
  color: #050505 !important;
}

.gc-marketplace-home,
.gc-dashboard,
.gc-dealer-dashboard,
.gc-membership-account,
.gc-verification,
.gc-reviews,
.gc-messages,
.gc-orders,
.gc-offers,
.gc-escrow,
.gc-wallet,
.gc-invoices,
.gc-notifications,
.gc-rfq-marketplace,
.gc-rfq-dashboard,
.gc-listings,
.gc-marketplace-search {
  background: #F1F3F6 !important;
  color: #050505 !important;
}

.gc-marketplace-home {
  max-width: 1380px;
  padding-top: 28px;
}

/* Hero now behaves like a large admin welcome panel, not a dark banner. */
.gc-market-hero {
  background: #FFFFFF !important;
  color: #050505 !important;
  border: 1px solid #DDE1E7 !important;
  box-shadow: 0 8px 24px rgba(5, 5, 5, .07) !important;
}
.gc-market-hero::before,
.gc-market-hero::after {
  display: none !important;
}
.gc-market-hero h1 {
  color: #0B0055 !important;
}
.gc-market-hero p {
  color: #555B66 !important;
}
.gc-market-search {
  background: #F7F8FA !important;
  border: 1px solid #DDE1E7 !important;
  box-shadow: none !important;
}

/* White admin-style panels. */
.gc-card,
.gc-trade-card,
.gc-form-card,
.gc-panel,
.gc-premium-listing-card,
.gc-category-card,
.gc-dealer-card,
.gc-rfq-card,
.gc-plan-card,
.gc-notification,
.gc-conversation,
.gc-message,
.gc-review-card,
.gc-wallet-card,
.gc-order-card,
.gc-offer-card,
.gc-escrow-card,
.gc-invoice-card,
.gc-dashboard-card,
.gc-stat-card,
.gc-stats-grid > div,
.gc-listing-specs div,
.gc-offer-summary > div,
.gc-timeline-item {
  background: #FFFFFF !important;
  color: #050505 !important;
  border: 1px solid #DDE1E7 !important;
  box-shadow: 0 4px 14px rgba(5, 5, 5, .055) !important;
}

.gc-card:hover,
.gc-premium-listing-card:hover,
.gc-category-card:hover,
.gc-dealer-card:hover,
.gc-rfq-card:hover,
.gc-plan-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(5, 5, 5, .08) !important;
}

.gc-market-section,
.gc-market-section:nth-child(even),
.gc-account-section,
.gc-dashboard-content,
.gc-content {
  background: transparent !important;
}

/* Remove remaining dark decorative blocks. */
.gc-image-placeholder {
  background: #F3F4F6 !important;
  color: #0B0055 !important;
  border-bottom: 1px solid #E5E7EB !important;
}
.gc-ad-card {
  background: #FFFFFF !important;
  color: #050505 !important;
  border: 1px solid #DDE1E7 !important;
  box-shadow: 0 4px 14px rgba(5, 5, 5, .055) !important;
}
.gc-ad-copy strong {
  color: #0B0055 !important;
}
.gc-ad-copy span {
  color: #60646C !important;
}
.gc-market-cta {
  background: #FFFFFF !important;
  border: 1px solid #DDE1E7 !important;
  box-shadow: 0 4px 14px rgba(5, 5, 5, .055) !important;
}

/* Dashboard: admin-like light workspace. Keep only the sidebar navy. */
.gc-dashboard-layout,
.gc-dashboard-main,
.gc-dashboard-workspace {
  background: #F1F3F6 !important;
}
.gc-dashboard-sidebar,
.gc-sidebar {
  background: #0B0055 !important;
  box-shadow: none !important;
}
.gc-dashboard-nav {
  background: #FFFFFF !important;
  border: 1px solid #DDE1E7 !important;
  box-shadow: 0 4px 14px rgba(5, 5, 5, .055) !important;
}
.gc-dashboard-nav a {
  color: #0B0055 !important;
}
.gc-dashboard-nav a:hover,
.gc-dashboard-nav a.is-active {
  background: #FFF0E6 !important;
  color: #D94F00 !important;
}

/* Admin-style tables: pale header instead of a dark slab. */
.gc-table,
table.gc-table,
.gc-table-wrap table,
.gc-dashboard table {
  background: #FFFFFF !important;
  color: #050505 !important;
  border: 1px solid #DDE1E7 !important;
}
.gc-table th,
table.gc-table th,
.gc-table-wrap th,
.gc-dashboard table th {
  background: #F5F6F8 !important;
  color: #0B0055 !important;
  border-bottom: 1px solid #DDE1E7 !important;
}
.gc-table td,
table.gc-table td,
.gc-table-wrap td,
.gc-dashboard table td {
  background: #FFFFFF !important;
  color: #050505 !important;
  border-bottom: 1px solid #ECEEF1 !important;
}
.gc-table tr:hover td,
table.gc-table tr:hover td {
  background: #FFF8F3 !important;
}

/* Forms mirror WordPress admin controls. */
.gc-form,
.gc-search,
.gc-filter-form,
.gc-rfq-response-form,
.gc-message-form,
.gc-reply-form {
  background: #FFFFFF !important;
  color: #050505 !important;
  border: 1px solid #DDE1E7 !important;
  box-shadow: 0 4px 14px rgba(5, 5, 5, .045) !important;
}
.gc-form input,
.gc-form select,
.gc-form textarea,
.gc-search input,
.gc-search select,
.gc-filter-form input,
.gc-filter-form select,
.gc-filter-form textarea,
.gc-market-search input,
.gc-market-search select,
.gc-rfq-response-form input,
.gc-rfq-response-form select,
.gc-rfq-response-form textarea,
.gc-message-form textarea,
.gc-reply-form textarea {
  background: #FFFFFF !important;
  color: #050505 !important;
  border: 1px solid #C9CED6 !important;
  box-shadow: none !important;
}

/* Typography consistency. */
.gc-marketplace-home h1,
.gc-marketplace-home h2,
.gc-marketplace-home h3,
.gc-dashboard h1,
.gc-dashboard h2,
.gc-dashboard h3,
.gc-card h1,
.gc-card h2,
.gc-card h3,
.gc-panel h1,
.gc-panel h2,
.gc-panel h3 {
  color: #0B0055 !important;
}
.gc-marketplace-home p,
.gc-card p,
.gc-panel p,
.gc-muted,
.gc-card-meta,
.gc-dealer-line {
  color: #5D626B !important;
}

/* Keep primary actions orange and secondary actions navy. */
.gc-btn,
button.gc-btn,
input.gc-btn,
.gc-form button,
.gc-market-search button,
.gc-rfq-response-form button,
.gc-message-form button,
.gc-reply-form button {
  background: #F86303 !important;
  border-color: #F86303 !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}
.gc-btn:hover,
button.gc-btn:hover,
input.gc-btn:hover,
.gc-form button:hover,
.gc-market-search button:hover,
.gc-rfq-response-form button:hover,
.gc-message-form button:hover,
.gc-reply-form button:hover {
  background: #D94F00 !important;
  border-color: #D94F00 !important;
}
.gc-btn-secondary {
  background: #0B0055 !important;
  border-color: #0B0055 !important;
  color: #FFFFFF !important;
}

@media (max-width: 780px) {
  .gc-market-hero {
    padding: 36px 22px !important;
    border-radius: 14px !important;
  }
  .gc-market-search {
    background: #FFFFFF !important;
  }
}

/* ==========================================================
   GOLDCONNECT ENTERPRISE BETA 6 — NEUTRAL CHAT-STYLE FRONTEND
   Neutral backgrounds. Brand colour is reserved for headings,
   links, buttons, icons and compact accents only.
========================================================== */
:root {
  --gc-page-grey: #f7f7f8;
  --gc-soft-grey: #f3f4f6;
  --gc-panel: #ffffff;
  --gc-line: #e5e7eb;
  --gc-copy: #2f3033;
  --gc-muted-copy: #6b7280;
  --gc-primary: #f86303;
  --gc-secondary: #0b0055;
}

/* Page canvas */
body,
.gc-marketplace-home,
.gc-listings,
.gc-search-results,
.gc-dealer-dashboard,
.gc-account-section,
.gc-rfq-marketplace,
.gc-membership-account,
.gc-verification-wrap,
.gc-messages-wrap,
.gc-wallet-wrap,
.gc-escrow-wrap,
.gc-orders-wrap,
.gc-offers-wrap,
.gc-notifications-wrap {
  background: var(--gc-page-grey) !important;
  color: var(--gc-copy) !important;
}

/* Neutral public hero — no dark panel */
.gc-market-hero,
.gc-hero,
.gc-page-hero,
.gc-marketplace-hero {
  background: var(--gc-page-grey) !important;
  background-image: none !important;
  color: var(--gc-copy) !important;
  border: 1px solid var(--gc-line) !important;
  box-shadow: none !important;
}
.gc-market-hero h1,
.gc-market-hero h2,
.gc-market-hero h3,
.gc-hero h1,
.gc-hero h2,
.gc-page-hero h1 {
  color: var(--gc-secondary) !important;
}
.gc-market-hero p,
.gc-hero p,
.gc-page-hero p {
  color: var(--gc-muted-copy) !important;
}
.gc-eyebrow {
  color: var(--gc-primary) !important;
}

/* Cards and panels */
.gc-card,
.gc-panel,
.gc-form,
.gc-form-card,
.gc-trade-card,
.gc-premium-listing-card,
.gc-dealer-card,
.gc-rfq-card,
.gc-plan-card,
.gc-conversation,
.gc-message-thread,
.gc-message-bubble,
.gc-notification,
.gc-trust-panel,
.gc-dashboard-summary > div,
.gc-table-wrap,
.gc-stats-grid > div,
.gc-category-card,
.gc-offer-summary > div,
.gc-timeline-item,
.gc-rfq-quotes > div,
.gc-listing-specs div,
.gc-wallet-card,
.gc-order-card,
.gc-escrow-card {
  background: var(--gc-panel) !important;
  background-image: none !important;
  color: var(--gc-copy) !important;
  border-color: var(--gc-line) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 6px 18px rgba(0, 0, 0, .035) !important;
}

/* Light grey secondary surfaces */
.gc-listing-specs div,
.gc-offer-summary > div,
.gc-timeline-item,
.gc-message-thread,
.gc-rfq-quotes > div,
.gc-review-list article,
.gc-count,
.gc-empty-state {
  background: var(--gc-soft-grey) !important;
}

/* Headings, links and prices carry the brand colours */
h1, h2, h3, h4, h5, h6,
.gc-section-heading h2,
.gc-premium-listing-card h3,
.gc-dealer-card h3,
.gc-rfq-card h3,
.gc-plan-card h3,
.gc-stat-card strong,
.gc-price,
.gc-plan-price {
  color: var(--gc-secondary) !important;
}
.gc-marketplace-home a:not(.gc-btn),
.gc-dealer-dashboard a:not(.gc-btn),
.gc-account-section a:not(.gc-btn),
.gc-rfq-marketplace a:not(.gc-btn),
.gc-membership-account a:not(.gc-btn) {
  color: var(--gc-secondary) !important;
}
.gc-marketplace-home a:not(.gc-btn):hover,
.gc-dealer-dashboard a:not(.gc-btn):hover,
.gc-account-section a:not(.gc-btn):hover,
.gc-rfq-marketplace a:not(.gc-btn):hover,
.gc-membership-account a:not(.gc-btn):hover {
  color: var(--gc-primary) !important;
}

/* Forms */
.gc-market-search,
.gc-rfq-filter,
.gc-form-grid,
.gc-reply-form,
.gc-message-form {
  background: var(--gc-panel) !important;
  border: 1px solid var(--gc-line) !important;
  box-shadow: none !important;
}
.gc-form input,
.gc-form select,
.gc-form textarea,
.gc-market-search input,
.gc-market-search select,
.gc-rfq-filter input,
.gc-rfq-filter select,
.gc-form-card input,
.gc-form-card select,
.gc-form-card textarea,
.gc-action-row input,
.gc-reply-form textarea,
.gc-message-form textarea {
  background: #ffffff !important;
  color: var(--gc-copy) !important;
  border-color: #d9dce1 !important;
  box-shadow: none !important;
}
.gc-form input:focus,
.gc-form select:focus,
.gc-form textarea:focus,
.gc-market-search input:focus,
.gc-market-search select:focus {
  border-color: var(--gc-primary) !important;
  outline: 3px solid rgba(248, 99, 3, .12) !important;
}

/* Tables use neutral fills */
.gc-table,
table.gc-table,
.gc-table-wrap table {
  background: #ffffff !important;
  color: var(--gc-copy) !important;
}
.gc-table th,
table.gc-table th,
.gc-table-wrap th {
  background: var(--gc-soft-grey) !important;
  color: var(--gc-secondary) !important;
  border-color: var(--gc-line) !important;
}
.gc-table td,
table.gc-table td,
.gc-table-wrap td {
  background: #ffffff !important;
  color: var(--gc-copy) !important;
  border-color: var(--gc-line) !important;
}

/* Neutralise remaining dark media/banner blocks */
.gc-image-placeholder,
.gc-ad-card,
.gc-market-cta,
.gc-dealer-logo {
  background: var(--gc-soft-grey) !important;
  background-image: none !important;
  color: var(--gc-secondary) !important;
  border: 1px solid var(--gc-line) !important;
  box-shadow: none !important;
}
.gc-ad-copy strong,
.gc-ad-copy span {
  color: var(--gc-copy) !important;
}

/* Dashboard navigation follows the same neutral frontend feel */
.gc-dashboard-nav,
.gc-dashboard-sidebar,
.gc-sidebar {
  background: #ffffff !important;
  background-image: none !important;
  color: var(--gc-copy) !important;
  border: 1px solid var(--gc-line) !important;
  box-shadow: none !important;
}
.gc-dashboard-nav a,
.gc-dashboard-sidebar a,
.gc-sidebar a {
  color: var(--gc-secondary) !important;
  background: transparent !important;
}
.gc-dashboard-nav a:hover,
.gc-dashboard-sidebar a:hover,
.gc-sidebar a:hover,
.gc-dashboard-nav a.is-active,
.gc-dashboard-sidebar a.is-active,
.gc-sidebar a.is-active {
  color: var(--gc-primary) !important;
  background: #fff5ee !important;
}

/* Buttons remain the main bright element */
.gc-btn,
button.gc-btn,
input.gc-btn,
.gc-form button,
.gc-market-search button,
.gc-rfq-response-form button,
.gc-message-form button,
.gc-reply-form button {
  background: var(--gc-primary) !important;
  border-color: var(--gc-primary) !important;
  color: #ffffff !important;
}
.gc-btn:hover,
button.gc-btn:hover,
input.gc-btn:hover,
.gc-form button:hover,
.gc-market-search button:hover,
.gc-rfq-response-form button:hover,
.gc-message-form button:hover,
.gc-reply-form button:hover {
  background: #dc5200 !important;
  border-color: #dc5200 !important;
}
.gc-btn-secondary {
  background: var(--gc-secondary) !important;
  border-color: var(--gc-secondary) !important;
  color: #ffffff !important;
}
.gc-btn-outline {
  background: #ffffff !important;
  color: var(--gc-secondary) !important;
  border-color: #c9cbd1 !important;
}

/* Compact accents only */
.gc-card-badge,
.gc-sponsored-label,
.gc-unread {
  background: var(--gc-primary) !important;
  color: #ffffff !important;
}
.gc-timeline-item::before {
  background: var(--gc-primary) !important;
}

@media (max-width: 780px) {
  .gc-market-hero,
  .gc-hero,
  .gc-page-hero {
    padding: 32px 20px !important;
  }
}
.gc-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}.gc-registration-form{max-width:920px;margin:0 auto;background:#fff;border:1px solid #d1d5db;border-radius:16px;padding:32px}.gc-registration-form h2{color:#0b0055}.gc-registration-form .gc-btn{background:#f86303;color:#fff}

/* Beta 10 dealer workspace */
.gc-workspace{max-width:1480px;margin:0 auto;padding:32px 20px 72px;color:#050505}.gc-workspace-hero{display:flex;justify-content:space-between;gap:28px;align-items:center;background:#fff;border:1px solid #d7d9dc;border-radius:18px;padding:34px;margin-bottom:24px}.gc-workspace-hero h1{color:#0b0055;margin:.25rem 0;font-size:clamp(2rem,4vw,3.25rem)}.gc-eyebrow{color:#f86303;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.gc-completion-card{min-width:230px;background:#f4f4f5;border-radius:14px;padding:20px;text-align:center}.gc-completion-card strong{display:block;color:#0b0055;font-size:2.2rem}.gc-completion-card span{display:block;margin-bottom:10px}.gc-progress{height:10px;background:#d6d8da;border-radius:999px;overflow:hidden}.gc-progress i{display:block;height:100%;background:#f86303}.gc-workspace-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-bottom:24px}.gc-workspace-stats article,.gc-workspace-panel{background:#fff;border:1px solid #d7d9dc;border-radius:16px;padding:24px}.gc-workspace-stats strong{display:block;color:#0b0055;font-size:1.8rem}.gc-workspace-stats span{color:#555}.gc-workspace-grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(300px,1fr);gap:24px}.gc-workspace-panel h2{color:#0b0055}.gc-workspace-sidebar{display:grid;gap:24px;align-content:start}.gc-checkbox-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.gc-checkbox-grid label{display:flex;gap:8px;align-items:center;background:#f4f4f5;padding:10px;border-radius:9px}.gc-document-list{display:grid;gap:10px;margin-top:20px}.gc-document-list article{display:flex;justify-content:space-between;gap:12px;align-items:center;border-top:1px solid #e1e2e4;padding-top:12px}.gc-document-list small{display:block;color:#666}.gc-status{display:inline-flex;padding:5px 10px;border-radius:999px;font-size:.85rem;font-weight:700}.gc-status-pending{background:#fff0e6;color:#b64600}.gc-status-approved{background:#e8f7ee;color:#137333}.gc-status-rejected{background:#fdecec;color:#a61b1b}@media(max-width:900px){.gc-workspace-hero{align-items:flex-start;flex-direction:column}.gc-completion-card{width:100%}.gc-workspace-stats{grid-template-columns:repeat(2,1fr)}.gc-workspace-grid{grid-template-columns:1fr}}@media(max-width:560px){.gc-workspace-stats,.gc-checkbox-grid{grid-template-columns:1fr}}

/* =========================================================
   GoldConnect frontend login
========================================================= */
.gc-login-shell{width:min(1180px,calc(100% - 32px));margin:64px auto;display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,520px);gap:48px;align-items:center;color:#050505}.gc-login-intro{padding:32px}.gc-login-intro h1{margin:8px 0 18px;color:#0b0055;font-size:clamp(40px,5vw,64px);line-height:1.05}.gc-login-intro>p{font-size:19px;max-width:650px}.gc-kicker,.gc-account-pill{display:inline-flex;padding:7px 12px;border-radius:999px;background:rgba(248,99,3,.12);color:#c94e00;font-weight:800;font-size:14px;text-transform:uppercase;letter-spacing:.06em}.gc-login-account-types{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:30px}.gc-login-account-types>div{padding:20px;border:1px solid #d1d5db;border-radius:14px;background:#fff}.gc-login-account-types strong,.gc-login-account-types span{display:block}.gc-login-account-types strong{color:#0b0055;font-size:18px}.gc-login-account-types span{margin-top:5px;color:#5f6368}.gc-login-card{padding:36px;border:1px solid #d1d5db;border-radius:20px;background:#fff;box-shadow:0 16px 40px rgba(15,23,42,.1)}.gc-login-card h2{margin:0 0 22px;color:#0b0055;font-size:32px}.gc-login-form label{display:block;margin:16px 0 7px;font-weight:800}.gc-login-form input[type=text],.gc-login-form input[type=password]{width:100%;min-height:56px;padding:13px 15px;border:1px solid #bfc3c8;border-radius:11px;background:#fff;color:#050505;font-size:17px}.gc-login-form input:focus{border-color:#f86303;outline:3px solid rgba(248,99,3,.14)}.gc-password-field{position:relative}.gc-password-field input{padding-right:78px!important}.gc-password-toggle{position:absolute;right:8px;top:8px;min-height:40px;padding:0 12px;border:0;border-radius:8px;background:#eef0f2;color:#0b0055;font-weight:800;cursor:pointer}.gc-login-options{display:flex;justify-content:space-between;gap:18px;align-items:center;margin:16px 0 22px}.gc-checkbox{display:flex!important;gap:8px;align-items:center;margin:0!important}.gc-login-submit{width:100%}.gc-login-register-links{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:24px;padding-top:22px;border-top:1px solid #e1e3e6}.gc-login-register-links p{grid-column:1/-1;margin:0 0 4px;font-weight:800}.gc-login-register-links .gc-btn{width:100%;text-align:center}.gc-login-signed-in{text-align:center;margin:auto;grid-column:1/-1;max-width:620px}.gc-login-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:24px}@media(max-width:860px){.gc-login-shell{grid-template-columns:1fr;gap:18px;margin:32px auto}.gc-login-intro{padding:10px}.gc-login-account-types{grid-template-columns:1fr}.gc-login-card{padding:26px}}@media(max-width:560px){.gc-login-options{align-items:flex-start;flex-direction:column}.gc-login-register-links{grid-template-columns:1fr}.gc-login-card{padding:22px}}

/* =========================================================
   Beta 12: marketplace offers, enhanced cards and Africa directory
========================================================= */
.gc-market-offer-panel{
  margin:0 0 28px;
  padding:28px;
  border:2px solid rgba(248,99,3,.42);
  border-radius:20px;
  background:#fff;
  box-shadow:0 18px 44px rgba(15,23,42,.10);
  scroll-margin-top:110px;
}
.gc-market-offer-panel:focus{outline:4px solid rgba(248,99,3,.16)}
.gc-market-offer-panel .gc-section-heading{margin-bottom:18px}
.gc-offer-login-card{padding:28px;border-radius:16px;background:#f5f5f7;border:1px solid #d6d8dc;text-align:center}
.gc-offer-login-card h3{margin-top:0;color:#0b0055}
.gc-offer-login-card p{max-width:680px;margin:0 auto 18px;color:#50545a}
.gc-offer-form{border:0!important;box-shadow:none!important;padding:0!important;margin:0!important}

.gc-premium-listing-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.gc-premium-listing-card:hover{transform:translateY(-5px);border-color:rgba(248,99,3,.45);box-shadow:0 22px 48px rgba(15,23,42,.12)}
.gc-premium-listing-card__media{height:270px;background:#e7e9ec}
.gc-image-placeholder{background:#e7e9ec!important;color:#0b0055!important;padding:24px;text-align:center}
.gc-image-placeholder span{font-size:22px;font-weight:850}
.gc-listing-badges{position:absolute;top:14px;left:14px;right:14px;display:flex;gap:8px;align-items:center;justify-content:space-between}
.gc-listing-badges .gc-card-badge{position:static!important;color:#fff!important}
.gc-category-badge{display:inline-flex;padding:6px 10px;border-radius:999px;background:#fff;color:#0b0055;font-size:12px;font-weight:850;box-shadow:0 4px 16px rgba(15,23,42,.12)}
.gc-premium-listing-card__body{display:flex;flex:1;flex-direction:column;padding:24px}
.gc-premium-listing-card h3{font-size:24px;line-height:1.25;margin:12px 0 7px}
.gc-dealer-line{margin:0 0 16px!important;color:#555b64!important;font-size:15px!important}
.gc-dealer-line strong{color:#0b0055}
.gc-price-row{display:flex;justify-content:space-between;gap:14px;align-items:flex-end;margin-bottom:16px}
.gc-price-row .gc-price{margin:0;font-size:27px}
.gc-price-row>span{color:#5f6368;font-size:14px;font-weight:700}
.gc-listing-specs{grid-template-columns:repeat(3,minmax(0,1fr));margin-bottom:14px}
.gc-listing-specs div{border:1px solid #e1e3e6;background:#f5f5f7}
.gc-listing-specs dd{overflow-wrap:anywhere}
.gc-delivery-line{margin:0 0 18px;color:#4d5259;font-size:14px}
.gc-premium-listing-card .gc-card-actions{margin-top:auto;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.gc-premium-listing-card .gc-card-actions .gc-btn{width:100%;min-height:50px;padding:0 14px;text-align:center}

.gc-africa-directory{margin-top:24px}
.gc-africa-directory .gc-section-heading{align-items:center}
.gc-africa-directory .gc-section-heading p{margin:7px 0 0;color:#5f6368}
.gc-country-search{width:min(100%,360px)}
.gc-country-search input{width:100%;min-height:52px;padding:12px 15px;border:1px solid #bfc3c8!important;border-radius:12px!important;background:#fff!important;color:#050505!important;font-size:16px}
.gc-country-search input:focus{border-color:#f86303!important;outline:3px solid rgba(248,99,3,.14)}
.gc-country-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.gc-country-card{display:flex;flex-direction:column;gap:4px;min-height:84px;padding:16px 18px;border:1px solid #d4d7db;border-radius:13px;background:#fff;color:#0b0055!important;text-decoration:none!important;transition:.2s}
.gc-country-card strong{font-size:16px;line-height:1.3}
.gc-country-card span{color:#646970;font-size:13px}
.gc-country-card:hover{transform:translateY(-2px);border-color:#f86303;background:#fff8f3;color:#f86303!important;box-shadow:0 10px 22px rgba(15,23,42,.07)}
.gc-country-card[hidden]{display:none!important}

@media(max-width:1000px){
  .gc-country-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .gc-premium-listing-card__media{height:240px}
}
@media(max-width:700px){
  .gc-market-offer-panel{padding:20px}
  .gc-country-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gc-africa-directory .gc-section-heading{align-items:flex-start}
  .gc-country-search{width:100%}
  .gc-premium-listing-card .gc-card-actions{grid-template-columns:1fr}
  .gc-listing-specs{grid-template-columns:1fr}
  .gc-price-row{align-items:flex-start;flex-direction:column}
}
@media(max-width:420px){.gc-country-grid{grid-template-columns:1fr}}

/* =========================================================
   Beta 13: dedicated homepage listings and African countries
========================================================= */
.gc-home-showcase{width:min(1480px,calc(100% - 32px));margin:0 auto;padding:22px 0 72px;color:#050505}
.gc-home-showcase-section{margin:34px 0;padding:40px;border:1px solid #d2d5d9;border-radius:22px;background:#f3f4f5;box-shadow:0 12px 32px rgba(15,23,42,.07)}
.gc-home-section-head{display:flex;justify-content:space-between;gap:30px;align-items:flex-end;margin-bottom:26px}
.gc-home-section-head h2{margin:7px 0 10px;color:#0b0055;font-size:clamp(32px,4vw,48px);line-height:1.1}
.gc-home-section-head p{max-width:820px;margin:0;color:#50545a;font-size:18px}
.gc-home-section-link{flex:0 0 auto;color:#f86303!important;font-size:17px;font-weight:850;text-decoration:none!important}
.gc-home-section-link:hover{text-decoration:underline!important}
.gc-home-listing-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.gc-home-listing-card{display:flex;min-width:0;flex-direction:column;overflow:hidden;border:1px solid #d5d8dc;border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(15,23,42,.06);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.gc-home-listing-card:hover{transform:translateY(-5px);border-color:rgba(248,99,3,.55);box-shadow:0 20px 42px rgba(15,23,42,.13)}
.gc-home-listing-card__media{position:relative;height:235px;overflow:hidden;background:#dfe1e4}
.gc-home-listing-card__media img{width:100%;height:100%;object-fit:cover}
.gc-home-listing-placeholder{display:flex;width:100%;height:100%;align-items:center;justify-content:center;padding:24px;background:linear-gradient(135deg,#e5e7e9,#cfd2d5);color:#0b0055;text-align:center}
.gc-home-listing-placeholder span{font-size:21px;font-weight:850}
.gc-home-listing-badges{position:absolute;top:13px;right:13px;left:13px;display:flex;justify-content:space-between;gap:8px}
.gc-home-badge{display:inline-flex;padding:6px 10px;border-radius:999px;background:#fff;color:#0b0055;font-size:12px;font-weight:850;box-shadow:0 4px 14px rgba(15,23,42,.13)}
.gc-home-badge--featured{background:#f86303;color:#fff}
.gc-home-listing-card__body{display:flex;flex:1;flex-direction:column;padding:22px}
.gc-home-listing-meta{display:flex;justify-content:space-between;gap:10px;color:#62676e;font-size:13px;font-weight:700}
.gc-home-verified{color:#137333}
.gc-home-listing-card h3{margin:11px 0 6px;color:#0b0055;font-size:23px;line-height:1.25}
.gc-home-dealer-name{margin:0 0 16px;color:#555b63;font-size:15px;font-weight:750}
.gc-home-price-row{display:flex;justify-content:space-between;gap:12px;align-items:flex-end;margin:0 0 16px;padding:14px 0;border-top:1px solid #e5e7e9;border-bottom:1px solid #e5e7e9}
.gc-home-price-row strong{color:#f86303;font-size:24px;line-height:1.15}
.gc-home-price-row span{color:#656a71;font-size:13px;font-weight:700;text-align:right}
.gc-home-listing-specs{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin:0 0 18px;padding:0;list-style:none}
.gc-home-listing-specs li{min-width:0;padding:10px;border-radius:10px;background:#f1f2f3}
.gc-home-listing-specs span,.gc-home-listing-specs strong{display:block;overflow-wrap:anywhere}
.gc-home-listing-specs span{color:#686d74;font-size:11px;text-transform:uppercase;letter-spacing:.05em}
.gc-home-listing-specs strong{margin-top:3px;color:#0b0055;font-size:13px}
.gc-home-listing-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:auto}
.gc-home-listing-actions .gc-btn{width:100%;min-height:48px;padding:0 12px;font-size:14px;text-align:center}
.gc-home-empty-state{padding:46px 24px;border:1px dashed #bec2c7;border-radius:18px;background:#fff;text-align:center}
.gc-home-empty-state>span{display:block;color:#f86303;font-size:44px}.gc-home-empty-state h3{margin:8px 0;color:#0b0055}.gc-home-empty-state p{margin:0 0 20px;color:#5f646b}
.gc-home-section-head--countries{align-items:center}
.gc-home-country-search{width:min(100%,380px);flex:0 0 380px}
.gc-home-country-search input{width:100%;min-height:54px;padding:12px 16px;border:1px solid #b9bdc2!important;border-radius:12px!important;background:#fff!important;color:#050505!important;font-size:17px}
.gc-home-country-search input:focus{border-color:#f86303!important;outline:3px solid rgba(248,99,3,.15)}
.gc-home-country-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.gc-home-country-card{position:relative;display:flex;min-height:94px;flex-direction:column;justify-content:center;padding:17px 44px 17px 18px;border:1px solid #d1d4d8;border-radius:14px;background:#fff;color:#0b0055!important;text-decoration:none!important;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease}
.gc-home-country-card:hover{transform:translateY(-3px);border-color:#f86303;background:#fff8f3;box-shadow:0 10px 25px rgba(15,23,42,.08)}
.gc-home-country-card__name{font-size:16px;font-weight:850;line-height:1.25}
.gc-home-country-card__count{margin-top:5px;color:#686d74;font-size:13px}
.gc-home-country-card__arrow{position:absolute;right:17px;color:#f86303;font-size:23px;font-weight:800}
.gc-home-country-card[hidden]{display:none!important}
@media(max-width:1250px){.gc-home-listing-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.gc-home-country-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:900px){.gc-home-showcase-section{padding:28px}.gc-home-section-head{align-items:flex-start;flex-direction:column}.gc-home-country-search{width:100%;flex-basis:auto}.gc-home-listing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gc-home-country-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:580px){.gc-home-showcase{width:min(100% - 20px,1480px)}.gc-home-showcase-section{margin:22px 0;padding:20px;border-radius:17px}.gc-home-listing-grid,.gc-home-country-grid{grid-template-columns:1fr}.gc-home-listing-card__media{height:220px}.gc-home-listing-actions,.gc-home-listing-specs{grid-template-columns:1fr}.gc-home-price-row{align-items:flex-start;flex-direction:column}.gc-home-section-head h2{font-size:32px}}

/* Beta 14: dynamic header account experience */
.gc-menu-account-item{display:flex!important;align-items:center;margin-left:auto!important}
.gc-header-account{position:relative;display:flex;align-items:center;gap:8px;font-family:inherit}
.gc-header-account a{text-decoration:none!important}
.gc-header-login,.gc-header-join{display:inline-flex;min-height:44px;align-items:center;justify-content:center;padding:0 16px;border-radius:10px;font-size:14px;font-weight:800;white-space:nowrap}
.gc-header-login{border:1px solid #0b0055;color:#0b0055!important;background:#fff}
.gc-header-join{border:1px solid #f86303;background:#f86303;color:#fff!important}
.gc-header-icon-link{position:relative;display:inline-flex;width:42px;height:42px;align-items:center;justify-content:center;border:1px solid #d9dce1;border-radius:50%;background:#fff;color:#0b0055!important;font-size:18px}
.gc-header-icon-link:hover{border-color:#f86303;background:#fff8f3}
.gc-header-count{position:absolute;top:-5px;right:-5px;display:inline-flex;min-width:20px;height:20px;align-items:center;justify-content:center;padding:0 5px;border:2px solid #fff;border-radius:999px;background:#f86303;color:#fff;font-size:10px;font-weight:900}
.gc-account-trigger{display:flex;min-height:50px;align-items:center;gap:10px;padding:5px 10px 5px 6px;border:1px solid #d9dce1;border-radius:13px;background:#fff;color:#0b0055;cursor:pointer;font:inherit;text-align:left}
.gc-account-trigger:hover,.gc-account-trigger[aria-expanded="true"]{border-color:#f86303;box-shadow:0 8px 24px rgba(15,23,42,.09)}
.gc-account-avatar{display:inline-flex;width:38px;height:38px;flex:0 0 38px;align-items:center;justify-content:center;border-radius:50%;background:linear-gradient(135deg,#0b0055,#291b8f);color:#fff;font-size:13px;font-weight:900;letter-spacing:.03em}
.gc-account-avatar--large{width:48px;height:48px;flex-basis:48px;font-size:15px}
.gc-account-identity{display:flex;min-width:90px;flex-direction:column;line-height:1.15}
.gc-account-identity strong{max-width:150px;overflow:hidden;color:#0b0055;font-size:13px;text-overflow:ellipsis;white-space:nowrap}
.gc-account-identity small{margin-top:4px;color:#69707a;font-size:10px;font-weight:700}
.gc-account-chevron{color:#f86303;font-size:18px;font-weight:900;transition:transform .2s ease}
.gc-account-trigger[aria-expanded="true"] .gc-account-chevron{transform:rotate(180deg)}
.gc-account-dropdown{position:absolute;z-index:999999;top:calc(100% + 12px);right:0;width:310px;overflow:hidden;border:1px solid #d9dce1;border-radius:16px;background:#fff;box-shadow:0 22px 60px rgba(15,23,42,.18)}
.gc-account-dropdown[hidden]{display:none!important}
.gc-account-dropdown__header{display:flex;align-items:center;gap:12px;padding:18px;border-bottom:1px solid #e6e8eb;background:#f7f7f9}
.gc-account-dropdown__header div{min-width:0}.gc-account-dropdown__header strong,.gc-account-dropdown__header span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gc-account-dropdown__header strong{color:#0b0055;font-size:14px}.gc-account-dropdown__header span{margin-top:4px;color:#69707a;font-size:12px}
.gc-account-dropdown nav{display:grid;padding:8px}
.gc-account-dropdown nav a{display:flex;flex-direction:column;padding:10px 12px;border-radius:10px;color:#20242a!important}
.gc-account-dropdown nav a:hover{background:#fff4ec;color:#0b0055!important}
.gc-account-dropdown nav a span{font-size:13px;font-weight:850}.gc-account-dropdown nav a small{margin-top:3px;color:#747a83;font-size:11px}
.gc-account-logout{display:block;padding:14px 20px;border-top:1px solid #e6e8eb;background:#fff;color:#b42318!important;font-size:13px;font-weight:850}
.gc-account-logout:hover{background:#fff1f0}
@media(max-width:900px){.gc-menu-account-item{width:100%;margin-left:0!important}.gc-header-account{width:100%;flex-wrap:wrap}.gc-header-account--guest .gc-header-login,.gc-header-account--guest .gc-header-join{flex:1}.gc-account-trigger{flex:1}.gc-account-dropdown{top:calc(100% + 8px);right:0;left:0;width:100%}}
@media(max-width:520px){.gc-account-identity{display:none}.gc-header-icon-link{width:40px;height:40px}.gc-account-dropdown{position:fixed;top:auto;right:12px;bottom:12px;left:12px;width:auto;max-height:calc(100vh - 24px);overflow:auto}.gc-header-account--guest{display:grid;grid-template-columns:1fr 1fr}}

/* Beta 15: responsive profile dashboard and listings-first workspace */
.gc-dealer-dashboard,
.gc-membership-account,
.gc-membership-pricing,
.gc-dashboard-section,
.gc-dashboard-section > * {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.gc-dealer-dashboard {
  overflow: hidden;
}
.gc-dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 0 22px;
  padding: clamp(24px,4vw,42px);
  border: 1px solid #d8dbe0;
  border-radius: 22px;
  background: linear-gradient(135deg,#f4f5f7 0%,#ffffff 65%);
}
.gc-dashboard-hero__copy { min-width: 0; }
.gc-dashboard-hero h1 { margin: 7px 0 10px; font-size: clamp(30px,4vw,46px); line-height: 1.08; overflow-wrap: anywhere; }
.gc-dashboard-hero p { max-width: 720px; margin: 0; color: #5d636b; }
.gc-dashboard-hero__actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 10px; }
.gc-dashboard-summary {
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  width: 100%;
  margin-bottom: 20px;
}
.gc-dashboard-summary > div { min-width: 0; }
.gc-dashboard-summary .gc-stat-card strong { overflow-wrap: anywhere; }
.gc-dashboard-nav {
  display: flex !important;
  width: 100%;
  max-width: 100%;
  gap: 7px;
  margin: 0 0 22px;
  padding: 9px;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 14px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.gc-dashboard-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
}
.gc-dashboard-section {
  margin: 0 0 22px;
  overflow: hidden !important;
}
.gc-dashboard-section--primary { order: -1; }
.gc-dashboard-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.gc-dashboard-section__heading h2 { margin: 5px 0; }
.gc-dashboard-section__heading p { margin: 0; color: #636a73; }
.gc-dashboard-section--add-listing { scroll-margin-top: 110px; }
.gc-dashboard-section table,
.gc-dashboard-section .gc-table {
  width: 100% !important;
  max-width: 100% !important;
  table-layout: fixed;
}
.gc-dashboard-section th,
.gc-dashboard-section td {
  overflow-wrap: anywhere;
  word-break: normal;
}
.gc-membership-account > .gc-stats-grid {
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
}
.gc-plan-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit,minmax(min(100%,235px),1fr)) !important;
  width: 100%;
  max-width: 100%;
  gap: 18px;
  overflow: visible;
}
.gc-plan-card {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  transform: none !important;
}
.gc-plan-card ul { min-height: 0; }
.gc-membership-pricing { overflow: hidden; }

@media (max-width: 900px) {
  .gc-dashboard-hero { align-items: flex-start; flex-direction: column; }
  .gc-dashboard-hero__actions { width: 100%; }
  .gc-dashboard-hero__actions .gc-btn { flex: 1 1 190px; }
  .gc-dashboard-summary,
  .gc-membership-account > .gc-stats-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  .gc-dashboard-section__heading { align-items: flex-start; flex-direction: column; }
  .gc-dashboard-section table { table-layout: auto; }
  .gc-dashboard-section { overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 560px) {
  .gc-dashboard-hero { padding: 22px 18px; border-radius: 17px; }
  .gc-dashboard-hero__actions { display: grid; grid-template-columns: 1fr; }
  .gc-dashboard-summary,
  .gc-membership-account > .gc-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .gc-plan-grid { grid-template-columns: 1fr !important; }
  .gc-dashboard-section { padding: 18px !important; }
  .gc-dashboard-section__heading .gc-btn { width: 100%; }
}

/* Beta 16: active module navigation */
.gc-active-nav{display:flex;align-items:center;gap:6px;flex-wrap:wrap;min-width:0}
.gc-active-nav__link{display:inline-flex;align-items:center;min-height:44px;padding:0 13px;border-radius:10px;color:var(--gc-text,#172033);font-weight:700;text-decoration:none;white-space:nowrap}
.gc-active-nav__link:hover,.gc-active-nav__link.is-active{background:#fff4ed;color:#f86303}
.gc-active-nav .gc-header-account{margin-left:auto}
@media(max-width:900px){.gc-active-nav{align-items:stretch;flex-direction:column;width:100%}.gc-active-nav__link{width:100%}.gc-active-nav .gc-header-account{margin-left:0;width:100%}}


/* Beta 18: Listing document uploads */
.gc-document-upload{border:1px dashed #b7bbc2;border-radius:14px;padding:20px;background:#f8f8f9}.gc-document-upload h4{margin:0 0 6px;color:#0b0055}.gc-document-upload p,.gc-document-upload small{color:#5c6168}.gc-document-upload input[type=file]{display:block;width:100%;margin:14px 0;padding:14px;border:1px solid #d7d9dc;border-radius:10px;background:#fff}.gc-uploaded-documents{display:grid;gap:8px;margin-top:16px}.gc-uploaded-document{display:flex!important;justify-content:space-between;gap:16px;align-items:center;padding:11px 13px!important;border:1px solid #dfe1e5;border-radius:9px;background:#fff!important}.gc-uploaded-document a{margin-left:8px;color:#0b0055;font-weight:700}.gc-uploaded-document input{width:auto!important}@media(max-width:600px){.gc-uploaded-document{align-items:flex-start;flex-direction:column}}

.gc-listing-documents{display:grid;gap:6px;margin:14px 0;padding:12px;border-radius:10px;background:#f6f6f7}.gc-listing-documents a{color:#0b0055;font-weight:700;word-break:break-word}

/* Beta 22: Marketplace-first homepage */
.gc-beta22-home{display:grid;gap:30px;max-width:1380px;margin:0 auto;padding:24px clamp(14px,3vw,34px) 58px}.gc-b22-hero{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);gap:36px;align-items:center;padding:clamp(32px,6vw,76px);border-radius:28px;background:radial-gradient(circle at 85% 15%,rgba(255,180,79,.26),transparent 35%),linear-gradient(135deg,#08052b,#18104f 65%,#30186c);color:#fff;box-shadow:0 25px 70px rgba(16,9,65,.22)}.gc-b22-hero h1{max-width:820px;margin:8px 0 14px;font-size:clamp(36px,5vw,68px);line-height:1.02;letter-spacing:-.045em}.gc-b22-hero p{max-width:720px;margin:0;color:rgba(255,255,255,.78);font-size:18px}.gc-b22-hero .gc-eyebrow{color:#ffc36f}.gc-b22-search{display:grid;grid-template-columns:1fr;gap:12px;padding:18px;border:1px solid rgba(255,255,255,.18);border-radius:20px;background:rgba(255,255,255,.1);backdrop-filter:blur(12px)}.gc-b22-search input,.gc-b22-search select{min-height:52px;width:100%;padding:0 15px;border:1px solid rgba(255,255,255,.24);border-radius:12px;background:#fff;color:#18152b;font-size:15px}.gc-b22-search .gc-btn{min-height:52px}.gc-b22-quick-actions{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:-12px}.gc-b22-quick-actions a{display:flex;align-items:center;gap:12px;min-width:0;padding:17px 18px;border:1px solid #e4e6ea;border-radius:16px;background:#fff;color:#15152a;text-decoration:none;box-shadow:0 10px 30px rgba(20,20,45,.06);transition:.2s ease}.gc-b22-quick-actions a:hover{transform:translateY(-3px);border-color:#ff9c4a;box-shadow:0 15px 35px rgba(248,99,3,.12)}.gc-b22-quick-actions b{display:grid;place-items:center;flex:0 0 42px;height:42px;border-radius:12px;background:#fff2e8;color:#f86303;font-size:22px}.gc-b22-quick-actions span{font-weight:800}.gc-home-showcase-section{padding:clamp(22px,4vw,40px);border:1px solid #e5e7ec;border-radius:24px;background:#fff;box-shadow:0 15px 45px rgba(16,19,40,.055)}.gc-home-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:22px}.gc-home-section-head h2{margin:4px 0 6px;font-size:clamp(28px,3vw,42px);letter-spacing:-.035em}.gc-home-section-head p{max-width:760px;margin:0;color:#68707b}.gc-home-section-link{font-weight:800;color:#f86303;text-decoration:none;white-space:nowrap}.gc-b22-listing-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.gc-b22-listing-card{min-width:0;overflow:hidden;border:1px solid #e2e4e9;border-radius:18px;background:#fff;transition:.22s ease}.gc-b22-listing-card:hover{transform:translateY(-5px);border-color:#ffb174;box-shadow:0 18px 42px rgba(24,20,56,.12)}.gc-b22-listing-media{position:relative;aspect-ratio:4/3;overflow:hidden;background:#f3f4f7}.gc-b22-listing-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.gc-b22-listing-card:hover .gc-b22-listing-media img{transform:scale(1.04)}.gc-b22-placeholder{display:grid;place-items:center;align-content:center;gap:10px;width:100%;height:100%;background:linear-gradient(145deg,#f8f1ff,#fff6ed);color:#2c1a64;font-weight:800}.gc-b22-placeholder svg{width:52px;height:52px;fill:#f86303}.gc-b22-badges{position:absolute;top:12px;left:12px;display:flex;gap:7px;flex-wrap:wrap}.gc-b22-badges span{padding:6px 9px;border-radius:999px;background:#fff;color:#201b42;font-size:11px;font-weight:900;box-shadow:0 4px 12px rgba(0,0,0,.12)}.gc-b22-badges .is-featured{background:#f86303;color:#fff}.gc-b22-badges .is-new{background:#0b8f65;color:#fff}.gc-favorite-button{position:absolute;top:10px;right:10px;display:grid;place-items:center;width:40px;height:40px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.94);color:#8b8d96;font-size:20px;cursor:pointer;box-shadow:0 5px 15px rgba(0,0,0,.12)}.gc-favorite-button.is-saved{color:#e63353;background:#fff0f3}.gc-b22-listing-body{padding:17px}.gc-b22-meta{display:flex;justify-content:space-between;gap:10px;color:#727784;font-size:12px}.gc-b22-listing-body h3{margin:9px 0 7px;font-size:19px;line-height:1.25}.gc-b22-listing-body h3 a{color:#17162c;text-decoration:none}.gc-b22-company{margin:0 0 13px;color:#606675;font-size:13px}.gc-b22-company span{color:#08765a;font-weight:800}.gc-b22-price{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;padding-top:13px;border-top:1px solid #eceef2}.gc-b22-price strong{color:#151346;font-size:17px}.gc-b22-price small{color:#7b808b}.gc-b22-actions{display:grid;grid-template-columns:1.3fr 1fr auto auto;gap:7px;margin-top:15px}.gc-b22-actions .gc-btn{display:grid;place-items:center;min-height:40px;padding:8px 10px;font-size:12px}.gc-b22-icon-action{display:grid;place-items:center;min-width:40px;min-height:40px;border:1px solid #dddfe5;border-radius:9px;color:#2b2851;font-size:11px;font-weight:900;text-decoration:none}.gc-b22-icon-action.is-whatsapp{border-color:#bce9d8;background:#effbf6;color:#087b54}.gc-b22-category-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.gc-b22-category-grid>a{position:relative;display:flex;flex-direction:column;min-height:180px;padding:22px;border:1px solid #e5e6ec;border-radius:18px;background:linear-gradient(145deg,#fff,#faf9ff);color:#1e1a3f;text-decoration:none;transition:.2s ease}.gc-b22-category-grid>a:hover{transform:translateY(-4px);border-color:#f9a566;box-shadow:0 16px 32px rgba(248,99,3,.1)}.gc-b22-category-icon{display:grid;place-items:center;width:58px;height:58px;margin-bottom:18px;border-radius:16px;background:#fff0e5}.gc-b22-category-icon svg{width:32px;height:32px;fill:#f86303}.gc-b22-category-grid strong{font-size:17px}.gc-b22-category-grid small{margin-top:4px;color:#717682}.gc-b22-category-grid i{position:absolute;right:18px;bottom:17px;color:#f86303;font-style:normal;font-size:22px}.gc-b22-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;overflow:hidden;border-radius:22px;background:#292258;color:#fff}.gc-b22-stats>div{padding:30px;text-align:center;background:linear-gradient(145deg,#181445,#292258)}.gc-b22-stats strong{display:block;font-size:clamp(30px,4vw,48px);letter-spacing:-.04em}.gc-b22-stats span{color:rgba(255,255,255,.7)}.gc-b22-country-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.gc-b22-country-grid a{display:flex;justify-content:space-between;gap:12px;padding:15px;border:1px solid #e6e7eb;border-radius:12px;color:#272344;text-decoration:none}.gc-b22-country-grid a:hover{border-color:#f6a062;background:#fff8f2}.gc-b22-country-grid span{color:#757a85;font-size:12px}
@media(max-width:1180px){.gc-b22-listing-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.gc-b22-category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:900px){.gc-b22-hero{grid-template-columns:1fr}.gc-b22-quick-actions{grid-template-columns:repeat(2,minmax(0,1fr))}.gc-b22-listing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gc-b22-country-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gc-home-section-head{align-items:flex-start;flex-direction:column}.gc-b22-stats{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.gc-beta22-home{padding-inline:10px}.gc-b22-hero{padding:26px 20px;border-radius:20px}.gc-b22-hero h1{font-size:38px}.gc-b22-quick-actions,.gc-b22-listing-grid,.gc-b22-category-grid,.gc-b22-country-grid{grid-template-columns:1fr}.gc-b22-quick-actions a{padding:14px}.gc-home-showcase-section{padding:20px 15px;border-radius:18px}.gc-b22-stats>div{padding:22px 12px}.gc-b22-actions{grid-template-columns:1fr 1fr auto}.gc-b22-actions .is-whatsapp{display:none}}


/* Beta 23: reliable seller journey and homepage conversion enhancements */
.gc-b23-trust-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;overflow:hidden;margin-top:-12px;border:1px solid #e8e9ee;border-radius:14px;background:#e8e9ee}.gc-b23-trust-strip span{padding:13px 16px;background:#fff;color:#4e5360;font-size:13px;font-weight:700;text-align:center}.gc-b23-submit-action{position:relative;overflow:hidden}.gc-b23-submit-action:after{content:"";position:absolute;inset:0;transform:translateX(-110%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.65),transparent);transition:transform .5s ease}.gc-b23-submit-action:hover:after{transform:translateX(110%)}.gc-b23-seller-cta{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:clamp(28px,5vw,52px);border-radius:24px;background:linear-gradient(125deg,#fff3e8,#f5f1ff);border:1px solid #f0d9c7}.gc-b23-seller-cta h2{max-width:820px;margin:5px 0 10px;font-size:clamp(28px,3.5vw,46px);letter-spacing:-.035em}.gc-b23-seller-cta p{max-width:780px;margin:0;color:#626875}.gc-b23-seller-cta .gc-btn{flex:0 0 auto;min-width:210px;min-height:52px;display:grid;place-items:center}.gc-seller-access-notice{padding:22px;border-radius:14px}.gc-seller-access-notice a{font-weight:800;text-decoration:underline}.gc-b22-listing-card:focus-within{outline:3px solid rgba(248,99,3,.22);outline-offset:3px}.gc-b22-actions a:focus-visible,.gc-b22-quick-actions a:focus-visible,.gc-b22-category-grid>a:focus-visible{outline:3px solid rgba(248,99,3,.35);outline-offset:3px}
@media(max-width:900px){.gc-b23-trust-strip{grid-template-columns:repeat(2,minmax(0,1fr))}.gc-b23-seller-cta{align-items:flex-start;flex-direction:column}.gc-b23-seller-cta .gc-btn{width:100%}}
@media(max-width:600px){.gc-b23-trust-strip{grid-template-columns:1fr}.gc-b23-trust-strip span{text-align:left}.gc-b23-seller-cta{padding:25px 20px;border-radius:18px}}

.gc-seller-upgrade-card{max-width:920px;margin:28px auto;padding:clamp(24px,5vw,46px);border:1px solid #eadfd5;border-radius:24px;background:linear-gradient(145deg,#fff,#fff8f2);box-shadow:0 18px 50px rgba(29,22,60,.08)}.gc-seller-upgrade-card h2{margin:6px 0 10px;font-size:clamp(28px,4vw,44px);letter-spacing:-.035em}.gc-seller-upgrade-card>div>p{max-width:720px;color:#646a76}.gc-seller-upgrade-card form{margin-top:24px;padding:0;background:transparent;border:0;box-shadow:none}

/* GoldConnect Enterprise v7 Alpha design tokens */
body{font-family:var(--gc-font);background:var(--gc-bg)}
.gc-home-showcase,.gc-v7-shell{max-width:var(--gc-container);margin-inline:auto}
.gc-b22-listing-card,.gc-home-showcase-section,.gc-v7-panel,.gc-v7-settings-card{border-radius:var(--gc-radius)}
.gc-btn-primary{background:var(--gc-primary)!important;border-color:var(--gc-primary)!important}
.gc-btn-outline{color:var(--gc-secondary);border-color:color-mix(in srgb,var(--gc-secondary) 30%,transparent)}
.gc-v7-shell{padding:36px 20px 72px}.gc-v7-page-head{padding:36px;background:linear-gradient(135deg,var(--gc-secondary),#293241);color:#fff;border-radius:calc(var(--gc-radius) + 6px);margin-bottom:24px}.gc-v7-page-head h1{color:#fff;margin:.35rem 0}.gc-v7-component-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.gc-v7-panel{background:var(--gc-surface);padding:24px;border:1px solid #e5e7eb;box-shadow:0 12px 30px rgba(15,23,42,.06)}
.gc-v7-badge,.gc-v7-status{display:inline-flex;align-items:center;padding:5px 10px;border-radius:999px;font-size:12px;font-weight:800}.gc-v7-badge.is-verified{background:#e8f7ef;color:#087443}.gc-v7-badge.is-premium{background:#fff5d8;color:#8a5c00}.gc-v7-status.is-live{background:#dcfce7;color:#166534}.gc-v7-status.is-review{background:#fef3c7;color:#92400e}
@media(max-width:760px){.gc-v7-component-grid{grid-template-columns:1fr}.gc-v7-page-head{padding:26px}}
