.gpcm-completion-page {
  --gpcm-brand-teal: #0f766e;
  --gpcm-brand-orange: #ea580c;
  --gpcm-border: #d8e5f0;
  --gpcm-text: #0f172a;
  --gpcm-muted: #475569;
  margin: 20px 0;
}

.gpcm-completion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.gpcm-completion-main,
.gpcm-completion-sidebar {
  min-width: 0;
}

.gpcm-completion-sidebar {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 12px;
}

.gpcm-upgrade-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  margin: 0;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.gpcm-completion-card {
  border-color: var(--gpcm-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gpcm-completion-hero {
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 46%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.15), transparent 45%),
    linear-gradient(140deg, #ffffff 0%, #eff8ff 100%);
}

.gpcm-completion-eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid #b5d2ef;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #134e78;
  background: #e7f2ff;
  margin-bottom: 8px;
}

.gpcm-completion-hero h2 {
  margin: 0 0 8px;
  color: var(--gpcm-text);
  font-size: 32px;
  line-height: 1.15;
}

.gpcm-completion-hero p {
  margin: 0;
  color: var(--gpcm-muted);
  font-size: 15px;
  line-height: 1.5;
}

.gpcm-completion-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gpcm-completion-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c9dbef;
  border-radius: 999px;
  background: #fff;
  color: #1e293b;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
}

.gpcm-upgrade-form .gpcm-field-group {
  margin-bottom: 14px;
}

.gpcm-upgrade-form .gpcm-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.gpcm-upgrade-form input[type="text"],
.gpcm-upgrade-form input[type="email"],
.gpcm-upgrade-form select,
.gpcm-upgrade-form textarea {
  width: 100%;
  border: 1px solid #cddaea;
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  color: #0f172a;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.gpcm-upgrade-form input[type="text"]:focus,
.gpcm-upgrade-form input[type="email"]:focus,
.gpcm-upgrade-form select:focus,
.gpcm-upgrade-form textarea:focus {
  border-color: #2f80ed;
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.16);
  outline: none;
}

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

.gpcm-completion-form .gpcm-field-group {
  margin-bottom: 0;
}

.gpcm-field-group--full {
  grid-column: 1 / -1;
}

.gpcm-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gpcm-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.gpcm-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.gpcm-alert::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex: 0 0 22px;
  margin-top: 1px;
  background: currentColor;
  opacity: 0.16;
}

.gpcm-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.gpcm-alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.gpcm-dashboard-inline-notice,
.gpcm-profile-box .alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 16px;
  padding: 15px 16px;
  margin: 0 0 18px;
  border: 1px solid #dbe4ee;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.gpcm-dashboard-inline-notice__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  margin-top: 1px;
  position: relative;
  background: rgba(15, 23, 42, 0.08);
}

.gpcm-dashboard-inline-notice__icon::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.gpcm-dashboard-inline-notice__text {
  color: #1f2937;
  font-size: 14px;
  line-height: 1.6;
}

