/* 404 / 403 full-page layout – same UI for both */
.fallback-page {
  min-height: 100vh;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
}

.fallback-page__inner {
  text-align: center;
}

.fallback-page__code {
  font-size: 8rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 1rem;
  line-height: 1;
}

.fallback-page__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
  line-height: 1.35;
}

.fallback-page__msg1 {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.fallback-page__msg2 {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.fallback-page__messages {
  margin-bottom: 3rem;
}

.fallback-page__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.fallback-page__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #38bdf8, #3b82f6);
  color: #222121;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.fallback-page__btn:hover {
  background: linear-gradient(to right, #0ea5e9, #2563eb);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.fallback-page__btn svg {
  flex-shrink: 0;
}

/* Global styles - using Polaris design system */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  max-width: 100vw;
  /* Prevent scroll restoration on reload */
  scroll-behavior: auto;
  /* Prevent white flash - set background immediately */
  background-color: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  /* Ensure body starts at top */
  position: relative;
  /* Prevent white flash - set background immediately */
  background-color: #ffffff;
}

#root {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  /* Prevent white flash - set background immediately */
  background-color: #ffffff;
}

/*
 * Embedded: s-page projects title + actions to Shopify Admin title bar.
 * Collapse in-iframe shell only (slotted nodes still register with App Bridge).
 */
.ecom-embedded-s-page {
  display: block !important;
  min-height: 0 !important;
  max-height: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
  line-height: 0 !important;
}

.ecom-embedded-chrome-host {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  z-index: -1 !important;
}

.ecom-embedded-chrome-host s-app-nav {
  margin: 0 !important;
  padding: 0 !important;
}

.ecom-private-embedded-root {
  padding-top: 0 !important;
}

/* Table row action column — Polaris React buttons (IndexTable + s-table) */
s-table-cell:last-child,
.Polaris-IndexTable__TableCell:last-child {
  min-width: 120px;
  white-space: nowrap;
}

.Polaris-IndexTable__TableCell .Polaris-ButtonGroup,
.Polaris-IndexTable__StickyTable .Polaris-ButtonGroup {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure all elements use border-box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Toast design */

.ecom-custom-toast {
  max-width: 31.25rem !important;
  padding: 8px 2px !important;
}

.ecom-custom-toast .ecom-custom-toast-btn {
  display: flex;
}

.ecom-custom-toast .ecom-custom-toast-btn button {
  --pc-button-icon-fill: var(--p-color-text-inverse) !important;
  --pc-button-icon-fill_hover: var(--p-color-text-inverse) !important;
  --pc-button-icon-fill_active: var(--p-color-text-inverse) !important;
  --pc-button-icon-fill_disabled: var(--p-color-text-inverse) !important;
}

.ecom-custom-toast--primary {
  background: var(--p-color-bg-inverse) !important;
}

.ecom-custom-toast--error {
  background: var(--p-color-bg-fill-critical) !important;
}


/* Loader design */
.fullpage-loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 100%;
  z-index: 999999;
  height: 100vh;
}

.opacity-loader {
  opacity: 0.8;
}

.loader-transparent {
  background: rgba(0, 0, 0, 0.25);
}

/* Polaris Modal above app chrome (standalone + Shopify Admin iframe) */
/* Modal portal must not reserve layout space in the iframe */
#inte-portalContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: visible;
  z-index: 10000;
  pointer-events: none;
}

#inte-portalContainer > * {
  pointer-events: auto;
}

.Polaris-Modal-Dialog,
.Polaris-Modal-Dialog__Container {
  z-index: 10001 !important;
}

.Polaris-Modal__Backdrop {
  z-index: 10000 !important;
}


/* Navigation Styles for Non-Embedded Menu */

