/* =========================================
   GMR Frontend Styles (no Tailwind)
   Scope: .gmr-registration-wrapper
   ========================================= */

.gmr-registration-wrapper {
  --gmr-primary: #facc15;
  --gmr-bg-dark: #000000;
  --gmr-surface-dark: #1a1a1a;
  --gmr-border-dark: #27272a;
  --gmr-text-light: #f8f9fa;
  --gmr-text-medium: #9da7b2;
  --gmr-text-dark: #1a1a1a;
  --gmr-card-dark: #1a1a1a;
  --gmr-chip-dark: #282828;

  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--gmr-bg-dark);
  color: var(--gmr-text-light);
  min-height: 100vh;
}

/* Basic layout */

.gmr-registration-wrapper,
.gmr-registration-wrapper .gmr-page {
  display: flex;
  flex-direction: column;
  min-height: 75vh;
}

.gmr-registration-wrapper main {
  flex: 1;
}

/* Reset some basics */

.gmr-registration-wrapper h1,
.gmr-registration-wrapper h2,
.gmr-registration-wrapper h3,
.gmr-registration-wrapper h4 {
  margin: 0;
  color: #ffffff;
}

.gmr-registration-wrapper p {
  margin: 0;
}

/* Utility helpers */

.gmr-flex {
  display: flex;
}

.gmr-flex-col {
  display: flex;
  flex-direction: column;
}

.gmr-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmr-text-center {
  text-align: center;
}

/* -----------------------------------------
   HEADER / STEP BAR (common across steps)
   ----------------------------------------- */

.gmr-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #18181b;
}

.gmr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.5rem;
}

.gmr-header-title {
  flex: 1;
  text-align: center;
  font-size: 1.125rem;
  /* 18px */
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gmr-header-icon-slot {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step progress bar */

.gmr-step-bar {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 0.9rem;
  align-items: center;
}

.gmr-step-bar-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gmr-text-medium);
}

.gmr-step-bar-track {
  width: 100%;
  max-width: 48rem;
  height: 0.375rem;
  border-radius: 999px;
  background-color: #020617;
  overflow: hidden;
}

.gmr-step-bar-fill {
  height: 100%;
  border-radius: inherit;
  background-color: var(--gmr-primary);
}

/* -----------------------------------------
   BUTTONS
   ----------------------------------------- */

.gmr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  min-width: 84px;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.15s ease, opacity 0.15s ease,
    box-shadow 0.15s ease, transform 0.1s ease;
}

.gmr-btn-primary {
  background-color: var(--gmr-primary);
  color: #000;
  /* box-shadow: 0 12px 30px rgba(250, 204, 21, 0.28); */
}

.gmr-btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.gmr-btn-secondary {
  background-color: rgba(250, 204, 21, 0.16);
  color: var(--gmr-primary);
}

.gmr-btn-secondary:hover {
  background-color: rgba(250, 204, 21, 0.26);
}

.gmr-btn-ghost {
  background-color: transparent;
  color: var(--gmr-primary);
}

.gmr-btn-ghost:hover {
  background-color: rgba(148, 163, 184, 0.1);
}

/* Full-width on mobile */

.gmr-btn-block {
  width: 100%;
}

/* Icon alignment inside button */

.gmr-btn .material-symbols-outlined {
  font-size: 1.25rem;
  margin-right: 0.35rem;
}

/* -----------------------------------------
   STEP 1 — LOCATION CARDS
   ----------------------------------------- */

.gmr-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  padding-bottom: 2.5rem;
}

/* -----------------------------------------
   ERROR STATES (cleaned & refined)
   ----------------------------------------- */

.gmr-error-box {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #f97373;
  background-color: rgba(248, 113, 113, 0.06);
  color: #fecaca;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Input borders when invalid */
.gmr-input-error,
.gmr-select.gmr-input-error,
.gmr-date.gmr-input-error {
  border-color: #f97373 !important;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35);
}

/* Small, neat helper / error text */
.gmr-error {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  /* slightly smaller */
  line-height: 1.3;
  color: #fecaca;
}

/* Generic “one-line” error under fields, if you use it */
.gmr-error-message {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  line-height: 1.3;
  color: #fecaca;
  opacity: 0.9;
}

/* DOB split controls */
.gmr-dob-group {
  display: flex;
  gap: 0.75rem;
}

.gmr-dob-select {
  flex: 1;
}

.gmr-status-processing {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}


@media (min-width: 768px) {
  .gmr-location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gmr-location-card {
  display: flex;
  flex-direction: column;
  background-color: var(--gmr-card-dark);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.75);
}

.gmr-location-card-image {
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gmr-location-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 18rem;
}

.gmr-location-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gmr-location-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--gmr-text-medium);
  font-size: 0.9rem;
}