.gpcm-dashboard-inline-notice--success,
.gpcm-profile-box .alert.alert-success {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.gpcm-dashboard-inline-notice--success .gpcm-dashboard-inline-notice__icon,
.gpcm-profile-box .alert.alert-success::before {
  background: rgba(5, 150, 105, 0.14);
}

.gpcm-dashboard-inline-notice--success .gpcm-dashboard-inline-notice__icon::before {
  content: "✓";
  color: #047857;
}

.gpcm-dashboard-inline-notice--warning,
.gpcm-profile-box .alert.alert-warning,
.gpcm-profile-box .alert.alert-info {
  border-color: #fcd34d;
  background: #fff8e7;
  color: #92400e;
}

.gpcm-dashboard-inline-notice--warning .gpcm-dashboard-inline-notice__icon,
.gpcm-profile-box .alert.alert-warning::before,
.gpcm-profile-box .alert.alert-info::before {
  background: rgba(245, 158, 11, 0.16);
}

.gpcm-business-logo-summary {
  display: grid;
  gap: 8px;
}

.gpcm-business-logo-summary__label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.gpcm-business-logo-summary__card {
  min-height: 82px;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.gpcm-business-logo-summary__card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.gpcm-business-logo-summary__placeholder {
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

.gpcm-business-card-editor {
  border: 1px solid #d8e5f0;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  padding: 16px;
}

.gpcm-business-media-card {
  display: grid;
  gap: 12px;
  height: 100%;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.gpcm-business-media-card--plain {
  box-shadow: none;
}

.gpcm-business-media-card__head {
  display: grid;
  gap: 4px;
}

.gpcm-business-media-card__head strong {
  font-size: 15px;
  color: #0f172a;
}

.gpcm-business-media-card__head span {
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

.gpcm-business-media-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gpcm-business-logo-preview {
  min-height: 124px;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 45%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.gpcm-business-logo-preview img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.gpcm-business-logo-preview__placeholder,
.gpcm-business-gallery-empty {
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

.gpcm-business-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gpcm-business-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #d7e3f4;
  border-radius: 999px;
  background: #f8fbff;
  cursor: pointer;
  transition: all .2s ease;
}

.gpcm-business-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.gpcm-business-chip span {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.gpcm-business-chip.is-active {
  border-color: rgba(234, 88, 12, 0.4);
  background: rgba(249, 115, 22, 0.12);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.12);
}

.gpcm-business-chip.is-active span {
  color: #9a3412;
}

.gpcm-business-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 10px;
}

.gpcm-business-gallery-item {
  position: relative;
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  min-height: 78px;
}

.gpcm-business-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 78px;
  object-fit: cover;
  display: block;
}

.gpcm-business-gallery-item__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.gpcm-business-directory-toggle {
  display: grid;
  gap: 6px;
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
}

.gpcm-business-directory-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.gpcm-business-directory-toggle small {
  display: block;
  margin-left: 28px;
}

@media (max-width: 767px) {
  .gpcm-business-media-card {
    padding: 12px;
  }

  .gpcm-business-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  }
}

.gpcm-dashboard-inline-notice--warning .gpcm-dashboard-inline-notice__icon::before {
  content: "!";
  color: #b45309;
}

.gpcm-dashboard-inline-notice--error,
.gpcm-profile-box .alert.alert-danger {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.gpcm-dashboard-inline-notice--error .gpcm-dashboard-inline-notice__icon,
.gpcm-profile-box .alert.alert-danger::before {
  background: rgba(220, 38, 38, 0.14);
}

.gpcm-dashboard-inline-notice--error .gpcm-dashboard-inline-notice__icon::before {
  content: "×";
  color: #b91c1c;
}

.gpcm-profile-box .alert {
  position: relative;
}

.gpcm-profile-box .alert::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex: 0 0 22px;
  margin-top: 1px;
}

.gpcm-hide-legacy-profile-links {
  display: none !important;
}

[data-gp-user-menu] .gp-user-trigger {
  border-radius: 18px;
}

[data-gp-user-menu] .gp-user-avatar {
  border-radius: 14px;
}

.gpcm-lookup-btn {
  margin-top: 8px;
  border-radius: 10px;
  padding: 8px 14px;
}

.gpcm-lookup-status {
  margin-top: 8px;
  border-radius: 8px;
  padding: 8px 10px;
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 1.45;
}

.gpcm-lookup-status.is-info {
  background: #f3f8ff;
  border-color: #c8dcff;
  color: #1f4f90;
}

.gpcm-lookup-status.is-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.gpcm-lookup-status.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.gpcm-lookup-status.is-warning {
  background: #fff8e7;
  border-color: #fcd34d;
  color: #92400e;
}

.gpcm-profile-name-hint {
  display: block;
  margin-top: 8px;
}

.gpcm-profile-name-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.gpcm-profile-name-suggestions__label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

.gpcm-profile-name-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #d7e6ff;
  background: #f8fbff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease, transform .16s ease;
}

.gpcm-profile-name-chip:hover,
.gpcm-profile-name-chip:focus {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.gpcm-verified-badge-wrap {
  margin-top: 10px;
}

.gpcm-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #0b7b45;
  background: linear-gradient(135deg, #0d8a4f 0%, #0e6e8f 100%);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gpcm-verified-badge::before {
  content: "✔";
  font-size: 11px;
  line-height: 1;
}

.gpcm-celebration-toast {
  position: fixed;
  right: 18px;
  top: 84px;
  z-index: 99999;
  max-width: 360px;
  width: calc(100% - 32px);
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(132deg, #0f7a4b 0%, #0f5f7b 100%);
  color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(9, 30, 66, 0.28);
  padding: 12px 14px;
  opacity: 0;
  transform: translateX(115%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.gpcm-celebration-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.gpcm-celebration-toast__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.gpcm-celebration-toast__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.gpcm-profile-box {
  border: 1px solid #eceff3;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  background: #fff;
}

.gpcm-profile-box h5 {
  margin: 0 0 10px;
}

.gpcm-radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gpcm-header-preview {
  margin-top: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.gpcm-header-preview img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

#gpcm-custom-upload-panel[hidden] {
  display: none !important;
}

.gpcm-upload-progress {
  margin: 12px 0 14px;
  padding: 10px 12px;
  border: 1px solid #d7e6ff;
  border-radius: 8px;
  background: #f7fbff;
}

.gpcm-upload-progress[hidden] {
  display: none !important;
}

.gpcm-upload-progress__track {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: #e3ecf9;
  overflow: hidden;
}

.gpcm-upload-progress__bar-inner {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #2f80ed 0%, #4ba3ff 100%);
  transition: width 0.18s ease;
}

.gpcm-upload-progress__meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #26547c;
  font-size: 13px;
}

.gpcm-upload-progress__spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #bad4ff;
  border-top-color: #2f80ed;
  border-radius: 50%;
  animation: gpcm-upload-spin 0.75s linear infinite;
}

.gpcm-upload-progress:not(.is-active) .gpcm-upload-progress__spinner {
  animation-play-state: paused;
  opacity: 0.55;
}

.gpcm-completion-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gpcm-completion-success-box {
  border: 1px solid #b7edcb;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0fff5 0%, #e8fff2 100%);
  padding: 14px;
}

.gpcm-completion-success-box h3 {
  margin: 0 0 6px;
  color: #065f46;
  font-size: 24px;
}

.gpcm-completion-success-box p {
  margin: 0;
  color: #1f2937;
}

.gpcm-completion-sidecard {
  border: 1px solid var(--gpcm-border);
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.gpcm-completion-sidecard h3 {
  margin: 0 0 10px;
  color: var(--gpcm-text);
  font-size: 18px;
}

.gpcm-completion-progress {
  width: 100%;
  height: 10px;
  background: #e5edf7;
  border-radius: 999px;
  overflow: hidden;
}

.gpcm-completion-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gpcm-brand-teal) 0%, var(--gpcm-brand-orange) 100%);
}

.gpcm-completion-progress-meta {
  margin: 8px 0 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.gpcm-completion-checklist,
.gpcm-completion-tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gpcm-completion-checklist li,
.gpcm-completion-tips li {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 9px 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.4;
  background: #f8fafc;
}

.gpcm-completion-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gpcm-completion-checklist li.is-done {
  border-color: #86efac;
  background: #ecfdf5;
  color: #166534;
}

.gpcm-check-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  flex: 0 0 auto;
}

.gpcm-completion-checklist li.is-done .gpcm-check-dot {
  background: #16a34a;
}

.gpcm-completion-sidebtn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

@media (max-width: 1080px) {
  .gpcm-completion-layout {
    grid-template-columns: 1fr;
  }

  .gpcm-completion-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .gpcm-completion-hero h2 {
    font-size: 26px;
  }

  .gpcm-completion-form .gpcm-completion-grid {
    grid-template-columns: 1fr;
  }
}

#gpcm-header-upload-submit.is-uploading,
[data-gpcm-menu-ai-parse].is-uploading,
[data-gpcm-menu-ai-create].is-uploading {
  position: relative;
  opacity: 0.88;
  pointer-events: none;
  padding-right: 42px;
}

#gpcm-header-upload-submit.is-uploading::after,
[data-gpcm-menu-ai-parse].is-uploading::after,
[data-gpcm-menu-ai-create].is-uploading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.16);
  border-top-color: currentColor;
  animation: gpcm-upload-spin 0.75s linear infinite;
}