/* Mobile Bottom Navigation Styles */
@media (max-width: 768px) {
  .sidebar-mobile {
    display: flex !important;
  }

  .sidebar-desktop {
    display: none !important;
  }

  .main-content-area {
    padding-bottom: 80px !important;
    width: 100% !important;
    margin-left: 0 !important;
    overflow-x: hidden !important;
  }

  .mobile-bottom-nav {
    display: flex !important;
  }

  /* Fix for custom_layout_width on mobile */
  .custom_layout_width {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Ensure page content wrapper doesn't overflow */
  .page-content-wrapper {
    padding: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Fix Polaris sections on mobile */
  s-section,
  s-box,
  s-grid,
  s-stack {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Fix tables to be scrollable on mobile */
  s-table {
    overflow-x: auto !important;
    display: block !important;
    max-width: 100% !important;
  }

  /* Ensure query containers don't overflow */
  s-query-container {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Fix horizontal navigation content */
  .horizontal-navigation-content {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}

/* Desktop Sidebar Styles */
@media (min-width: 769px) {
  .sidebar-desktop {
    display: block !important;
    width: 240px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    border-right: 1px solid var(--p-color-border-subdued);
    overflow-y: auto;
    z-index: 100;
  }

  .sidebar-mobile {
    display: none !important;
  }

  .main-content-area {
    margin-left: 240px;
    width: calc(100% - 240px);
    padding-bottom: 0 !important;
    overflow-x: hidden;
  }

  .mobile-bottom-nav {
    display: none !important;
  }

  /* Desktop custom_layout_width */
  .custom_layout_width {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
}

/* Mobile bottom navigation */
.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: var(--p-color-bg-surface);
  border-top: 1px solid var(--p-color-border-subdued);
  z-index: 200;
  display: none;
}

.mobile-bottom-nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 8px;
  gap: 8px;
}

.mobile-bottom-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--p-color-text);
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
}

.mobile-bottom-nav__item--active {
  background-color: var(--p-color-bg-surface-selected);
  color: var(--p-color-text-link);
  font-weight: 600;
}

/* Navigation items styling for mobile bottom nav */
.sidebar-mobile .Polaris-Navigation {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  height: 100%;
  width: 100%;
  padding: 0;
}

.sidebar-mobile .Polaris-Navigation__Item {
  flex-shrink: 0;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.sidebar-mobile .Polaris-Navigation__Item--active {
  border-bottom-color: var(--p-color-text-link);
  background-color: var(--p-color-bg-surface-selected);
}

.sidebar-mobile .Polaris-Navigation__Item--active a {
  color: var(--p-color-text-link);
  font-weight: 600;
}

.sidebar-mobile .Polaris-Navigation__Item a {
  color: var(--p-color-text);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Desktop sidebar styling */
.sidebar-desktop .Polaris-Navigation {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 0;
}

.sidebar-desktop .Polaris-Navigation__Item {
  padding: 0;
  border: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.sidebar-desktop .Polaris-Navigation__Item--active {
  border-left-color: var(--p-color-text-link);
  background-color: var(--p-color-bg-surface-selected);
}

.sidebar-desktop .Polaris-Navigation__Item a {
  padding: 12px 16px;
  display: block;
  color: var(--p-color-text);
  text-decoration: none;
  font-size: 0.95rem;
}

.sidebar-desktop .Polaris-Navigation__Item--active a {
  color: var(--p-color-text-link);
  font-weight: 600;
}

/* Content wrapper for horizontal navigation */
.horizontal-navigation-content {
  padding: 0;
  background-color: #ffffff;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

/* Standalone (non-embedded) app: layout wrapper for PageWrapper (title bar + body); no outer border */
.ecom-page-wrapper-standalone-frame {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  background-color: var(--p-color-bg-surface, #fff);
}

/* Consistent page layout wrapper */
.page-content-wrapper {
  padding: 16px 24px 24px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

/* Expired-plan banner: same horizontal inset as page content (standalone = page-content-wrapper) */
.ecom-expired-plan-banner-wrap {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  padding: 16px 24px 0;
}

@media (max-width: 768px) {
  .page-content-wrapper {
    padding: 16px;
  }

  .ecom-expired-plan-banner-wrap {
    padding: 16px 16px 0;
  }
}

/* Embedded: match s-box paddingInline "base" (~16px) used on pages like Pricing */
.ecom-private-embedded-root .ecom-expired-plan-banner-wrap {
  padding-left: 16px;
  padding-right: 16px;
}

/* Ensure all pages have consistent spacing */
.Polaris-Page {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  overflow-x: hidden !important;
}

.Polaris-Page__Content {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

.Polaris-Page__Header {
  padding: 16px 24px !important;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box;
}

.Polaris-Page__Navigation {
  padding: 0 24px !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Mobile-specific page styles */
@media (max-width: 768px) {
  .Polaris-Page__Header {
    padding: 12px 16px !important;
  }

  .Polaris-Page__Navigation {
    padding: 0 16px !important;
  }

  .Polaris-Page__Content {
    padding: 0 !important;
  }
}

/* Ensure proper content alignment with Polaris Frame */

/* Ensure content uses full width */
.Polaris-Card {
  border-radius: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.Polaris-Card__Section {
  padding: 16px 24px !important;
  width: 100% !important;
  box-sizing: border-box;
}

/* Remove any default page margins */
.horizontal-navigation-content > * {
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Ensure no horizontal overflow */
html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Reduce extra whitespace inside Polaris modal body */
s-modal::part(body) {
  padding: 8px 12px !important;
}

/* s-modal scroll body — explicit overflow (native s-modal scroll breaks in admin iframe) */
.modal-smodal-scroll-body {
  display: block;
  width: 100%;
  box-sizing: border-box;
  overflow-y: auto !important;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  max-height: min(calc(100dvh - 220px), 68vh);
}

.modal-smodal-scroll-body s-box,
.modal-smodal-scroll-body s-stack,
.modal-smodal-scroll-body s-section {
  overflow: visible !important;
}

/* s-modal footer actions — right-aligned via secondary-actions slot */
.modal-wrapper-secondary-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-left: auto;
}

.modal-wrapper-secondary-actions s-button-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* ModalWrapper — compact layout, scrollable body, actions bottom-right */
.modal-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.modal-wrapper-custom-title {
  flex-shrink: 0;
  margin-bottom: 4px;
}

.modal-wrapper-body {
  flex: 1 1 auto;
  min-height: 0;
}

/* Avoid double padding when modal body is wrapped in s-box */
.modal-wrapper-body > s-box {
  padding: 0 !important;
}

.modal-wrapper-body-scroll {
  overflow-y: auto !important;
  overflow-x: hidden;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  max-height: min(calc(100dvh - 240px), 70vh);
}

.modal-wrapper-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 100%;
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--p-color-border-secondary, #e8e9eb);
  background: var(--p-color-bg-surface, #ffffff);
  position: relative;
  z-index: 1;
}

.modal-wrapper-footer s-button-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.modal-wrapper-footer > s-button-group:only-child {
  margin-left: auto;
}

/* Polaris modal footer — right-align custom action buttons */
.Polaris-Modal-Footer .modal-wrapper-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 100%;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

html {
  height: 100%;
}

/* Force full width for all content */
.horizontal-navigation-content {
  overflow-x: hidden;
}

/* Additional Polaris overrides to ensure full width */
.Polaris-Layout {
  max-width: none !important;
  width: 100% !important;
}

.Polaris-Layout__Section {
  max-width: none !important;
  width: 100% !important;
}

.Polaris-Layout__AnnotatedSection {
  max-width: none !important;
  width: 100% !important;
}

.Polaris-Stack {
  width: 100% !important;
}

.Polaris-Stack__Item {
  width: 100% !important;
}

/* Ensure no gaps between elements */
.Polaris-Layout__Section--oneHalf,
.Polaris-Layout__Section--oneThird,
.Polaris-Layout__Section--twoThirds {
  max-width: none !important;
  width: 100% !important;
}

/* Remove any default container max-widths */
.Polaris-Container {
  max-width: none !important;
  width: 100% !important;
}

/* Mobile-specific Polaris Web Components fixes */
@media (max-width: 768px) {
  /* Ensure all Polaris web components respect mobile width */
  s-section,
  s-box,
  s-card,
  s-banner,
  s-stack,
  s-grid,
  s-query-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Make tables horizontally scrollable on mobile */
  s-table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Ensure table rows don't break layout */
  s-table-row,
  s-table-header-row {
    display: table-row !important;
    width: 100% !important;
  }

  /* Fix button groups to wrap on mobile */
  s-button-group {
    flex-wrap: wrap !important;
    gap: var(--p-space-200) !important;
  }

  /* Ensure text fields and selects are full width on mobile */
  s-text-field,
  s-select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Fix modal width on mobile; cap height so long bodies scroll and footer stays reachable */
  s-modal {
    max-width: 95vw !important;
    max-height: min(100dvh, 100vh) !important;
  }

  /* Ensure dividers don't cause overflow */
  s-divider {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Dashboard donut chart styling */
.dashboard_custom_chart {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.chart_wrap {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 140px;
}

.chart_wrap canvas {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
}

.status_wrap {
  flex: 1;
  min-width: 0;
}

/* Responsive chart sizing */
@media (max-width: 768px) {
  .chart_wrap {
    width: 100px;
    height: 100px;
  }

  .dashboard_custom_chart {
    flex-direction: column;
    gap: 16px;
  }
}

/* Ensure proper spacing in dashboard cards */
.custom_card_height_balance {
  padding: 16px 0;
}

/* Removed unused dashboard_width class - now using page-content-wrapper */

/* Ensure proper spacing for dashboard cards */
.Polaris-Card {
  margin-bottom: 16px;
}

/* Improve dashboard grid layout */
.Polaris-Layout__Section {
  padding: 0 8px;
}

/* Ensure proper spacing between dashboard sections */
.Polaris-Layout {
  gap: none;
}

/* Skeleton chart styling to match new donut chart sizes */
.chart_wrap .Polaris-SkeletonThumbnail {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
}

@media (max-width: 768px) {
  .chart_wrap .Polaris-SkeletonThumbnail {
    width: 100px !important;
    height: 100px !important;
  }
}

/* Orders grid: pin first column (checkbox / identifiers) and last column (action) on horizontal scroll */
.orders-grid-sticky-columns s-table-header:first-child,
.orders-grid-sticky-columns s-table-cell:first-child {
  position: sticky !important;
  left: 0 !important;
  z-index: 2 !important;
  background: var(--p-color-bg-surface, #fff) !important;
  box-shadow: 2px 0 4px -2px rgba(0, 0, 0, 0.08);
}
.orders-grid-sticky-columns s-table-header:last-child,
.orders-grid-sticky-columns s-table-cell:last-child {
  position: sticky !important;
  right: 0 !important;
  z-index: 2 !important;
  background: var(--p-color-bg-surface, #fff) !important;
  box-shadow: -2px 0 4px -2px rgba(0, 0, 0, 0.08);
}

/* Settings → NotificationSettings: s-query-container containerName="notification-settings" */
@container notification-settings (inline-size > 560px) {
  .notification-settings-two-col {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--p-space-400);
    padding-block: var(--p-space-400);
    min-width: 0;
  }

  .notification-settings-two-col > * {
    min-width: 0;
  }

  .notification-settings-two-col--align-center {
    align-items: center;
  }

  .notification-settings-item-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
  }

  .notification-settings-item-icon {
    flex-shrink: 0;
  }

  .notification-settings-item-body {
    flex: 1 1 180px;
    min-width: 0;
  }

  .notification-settings-item-switch {
    flex-shrink: 0;
    margin-left: auto;
  }

  .notification-settings-threshold-master-switch {
    margin-top: 0.5rem;
  }
}

@container notification-settings (inline-size <= 560px) {
  .notification-settings-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--p-space-300);
    padding-block: var(--p-space-300);
    min-width: 0;
  }

  .notification-settings-two-col > * {
    min-width: 0;
  }

  .notification-settings-two-col--align-center {
    align-items: stretch;
  }

  .notification-settings-item-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 18px;
    row-gap: 12px;
    align-items: start;
    min-width: 0;
  }

  .notification-settings-item-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .notification-settings-item-body {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .notification-settings-item-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: start;
  }

  .notification-settings-threshold-master-switch {
    margin-top: 0;
  }

  .notification-settings-threshold-row {
    grid-template-columns: auto 1fr;
  }

  .notification-settings-threshold-row .notification-settings-item-switch {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: start;
  }
}

/* Orders modal view details: container-based responsive behavior */
@container shopify-order-view (inline-size <= 768px) {
  .order-view-content s-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .order-view-content s-stack[direction="inline"] {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .order-view-hero-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }
}

@container etsy-order-view (inline-size <= 768px) {
  .order-view-content s-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .order-view-content s-stack[direction="inline"] {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .order-billing-three-col {
    grid-template-columns: 1fr !important;
    row-gap: 6px;
  }

  .order-billing-total-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px;
  }
}

/*# sourceMappingURL=main.5b78722d0fa01b89ad82.css.map*/