.gmr-location-meta-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* "Sort by Distance" pill button (Step 1) */

.gmr-sort-distance {
  margin: 0.25rem 1rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  background-color: var(--gmr-primary);
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.45);
}

.gmr-sort-distance .material-symbols-outlined {
  font-size: 1.1rem;
}

/* -----------------------------------------
   STEP 2 — PLAN CARDS
   ----------------------------------------- */

.gmr-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .gmr-plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gmr-plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.9rem;
  background-color: var(--gmr-card-dark);
  border: 1px solid #27272a;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.7);
}

.gmr-plan-card--highlighted {
  border-width: 2px;
  border-color: var(--gmr-primary);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.3),
    0 16px 45px rgba(250, 204, 21, 0.35);
}

.gmr-plan-name {
  font-size: 1rem;
  font-weight: 700;
}

/* .gmr-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: #fefce8;
  margin-top: 0.25rem;
} */

.gmr-plan-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  color: #fefce8;
  margin-top: 0.25rem;
}

.gmr-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.gmr-plan-price-main {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.gmr-plan-price-period {
  font-size: 0.95rem;
  font-weight: 700;
}

.gmr-plan-price-total {
  color: #9ca3af;
  font-size: 1.3rem;
  margin-top: 4px;
}

.gmr-plan-description {
  font-size: 0.9rem;
  color: var(--gmr-text-medium);
  margin-top: 0.4rem;
}

.gmr-plan-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.4rem;
}

.gmr-plan-feature {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #e5e5e5;
}

.gmr-plan-feature-text .gmr-feature-bold {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 5px 8px;
  border-radius: 3px;
  display: inline-block;
  line-height: 1.4;
  background: radial-gradient(circle at 100% 100%, #383b43 0, #383b43 5px, transparent 5px) 0% 0% / 8px 8px no-repeat, radial-gradient(circle at 0 100%, #383b43 0, #383b43 5px, transparent 5px) 100% 0% / 8px 8px no-repeat, radial-gradient(circle at 100% 0, #383b43 0, #383b43 5px, transparent 5px) 0% 100% / 8px 8px no-repeat, radial-gradient(circle at 0 0, #383b43 0, #383b43 5px, transparent 5px) 100% 100% / 8px 8px no-repeat, linear-gradient(#383b43, #383b43) 50% 50% / calc(100% - 6px) calc(100% - 16px) no-repeat, linear-gradient(#383b43, #383b43) 50% 50% / calc(100% - 16px) calc(100% - 6px) no-repeat, linear-gradient(90deg, transparent 0%, #e7ba2b 100%);
  border-radius: 8px;
  box-sizing: border-box;
  border-radius: 8px;
  box-sizing: border-box;
}

.gmr-plan-badge {
  background-color: rgba(250, 204, 21, 0.18);
  color: var(--gmr-primary);
  border-radius: 999px;
  font-size: 0.7rem;
  padding: 0.2rem 0.75rem;
  font-weight: 600;
}


/* ------------------------------------------------
   FAQ (Step 2) — if used
   ------------------------------------------------ */

.gmr-faq-section {
  padding: 1.5rem 1rem 2.5rem;
}

.gmr-faq-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.gmr-faq-item {
  border-radius: 0.75rem;
  background-color: var(--gmr-card-dark);
  border: 1px solid #27272a;
  padding: 1rem;
}

.gmr-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #f9fafb;
}

.gmr-faq-item summary::-webkit-details-marker {
  display: none;
}

.gmr-faq-item p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--gmr-text-medium);
}

/* -----------------------------------------
   STEP 3 — FORM STYLES
   ----------------------------------------- */
.gmr-form-section {
  padding: 2.5rem 1.5rem 5rem;
  width: 100%;
  max-width: 54rem;
  /* ≈ 864px, wider than previous 48rem */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.gmr-card {
  border-radius: 0.75rem;
  background-color: var(--gmr-surface-dark);
  border: 1px solid var(--gmr-border-dark);
  padding: 1rem;
}

.gmr-card-header-label {
  font-size: 0.8rem;
  color: var(--gmr-text-medium);
  margin-bottom: 0.5rem;
}

.gmr-location-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gmr-location-inline-icon {
  color: var(--gmr-primary);
  font-size: 1.5rem;
}

.gmr-location-inline-main h3 {
  font-weight: 700;
}

.gmr-location-inline-main p {
  font-size: 0.85rem;
  color: var(--gmr-text-medium);
}

.gmr-section-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e5e5;
  margin: 1.5rem 0 0.75rem;
}