@keyframes gpcm-upload-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.gpcm-public-header {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
}

.gpcm-company-name {
  font-weight: 600;
}

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

.gpcm-profile-tabs-nav button {
  border: 1px solid #d7dde5;
  background: #fff;
  border-radius: 6px;
  padding: 8px;
  font-size: 13px;
  cursor: pointer;
}

.gpcm-profile-tabs-nav button.is-active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.gpcm-tab-panel {
  display: none;
}

.gpcm-tab-panel.is-active {
  display: block;
}

:root {
  --gpcm-dashboard-top-offset: 0px;
  --gpcm-dashboard-bottom-offset: 0px;
  --gpcm-dashboard-sidebar-width: 300px;
}

body.page-template-page-theme-dashboard .sidebar-nav-wrapper {
  top: var(--gpcm-dashboard-top-offset) !important;
  height: calc(100vh - var(--gpcm-dashboard-top-offset) - var(--gpcm-dashboard-bottom-offset)) !important;
}

body.page-template-page-theme-dashboard .overlay {
  top: var(--gpcm-dashboard-top-offset) !important;
  height: calc(100vh - var(--gpcm-dashboard-top-offset)) !important;
}

body.gpcm-dashboard-with-site-chrome .sb-header,
body.gpcm-dashboard-with-site-chrome .adt-footer-section,
body.gpcm-dashboard-with-site-chrome .adt-light-footer,
body.gpcm-dashboard-with-site-chrome .adt-cybersale-footer,
body.gpcm-dashboard-with-site-chrome .adt-copyright-box {
  width: calc(100% - var(--gpcm-dashboard-sidebar-width)) !important;
  margin-left: var(--gpcm-dashboard-sidebar-width) !important;
}

body.gpcm-dashboard-with-site-chrome .sb-header {
  left: var(--gpcm-dashboard-sidebar-width) !important;
  right: 0 !important;
}

@media (max-width: 991px) {
  body.gpcm-dashboard-with-site-chrome .sb-header,
  body.gpcm-dashboard-with-site-chrome .adt-footer-section,
  body.gpcm-dashboard-with-site-chrome .adt-light-footer,
  body.gpcm-dashboard-with-site-chrome .adt-cybersale-footer,
  body.gpcm-dashboard-with-site-chrome .adt-copyright-box {
    width: 100% !important;
    margin-left: 0 !important;
  }

  body.gpcm-dashboard-with-site-chrome .sb-header {
    left: 0 !important;
  }
}

.gpcm-dashboard-package-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  background: #bae8f4;
  border: 1px solid #97d9ea;
  border-radius: 10px;
  padding: 12px;
  margin: 0 16px 16px;
}

.gpcm-dashboard-package-image {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  margin-bottom: 8px;
}

.gpcm-dashboard-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gpcm-dashboard-package-fallback {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff2cc 0%, #ffb347 100%);
  color: #5e3b00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px;
  margin-bottom: 8px;
  box-shadow: inset 0 0 0 1px rgba(94, 59, 0, 0.12);
}

.gpcm-dashboard-quick-links {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding-left: 10px;
  border-left: 1px solid rgba(148, 163, 184, 0.4);
}

.gpcm-dashboard-quick-links.is-visible {
  display: inline-flex;
}

.gpcm-dashboard-quick-link {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid #d8e2ee;
  background: #fff;
  color: #334155;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gpcm-dashboard-quick-link:hover,
.gpcm-dashboard-quick-link:focus {
  color: #0f172a;
  border-color: #f97316;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.gpcm-dashboard-quick-link__icon i {
  font-size: 16px;
}

.gpcm-dashboard-quick-link__label {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
  z-index: 40;
}

.gpcm-dashboard-quick-link:hover .gpcm-dashboard-quick-link__label,
.gpcm-dashboard-quick-link:focus .gpcm-dashboard-quick-link__label {
  opacity: 1;
}

@media (max-width: 1199px) {
  .gpcm-dashboard-quick-links,
  .gpcm-dashboard-quick-links.is-visible {
    display: none !important;
  }
}

.gpcm-dashboard-package-fallback span {
  display: block;
  font-size: 9px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.gpcm-dashboard-package-text {
  min-width: 0;
}

.gpcm-dashboard-package-title {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: #04556b;
  margin-bottom: 5px;
}

.gpcm-dashboard-package-name {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 500;
  color: #04556b;
  word-break: normal;
}

.gpcm-dashboard-package-subtitle {
  font-size: 16px;
  line-height: 1.2;
  color: #2a6577;
  margin-top: 4px;
}

.gpcm-dashboard-upgrade-btn {
  align-self: flex-end;
  margin-left: 0;
  border: 0;
  border-radius: 10px;
  background: #1e65f3;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 72px;
  padding: 8px 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.gpcm-dashboard-upgrade-btn:hover,
.gpcm-dashboard-upgrade-btn:focus {
  color: #fff;
  text-decoration: none;
  background: #1a57d0;
}

.gpcm-dashboard-upgrade-btn--hero {
  min-height: 54px;
  min-width: 220px;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 700;
}

.gpcm-dashboard-package-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid #f4c27c;
  border-radius: 18px;
  padding: 22px 24px;
  margin: 0 0 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 34%),
    linear-gradient(135deg, #fff7e8 0%, #ffe4b8 46%, #ffd18b 100%);
  box-shadow: 0 18px 40px rgba(180, 95, 10, 0.12);
}

.gpcm-dashboard-package-hero__content {
  min-width: 0;
  flex: 1 1 auto;
}

.gpcm-dashboard-package-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
  background: rgba(110, 52, 0, 0.08);
  color: #7a4200;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gpcm-dashboard-package-hero h3 {
  margin: 0 0 8px;
  color: #6f2d00;
  font-size: 28px;
  line-height: 1.05;
}

.gpcm-dashboard-package-hero p {
  margin: 0;
  max-width: 720px;
  color: #6f3c14;
  font-size: 15px;
  line-height: 1.55;
}

.gpcm-dashboard-package-hero__package {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gpcm-dashboard-package-hero__visual {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin-bottom: 0;
}

.gpcm-dashboard-package-hero__visual span {
  font-size: 11px;
}

.gpcm-dashboard-package-hero__name {
  color: #5b2900;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.gpcm-dashboard-package-hero__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.gpcm-package-choice-section {
  border: 1px solid #e9d0ab;
  border-radius: 18px;
  padding: 22px;
  margin: 0 0 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.52), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #fff1d5 52%, #ffe3b1 100%);
  box-shadow: 0 14px 34px rgba(173, 109, 29, 0.10);
}

.gpcm-package-choice-section--completion {
  margin-top: 20px;
}

.gpcm-package-choice-head {
  margin-bottom: 16px;
}

.gpcm-package-choice-eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(123, 63, 0, 0.08);
  color: #7a4200;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gpcm-package-choice-head h3 {
  margin: 10px 0 8px;
  color: #5c2d00;
  font-size: 28px;
  line-height: 1.08;
}