/* Form grid */

/* Base grid for all form groups */
.gmr-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
}

/* Two-column layout on larger screens with more breathing room */
@media (min-width: 640px) {
  .gmr-form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
    /* more horizontal space */
    row-gap: 1.5rem;
    /* more vertical space */
  }
}

/* Ensure fields & controls stretch to the full column width */
.gmr-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.gmr-field-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gmr-text-medium);
  margin-bottom: 0.4rem;
}

/* Inputs & selects */

.gmr-input,
.gmr-select {
  width: 100%;
  height: 3.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gmr-border-dark);
  background-color: var(--gmr-surface-dark);
  color: var(--gmr-text-light);
  padding: 0 1rem;
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
}

.gmr-input::placeholder,
.gmr-select::placeholder,
.gmr-date::placeholder {
  color: var(--gmr-text-medium);
}

.gmr-input:focus,
.gmr-select:focus,
.gmr-date:focus {
  border-color: var(--gmr-primary);
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.3);
}

/* Checkbox / terms */

.gmr-terms {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--gmr-text-medium);
}

.gmr-terms label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.gmr-terms input[type="checkbox"] {
  margin-top: 0.15rem;
}

.gmr-terms a {
  color: var(--gmr-primary);
  text-decoration: none;
  font-weight: 500;
}

.gmr-terms a:hover {
  text-decoration: underline;
}

/* Start Date (date picker) styling */
.gmr-registration-wrapper input[type="date"].gmr-date,
.gmr-registration-wrapper .gmr-date {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 3.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gmr-border-dark) !important;
  background-color: var(--gmr-surface-dark) !important;
  color: var(--gmr-text-light);
  padding: 0 1rem;
  font-size: 0.95rem;
  outline: none;
  box-sizing: border-box;
}

/* Make the calendar icon visible on dark background */
.gmr-registration-wrapper .gmr-date::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.85;
}

/* Secure footer line (step 3 & 4) */

.gmr-footer {
  border-top: 1px solid var(--gmr-border-dark);
  background-color: var(--gmr-bg-dark);
  padding: 1rem;
}

.gmr-footer-inner {
  max-width: 28rem;
  margin: 0 auto;
}

.gmr-footer-security {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--gmr-text-medium);
  margin-bottom: 0.75rem;
}

/* -----------------------------------------
   STEP 4 — REVIEW & PAY
   ----------------------------------------- */

.gmr-summary-layout {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 2rem;
}

.gmr-summary-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .gmr-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gmr-summary-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  background-color: var(--gmr-surface-dark);
  border: 1px solid #27272a;
  padding: 1rem;
  height: 100%;
}

.gmr-summary-card-header {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 0.5rem;
}

.gmr-summary-card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.gmr-summary-maintext {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gmr-summary-maintext p {
  font-size: 0.85rem;
  color: var(--gmr-text-medium);
}

.gmr-summary-maintext .gmr-summary-title {
  font-size: 1rem;
  font-weight: 600 !important;
  color: #fff;
}

/* Order total box */

.gmr-order-total-wrapper {
  padding: 0 1rem;
  margin-top: 1.5rem;
}

.gmr-order-total-card {
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  background-color: var(--gmr-surface-dark);
  border: 1px solid #27272a;
  padding: 1rem;
}

.gmr-order-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gmr-text-medium);
}

.gmr-order-row+.gmr-order-row {
  margin-top: 0.25rem;
}

.gmr-order-row--total {
  margin-top: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: #f9fafb;
}

.gmr-order-row--total span:last-child {
  color: var(--gmr-primary);
}

/* Payment methods */

.gmr-payment-section {
  padding: 1.75rem 1rem 0;
}

.gmr-payment-method {
  position: relative;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  background-color: var(--gmr-surface-dark);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.gmr-payment-method--selected {
  border-width: 2px;
  border-color: var(--gmr-primary);
  background-color: rgba(250, 204, 21, 0.12);
}

.gmr-payment-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f9fafb;
}

/* Pay footer button */

.gmr-pay-footer {
  border-top: 1px solid var(--gmr-border-dark);
  background-color: var(--gmr-bg-dark);
  padding: 1rem 1rem 1.5rem;
}

.gmr-pay-footer .gmr-footer-security {
  justify-content: center;
  margin-bottom: 0.75rem;
}

.gmr-pay-footer .gmr-btn-primary {
  width: 100%;
}

footer.gmr-pay-footer {
  margin-top: 0px !important;
}

/* -----------------------------------------
   RESPONSIVE TWEAKS
   ----------------------------------------- */

@media (max-width: 768px) {
  .gmr-hide-mobile {
    display: none !important;
  }

  .gmr-location-inline {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* -----------------------------------------
   Material Symbols tweaks
   ----------------------------------------- */

.gmr-registration-wrapper .material-symbols-outlined {
  font-variation-settings: "FILL" 1;
  vertical-align: middle;
  line-height: 1;
}

/* =========================================
   STEP 4 – REVIEW & PAY REFINEMENTS
   (override defaults – keep at bottom)
   ========================================= */

/* 1) Make each column behave like: [Heading] + [Card] stack */
.gmr-summary-grid>div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  /* tight gap between label and card */
}

/* 2) Card headings (outside cards) – slightly lighter + tighter */
.gmr-summary-card-header {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f9fafb;
  margin-bottom: 0.2rem;
  /* we control spacing with the wrapper gap above */
}

/* 3) Summary cards – a bit more padding & softer radius, like prototype */
.gmr-summary-card {
  padding: 1.25rem 1.4rem 1.15rem;
  border-radius: 0.9rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
}

/* 4) Text inside cards – nicer line height + consistent spacing */
.gmr-summary-maintext {
  gap: 0.2rem;
}

.gmr-summary-maintext p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* 5) Order total card – more “receipt” feel + clear divider before total */
.gmr-order-total-wrapper {
  padding: 1.75rem 1rem 0;
}

.gmr-order-total-card {
  padding: 1.1rem 1.4rem;
}

.gmr-order-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gmr-text-medium);
  padding: 0.15rem 0;
}

/* dotted-ish divider between rows */
.gmr-order-row+.gmr-order-row {
  margin-top: 0.4rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  padding-top: 0.4rem;
}

/* total row – stronger & on-brand */
.gmr-order-row--total {
  margin-top: 0.6rem !important;
  padding-top: 0.6rem !important;
  border-top: 1px solid rgba(249, 250, 251, 0.4) !important;
  font-size: 1rem;
  /* font-weight: 700; */
  color: #f9fafb;
}

.gmr-order-row--total span:last-child {
  color: var(--gmr-primary);
}

/* 6) Payment section spacing – match prototype rhythm */
.gmr-payment-section {
  padding: 2rem 1rem 0;
}

.gmr-payment-section .gmr-summary-card-header {
  margin-bottom: 0.6rem;
}

/* Buttons – same height / spacing as prototype bars */
.gmr-payment-method {
  min-height: 3.5rem;
  padding: 0.9rem 1.25rem;
}

.required {
  color: red;
}

/* -----------------------------------------
   STEP 2 — V2 (Tier grouped cards like screenshot)
------------------------------------------ */

.gmr-step2-wrap {
  padding: 2rem 1rem 2.5rem;
}

.gmr-step2-intro {
  max-width: 48rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.gmr-step2-title {
  font-size: 2rem;
  font-weight: 800;
  color: #f9fafb;
  margin: 0 0 .5rem;
}

.gmr-step2-subtitle {
  color: #9ca3af;
  font-size: 16px !important;
  margin: 0;
}


.gmr-tier-section {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(234, 179, 8, 0.25);
  /* subtle yellow line like screenshot */
}

.gmr-tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-top: 15px;
}