.gpcm-package-choice-head p {
  margin: 0;
  color: #714321;
  font-size: 15px;
  line-height: 1.55;
}

.gpcm-package-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gpcm-package-choice-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(116, 69, 14, 0.12);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(68, 42, 12, 0.06);
}

.gpcm-package-choice-card.is-recommended {
  border-color: #f59e0b;
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.16);
}

.gpcm-package-choice-card.is-current {
  border-color: #0f766e;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.12);
}

.gpcm-package-choice-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.gpcm-package-choice-card__eyebrow,
.gpcm-package-choice-card__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gpcm-package-choice-card__eyebrow {
  background: #fff4dc;
  color: #8a4b00;
}

.gpcm-package-choice-card__badge {
  background: #eefbf8;
  color: #0f766e;
}

.gpcm-package-choice-card__visual {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(92, 45, 0, 0.08);
  margin-bottom: 14px;
}

.gpcm-package-choice-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gpcm-package-choice-card__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  color: #6b3c00;
  background: linear-gradient(135deg, #fff2cc 0%, #ffcd76 100%);
}

.gpcm-package-choice-card h4 {
  margin: 0 0 6px;
  color: #402000;
  font-size: 24px;
  line-height: 1.08;
}

.gpcm-package-choice-card__meta {
  margin-bottom: 8px;
  color: #9a5800;
  font-size: 13px;
  font-weight: 700;
}

.gpcm-package-choice-card p {
  margin: 0;
  color: #5f452f;
  font-size: 14px;
  line-height: 1.55;
}

.gpcm-package-choice-card__actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.gpcm-package-choice-btn,
.gpcm-package-choice-card__status {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.gpcm-package-choice-btn {
  background: linear-gradient(135deg, #ef6c00 0%, #d97706 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 108, 0, 0.18);
}

.gpcm-package-choice-btn:hover,
.gpcm-package-choice-btn:focus {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #d85f00 0%, #b86304 100%);
}

.gpcm-package-choice-card__status {
  background: #ecfdf5;
  color: #0f766e;
  border: 1px solid #a7f3d0;
}

.gpcm-package-choice-section {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e6e7eb;
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.gpcm-package-choice-section--completion {
  margin-top: 28px;
}

.gpcm-package-choice-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.gpcm-package-choice-eyebrow {
  background: #fff3db;
  color: #a35c00;
}

.gpcm-package-choice-head h3 {
  color: #192132;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.gpcm-package-choice-head p {
  color: #5a6475;
  font-size: 18px;
  line-height: 1.55;
}

.gpcm-package-choice-grid {
  gap: 24px;
}

.gpcm-package-choice-card {
  align-items: center;
  text-align: center;
  border: 1px solid #e8eaf0;
  border-radius: 22px;
  padding: 24px 24px 22px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.gpcm-package-choice-card.is-recommended {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 24px 48px rgba(245, 158, 11, 0.14);
}

.gpcm-package-choice-card__top {
  width: 100%;
}

.gpcm-package-choice-card__visual {
  width: min(100%, 280px);
  height: 220px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
  margin: 6px 0 18px;
}

.gpcm-package-choice-card__visual img {
  object-fit: contain;
  padding: 10px;
}

.gpcm-package-choice-card h4 {
  margin-bottom: 10px;
  color: #212838;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.gpcm-package-choice-card__meta {
  margin-bottom: 10px;
  font-size: 14px;
}

.gpcm-package-choice-card p {
  max-width: 420px;
  color: #525c6f;
  font-size: 17px;
  line-height: 1.6;
}

.gpcm-package-choice-card__actions {
  width: 100%;
  margin-top: 18px;
}

.gpcm-package-choice-btn,
.gpcm-package-choice-card__status {
  min-height: 54px;
  border-radius: 14px;
  font-size: 18px;
}

.gpcm-package-choice-card--gastrostart .gpcm-package-choice-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.22);
}

.gpcm-package-choice-card--gastrostart .gpcm-package-choice-btn:hover,
.gpcm-package-choice-card--gastrostart .gpcm-package-choice-btn:focus {
  background: linear-gradient(135deg, #dc8a04 0%, #ea580c 100%);
}

.gpcm-package-choice-card--gastroprofi .gpcm-package-choice-btn {
  background: linear-gradient(135deg, #4f8cf6 0%, #2563eb 100%);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.20);
}

.gpcm-package-choice-card--gastroprofi .gpcm-package-choice-btn:hover,
.gpcm-package-choice-card--gastroprofi .gpcm-package-choice-btn:focus {
  background: linear-gradient(135deg, #3d7dea 0%, #1d4ed8 100%);
}

.sidebar-nav-wrapper .sidebar-nav .gpcm-nav-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar-nav-wrapper .sidebar-nav .gpcm-nav-item .icon i {
  font-size: 18px;
  line-height: 1;
}

.gpcm-dashboard-panel {
  border: 1px solid #eceff3;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
}

.gpcm-dashboard-panel h3,
.gpcm-dashboard-panel h4,
.gpcm-dashboard-panel h5 {
  margin-top: 0;
}

.gpcm-dashboard-guidelines {
  margin: 12px 0 0;
  padding-left: 18px;
}

.gpcm-dashboard-guidelines li {
  margin-bottom: 8px;
}

.gpcm-fav-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.gpcm-fav-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
}

.gpcm-fav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gpcm-fav-tab {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  padding: 7px 12px;
  text-decoration: none;
  color: #334155;
  background: #fff;
}

.gpcm-fav-tab.is-active {
  border-color: #1e65f3;
  color: #1e65f3;
  font-weight: 700;
}

.gpcm-fav-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}

.gpcm-fav-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.gpcm-fav-card h5 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
}

.gpcm-fav-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.gpcm-fav-price-row strong {
  color: #0f766e;
}

.gpcm-fav-price-row span {
  color: #b91c1c;
  text-decoration: line-through;
  font-size: 13px;
}

.gpcm-fav-link {
  margin-top: 8px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
}

.gpcm-alert-center {
  display: grid;
  gap: 16px;
}

.gpcm-alert-center__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gpcm-alert-center__hero h4,
.gpcm-alert-stack h4 {
  margin: 0 0 6px;
}

.gpcm-alert-center__hero p {
  margin: 0;
  max-width: 760px;
  color: #64748b;
  line-height: 1.65;
}

.gpcm-alert-center__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gpcm-alert-center__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.gpcm-alert-center__card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gpcm-alert-center__card strong {
  color: #0f172a;
  font-size: 15px;
}

.gpcm-alert-center__card span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.gpcm-alert-stack {
  scroll-margin-top: 96px;
}

@media (min-width: 992px) {
  .gpcm-fav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gpcm-header-preview-trigger {
  display: block;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gpcm-header-preview-trigger:hover,
.gpcm-header-preview-trigger:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.gpcm-header-preview-trigger img {
  display: block;
  width: 100%;
  height: auto;
}

.gpcm-header-preset-picker-wrap {
  margin-bottom: 22px;
}

.gpcm-header-preset-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gpcm-header-preset-card {
  position: relative;
  display: block;
  border: 1px solid #dbe2ea;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.gpcm-header-preset-card:hover {
  transform: translateY(-1px);
  border-color: #f59e0b;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.gpcm-header-preset-card.is-active {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18), 0 16px 34px rgba(245, 158, 11, 0.18);
}

.gpcm-header-preset-card.is-dimmed {
  opacity: 0.82;
}

.gpcm-header-preset-card__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.gpcm-header-preset-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1024 / 400;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
}

.gpcm-header-preset-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gpcm-header-preset-card__placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gpcm-header-preset-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.gpcm-header-preset-card__title {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.gpcm-header-preset-card__meta {
  display: block;
  color: #64748b;
  font-size: 12px;
}

.gpcm-header-preset-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gpcm-header-preview-state {
  display: grid;
  gap: 10px;
}

.gpcm-header-preview-caption[hidden],
.gpcm-header-preview-empty[hidden],
.gpcm-header-preview-trigger[hidden] {
  display: none !important;
}

.gpcm-image-preview-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(15, 23, 42, 0.82);
  padding: 24px;
  align-items: center;
  justify-content: center;
}

.gpcm-image-preview-modal.is-open {
  display: flex;
}

.gpcm-image-preview-modal__dialog {
  position: relative;
  width: min(1100px, calc(100vw - 48px));
  max-width: 1100px;
  max-height: calc(100vh - 48px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gpcm-image-preview-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
}

.gpcm-image-preview-modal__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  background: #0f172a;
  margin: 0 auto;
}

.gpcm-image-preview-modal__caption {
  margin-top: 10px;
  color: #e2e8f0;
  font-size: 14px;
  text-align: center;
}

.gpcm-menu-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.gpcm-menu-ai-actions .main-btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.gpcm-menu-ai-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #5f6b7a;
}

.gpcm-menu-ai-results {
  margin-top: 16px;
}

.gpcm-menu-ai-created,
.gpcm-menu-ai-existing {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #dbe4ef;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gpcm-menu-ai-created h4,
.gpcm-menu-ai-existing h4 {
  margin: 0 0 12px;
  font-size: 18px;
}

.gpcm-menu-ai-draft-list {
  display: grid;
  gap: 10px;
}

.gpcm-menu-ai-draft-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
}

.gpcm-menu-ai-draft-card strong {
  display: block;
  margin-bottom: 2px;
}

.gpcm-menu-ai-draft-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gpcm-menu-ai-delete-form {
  margin: 0;
}

.gpcm-btn-outline-danger {
  background: #fff !important;
  border: 1px solid #dc2626 !important;
  color: #dc2626 !important;
}

.gpcm-btn-outline-danger:hover,
.gpcm-btn-outline-danger:focus {
  background: #fee2e2 !important;
  border-color: #b91c1c !important;
  color: #991b1b !important;
}

.gpcm-menu-ai-input {
  min-width: 140px;
  width: 100%;
}

.gpcm-menu-ai-price {
  max-width: 120px;
}

.gpcm-menu-ai-description {
  min-width: 220px;
}

.gpcm-menu-ai-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.25);
}