.gmr-tier-header-left {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.gmr-tier-icon {
  font-size: 26px !important;
  opacity: .95;
}

.gmr-tier-title {
  font-size: 26px !important;
  font-weight: 800 !important;
  margin: 0 !important;
}

.gmr-tier--trifit .gmr-tier-title,
.gmr-tier--trifit .gmr-tier-icon {
  color: #60a5fa;
  /* blue */
}

.gmr-tier--trifit-plus .gmr-tier-title,
.gmr-tier--trifit-plus .gmr-tier-icon {
  color: #f87171;
  /* red */
}

/* grid */
.gmr-plans-grid--tier {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .gmr-plans-grid--tier {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gmr-plans-grid--tier {
    grid-template-columns: 1fr;
  }
}

/* card v2 */
.gmr-plan-card--v2 {
  position: relative;
  padding: 1.6rem;
  border-radius: 1rem;
  background: #141414;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.55);
  border: 2px solid rgba(39, 39, 42, 0.9);
}

/* tier-colored borders like screenshot */
.gmr-tier--trifit .gmr-plan-card--v2 {
  border-color: rgba(59, 130, 246, 0.55);
}

.gmr-tier--trifit-plus .gmr-plan-card--v2 {
  border-color: rgba(248, 113, 113, 0.55);
}

/* title + desc layout */
.gmr-plan-card--v2 .gmr-plan-name {
  font-size: 24px;
  font-weight: 900;
  color: #f9fafb;
  margin: 0 0 .35rem;
  max-width: 320px;
  border: 0px solid;
  line-height: 30px;
}

.gmr-plan-card--v2 .gmr-plan-description {
  color: #9ca3af;
  margin: -15px 0 0 0;
  line-height: normal;
  font-size: 14px;
}

/* divider line under description like screenshot */
.gmr-plan-divider {
  height: 1px;
  width: 100%;
  background: rgba(156, 163, 175, 0.25);
  margin: 0 0 5px;
}

h2.gmr-section-title {
  margin: 0 0 15px 0;
}

h2.gmr-summary-card-header {
  font-size: 18px;
  margin-bottom: 5px;
}

.gmr-order-row {
  /* font-weight: 700; */
  font-size: 18px;
  color: #FFF;
}

.gmr-order-row .mprice {
  color: #facc15 !important;
}

.gmr-summary-card button.gmr-btn.gmr-btn-secondary {
  padding: 10px 5px !important;
  min-height: auto !important;
}

/* price block */
.gmr-plan-card--v2 .gmr-plan-price {
  margin: 0 0 0;
}

.gmr-plan-card--v2 .gmr-plan-price-main {
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: .2px;
}

/* different price colors per tier */
.gmr-tier--trifit .gmr-plan-card--v2 .gmr-plan-price-main {
  color: #60a5fa;
}

.gmr-tier--trifit-plus .gmr-plan-card--v2 .gmr-plan-price-main {
  color: #fb7185;
  /* pinkish/red */
}

.gmr-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: .35rem;
}

.gmr-plan-price-period {
  color: #d1d5db;
  font-weight: 700;
}

.gmr-plan-price-total {
  color: #9ca3af;
  font-weight: 500;
  margin-top: .25rem;
}

/* features list */
.gmr-plan-feature-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin: 0 0 1.25rem;
}

.gmr-plan-feature {
  display: flex;
  gap: .55rem;
  align-items: center;
  color: #e5e7eb;
  font-weight: 400;
}

.gmr-plan-feature .material-symbols-outlined {
  font-size: 1.1rem;
  opacity: .95;
}


h2.gmr-faq-title {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 700;
}

/* badges (Most Popular / Best Value) */
.gmr-badge {
  position: absolute;
  top: -12px;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
  right: 0;
  left: 0;
  text-align: center;
  max-width: 120px;
  margin: 0 auto;
}

.gmr-badge--popular {
  background: #facc15;
  /* yellow */
  color: #111827;
}

.gmr-badge--value {
  background: #22c55e;
  /* green */
  color: #052e16;
  max-width: 100px;
}

/* CTA */
.gmr-plan-cta {
  margin-top: auto;
}

.gmr-plan-card--v2 .gmr-btn-primary {
  border-radius: .75rem;
  font-weight: 900;
}

/* ---------- Tier button colors (override yellow) ---------- */
.gmr-tier--trifit .gmr-plan-card--v2 .gmr-btn-primary {
  background: #60a5fa !important;
  border: 1px solid rgba(96, 165, 250, .55) !important;
  color: #0b1220 !important;
}

.gmr-tier--trifit-plus .gmr-plan-card--v2 .gmr-btn-primary {
  background: #fb7185 !important;
  border: 1px solid rgba(251, 113, 133, .55) !important;
  color: #1f0a10 !important;
}

/* ---------- Check icon colors per tier ---------- */
.gmr-tier--trifit .gmr-plan-feature .material-symbols-outlined {
  color: #60a5fa !important;
}

.gmr-tier--trifit-plus .gmr-plan-feature .material-symbols-outlined {
  color: #fb7185 !important;
}

/* (Optional) feature text slightly softer like screenshot */
.gmr-plan-feature span:last-child {
  color: #e5e7eb;
}