.gpcm-menu-ai-category-lock {
  margin-bottom: 16px;
}

.dashboard-user-info .gpcm-dashboard-user-fullname {
  margin: 6px 0 0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.gpcm-dashboard-status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.gpcm-dashboard-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.gpcm-dashboard-status-chip--package.is-free {
  background: #fff7e6;
  border-color: #facc7d;
  color: #b45309;
}

.gpcm-dashboard-status-chip--package.is-paid {
  background: #e0efff;
  border-color: #93c5fd;
  color: #1d4ed8;
}

.gpcm-dashboard-status-chip--profile {
  background: #f8fafc;
  border-color: #dbe3ef;
  color: #334155;
}

.gpcm-dashboard-status-chip--trust {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.gpcm-dashboard-status-chip--addon {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.gpcm-profile-overview-card {
  border: 1px solid #d9e5f3;
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, .12), transparent 42%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, .12), transparent 38%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .06);
}

.gpcm-profile-overview-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.gpcm-profile-overview-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  color: #0f766e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gpcm-profile-overview-card__head h5 {
  margin: 10px 0 6px;
  font-size: 30px;
  line-height: 1.05;
  color: #0f172a;
}

.gpcm-profile-overview-card__head p {
  margin: 0;
  max-width: 720px;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.gpcm-profile-overview-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.gpcm-profile-layout .row {
  align-items: flex-start;
}

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

.gpcm-profile-type-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.gpcm-profile-type-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.gpcm-profile-type-card strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
}

.gpcm-profile-type-card span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.gpcm-profile-type-card.is-active {
  border-color: #fb923c;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
  box-shadow: 0 14px 30px rgba(249, 115, 22, .12);
  transform: translateY(-1px);
}

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

.gpcm-profile-step {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: #fff;
  color: #334155;
}

.gpcm-profile-step strong {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #94a3b8;
}

.gpcm-profile-step span {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.gpcm-profile-step.is-current {
  border-color: #f59e0b;
  background: #fff7eb;
}

.gpcm-profile-step.is-complete {
  border-color: #a7f3d0;
  background: #ecfdf5;
}

.gpcm-profile-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.gpcm-profile-sidebar-weather .gpcm-dashboard-weather {
  margin-top: 0;
  padding: 14px;
}

.gpcm-profile-sidebar-weather .gpcm-dashboard-weather__head {
  margin-bottom: 10px;
}

.gpcm-profile-sidebar-weather .gpcm-dashboard-weather__days {
  grid-template-columns: 1fr;
  gap: 8px;
}

.gpcm-profile-sidebar-weather .gpcm-dashboard-weather__day {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-items: start;
  text-align: left;
  gap: 10px;
  padding: 10px 12px;
}

.gpcm-profile-sidebar-weather .gpcm-dashboard-weather__day img,
.gpcm-profile-sidebar-weather .gpcm-dashboard-weather__icon-fallback {
  width: 28px;
  height: 28px;
  font-size: 18px;
}

.gpcm-profile-sidebar-weather .gpcm-dashboard-weather__label {
  font-size: 11px;
}

.gpcm-profile-sidebar-weather .gpcm-dashboard-weather__temp {
  font-size: 18px;
}

.gpcm-profile-sidebar-weather .gpcm-dashboard-weather__temp-min {
  justify-self: end;
}

.gpcm-profile-action-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #dbe4ee;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.gpcm-profile-action-card:hover,
.gpcm-profile-action-card:focus {
  transform: translateY(-1px);
  border-color: #fb923c;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .14);
}

.gpcm-profile-action-card strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
}

.gpcm-profile-action-card span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.gpcm-profile-box__intro {
  margin: -4px 0 14px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.gpcm-inline-section-head {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px dashed #d7dfeb;
  border-radius: 16px;
  background: #fbfdff;
}

.gpcm-inline-section-head strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
}

.gpcm-inline-section-head span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.gpcm-profile-location-visibility {
  display: grid;
  gap: 8px;
  margin: 10px 0 14px;
  padding: 14px 16px;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: #fbfdff;
}

.gpcm-profile-location-visibility__label {
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.gpcm-profile-box--security {
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gpcm-consent-grid {
  display: grid;
  gap: 10px;
}

.gpcm-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #dbe4ee;
  background: #fff;
  cursor: pointer;
  color: #0f172a;
}

.gpcm-consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0f766e;
}

.gpcm-consent-check strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.gpcm-consent-check small {
  display: block;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.gpcm-consent-check--security {
  border-color: #8ad4c7;
  background: linear-gradient(130deg, #f0fdf8 0%, #ecfeff 100%);
}

.gpcm-consent-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gpcm-consent-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #dbe4ee;
  background: #fff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.gpcm-consent-links a:hover,
.gpcm-consent-links a:focus {
  border-color: #fb923c;
  color: #ea580c;
}

.gpcm-profile-box--sync {
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gpcm-sync-enable {
  margin-bottom: 12px;
}

.gpcm-sync-grid {
  margin-top: 2px;
}

.gpcm-sync-addon-state {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.gpcm-sync-addon-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.gpcm-sync-addon-badge.is-active {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.gpcm-sync-addon-badge.is-inactive {
  border-color: #fcd34d;
  background: #fffbeb;
  color: #92400e;
}

.gpcm-sync-addon-cap {
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.gpcm-sync-access-note {
  margin-bottom: 10px;
}

.gpcm-sync-access-note a {
  margin-left: 8px;
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
}

.gpcm-sync-access-note a:hover,
.gpcm-sync-access-note a:focus {
  color: #1e40af;
  text-decoration: underline;
}

.gpcm-sync-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.gpcm-sync-actions .main-btn.is-loading {
  position: relative;
  opacity: 0.86;
  pointer-events: none;
  padding-right: 42px;
}

.gpcm-sync-actions .main-btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.16);
  border-top-color: currentColor;
  animation: gpcm-upload-spin 0.75s linear infinite;
}

.gpcm-sync-last-run {
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.gpcm-sync-alert-window {
  margin-top: 12px;
  max-height: 320px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
  padding-right: 2px;
}

.gpcm-sync-alert {
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  padding: 11px 12px;
  background: #fff;
  display: grid;
  gap: 6px;
}

.gpcm-sync-alert__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gpcm-sync-alert__head strong {
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
}

.gpcm-sync-alert__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid #dbe4ee;
  background: #f8fafc;
  color: #334155;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.gpcm-sync-alert p {
  margin: 0;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.45;
}

.gpcm-sync-alert small {
  color: #64748b;
  font-size: 11px;
  line-height: 1.5;
}

.gpcm-sync-alert--success {
  border-color: #86efac;
  background: #f0fdf4;
}

.gpcm-sync-alert--success .gpcm-sync-alert__head span {
  border-color: #86efac;
  background: #dcfce7;
  color: #166534;
}

.gpcm-sync-alert--warning {
  border-color: #fcd34d;
  background: #fffbeb;
}

.gpcm-sync-alert--warning .gpcm-sync-alert__head span {
  border-color: #fcd34d;
  background: #fef3c7;
  color: #92400e;
}

.gpcm-sync-alert--error {
  border-color: #fecaca;
  background: #fef2f2;
}

.gpcm-sync-alert--error .gpcm-sync-alert__head span {
  border-color: #fecaca;
  background: #fee2e2;
  color: #991b1b;
}

.gpcm-sync-alert--info {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.gpcm-sync-alert--info .gpcm-sync-alert__head span {
  border-color: #bfdbfe;
  background: #dbeafe;
  color: #1d4ed8;
}

.gpcm-sync-alert-empty {
  margin: 0;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 12px;
  color: #64748b;
  font-size: 13px;
  background: #f8fafc;
}

@media (max-width: 767px) {
  .gpcm-profile-tabs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gpcm-dashboard-upgrade-btn {
    width: 100%;
    min-height: 52px;
    margin-left: 0;
    font-size: 18px;
  }

  .gpcm-dashboard-package-name {
    font-size: 18px;
  }

  .gpcm-dashboard-package-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .gpcm-dashboard-package-hero__actions {
    width: 100%;
  }

  .gpcm-dashboard-upgrade-btn--hero {
    width: 100%;
    min-width: 0;
  }

  .gpcm-package-choice-section {
    padding: 18px;
  }

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

  .gpcm-dashboard-panel {
    padding: 16px;
  }

  .gpcm-image-preview-modal {
    padding: 12px;
  }

  .gpcm-image-preview-modal__dialog {
    width: min(1100px, calc(100vw - 24px));
  }

  .gpcm-image-preview-modal__image {
    max-height: calc(100vh - 44px);
  }

  .gpcm-menu-ai-actions .main-btn {
    width: 100%;
  }

  .gpcm-menu-ai-draft-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .gpcm-menu-ai-draft-actions {
    width: 100%;
  }

  .gpcm-menu-ai-draft-actions .main-btn {
    width: 100%;
  }

  .gpcm-profile-overview-card__head {
    flex-direction: column;
  }

  .gpcm-profile-overview-card__chips {
    justify-content: flex-start;
  }

  .gpcm-profile-type-cards,
  .gpcm-profile-action-grid {
    grid-template-columns: 1fr;
  }

  .gpcm-consent-links a {
    width: 100%;
  }

  .gpcm-sync-actions .main-btn {
    width: 100%;
  }
}
