:root {
  --rdm-bg: #f0ede8;
  --rdm-surface: #ffffff;
  --rdm-soft: #faf7f3;
  --rdm-text: #1a1816;
  --rdm-muted: #888480;
  --rdm-border: #eae7e3;
  --rdm-primary: #d85a30;
  --rdm-primary-strong: #bf4d28;
  --rdm-success-bg: #edf7ee;
  --rdm-success-text: #1a7b32;
  --rdm-error-bg: #fff1ef;
  --rdm-error-text: #9f1d1d;
  --rdm-radius: 16px;
  --rdm-radius-input: 12px;
  --rdm-radius-button: 10px;
  --rdm-warm: #fef6ec;
  --rdm-font-sans: "DM Sans", sans-serif;
  --rdm-font-serif: "Playfair Display", serif;
}

.rdm-app-shell {
  max-width: 420px;
  margin: 22px auto;
  padding: 20px;
  padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  border: 1px solid var(--rdm-border);
  border-radius: calc(var(--rdm-radius) + 2px);
  background: #fff;
  box-shadow: 0 16px 34px rgba(26, 24, 22, 0.06);
  color: var(--rdm-text);
  font-family: var(--rdm-font-sans);
}

.rdm-section-head {
  margin-bottom: 14px;
}

.rdm-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rdm-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rdm-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd9d4;
  color: #6b6560;
  background: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 13px;
  text-decoration: none;
}

.rdm-cart-link:hover {
  background: #f8f5f1;
  color: var(--rdm-text);
}

button.rdm-cart-link {
  cursor: pointer;
}

@media (min-width: 740px) {
  .rdm-head-actions .rdm-cart-link {
    min-height: 44px;
    padding: 10px 18px;
    border-color: #efcdb8;
    background: linear-gradient(180deg, #fff8f1 0%, #fff1e5 100%);
    color: var(--rdm-primary-strong);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(216, 90, 48, 0.08);
  }

  .rdm-head-actions .rdm-cart-link:hover {
    border-color: #e4a987;
    background: linear-gradient(180deg, #fff2e5 0%, #ffe7d6 100%);
    color: var(--rdm-primary-strong);
    box-shadow: 0 14px 28px rgba(216, 90, 48, 0.12);
  }
}

.rdm-section-head h2 {
  margin: 10px 0 6px;
  font-family: var(--rdm-font-serif);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.rdm-section-head p {
  margin: 0;
  color: var(--rdm-muted);
  font-size: 0.95rem;
}

.rdm-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--rdm-warm);
  color: var(--rdm-primary-strong);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-feedback {
  min-height: 22px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.94rem;
}

.rdm-category-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.rdm-category-pill {
  border: 1px solid #ddd9d4;
  background: #fff;
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 500;
  color: #6b6560;
}

.rdm-category-pill.is-active {
  border-color: var(--rdm-primary);
  background: #fff;
  color: var(--rdm-primary);
  box-shadow: inset 0 0 0 1px rgba(216, 90, 48, 0.12);
}

.rdm-category-thumb {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
}

.rdm-feedback.is-success {
  background: var(--rdm-success-bg);
  color: var(--rdm-success-text);
}

.rdm-feedback.is-error {
  background: var(--rdm-error-bg);
  color: var(--rdm-error-text);
}

.rdm-panel {
  background: #fff;
  border: 1px solid #ddd9d4;
  border-radius: var(--rdm-radius);
  padding: 14px;
  margin-top: 12px;
}

.rdm-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.rdm-product-groups {
  display: grid;
  gap: 18px;
}

.rdm-menu-layout {
  display: grid;
  gap: 16px;
}

.rdm-menu-main,
.rdm-menu-summary {
  min-width: 0;
}

.rdm-menu-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 22, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 39;
}

.rdm-menu-mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 41;
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid #ddd9d4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(26, 24, 22, 0.12);
  color: var(--rdm-text);
  text-align: left;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.rdm-menu-mobile-bar.is-success-flash {
  background: #edf8f0;
  border-color: #8bc79d;
  box-shadow: 0 20px 40px rgba(40, 115, 66, 0.18);
}

.rdm-menu-mobile-bar.is-success-flash .rdm-menu-mobile-bar-copy strong,
.rdm-menu-mobile-bar.is-success-flash .rdm-menu-mobile-bar-copy span,
.rdm-menu-mobile-bar.is-success-flash .rdm-menu-mobile-bar-chevron {
  color: #1f6b39;
}

.rdm-menu-mobile-bar.is-success-flash .rdm-menu-mobile-bar-badge {
  background: #1f6b39;
}

.rdm-menu-mobile-bar.is-success-flash .rdm-menu-mobile-bar-icon {
  background: #2f8a47;
}

.rdm-menu-mobile-bar-icon {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--rdm-primary);
}

.rdm-menu-mobile-bar-icon::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 11px;
  top: 17px;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.rdm-menu-mobile-bar-icon::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 11px;
  height: 8px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.rdm-menu-mobile-bar-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1a1816;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.rdm-menu-mobile-bar-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 2px;
}

.rdm-menu-mobile-bar-copy strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.rdm-menu-mobile-bar-copy span {
  color: var(--rdm-muted);
  font-size: 0.86rem;
}

.rdm-menu-mobile-bar-chevron {
  flex: 0 0 auto;
  color: var(--rdm-muted);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.rdm-menu-mobile-sheet-handle {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: #e5dfd8;
  margin: 0 auto 14px;
}

.rdm-menu-summary-panel {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  max-height: min(78vh, 680px);
  overflow: auto;
  padding: 16px;
  margin-top: 0;
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.rdm-menu-summary.is-open .rdm-menu-mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.rdm-menu-summary.is-open .rdm-menu-summary-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.rdm-menu-summary.is-open .rdm-menu-mobile-bar-chevron {
  transform: rotate(180deg);
}

body.rdm-menu-sheet-open {
  overflow: hidden;
}

.rdm-menu-summary-panel h3 {
  margin: 0 0 10px;
  font-family: var(--rdm-font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.rdm-menu-postcode-label {
  display: block;
  margin: 0 0 6px;
  color: #6b6560;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rdm-menu-address-wrap {
  position: relative;
  margin: 0 0 12px;
}

.rdm-delivery-picker {
  display: grid;
  gap: 10px;
}

.rdm-delivery-picker-grid {
  display: grid;
  gap: 10px;
}

.rdm-menu-postcode-input,
.rdm-menu-address-input {
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 1px solid #ddd9d4;
  border-radius: var(--rdm-radius-input);
  padding: 11px 12px;
  background: #fafaf9;
  color: var(--rdm-text);
  font-family: var(--rdm-font-sans);
}

.rdm-menu-postcode-input:disabled,
.rdm-menu-address-input:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.rdm-menu-address-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  border: 1px solid #ddd9d4;
  border-radius: var(--rdm-radius);
  background: #fff;
  box-shadow: 0 18px 36px rgba(26, 24, 22, 0.1);
  overflow: hidden;
}

.rdm-menu-address-list {
  display: grid;
}

.rdm-menu-address-option {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid #f0ede8;
  background: #fff;
  text-align: left;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.rdm-menu-address-option:last-child {
  border-bottom: 0;
}

.rdm-menu-address-option:hover,
.rdm-menu-address-option:focus-visible {
  background: var(--rdm-warm);
  outline: none;
}

.rdm-menu-address-option-label {
  color: var(--rdm-text);
  font-size: 0.93rem;
  font-weight: 500;
}

.rdm-menu-address-option-meta,
.rdm-menu-address-state {
  color: var(--rdm-muted);
  font-size: 0.82rem;
}

.rdm-menu-address-state {
  padding: 12px 14px;
}

.rdm-menu-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.rdm-menu-summary-row strong {
  font-weight: 700;
}

.rdm-menu-delivery-message {
  margin: 12px 0;
  color: var(--rdm-muted);
  font-size: 0.9rem;
}

.rdm-delivery-details {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.rdm-delivery-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.rdm-delivery-details span {
  color: var(--rdm-muted);
  font-weight: 500;
}

.rdm-delivery-details strong {
  color: #101828;
  font-weight: 700;
}

.rdm-delivery-progress {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.rdm-delivery-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

.rdm-delivery-progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #eae7e3;
  overflow: hidden;
}

.rdm-delivery-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: #1a7b32;
}

.rdm-menu-delivery-message.is-success {
  color: var(--rdm-success-text);
}

.rdm-menu-delivery-message.is-error {
  color: var(--rdm-error-text);
}

.rdm-menu-cart-items {
  margin: 12px 0;
}

.rdm-menu-cart-empty {
  margin: 0;
  color: var(--rdm-muted);
  font-size: 0.9rem;
}

.rdm-menu-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.rdm-menu-cart-list li {
  padding: 18px 0;
  border-bottom: 1px solid #ece7e1;
}

.rdm-menu-cart-list li:first-child {
  padding-top: 2px;
}

.rdm-menu-cart-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rdm-menu-cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.rdm-menu-cart-line-main {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.rdm-menu-cart-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.rdm-menu-cart-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd9d4;
  border-radius: 10px;
  background: #fff;
  color: var(--rdm-text);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: none;
}

.rdm-menu-cart-btn:hover {
  background: #f8f5f1;
}

.rdm-menu-cart-qty {
  min-width: 18px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rdm-text);
}

.rdm-menu-cart-item-name {
  font-family: var(--rdm-font-serif);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.15;
}

.rdm-menu-cart-item-meta {
  font-size: 0.78rem;
  color: var(--rdm-muted);
}

.rdm-menu-cart-item-addons {
  font-size: 0.76rem;
  color: var(--rdm-muted);
  line-height: 1.35;
}

.rdm-menu-cart-more {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--rdm-muted);
}

.rdm-cta-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  cursor: not-allowed;
}

.rdm-category-section {
  display: grid;
  gap: 10px;
}

.rdm-category-title {
  margin: 0;
  font-family: var(--rdm-font-serif);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--rdm-text);
  letter-spacing: -0.02em;
}

.rdm-product-card {
  position: relative;
  background: var(--rdm-surface);
  border: 1px solid #eae7e3;
  border-radius: var(--rdm-radius);
  padding: 12px;
  display: grid;
  gap: 8px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.rdm-product-card:hover {
  border-color: rgba(216, 90, 48, 0.3);
  box-shadow: 0 12px 28px rgba(26, 24, 22, 0.06);
}

.rdm-product-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
}

.rdm-product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  box-shadow: 0 8px 18px rgba(26, 24, 22, 0.16);
}

.rdm-product-badge--featured {
  color: #0f5132;
  background: #dcfce7;
}

.rdm-product-badge--best {
  color: #0f5132;
  background: #dcfce7;
}

.rdm-product-badge--sale {
  color: #991b1b;
  background: #fee2e2;
}

.rdm-product-badge--custom {
  color: #1e3a8a;
  background: #dbeafe;
}

@media (max-width: 739px) {
  .rdm-product-badges {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .rdm-product-badge {
    padding: 4px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .rdm-product-badge--best,
  .rdm-product-badge--sale,
  .rdm-product-badge--custom {
    color: #fff;
    background: rgba(26, 24, 22, 0.72);
    backdrop-filter: blur(4px);
  }

  .rdm-product-image {
    height: 168px;
  }
}

.rdm-product-image {
  position: relative;
  height: 118px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, #ffe7d2 0%, #ffe7d2 22%, transparent 23%),
    radial-gradient(circle at 70% 74%, #ffd6ad 0%, #ffd6ad 28%, transparent 29%),
    linear-gradient(145deg, #fff8ef 0%, #fef1df 100%);
}

.rdm-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 739px) {
  .rdm-product-image {
    height: 168px;
  }

  .rdm-product-title {
    font-size: 1.28rem;
    line-height: 1.2;
  }
}

.rdm-product-title {
  margin: 0;
  font-family: var(--rdm-font-serif);
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--rdm-text);
}

.rdm-product-desc {
  margin: 0;
  color: var(--rdm-muted);
  min-height: 34px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.rdm-option-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: #6b6560;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rdm-variant-select {
  width: 100%;
  min-height: 40px;
  border: 1px solid #ddd9d4;
  border-radius: var(--rdm-radius-input);
  padding: 8px 10px;
  background: #fafaf9;
  font-family: var(--rdm-font-sans);
}

.rdm-addon-list {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #fafaf9;
  border: 1px solid #e6dfd7;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.rdm-addon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 2px;
  font-size: 0.96rem;
  color: var(--rdm-text);
}

.rdm-addon-item + .rdm-addon-item {
  padding-top: 8px;
  border-top: 1px solid #ebe5de;
}

.rdm-addon-item input {
  flex: 0 0 auto;
}

.rdm-addon-item span,
.rdm-addon-item label,
.rdm-addon-item {
  line-height: 1.35;
}

.rdm-addon-rule {
  font-size: 0.85rem;
  color: var(--rdm-muted);
}

.rdm-addon-source {
  display: none;
}

.rdm-addon-inline-hint {
  margin: 0;
  font-size: 0.84rem;
  color: var(--rdm-muted);
}

.rdm-modal[hidden] {
  display: none;
}

.rdm-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 12px;
}

.rdm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 32, 0.45);
}

.rdm-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 24px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.rdm-addon-modal-panel {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 0;
  width: min(1040px, calc(100vw - 48px));
  max-height: min(88vh, 860px);
  padding: 24px 28px;
  overflow: hidden;
}

.rdm-addon-modal-panel h3 {
  margin: 0 0 6px;
  font-family: var(--rdm-font-serif);
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.rdm-addon-modal-panel .rdm-modal-subtitle {
  margin: 0 0 14px;
  font-size: 1rem;
}

.rdm-addon-modal-panel #rdm-addon-modal-feedback {
  margin-bottom: 10px;
}

.rdm-addon-modal-panel .rdm-addon-list {
  min-height: 0;
  overflow: auto;
  padding: 4px 8px 0 0;
  margin-right: -4px;
  -webkit-overflow-scrolling: touch;
}

.rdm-addon-modal-panel .rdm-modal-actions {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eee6dd;
  background: #fff;
}

.rdm-auth-modal-panel {
  width: min(420px, calc(100vw - 28px));
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  max-height: min(92vh, 860px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.rdm-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 0;
  padding: 14px 16px 0;
  border-bottom: 1px solid var(--rdm-border);
}

.rdm-auth-tab {
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--rdm-muted);
  font-weight: 600;
  cursor: pointer;
  margin-bottom: -1px;
}

.rdm-auth-tab.is-active {
  border-bottom-color: var(--rdm-primary);
  color: var(--rdm-primary-strong);
}

.rdm-auth-modal-body {
  display: grid;
  gap: 0;
  padding: 22px 22px 18px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.rdm-auth-stack {
  display: grid;
  gap: 14px;
}

.rdm-auth-stack[hidden],
[data-rdm-auth-panel][hidden] {
  display: none !important;
}

.rdm-auth-stack label {
  display: grid;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--rdm-muted);
  font-weight: 600;
}

.rdm-auth-stack input {
  width: 100%;
  border: 1.5px solid var(--rdm-border);
  border-radius: 10px;
  min-height: 46px;
  padding: 10px 12px;
  font-size: 0.95rem;
  background: #fff;
  line-height: 1.2;
}

.rdm-auth-stack input:focus {
  outline: none;
  border-color: var(--rdm-primary);
  box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.12);
}

.rdm-auth-inline {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.rdm-auth-inline input {
  width: 17px;
  min-width: 17px;
  max-width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 0;
  padding: 0;
  accent-color: var(--rdm-primary);
  box-shadow: none;
}

.rdm-auth-muted-link {
  color: var(--rdm-primary-strong);
  font-weight: 600;
  text-decoration: none;
}

.rdm-auth-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--rdm-border);
  background: var(--rdm-soft);
  color: var(--rdm-muted);
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.rdm-auth-modal-header {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.rdm-auth-modal-header .rdm-chip {
  width: fit-content;
}

.rdm-auth-modal-header h3 {
  margin: 0;
  font-family: var(--rdm-font-serif);
  font-size: 1.75rem;
  line-height: 1.12;
  font-weight: 500;
}

.rdm-auth-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: -2px;
}

.rdm-auth-inline-modal span {
  color: var(--rdm-muted);
  font-size: 0.88rem;
}

.rdm-auth-modal-footnote {
  text-align: center;
  font-size: 0.84rem;
  color: var(--rdm-muted);
}

.rdm-auth-modal-footnote a {
  color: var(--rdm-primary-strong);
  font-weight: 600;
  text-decoration: none;
}

.rdm-auth-modal-switch-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--rdm-primary-strong);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.rdm-auth-modal-legal {
  display: grid;
  gap: 8px;
  text-align: center;
  color: var(--rdm-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.rdm-auth-modal-legal p {
  margin: 0;
}

.rdm-auth-modal-legal a,
.rdm-auth-modal-legal .rdm-auth-modal-legal-text,
.rdm-auth-modal-legal .rdm-auth-modal-switch-link {
  font-weight: 600;
}

.rdm-auth-modal-legal a {
  color: var(--rdm-primary-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rdm-auth-modal-legal .rdm-auth-modal-legal-text {
  color: var(--rdm-primary-strong);
}

.rdm-auth-modal-footer {
  padding: 12px 22px 16px;
  border-top: 1px solid var(--rdm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
}

.rdm-auth-modal-footer span,
.rdm-auth-modal-footer a {
  font-size: 0.72rem;
}

.rdm-auth-modal-footer span {
  color: var(--rdm-muted);
}

.rdm-auth-modal-footer a {
  color: var(--rdm-text);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 739px) {
  #rdm-auth-modal {
    align-items: end;
    padding: 0;
  }

  .rdm-auth-modal-panel {
    width: min(100vw, 100%);
    max-height: min(88dvh, 760px);
    border-radius: 24px 24px 0 0;
  }

  .rdm-auth-tabs {
    padding: 12px 14px 0;
  }

  .rdm-auth-tab {
    min-height: 40px;
    font-size: 0.98rem;
  }

  .rdm-auth-modal-close {
    top: 10px;
    right: 10px;
  }

  .rdm-auth-modal-body {
    padding: 18px 16px 16px;
  }

  .rdm-auth-modal-header h3 {
    font-size: 1.45rem;
  }

  .rdm-auth-stack {
    gap: 12px;
  }

  .rdm-auth-stack label {
    font-size: 0.8rem;
  }

  .rdm-auth-stack input {
    min-height: 44px;
    font-size: 0.92rem;
  }

  .rdm-auth-modal-row {
    align-items: flex-start;
  }

  .rdm-auth-modal-footer {
    padding: 10px 16px 14px;
  }
}

.rdm-modal-panel h3 {
  margin: 0 0 4px;
}

.rdm-modal-subtitle {
  margin: 0 0 12px;
  color: var(--rdm-muted);
}

.rdm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

body.rdm-modal-open {
  overflow: hidden;
}

.rdm-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rdm-price {
  font-weight: 500;
  color: var(--rdm-text);
  font-size: 0.98rem;
}

.rdm-cta {
  border: 0;
  border-radius: var(--rdm-radius-button);
  background: var(--rdm-primary);
  color: #ffffff;
  font-family: var(--rdm-font-sans);
  font-weight: 500;
  padding: 10px 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.12s ease, box-shadow 0.12s ease;
}

.rdm-cta:hover {
  background: var(--rdm-primary-strong);
  box-shadow: 0 10px 20px rgba(216, 90, 48, 0.22);
}

.rdm-cta:active {
  transform: translateY(1px);
}

.rdm-cta:disabled {
  opacity: 0.72;
  cursor: wait;
}

.rdm-cta-full {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

.rdm-cta-ghost {
  background: #fff6ee;
  color: var(--rdm-primary-strong);
  border: 1px solid #ffd2a9;
}

.rdm-cta-ghost:hover {
  background: #ffeedf;
  box-shadow: none;
}

.rdm-cart-items {
  margin-bottom: 0;
}

.rdm-cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.rdm-cart-item {
  display: grid;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--rdm-border);
  border-radius: 14px;
  background: var(--rdm-soft);
}

.rdm-item-name {
  font-weight: 700;
}

.rdm-item-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rdm-item-qty {
  width: 70px;
  height: 34px;
  border: 1px solid var(--rdm-border);
  border-radius: 10px;
  padding: 0 8px;
  background: #fff;
}

.rdm-remove-item {
  border-radius: 10px;
  border: 1px solid #d9deea;
  background: #fff;
  padding: 8px 10px;
  line-height: 1;
}

.rdm-item-total {
  font-weight: 800;
}

.rdm-cart-summary {
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  background: #fff7ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
}

.rdm-thankyou-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rdm-mobile-only {
  display: none;
}

.rdm-desktop-only {
  display: block;
}

.rdm-checkout-form p {
  display: grid;
  gap: 6px;
  margin: 0;
  align-content: start;
  align-self: start;
}

.rdm-checkout-layout {
  display: grid;
  gap: 22px;
  margin-top: 8px;
}

.rdm-checkout-main,
.rdm-checkout-sidebar {
  min-width: 0;
}

.rdm-checkout-form {
  display: grid;
  gap: 16px;
}

.rdm-checkout-section {
  padding: 22px;
  border: 1px solid var(--rdm-border);
  border-radius: 20px;
  background: #fff;
  display: grid;
  gap: 16px;
}

.rdm-checkout-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rdm-checkout-section-head h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.rdm-checkout-form-grid {
  display: grid;
  gap: 12px;
}

.rdm-checkout-page-head {
  margin-bottom: 18px;
}

.rdm-checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--rdm-primary-strong);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.rdm-checkout-page-head h2 {
  margin: 0;
  font-family: var(--rdm-font-serif);
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.rdm-checkout-page-head p {
  margin: 8px 0 0;
  color: var(--rdm-muted);
  font-size: 1rem;
}

.rdm-checkout-choice-grid {
  display: grid;
  gap: 10px;
}

.rdm-checkout-choice-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rdm-checkout-choice-grid--payments {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.rdm-checkout-choice {
  width: 100%;
  min-height: 96px;
  border: 2px solid var(--rdm-border);
  border-radius: 18px;
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.rdm-checkout-choice:hover {
  border-color: #d8cfc6;
}

.rdm-checkout-choice.is-active {
  border-color: var(--rdm-primary);
  background: #fff6ee;
  box-shadow: inset 0 0 0 1px rgba(216, 90, 48, 0.12);
}

.rdm-checkout-choice-icon {
  flex: 0 0 auto;
  font-size: 1.25rem;
  line-height: 1;
}

.rdm-checkout-choice-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 3px;
}

.rdm-checkout-choice-copy strong {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--rdm-text);
}

.rdm-checkout-choice-copy small {
  color: var(--rdm-muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.rdm-checkout-choice-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid var(--rdm-border);
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
}

.rdm-checkout-choice.is-active .rdm-checkout-choice-dot {
  border-color: var(--rdm-primary);
  background: var(--rdm-primary);
}

.rdm-checkout-choice.is-active .rdm-checkout-choice-dot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: #fff;
}

.rdm-checkout-native-select {
  display: none;
}

.rdm-checkout-note-field textarea {
  min-height: 120px;
}

.rdm-checkout-zone-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--rdm-border);
  background: #fafaf9;
}

.rdm-checkout-zone-badge-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.rdm-checkout-zone-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f0ece6;
  color: var(--rdm-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.rdm-checkout-zone-badge-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.rdm-checkout-zone-badge-copy strong {
  color: var(--rdm-text);
  font-size: 1rem;
  font-weight: 700;
}

.rdm-checkout-zone-badge-copy span {
  color: var(--rdm-muted);
  font-size: 0.84rem;
}

.rdm-checkout-zone-badge-side {
  color: var(--rdm-text);
  font-size: 0.95rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.rdm-checkout-zone-badge.is-ready {
  border-color: rgba(26, 123, 50, 0.18);
  background: #f0fbf3;
}

.rdm-checkout-zone-badge.is-ready .rdm-checkout-zone-badge-icon {
  background: #e0f4e4;
  color: #1a7b32;
}

.rdm-checkout-zone-badge.is-ready .rdm-checkout-zone-badge-copy strong,
.rdm-checkout-zone-badge.is-ready .rdm-checkout-zone-badge-side {
  color: #1a7b32;
}

.rdm-checkout-zone-badge.is-ready .rdm-checkout-zone-badge-copy span {
  color: #4c8f5b;
}

.rdm-checkout-address-card {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--rdm-border);
  border-radius: 16px;
  background: #fafaf9;
}

.rdm-checkout-address-card.is-ready {
  border-color: rgba(26, 123, 50, 0.18);
  background: #f0fbf3;
}

.rdm-checkout-address-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rdm-checkout-address-card-label {
  color: #6b6560;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rdm-checkout-address-card-action {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--rdm-primary-strong);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.rdm-checkout-address-card-body {
  display: grid;
  gap: 4px;
}

.rdm-checkout-address-card-body strong {
  color: var(--rdm-text);
  font-size: 1rem;
  line-height: 1.3;
}

.rdm-checkout-address-card-body span {
  color: var(--rdm-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

#rdm-delivery-fields > p {
  display: none;
}

.rdm-checkout-address-modal-panel {
  width: min(720px, calc(100vw - 48px));
  max-height: min(78dvh, 760px);
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.rdm-checkout-address-modal-panel label {
  display: block;
  color: #6b6560;
  font-size: 0.82rem;
  font-weight: 700;
}

.rdm-checkout-address-modal-panel .rdm-menu-address-wrap {
  margin: 0;
  display: grid;
  gap: 8px;
}

.rdm-checkout-address-modal-panel .rdm-menu-address-suggestions {
  position: static;
  margin-top: 10px;
  max-height: min(42dvh, 320px);
}

.rdm-checkout-summary-card {
  padding: 22px;
  border: 1px solid var(--rdm-border);
  border-radius: 20px;
  background: #fff;
  display: grid;
  gap: 16px;
}

.rdm-checkout-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rdm-checkout-summary-head h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 500;
  font-family: var(--rdm-font-serif);
}

.rdm-checkout-summary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--rdm-primary);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.rdm-checkout-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.rdm-checkout-summary-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1ece6;
}

.rdm-checkout-summary-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rdm-checkout-summary-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff6ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.rdm-checkout-summary-item-info {
  min-width: 0;
  display: grid;
  gap: 4px;
  align-content: start;
}

.rdm-checkout-summary-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rdm-text);
  line-height: 1.25;
  word-break: break-word;
}

.rdm-checkout-summary-item-detail {
  color: var(--rdm-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.rdm-checkout-summary-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
}

.rdm-checkout-summary-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--rdm-border);
  border-radius: 10px;
  background: #fff;
  color: var(--rdm-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.rdm-checkout-summary-qty {
  min-width: 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rdm-text);
}

.rdm-checkout-summary-item-price {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--rdm-text);
  line-height: 1.2;
}

.rdm-checkout-summary-warning {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(184, 90, 0, 0.16);
  background: #fff7ed;
}

.rdm-checkout-summary-warning-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.rdm-checkout-summary-warning-row span,
.rdm-checkout-summary-warning-row strong {
  font-size: 0.9rem;
  color: #b85a00;
  font-weight: 700;
}

.rdm-checkout-summary-warning-track {
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(184, 90, 0, 0.15);
}

.rdm-checkout-summary-warning-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #b85a00;
}

.rdm-checkout-summary-totals {
  display: grid;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid var(--rdm-border);
}

.rdm-checkout-summary-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--rdm-muted);
  font-size: 0.95rem;
}

.rdm-checkout-summary-total-row strong {
  color: var(--rdm-text);
  font-size: 1rem;
  font-weight: 700;
}

.rdm-checkout-summary-total-row.is-final span,
.rdm-checkout-summary-total-row.is-final strong {
  color: var(--rdm-text);
  font-size: 1.12rem;
}

.rdm-checkout-free-progress {
  margin-top: -2px;
}

.rdm-checkout-submit {
  margin-top: 2px;
}

.rdm-auth-form {
  display: block;
}

.rdm-auth-checkbox {
  display: block;
}

.rdm-auth-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rdm-auth-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rdm-auth-links a {
  color: var(--rdm-primary-strong);
  font-weight: 700;
  text-decoration: none;
}

.rdm-auth-panel {
  display: grid;
  gap: 14px;
}

.rdm-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rdm-auth-page-shell {
  max-width: 1120px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rdm-auth-page {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  min-height: 620px;
  background: #fff;
  border: 1px solid var(--rdm-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(35, 24, 18, 0.08);
}

.rdm-auth-showcase {
  background: linear-gradient(160deg, #1a0e08 0%, #2e1608 50%, #3d200a 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 42px 36px;
  display: grid;
  align-content: start;
  gap: 26px;
  position: relative;
  overflow: hidden;
}

.rdm-auth-showcase::before,
.rdm-auth-showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.1);
}

.rdm-auth-showcase::before {
  width: 240px;
  height: 240px;
  right: -90px;
  top: -70px;
}

.rdm-auth-showcase::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -80px;
}

.rdm-auth-showcase-top,
.rdm-auth-showcase-cards {
  position: relative;
  z-index: 1;
}

.rdm-auth-showcase-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
}

.rdm-auth-showcase-logo-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--rdm-primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.rdm-auth-showcase-logo-copy {
  font-family: var(--rdm-font-display);
  font-size: 1.2rem;
  color: #fff;
}

.rdm-auth-showcase-title {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--rdm-font-display);
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1.15;
}

.rdm-auth-showcase-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.rdm-auth-showcase-cards {
  display: grid;
  gap: 10px;
  align-content: start;
}

.rdm-auth-showcase-card {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
}

.rdm-auth-showcase-card strong,
.rdm-auth-showcase-card span {
  display: block;
}

.rdm-auth-showcase-card strong {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.rdm-auth-showcase-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.rdm-auth-page-panel {
  padding: 46px 52px;
  display: grid;
  align-content: center;
  gap: 18px;
  background: #fff;
}

.rdm-auth-page-panel .rdm-chip {
  width: fit-content;
  margin-bottom: -4px;
}

.rdm-auth-page-title {
  margin: 0;
  font-family: var(--rdm-font-display);
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  line-height: 1.12;
}

.rdm-auth-page-subtitle {
  margin: -6px 0 0;
  color: var(--rdm-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.rdm-auth-page-switch {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 16px;
  background: var(--rdm-soft);
  width: min(100%, 360px);
}

.rdm-auth-page-switch-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--rdm-muted);
  text-decoration: none;
  font-weight: 700;
}

.rdm-auth-page-switch-item.is-active {
  background: #fff;
  color: var(--rdm-text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.rdm-auth-page-form {
  display: grid;
  gap: 14px;
}

.rdm-auth-page-field {
  display: grid;
  gap: 7px;
}

.rdm-auth-page-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rdm-muted);
}

.rdm-auth-page-field input {
  min-height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--rdm-border);
  border-radius: 14px;
  background: #fff;
  font-size: 1rem;
}

.rdm-auth-page-field input:focus {
  border-color: var(--rdm-primary-strong);
  outline: none;
  box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.12);
}

.rdm-auth-page-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.rdm-auth-page-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rdm-muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.rdm-auth-page-check input {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  flex: 0 0 18px;
  accent-color: var(--rdm-primary-strong);
  box-shadow: none;
}

.rdm-auth-page-check span {
  display: inline;
  line-height: 1.35;
}

.rdm-auth-page-forgot {
  color: var(--rdm-primary-strong);
  font-weight: 700;
  text-decoration: none;
}

.rdm-auth-page-submit {
  margin-top: 6px;
}

.rdm-auth-links-centered {
  justify-content: center;
}

.rdm-auth-forgot-shell {
  max-width: 560px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rdm-auth-forgot-page {
  background: #fff;
  border: 1px solid var(--rdm-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(35, 24, 18, 0.08);
}

.rdm-auth-forgot-steps {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 26px;
  border-bottom: 1px solid var(--rdm-border);
}

.rdm-auth-forgot-step {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.rdm-auth-forgot-step span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rdm-border);
  color: var(--rdm-muted);
  font-size: 0.76rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.rdm-auth-forgot-step strong {
  font-size: 0.82rem;
  color: var(--rdm-muted);
  font-weight: 700;
  white-space: nowrap;
}

.rdm-auth-forgot-step.is-active span,
.rdm-auth-forgot-step.is-done span {
  background: var(--rdm-primary);
  color: #fff;
}

.rdm-auth-forgot-step.is-active strong,
.rdm-auth-forgot-step.is-done strong {
  color: var(--rdm-primary-strong);
}

.rdm-auth-forgot-step-sep {
  flex: 1 1 auto;
  height: 1px;
  background: var(--rdm-border);
  margin: 0 10px;
}

.rdm-auth-forgot-hero {
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--rdm-border);
}

.rdm-auth-forgot-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 14px;
  background: #fef6ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.rdm-auth-forgot-title {
  margin: 8px 0 6px;
  font-family: var(--rdm-font-serif);
  font-size: 2rem;
  line-height: 1.08;
}

.rdm-auth-forgot-text {
  margin: 0;
  color: var(--rdm-muted);
  line-height: 1.55;
}

.rdm-auth-forgot-body {
  padding: 24px 30px 28px;
  display: grid;
  gap: 16px;
}

.rdm-auth-forgot-form {
  display: grid;
  gap: 16px;
}

.rdm-auth-forgot-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(26, 123, 50, 0.18);
  border-radius: 16px;
  background: #f0fbf3;
}

.rdm-auth-forgot-success-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #1a7b32;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.rdm-auth-forgot-success strong {
  display: block;
  color: #1a7b32;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.rdm-auth-forgot-success p {
  margin: 0;
  color: #387547;
  font-size: 0.88rem;
  line-height: 1.5;
}

.rdm-auth-forgot-back {
  display: flex;
  justify-content: center;
}

.rdm-auth-forgot-back a {
  color: var(--rdm-muted);
  font-weight: 700;
  text-decoration: none;
}

.rdm-account-overview {
  display: grid;
  gap: 10px;
}

@media (max-width: 900px) {
  .rdm-auth-page {
    grid-template-columns: 1fr;
  }

  .rdm-auth-showcase {
    padding: 28px 22px;
    gap: 18px;
  }

  .rdm-auth-showcase-logo {
    margin-bottom: 20px;
  }

  .rdm-auth-page-panel {
    padding: 28px 22px;
  }

  .rdm-auth-forgot-steps {
    padding: 14px 18px;
    overflow-x: auto;
  }

  .rdm-auth-forgot-hero {
    padding: 22px 18px 18px;
  }

  .rdm-auth-forgot-title {
    font-size: 1.8rem;
  }

  .rdm-auth-forgot-body {
    padding: 18px 18px 22px;
  }
}

@media (max-width: 739px) {
  .rdm-auth-page-shell {
    margin: 0 auto 12px;
  }

  .rdm-auth-page {
    min-height: 0;
    border: 0;
    border-radius: 20px;
    box-shadow: none;
    background: transparent;
    gap: 12px;
  }

  .rdm-auth-showcase {
    padding: 20px 18px;
    border-radius: 24px;
    gap: 14px;
  }

  .rdm-auth-showcase-logo {
    margin-bottom: 12px;
  }

  .rdm-auth-showcase-title {
    font-size: 2rem;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .rdm-auth-showcase-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .rdm-auth-showcase-cards {
    gap: 8px;
  }

  .rdm-auth-showcase-card {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .rdm-auth-showcase-card strong {
    font-size: 0.9rem;
  }

  .rdm-auth-showcase-card span {
    font-size: 0.84rem;
  }

  .rdm-auth-page-panel {
    padding: 22px 18px 18px;
    border-radius: 24px;
    gap: 14px;
  }

  .rdm-auth-page-title {
    font-size: 2rem;
  }

  .rdm-auth-page-subtitle {
    margin-top: -2px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .rdm-auth-page-switch {
    width: 100%;
  }

  .rdm-auth-page-switch-item {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .rdm-auth-page-form {
    gap: 12px;
  }

  .rdm-auth-page-field label {
    font-size: 0.82rem;
  }

  .rdm-auth-page-field input {
    min-height: 48px;
    font-size: 0.98rem;
  }

  .rdm-auth-page-row {
    align-items: flex-start;
  }

  .rdm-auth-links-centered {
    justify-content: flex-start;
  }
}

.rdm-account-stat {
  min-height: 82px;
  padding: 12px;
  border: 1px solid var(--rdm-border);
  border-radius: 12px;
  background: var(--rdm-soft);
  display: grid;
  align-content: center;
  gap: 6px;
}

.rdm-account-stat span {
  color: var(--rdm-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.rdm-account-stat strong {
  color: #101828;
  font-size: 1.1rem;
  line-height: 1.2;
  word-break: break-word;
}

.rdm-account-mobile {
  display: none;
  gap: 0;
  padding: 12px 14px 0;
}

.rdm-account-mobile-screen[hidden] {
  display: none !important;
}

.rdm-account-mobile-screen.is-active {
  display: block;
}

.rdm-account-mobile-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 16px 16px;
  background: linear-gradient(135deg, #d85a30 0%, #bf4a22 100%);
  color: #fff;
  border-radius: 24px 24px 0 0;
}

.rdm-account-mobile-hero::before {
  content: "";
  position: absolute;
  top: -46px;
  right: -40px;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.rdm-account-mobile-hero-top,
.rdm-account-mobile-stats,
.rdm-account-mobile-loyalty-head,
.rdm-account-mobile-loyalty-main {
  position: relative;
  z-index: 1;
}

.rdm-account-mobile-hero-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rdm-account-mobile-avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.7rem;
}

.rdm-account-mobile-hero-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.rdm-account-mobile-hero-copy strong {
  color: #fff;
  font-family: var(--rdm-font-serif);
  font-size: 1.8rem;
  line-height: 0.98;
  font-weight: 500;
}

.rdm-account-mobile-hero-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.35;
  word-break: break-word;
}

.rdm-account-mobile-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.rdm-account-mobile-stat {
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  display: grid;
  align-content: center;
  gap: 3px;
}

.rdm-account-mobile-stat strong {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.05;
}

.rdm-account-mobile-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.rdm-account-mobile-loyalty {
  padding: 14px 16px 16px;
  background: linear-gradient(135deg, #2a1a0e 0%, #4a2816 100%);
  color: #fff;
  border-radius: 0 0 24px 24px;
}

.rdm-account-mobile-loyalty-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rdm-account-mobile-loyalty-head span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-account-mobile-loyalty-head small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.rdm-account-mobile-loyalty-main {
  margin-top: 10px;
}

.rdm-account-mobile-loyalty-main strong {
  display: block;
  font-family: var(--rdm-font-serif);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 500;
}

.rdm-account-mobile-loyalty-main p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.4;
}

.rdm-account-mobile-section {
  padding: 18px 0 0;
}

.rdm-account-mobile-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.rdm-account-mobile-section-head h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.rdm-account-mobile-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--rdm-primary-strong);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.rdm-account-mobile-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rdm-account-mobile-quick-card {
  min-height: 148px;
  padding: 14px;
  border: 1px solid var(--rdm-border);
  border-radius: 18px;
  background: var(--rdm-soft);
  text-align: left;
  text-decoration: none;
  display: grid;
  align-content: start;
  gap: 5px;
  color: var(--rdm-text);
  font: inherit;
  cursor: pointer;
}

.rdm-account-mobile-quick-card button {
  all: unset;
}

.rdm-account-mobile-quick-card.is-primary {
  background: var(--rdm-primary);
  border-color: var(--rdm-primary);
  color: #fff;
}

.rdm-account-mobile-quick-card strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.rdm-account-mobile-quick-card small {
  color: var(--rdm-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.rdm-account-mobile-quick-card.is-primary small {
  color: rgba(255, 255, 255, 0.8);
}

.rdm-account-mobile-quick-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #fff6ee;
  color: var(--rdm-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.rdm-account-mobile-quick-icon.is-success {
  background: #effaf2;
  color: #1f8a42;
}

.rdm-account-mobile-quick-icon.is-primary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.rdm-account-mobile-order-card {
  padding: 14px;
  border: 1px solid var(--rdm-border);
  border-radius: 18px;
  background: var(--rdm-soft);
}

.rdm-account-mobile-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rdm-account-mobile-order-top strong {
  display: block;
  color: var(--rdm-text);
  font-size: 0.98rem;
  line-height: 1.2;
}

.rdm-account-mobile-order-top small {
  display: block;
  margin-top: 4px;
  color: var(--rdm-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.rdm-account-mobile-order-middle {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rdm-account-mobile-order-price {
  margin-left: auto;
  text-align: right;
}

.rdm-account-mobile-order-price strong {
  color: var(--rdm-text);
  font-size: 1rem;
  line-height: 1.2;
}

.rdm-account-mobile-order-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.rdm-account-mobile-order-action {
  min-height: 46px;
  border: 1px solid var(--rdm-border);
  border-radius: 14px;
  background: #fff;
  color: #6d665f;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.rdm-account-mobile-order-action.is-soft {
  border-color: #f4d9c4;
  background: #fff4e9;
  color: var(--rdm-primary-strong);
}

.rdm-account-mobile-menu {
  margin-top: 18px;
  padding: 10px 0 4px;
  border-top: 1px solid var(--rdm-border);
}

.rdm-account-mobile-menu-item {
  width: 100%;
  min-height: 58px;
  padding: 0 6px;
  border: 0;
  border-bottom: 1px solid #f1ece7;
  background: transparent;
  color: #6d665f;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.rdm-account-mobile-menu-item:last-child {
  border-bottom: 0;
}

.rdm-account-mobile-menu-item span {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
}

.rdm-account-mobile-menu-item small {
  color: var(--rdm-muted);
  font-size: 1.1rem;
}

.rdm-account-mobile-menu-icon {
  width: 26px;
  text-align: center;
  color: currentColor;
  flex: 0 0 26px;
  font-size: 1.15rem;
}

.rdm-account-mobile-menu-item.is-danger,
.rdm-account-mobile-menu-item.is-danger .rdm-account-mobile-menu-icon {
  color: #991b1b;
}

.rdm-account-mobile-subheader {
  min-height: 56px;
  padding: 0 4px;
  border-bottom: 1px solid var(--rdm-border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.rdm-account-mobile-back {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--rdm-primary-strong);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.rdm-account-mobile-back span[aria-hidden="true"] {
  font-size: 1.35rem;
  line-height: 1;
}

.rdm-account-mobile-subheader strong {
  text-align: center;
  color: var(--rdm-text);
  font-size: 1.1rem;
  line-height: 1.2;
}

.rdm-account-mobile-subheader-spacer {
  width: 46px;
}

.rdm-account-mobile-profile-hero {
  padding: 22px 0 18px;
  display: grid;
  justify-items: center;
}

.rdm-account-mobile-profile-avatar {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #d85a30 0%, #bf4a22 100%);
  color: #fff;
  font-size: 2.4rem;
}

.rdm-account-mobile-profile-section {
  padding: 18px 0 0;
  border-top: 1px solid var(--rdm-border);
}

.rdm-account-mobile-profile-section-head {
  margin-bottom: 12px;
}

.rdm-account-mobile-profile-section-head h3 {
  margin: 0;
  color: var(--rdm-muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-account-mobile-profile-fields {
  display: grid;
  gap: 12px;
}

.rdm-account-mobile-profile-field {
  display: grid;
  gap: 8px;
}

.rdm-account-mobile-profile-field label {
  color: var(--rdm-muted);
  font-size: 0.92rem;
  line-height: 1.3;
}

.rdm-account-mobile-profile-value {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--rdm-border);
  border-radius: 14px;
  background: var(--rdm-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.rdm-account-mobile-profile-value span {
  flex: 1;
  color: var(--rdm-text);
  font-size: 1rem;
  line-height: 1.3;
  word-break: break-word;
}

.rdm-account-mobile-profile-value small {
  width: 22px;
  height: 22px;
  border: 1px solid #d8d1ca;
  border-radius: 6px;
  color: #8f877f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  font-size: 0.8rem;
}

.rdm-account-mobile-profile-cta {
  padding: 24px 0 4px;
}

.rdm-account-mobile-profile-note {
  margin: 10px 2px 0;
  color: var(--rdm-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: center;
}

.rdm-account-shell {
  padding: 0;
  overflow: hidden;
}

.rdm-account-dashboard {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 0;
}

.rdm-account-sidebar {
  border-right: 1px solid var(--rdm-border);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.rdm-account-sidebar-profile {
  padding: 24px 20px 18px;
  border-bottom: 1px solid var(--rdm-border);
  display: grid;
  gap: 6px;
}

.rdm-account-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d85a30 0%, #bf4a22 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rdm-font-serif);
  font-size: 1.55rem;
  color: #fff;
}

.rdm-account-sidebar-profile strong {
  font-size: 1.18rem;
  line-height: 1.15;
  color: var(--rdm-text);
}

.rdm-account-sidebar-profile span {
  color: var(--rdm-muted);
  font-size: 0.88rem;
  line-height: 1.4;
  word-break: break-word;
}

.rdm-account-points-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff3e7;
  color: var(--rdm-primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.rdm-account-sidebar-nav {
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 12px 0 0;
}

.rdm-account-sidebar-nav a,
.rdm-account-sidebar-nav button,
.rdm-account-sidebar-footer a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  color: #665f59;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  border-right: 2px solid transparent;
}

.rdm-account-sidebar-nav a:hover,
.rdm-account-sidebar-nav button:hover,
.rdm-account-sidebar-footer a:hover {
  background: #fbf6f1;
}

.rdm-account-sidebar-nav a.is-active,
.rdm-account-sidebar-nav button.is-active {
  background: #fff6ee;
  color: var(--rdm-primary-strong);
  border-right-color: var(--rdm-primary);
}

.rdm-account-sidebar-nav button {
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.rdm-account-sidebar-footer {
  margin-top: 10px;
  border-top: 1px solid var(--rdm-border);
  padding: 6px 0 10px;
}

.rdm-account-sidebar-footer a {
  color: #991b1b;
}

.rdm-account-content {
  padding: 28px 28px 30px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: #fff;
}

.rdm-account-panel {
  display: grid;
  align-content: start;
  gap: 16px;
}

.rdm-account-panel[hidden] {
  display: none !important;
}

.rdm-account-header {
  display: grid;
  gap: 8px;
}

.rdm-account-header .rdm-chip {
  display: inline-flex;
  justify-self: start;
  width: auto;
  max-width: max-content;
  min-height: 30px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.rdm-account-header h2 {
  margin: 0;
  font-family: var(--rdm-font-serif);
  font-size: 2.45rem;
  line-height: 0.98;
  font-weight: 500;
}

.rdm-account-header p {
  margin: 0;
  color: #6d665f;
  font-size: 0.92rem;
}

.rdm-account-profile-card {
  margin-top: 0;
  padding: 18px;
  border-radius: 20px;
  background: #f8f3ee;
}

.rdm-account-card-head,
.rdm-account-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rdm-account-card-head h3,
.rdm-account-section-head h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.rdm-account-card-head a,
.rdm-account-section-head a,
.rdm-account-address-action {
  color: var(--rdm-primary-strong);
  text-decoration: none;
  font-weight: 700;
}

.rdm-account-link-button {
  border: 0;
  background: transparent;
  color: var(--rdm-primary-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.rdm-account-profile-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(180px, 0.9fr);
  gap: 10px;
}

.rdm-account-profile-field {
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid var(--rdm-border);
  border-radius: 15px;
  background: #fff;
  display: grid;
  align-content: center;
  gap: 5px;
}

.rdm-account-profile-field span {
  color: var(--rdm-muted);
  font-size: 0.8rem;
}

.rdm-account-profile-field strong {
  color: var(--rdm-text);
  font-size: 0.98rem;
  line-height: 1.2;
  word-break: break-word;
}

.rdm-account-loyalty-card {
  position: relative;
  overflow: hidden;
  padding: 18px 20px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2a1a0e 0%, #4a2816 100%);
  color: #fff;
}

.rdm-account-loyalty-card::before,
.rdm-account-loyalty-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.12);
}

.rdm-account-loyalty-card::before {
  top: -42px;
  right: -78px;
  width: 112px;
  height: 112px;
}

.rdm-account-loyalty-card::after {
  right: 18px;
  bottom: -36px;
  width: 72px;
  height: 72px;
  background: rgba(216, 90, 48, 0.05);
}

.rdm-account-loyalty-top {
  position: relative;
  z-index: 1;
}

.rdm-account-loyalty-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.rdm-account-loyalty-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rdm-account-loyalty-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(216, 90, 48, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff8e58;
  font-size: 1.35rem;
}

.rdm-account-loyalty-main span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-account-loyalty-main strong {
  display: block;
  margin-top: 6px;
  font-family: var(--rdm-font-serif);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
}

.rdm-account-loyalty-main small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.rdm-account-loyalty-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-width: 236px;
  padding-right: 12px;
  padding-top: 4px;
}

.rdm-account-loyalty-stats div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
}

.rdm-account-loyalty-stats strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1;
}

.rdm-account-loyalty-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.rdm-account-orders-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.rdm-account-summary-card {
  padding: 16px;
  border: 1px solid var(--rdm-border);
  border-radius: 18px;
  background: var(--rdm-soft);
}

.rdm-account-summary-card span {
  display: block;
  color: var(--rdm-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-account-summary-card strong {
  display: block;
  margin-top: 10px;
  color: var(--rdm-text);
  font-family: var(--rdm-font-serif);
  font-size: 1.1rem;
  line-height: 1.15;
}

.rdm-account-summary-card small {
  display: block;
  margin-top: 4px;
  color: var(--rdm-muted);
  font-size: 0.8rem;
}

.rdm-account-orders-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.rdm-account-orders-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rdm-account-orders-chips button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--rdm-border);
  background: var(--rdm-soft);
  color: #746b63;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.rdm-account-orders-chips button.is-active {
  background: var(--rdm-primary);
  border-color: var(--rdm-primary);
  color: #fff;
}

.rdm-account-orders-search {
  min-width: 260px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--rdm-border);
  background: var(--rdm-soft);
  color: var(--rdm-muted);
}

.rdm-account-orders-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  color: var(--rdm-text);
}

.rdm-account-orders-table-wrap,
.rdm-account-loyalty-history-wrap {
  border-top: 1px solid transparent;
}

.rdm-account-orders-table,
.rdm-account-loyalty-history {
  width: 100%;
  border-collapse: collapse;
}

.rdm-account-orders-table {
  table-layout: fixed;
}

.rdm-account-orders-table thead th,
.rdm-account-loyalty-history thead th {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--rdm-border);
  color: var(--rdm-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
}

.rdm-account-orders-table tbody td,
.rdm-account-loyalty-history tbody td {
  padding: 18px 0;
  border-bottom: 1px solid #f1ece7;
  vertical-align: middle;
}

.rdm-account-orders-table thead th:nth-child(1),
.rdm-account-orders-table tbody td:nth-child(1) {
  width: 31%;
}

.rdm-account-orders-table thead th:nth-child(2),
.rdm-account-orders-table tbody td:nth-child(2) {
  width: 14%;
}

.rdm-account-orders-table thead th:nth-child(3),
.rdm-account-orders-table tbody td:nth-child(3) {
  width: 16%;
}

.rdm-account-orders-table thead th:nth-child(4),
.rdm-account-orders-table tbody td:nth-child(4) {
  width: 16%;
  overflow: hidden;
}

.rdm-account-orders-table thead th:nth-child(5),
.rdm-account-orders-table tbody td:nth-child(5) {
  width: 23%;
  overflow: hidden;
}

.rdm-account-order-id {
  color: var(--rdm-text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 230px;
  word-break: break-word;
}

.rdm-account-order-sub,
.rdm-account-order-date {
  color: var(--rdm-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.rdm-account-order-date {
  color: #5d554e;
  font-weight: 500;
}

.rdm-account-order-preview {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.rdm-account-orders-table .rdm-order-status-badge {
  white-space: nowrap;
}

.rdm-account-order-price-value {
  color: var(--rdm-text);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.rdm-account-order-points {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #fff3e7;
  color: var(--rdm-primary-strong);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.rdm-account-order-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
}

.rdm-account-order-action.is-soft {
  border-color: #f3dfcf;
  background: #fff4ea;
  color: var(--rdm-primary-strong);
}

.rdm-account-orders-table .rdm-account-order-action {
  min-width: 118px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.rdm-account-orders-empty {
  padding: 18px 0 0;
  color: var(--rdm-muted);
}

.rdm-account-selected-order {
  display: grid;
  gap: 10px;
}

.rdm-account-selected-order-card {
  padding: 18px;
  border: 1px solid var(--rdm-border);
  border-radius: 18px;
  background: #fff;
}

.rdm-account-selected-order-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.rdm-account-selected-order-top strong {
  display: block;
  color: var(--rdm-text);
  font-size: 1rem;
}

.rdm-account-selected-order-top small {
  display: block;
  margin-top: 4px;
  color: var(--rdm-muted);
}

.rdm-account-selected-order-items {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.rdm-account-selected-order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.rdm-account-selected-order-item strong {
  display: block;
  color: var(--rdm-text);
  font-size: 0.92rem;
}

.rdm-account-selected-order-item span,
.rdm-account-selected-order-side span {
  display: block;
  margin-top: 4px;
  color: var(--rdm-muted);
  font-size: 0.8rem;
}

.rdm-account-selected-order-side {
  text-align: right;
}

.rdm-account-loyalty-hero {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #d85a30 0%, #b3482a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
}

.rdm-account-loyalty-hero::before,
.rdm-account-loyalty-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.rdm-account-loyalty-hero::before {
  top: -28px;
  right: -40px;
  width: 150px;
  height: 150px;
}

.rdm-account-loyalty-hero::after {
  right: 68px;
  bottom: -38px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
}

.rdm-account-loyalty-hero .rdm-account-loyalty-main,
.rdm-account-loyalty-hero .rdm-account-loyalty-stats {
  position: relative;
  z-index: 1;
}

.rdm-account-loyalty-hero .rdm-account-loyalty-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.rdm-account-loyalty-hero .rdm-account-loyalty-main span,
.rdm-account-loyalty-hero .rdm-account-loyalty-main small,
.rdm-account-loyalty-hero .rdm-account-loyalty-stats span {
  color: rgba(255, 255, 255, 0.75);
}

.rdm-account-redeem-box {
  padding: 18px 20px;
  border: 1px solid #f3d2bf;
  border-radius: 18px;
  background: #fff6ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rdm-account-redeem-copy strong {
  display: block;
  color: var(--rdm-text);
  font-size: 1rem;
}

.rdm-account-redeem-copy span {
  display: block;
  margin-top: 4px;
  color: #6f665f;
  font-size: 0.9rem;
}

.rdm-account-loyalty-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rdm-account-loyalty-step {
  padding: 18px;
  border: 1px solid var(--rdm-border);
  border-radius: 18px;
  background: var(--rdm-soft);
}

.rdm-account-loyalty-step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fff3e7;
  color: var(--rdm-primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.rdm-account-loyalty-step strong {
  display: block;
  margin-top: 18px;
  color: var(--rdm-text);
  font-size: 1rem;
}

.rdm-account-loyalty-step p {
  margin: 10px 0 0;
  color: #6e665f;
  font-size: 0.9rem;
  line-height: 1.5;
}

.rdm-account-loyalty-total {
  color: var(--rdm-muted);
  font-size: 0.9rem;
}

.rdm-account-loyalty-event {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rdm-account-loyalty-event-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #edf7ee;
  color: #1a7b32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.rdm-account-loyalty-event-icon.is-negative {
  background: #fff3e7;
  color: var(--rdm-primary-strong);
}

.rdm-account-loyalty-event strong {
  display: block;
  color: var(--rdm-text);
  font-size: 0.94rem;
}

.rdm-account-loyalty-event small {
  display: block;
  margin-top: 4px;
  color: var(--rdm-muted);
  font-size: 0.8rem;
}

.rdm-account-loyalty-history td.is-positive {
  color: #1a7b32;
  font-weight: 700;
}

.rdm-account-loyalty-history td.is-negative {
  color: var(--rdm-primary-strong);
  font-weight: 700;
}

.rdm-account-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rdm-account-quick-card {
  min-height: 132px;
  padding: 14px;
  border: 1px solid var(--rdm-border);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  display: grid;
  gap: 5px;
}

.rdm-account-quick-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff4ea;
  color: var(--rdm-primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.rdm-account-quick-icon.is-success {
  background: #eef8f1;
  color: #1f8b4c;
}

.rdm-account-quick-card strong {
  color: var(--rdm-text);
  font-size: 0.95rem;
  line-height: 1.18;
}

.rdm-account-quick-card small {
  color: var(--rdm-muted);
  font-size: 0.8rem;
}

.rdm-account-quick-card span {
  align-self: end;
  color: var(--rdm-primary-strong);
  font-weight: 700;
  font-size: 0.84rem;
}

.rdm-account-section {
  display: grid;
  gap: 10px;
}

.rdm-account-order-card,
.rdm-account-address-card {
  padding: 12px 14px;
  border: 1px solid var(--rdm-border);
  border-radius: 18px;
  background: #fff;
  display: grid;
  align-items: center;
  gap: 12px;
}

.rdm-account-order-card {
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
}

.rdm-account-order-preview {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rdm-account-order-copy strong {
  display: block;
  color: var(--rdm-text);
  font-size: 0.95rem;
  line-height: 1.2;
}

.rdm-account-order-copy small,
.rdm-account-address-copy small {
  display: block;
  margin-top: 4px;
  color: var(--rdm-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.rdm-account-order-price {
  text-align: right;
}

.rdm-account-order-price strong {
  display: block;
  color: var(--rdm-text);
  font-size: 1rem;
  line-height: 1;
}

.rdm-account-order-price small {
  display: block;
  margin-top: 4px;
  color: var(--rdm-muted);
  font-size: 0.78rem;
}

.rdm-account-order-action {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--rdm-border);
  color: #6a625a;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rdm-account-address-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.rdm-account-address-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #eef8f1;
  color: #1f8b4c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.rdm-account-address-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rdm-account-address-top strong {
  color: var(--rdm-text);
  font-size: 0.95rem;
}

.rdm-account-address-top span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef8f1;
  color: #1f8b4c;
  font-size: 0.76rem;
  font-weight: 700;
}

.rdm-account-empty-state {
  margin-top: 0;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.rdm-chip--light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.rdm-confirmation-card {
  border: 1px solid var(--rdm-border);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}

.rdm-confirmation-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  padding: 30px 32px;
  background: linear-gradient(135deg, #cf5527 0%, #d85b2c 100%);
  color: #fff;
}

.rdm-confirmation-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
}

.rdm-confirmation-hero-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.rdm-confirmation-hero-main {
  display: grid;
  gap: 10px;
  align-content: start;
}

.rdm-confirmation-hero .rdm-checkout-back-link {
  color: rgba(255, 255, 255, 0.9);
}

.rdm-confirmation-hero h2 {
  margin: 0;
  font-family: var(--rdm-font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 500;
  color: #fff;
}

.rdm-confirmation-hero p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.rdm-confirmation-order-number {
  align-self: start;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.rdm-confirmation-order-number span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
}

.rdm-confirmation-order-number strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
}

.rdm-confirmation-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #f1ece6;
  border-bottom: 1px solid #f1ece6;
}

.rdm-confirmation-step {
  min-height: 102px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-content: center;
}

.rdm-confirmation-step + .rdm-confirmation-step {
  border-left: 1px solid #f1ece6;
}

.rdm-confirmation-step-index {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f2ede7;
  color: #918880;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.rdm-confirmation-step-copy {
  display: grid;
  gap: 4px;
}

.rdm-confirmation-step-copy strong {
  color: var(--rdm-text);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.rdm-confirmation-step-copy span {
  color: var(--rdm-muted);
  font-size: 0.88rem;
}

.rdm-confirmation-step.is-done .rdm-confirmation-step-index {
  background: #1f8f42;
  color: #fff;
}

.rdm-confirmation-step.is-current .rdm-confirmation-step-index {
  background: var(--rdm-primary);
  color: #fff;
}

.rdm-confirmation-step.is-current .rdm-confirmation-step-copy strong {
  color: var(--rdm-primary);
}

@media (min-width: 740px) {
  .rdm-confirmation-steps.rdm-mobile-only {
    display: none !important;
  }
}

.rdm-confirmation-tracker {
  padding: 24px 32px;
  border-bottom: 1px solid #f1ece6;
  display: grid;
  gap: 16px;
}

.rdm-confirmation-tracker-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rdm-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.rdm-confirmation-tracker-title svg {
  width: 15px;
  height: 15px;
  stroke: var(--rdm-primary);
  fill: none;
  stroke-width: 1.6;
}

.rdm-confirmation-tracker-live {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rdm-confirmation-tracker-live strong {
  color: #1f8f42;
  font-size: 0.98rem;
  font-weight: 700;
}

.rdm-confirmation-tracker-live span {
  color: var(--rdm-muted);
  font-size: 0.92rem;
}

.rdm-confirmation-tracker-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1f8f42;
  box-shadow: 0 0 0 6px rgba(31, 143, 66, 0.08);
}

.rdm-confirmation-tracker-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.rdm-confirmation-tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  text-align: center;
}

.rdm-confirmation-tracker-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid var(--rdm-border);
  background: #fff;
  color: var(--rdm-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.rdm-confirmation-tracker-step.is-done .rdm-confirmation-tracker-circle {
  border-color: #1f8f42;
  background: #1f8f42;
  color: #fff;
}

.rdm-confirmation-tracker-step.is-current .rdm-confirmation-tracker-circle {
  border-color: var(--rdm-primary);
  background: #fff5ee;
  color: var(--rdm-primary);
}

.rdm-confirmation-tracker-label {
  color: var(--rdm-muted);
  font-size: 0.85rem;
  line-height: 1.3;
}

.rdm-confirmation-tracker-step.is-done .rdm-confirmation-tracker-label {
  color: #1f8f42;
  font-weight: 700;
}

.rdm-confirmation-tracker-step.is-current .rdm-confirmation-tracker-label {
  color: var(--rdm-primary);
  font-weight: 700;
}

.rdm-confirmation-tracker-line {
  flex: 0 0 36px;
  height: 2px;
  background: var(--rdm-border);
  margin-bottom: 26px;
}

.rdm-confirmation-tracker-line.is-done {
  background: #1f8f42;
}

.rdm-confirmation-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid #f1ece6;
}

.rdm-confirmation-info-card {
  padding: 22px 24px;
  display: grid;
  gap: 6px;
}

.rdm-confirmation-info-card + .rdm-confirmation-info-card {
  border-left: 1px solid #f1ece6;
}

.rdm-confirmation-info-card span {
  color: #8a827a;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-confirmation-info-card strong {
  color: var(--rdm-text);
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 700;
}

.rdm-confirmation-info-card small {
  color: var(--rdm-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.rdm-confirmation-items {
  padding: 28px 24px 12px;
}

.rdm-confirmation-items--compact {
  padding: 0;
}

.rdm-confirmation-items-toggle {
  padding-top: 18px;
  padding-bottom: 6px;
}

.rdm-confirmation-items-toggle summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
}

.rdm-confirmation-items-toggle summary::-webkit-details-marker {
  display: none;
}

.rdm-confirmation-items-toggle summary strong {
  font-size: 1.2rem;
  color: var(--rdm-text);
}

.rdm-confirmation-items-toggle summary span {
  color: var(--rdm-primary-strong);
  font-weight: 700;
}

.rdm-confirmation-items-toggle[open] summary {
  margin-bottom: 14px;
}

.rdm-confirmation-items h3,
.rdm-confirmation-items h4 {
  margin: 0 0 18px;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--rdm-text);
}

.rdm-confirmation-item-list {
  display: grid;
  gap: 0;
}

.rdm-confirmation-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #f1ece6;
}

.rdm-confirmation-item:first-child {
  border-top: 0;
}

.rdm-confirmation-item-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #fff6ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
}

.rdm-confirmation-item-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rdm-confirmation-item-copy strong {
  color: var(--rdm-text);
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 700;
}

.rdm-confirmation-item-copy span {
  color: var(--rdm-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.rdm-confirmation-item-side {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

.rdm-confirmation-item-side span {
  color: var(--rdm-muted);
  font-size: 0.9rem;
}

.rdm-confirmation-item-side strong {
  color: var(--rdm-text);
  font-size: 1rem;
  font-weight: 700;
}

.rdm-confirmation-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 20px 32px 26px;
  border-top: 1px solid #f1ece6;
}

.rdm-confirmation-totals {
  display: grid;
  gap: 10px;
  width: 280px;
  margin-left: auto;
}

.rdm-confirmation-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--rdm-muted);
  font-size: 0.96rem;
}

.rdm-confirmation-totals strong {
  color: var(--rdm-text);
  font-size: 1rem;
  font-weight: 700;
}

.rdm-confirmation-totals .is-final span,
.rdm-confirmation-totals .is-final strong {
  color: var(--rdm-text);
  font-size: 1.18rem;
}

.rdm-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.rdm-confirmation-actions.rdm-mobile-only {
  display: none;
}

.rdm-confirmation-email-note {
  margin-left: auto;
  color: var(--rdm-muted);
  font-size: 0.86rem;
}

.rdm-confirmation-mobile-status {
  display: none;
}

.rdm-orders-page {
  display: grid;
  gap: 18px;
}

.rdm-orders-mobile-dashboard,
.rdm-orders-mobile-history,
.rdm-orders-mobile-detail {
  display: none;
}

.rdm-orders-section-head,
.rdm-thankyou-shell {
  min-width: 0;
}

.rdm-orders-page-head p {
  margin: 0;
}

.rdm-orders-guest-shell {
  display: grid;
  gap: 16px;
}

.rdm-orders-guest-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--rdm-border);
  border-radius: 20px;
  background: #faf7f3;
}

.rdm-orders-guest-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #fef6ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 2rem;
}

.rdm-orders-guest-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.rdm-orders-guest-copy h3 {
  margin: 0;
  font-family: var(--rdm-font-serif);
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 500;
}

.rdm-orders-guest-copy p {
  margin: 0;
  color: var(--rdm-muted);
  line-height: 1.6;
}

.rdm-orders-guest-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.rdm-orders-guest-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--rdm-border);
  border-radius: 14px;
  background: #fff;
}

.rdm-orders-guest-hint-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f3efe9;
  color: var(--rdm-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}

.rdm-orders-guest-hint p {
  margin: 0;
  color: var(--rdm-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.rdm-orders-guest-hint a {
  color: var(--rdm-primary-strong);
  font-weight: 700;
  text-decoration: none;
}

.rdm-orders-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #3c2416 0%, #4c2d18 100%);
  color: #fff;
}

.rdm-orders-hero-copy {
  display: grid;
  gap: 6px;
}

.rdm-orders-hero-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-orders-hero-copy strong {
  font-family: var(--rdm-font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  font-weight: 500;
}

.rdm-orders-hero-copy small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.rdm-orders-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 22px;
  align-content: center;
}

.rdm-orders-hero-stats div {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.rdm-orders-hero-stats strong {
  font-size: 1.9rem;
  font-weight: 700;
}

.rdm-orders-hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.rdm-orders-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--rdm-border);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.rdm-orders-stat-card {
  min-height: 130px;
  padding: 22px 24px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.rdm-orders-stat-card + .rdm-orders-stat-card {
  border-left: 1px solid var(--rdm-border);
}

.rdm-orders-stat-card span {
  color: #8a827a;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-orders-stat-card strong {
  color: var(--rdm-text);
  font-family: var(--rdm-font-serif);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.rdm-orders-stat-card small {
  color: var(--rdm-muted);
  font-size: 0.92rem;
}

.rdm-orders-history-card,
.rdm-orders-detail-card {
  padding: 24px;
}

.rdm-orders-history-head,
.rdm-orders-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.rdm-orders-history-head h3,
.rdm-orders-detail-head h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--rdm-text);
}

.rdm-orders-detail-head strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rdm-primary-strong);
}

.rdm-orders-table--enhanced td strong {
  display: block;
  font-size: 1rem;
  color: var(--rdm-text);
}

.rdm-orders-table--enhanced td small {
  display: block;
  margin-top: 4px;
  color: var(--rdm-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.rdm-order-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.rdm-order-status-badge.is-new {
  background: #eef4ff;
  color: #2457c5;
}

.rdm-order-status-badge.is-active {
  background: #fff4ec;
  color: var(--rdm-primary-strong);
}

.rdm-order-status-badge.is-completed {
  background: #eef8f0;
  color: #1f8f42;
}

.rdm-order-status-badge.is-cancelled {
  background: #fff1f1;
  color: #b42318;
}

.rdm-orders-detail-link {
  color: var(--rdm-primary-strong);
  font-weight: 700;
  text-decoration: none;
}

.rdm-orders-table-wrap {
  overflow-x: auto;
}

.rdm-orders-table {
  width: 100%;
  border-collapse: collapse;
}

.rdm-orders-table th,
.rdm-orders-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--rdm-border);
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

.rdm-orders-table th {
  color: #4d5870;
  font-weight: 700;
}

.rdm-order-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.rdm-loyalty-panel h3 {
  margin: 0 0 12px;
}

.rdm-loyalty-grid {
  display: grid;
  gap: 10px;
}

.rdm-loyalty-stat {
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--rdm-border);
  border-radius: 12px;
  background: var(--rdm-soft);
  display: grid;
  align-content: center;
  gap: 6px;
}

.rdm-loyalty-stat span {
  color: var(--rdm-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.rdm-loyalty-stat strong {
  color: #101828;
  font-size: 1.45rem;
  line-height: 1.1;
}

.rdm-loyalty-stat-main {
  background: #fff7ef;
  border-color: #ffd2a9;
}

.rdm-loyalty-note {
  margin: 12px 0 0;
  color: var(--rdm-muted);
}

.rdm-loyalty-checkout {
  margin-bottom: 0;
  padding: 18px 20px;
  border-radius: 18px;
  border-color: #f0e3d8;
  background:
    radial-gradient(circle at top right, rgba(216, 90, 48, 0.08), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, #fff7f0 100%);
}

.rdm-loyalty-checkout-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.rdm-loyalty-checkout h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.rdm-loyalty-checkout p {
  margin: 0 0 10px;
  color: var(--rdm-muted);
  max-width: 560px;
}

.rdm-loyalty-checkout-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.12);
  color: var(--rdm-primary-strong);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.rdm-loyalty-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #ecdcd0;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.rdm-loyalty-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rdm-loyalty-toggle:hover {
  border-color: #dfc7b5;
}

.rdm-loyalty-toggle-ui {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid #cdbfb3;
  background: #fff;
  flex: 0 0 auto;
  position: relative;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

.rdm-loyalty-toggle-copy {
  display: grid;
  gap: 4px;
}

.rdm-loyalty-toggle-copy strong {
  color: #5f6f8f;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
}

.rdm-loyalty-toggle-copy small {
  color: var(--rdm-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.rdm-loyalty-toggle input:checked + .rdm-loyalty-toggle-ui {
  border-color: var(--rdm-primary);
  background: var(--rdm-primary);
}

.rdm-loyalty-toggle input:checked + .rdm-loyalty-toggle-ui::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.rdm-loyalty-toggle input:checked ~ .rdm-loyalty-toggle-copy strong {
  color: var(--rdm-primary-strong);
}

.rdm-loyalty-checkout-empty {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--rdm-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.rdm-track-log ul {
  margin: 8px 0 0;
  padding: 0 0 0 18px;
}

.rdm-track-log li {
  margin-bottom: 7px;
}

.rdm-checkout-form label {
  font-size: 0.92rem;
  color: var(--muted, #5e6b82);
  font-weight: 600;
}

.rdm-checkout-form input,
.rdm-checkout-form textarea,
.rdm-checkout-form select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--rdm-border);
  border-radius: 12px;
  padding: 11px 12px;
  line-height: 1.25;
  font-size: 0.97rem;
  background: #fff;
}

.rdm-checkout-form input,
.rdm-checkout-form select {
  min-height: 54px;
}

.rdm-checkout-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #5e6b82 50%),
    linear-gradient(135deg, #5e6b82 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.rdm-checkout-form textarea {
  resize: vertical;
  min-height: 170px;
}

#rdm-delivery-fields {
  display: grid;
  gap: 12px;
}

@media (min-width: 740px) {
  .rdm-modal {
    place-items: start center;
    padding: 116px 24px 24px;
  }

  .rdm-addon-modal-panel {
    width: min(820px, calc(100vw - 64px));
    max-height: calc(100dvh - 140px);
    padding: 20px 22px 18px;
    border-radius: 22px;
  }

  .rdm-addon-modal-panel h3 {
    margin-bottom: 4px;
    font-size: 1.75rem;
  }

  .rdm-addon-modal-panel .rdm-modal-subtitle {
    margin-bottom: 10px;
    font-size: 0.96rem;
  }

  .rdm-addon-modal-panel .rdm-addon-list {
    padding-right: 4px;
    margin-right: 0;
  }

  .rdm-addon-modal-panel .rdm-modal-actions {
    position: sticky;
    bottom: 0;
    z-index: 1;
  }

  .rdm-app-shell {
    max-width: 980px;
    padding: 24px;
  }

  .rdm-account-shell {
    max-width: 1320px;
  }

  .rdm-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .rdm-cart-item {
    grid-template-columns: 1.2fr auto auto;
  }

  .rdm-checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #rdm-delivery-fields.rdm-checkout-form-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .rdm-checkout-field-span,
  .rdm-checkout-note-field {
    grid-column: 1 / -1;
  }

  .rdm-checkout-address-card {
    grid-column: 1 / -1;
  }

  .rdm-loyalty-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rdm-account-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 740px) and (max-width: 1199px) {
  .rdm-account-dashboard {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .rdm-account-content {
    padding: 24px;
  }

  .rdm-account-header h2 {
    font-size: 2.6rem;
  }

  .rdm-account-profile-grid,
  .rdm-account-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rdm-account-loyalty-top {
    display: grid;
    gap: 20px;
  }

  .rdm-account-loyalty-stats {
    min-width: 0;
  }

  .rdm-account-order-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .rdm-account-order-status,
  .rdm-account-order-price,
  .rdm-account-order-action {
    grid-column: 2 / -1;
  }

  .rdm-account-order-status {
    justify-self: start;
  }

  .rdm-account-order-price,
  .rdm-account-order-action {
    justify-self: end;
  }
}

@media (max-width: 739px) {
  .rdm-mobile-only {
    display: block;
  }

  .rdm-desktop-only {
    display: none !important;
  }

  .rdm-account-mobile {
    display: grid;
  }

  .rdm-modal {
    place-items: end stretch;
    padding: env(safe-area-inset-top, 0px) 0 0;
  }

  .rdm-addon-modal-panel {
    width: 100%;
    max-height: min(92dvh, 860px);
    min-height: min(640px, 92dvh);
    border-radius: 22px 22px 0 0;
    padding: 18px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
  }

  .rdm-addon-list {
    min-height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    align-content: start;
  }

  .rdm-addon-modal-panel .rdm-modal-actions {
    position: sticky;
    bottom: 0;
    z-index: 1;
    margin-top: 12px;
    padding-top: 12px;
    background: #fff;
    border-top: 1px solid #eee6dd;
  }

  .rdm-checkout-address-modal-panel {
    width: 100%;
    max-height: min(88dvh, 820px);
    border-radius: 22px 22px 0 0;
    padding: 18px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    grid-template-rows: auto auto minmax(0, 1fr) auto;
  }

  .rdm-checkout-address-modal-panel .rdm-menu-address-suggestions {
    max-height: none;
    min-height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rdm-checkout-address-modal-panel .rdm-menu-address-wrap {
    display: grid;
    gap: 10px;
    min-height: 0;
  }

  .rdm-delivery-picker-grid {
    gap: 12px;
  }

  .rdm-checkout-address-modal-panel .rdm-menu-address-input {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
  }

  .rdm-checkout-address-card {
    padding: 18px;
    border-radius: 18px;
  }

  .rdm-checkout-address-card-head {
    align-items: start;
  }

  .rdm-checkout-address-card-body strong {
    font-size: 1.02rem;
  }
}

@media (min-width: 1100px) {
  .rdm-menu-shell {
    max-width: 1200px;
  }

  .rdm-checkout-shell {
    max-width: 1180px;
  }

  .rdm-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
  }

  .rdm-checkout-sidebar {
    position: sticky;
    top: var(--rdm-sticky-offset, 22px);
  }

  .rdm-checkout-address-card {
    grid-column: 1 / -1;
  }

  body.admin-bar .rdm-checkout-sidebar {
    top: max(var(--rdm-sticky-offset, 22px), 124px);
  }

  body:not(.admin-bar) .rdm-checkout-sidebar {
    top: max(var(--rdm-sticky-offset, 22px), 92px);
  }

  .rdm-menu-layout {
    grid-template-columns: 1fr;
  }

  .rdm-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .rdm-product-card {
    padding: 16px;
  }

  .rdm-product-image {
    height: 132px;
  }
}

@media (max-width: 739px) {
  .rdm-app-shell {
    margin: 8px auto;
    padding: 0;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .rdm-menu-shell {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .rdm-orders-shell {
    padding-top: 10px;
  }

  .rdm-orders-section-head {
    display: none;
  }

  .rdm-thankyou-shell {
    padding: 10px;
  }

  .rdm-checkout-page-head h2 {
    font-size: 2.3rem;
  }

  .rdm-cta-soft {
    background: #fff4ea;
    color: var(--rdm-primary-strong);
    border: 1px solid #f7dfce;
  }

  .rdm-confirmation-hero,
  .rdm-confirmation-footer,
  .rdm-orders-hero {
    grid-template-columns: 1fr;
  }

  .rdm-orders-guest-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 18px;
  }

  .rdm-orders-guest-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.55rem;
  }

  .rdm-orders-guest-copy h3 {
    font-size: 1.15rem;
  }

  .rdm-orders-guest-copy p,
  .rdm-orders-guest-hint p {
    font-size: 0.84rem;
  }

  .rdm-orders-guest-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .rdm-orders-guest-actions .rdm-cta,
  .rdm-orders-guest-actions .rdm-cta-ghost {
    width: 100%;
    justify-content: center;
  }

  .rdm-orders-guest-hint {
    border-radius: 12px;
    padding: 12px 14px;
  }

  .rdm-confirmation-hero,
  .rdm-confirmation-items,
  .rdm-confirmation-footer,
  .rdm-orders-history-card,
  .rdm-orders-detail-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .rdm-confirmation-order-number,
  .rdm-confirmation-actions {
    justify-items: start;
    justify-content: flex-start;
  }

  .rdm-confirmation-steps,
  .rdm-confirmation-info-grid,
  .rdm-orders-stats-grid {
    grid-template-columns: 1fr;
  }

  .rdm-confirmation-step + .rdm-confirmation-step,
  .rdm-confirmation-info-card + .rdm-confirmation-info-card,
  .rdm-orders-stat-card + .rdm-orders-stat-card {
    border-left: 0;
    border-top: 1px solid #f1ece6;
  }

  .rdm-confirmation-card {
    border-radius: 22px;
  }

  .rdm-confirmation-hero {
    gap: 14px;
    padding: 18px 16px 20px;
  }

  .rdm-confirmation-hero h2 {
    font-size: 1.75rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 9ch;
  }

  .rdm-confirmation-hero p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .rdm-confirmation-hero .rdm-chip {
    min-height: 36px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.72rem;
  }

  .rdm-confirmation-order-number {
    justify-items: stretch;
  }

  .rdm-confirmation-order-number span {
    font-size: 0.72rem;
  }

  .rdm-confirmation-order-number strong {
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 0.98rem;
  }

  .rdm-confirmation-mobile-status {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    background: #eef9f1;
    border-bottom: 1px solid #ddeee2;
  }

  .rdm-confirmation-mobile-status-main {
    display: flex;
    align-items: start;
    gap: 12px;
    min-width: 0;
  }

  .rdm-confirmation-mobile-status-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #d9ded4;
    flex: 0 0 auto;
    margin-top: 4px;
  }

  .rdm-confirmation-mobile-status-dot.is-active {
    background: var(--rdm-primary);
  }

  .rdm-confirmation-mobile-status-dot.is-completed {
    background: #1f8f42;
  }

  .rdm-confirmation-mobile-status-dot.is-cancelled {
    background: #b42318;
  }

  .rdm-confirmation-mobile-status-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .rdm-confirmation-mobile-status-copy strong {
    color: #1f8f42;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .rdm-confirmation-mobile-status-copy span,
  .rdm-confirmation-mobile-status-side span {
    color: #5f8268;
    font-size: 0.88rem;
  }

  .rdm-confirmation-mobile-status-side {
    display: grid;
    gap: 2px;
    justify-items: end;
    text-align: right;
    flex: 0 0 auto;
  }

  .rdm-confirmation-mobile-status-side strong {
    font-size: 1rem;
    color: var(--rdm-text);
  }

  .rdm-confirmation-steps {
    position: relative;
    gap: 0;
    padding: 10px 18px 14px;
    grid-template-columns: 1fr;
    border-top: 0;
    border-bottom: 1px solid #f1ece6;
  }

  .rdm-confirmation-step {
    position: relative;
    min-height: auto;
    min-width: 0;
    padding: 12px 0 12px 52px;
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    gap: 4px;
  }

  .rdm-confirmation-step + .rdm-confirmation-step {
    border-top: 1px solid #f1ece6;
    border-left: 0;
  }

  .rdm-confirmation-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    left: 16px;
    width: 2px;
    height: calc(100% - 12px);
    background: #e6e1db;
  }

  .rdm-confirmation-step.is-done:not(:last-child)::after {
    background: #1f8f42;
  }

  .rdm-confirmation-step-copy strong,
  .rdm-confirmation-step-copy span {
    font-size: 0.82rem;
  }

  .rdm-confirmation-step-index {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 1;
  }

  .rdm-confirmation-step-copy {
    gap: 2px;
    justify-items: start;
  }

  .rdm-confirmation-step-copy strong {
    line-height: 1.15;
  }

  .rdm-confirmation-step-copy span {
    color: var(--rdm-muted);
    line-height: 1.15;
  }

  .rdm-confirmation-info-grid {
    border-bottom: 0;
  }

  .rdm-confirmation-info-card {
    padding: 16px 18px;
    border-bottom: 1px solid #f1ece6;
  }

  .rdm-confirmation-info-card:last-child {
    border-bottom: 0;
  }

  .rdm-confirmation-info-card strong {
    font-size: 0.98rem;
  }

  .rdm-confirmation-info-card small {
    font-size: 0.88rem;
  }

  .rdm-confirmation-items-toggle {
    padding: 14px 18px 6px;
    border-top: 1px solid #f1ece6;
  }

  .rdm-confirmation-items-toggle summary strong {
    max-width: 180px;
    font-size: 1.15rem;
    line-height: 1.05;
  }

  .rdm-confirmation-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .rdm-confirmation-item-side {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .rdm-confirmation-footer {
    gap: 16px;
    padding: 14px 18px 18px;
  }

  .rdm-confirmation-totals {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    gap: 8px;
  }

  .rdm-confirmation-totals div {
    min-width: 0;
  }

  .rdm-confirmation-totals strong {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .rdm-confirmation-totals .is-final span,
  .rdm-confirmation-totals .is-final strong {
    font-size: 1.05rem;
  }

  .rdm-confirmation-actions {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rdm-confirmation-actions.rdm-mobile-only {
    display: grid;
  }

  .rdm-confirmation-actions.rdm-desktop-only {
    display: none;
  }

  .rdm-confirmation-actions .rdm-cta {
    width: 100%;
    justify-content: center;
  }

  .rdm-confirmation-actions .rdm-cta-ghost {
    border-color: #f2d2bf;
    color: var(--rdm-primary-strong);
  }

  .rdm-orders-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .rdm-checkout-choice-grid--2,
  .rdm-checkout-choice-grid--payments {
    grid-template-columns: 1fr;
  }

  .rdm-checkout-choice {
    min-height: 98px;
    padding: 14px;
  }

  .rdm-checkout-summary-item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .rdm-checkout-summary-item-actions {
    grid-column: 2;
  }

  .rdm-checkout-summary-item-actions {
    margin-top: 4px;
  }

  .rdm-orders-mobile-dashboard,
  .rdm-orders-mobile-history {
    display: grid;
    gap: 16px;
  }

  .rdm-orders-page.has-selected-order .rdm-orders-mobile-dashboard,
  .rdm-orders-page.has-selected-order .rdm-orders-mobile-history {
    display: none;
  }

  .rdm-orders-page.has-selected-order .rdm-orders-mobile-detail {
    display: grid;
  }

  .rdm-orders-mobile-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding: 20px 22px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #4a2816 0%, #3c2114 100%);
    color: #fff;
  }

  .rdm-orders-mobile-hero::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -26px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(222, 111, 58, 0.18);
  }

  .rdm-orders-mobile-hero > * {
    position: relative;
    z-index: 1;
  }

  .rdm-orders-mobile-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(222, 111, 58, 0.22);
    color: #ff9f6f;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .rdm-orders-mobile-hero h3 {
    margin: 14px 0 6px;
    font-family: var(--rdm-font-serif);
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 500;
    color: #fff;
  }

  .rdm-orders-mobile-hero p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
  }

.rdm-orders-mobile-loyalty-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 8px;
}

  .rdm-orders-mobile-loyalty-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
  }

  .rdm-orders-mobile-loyalty-top span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .rdm-orders-mobile-loyalty-top strong {
    display: block;
    margin-top: 6px;
    font-family: var(--rdm-font-serif);
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 500;
  }

  .rdm-orders-mobile-tier {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(221, 112, 59, 0.28);
    color: #ffbc93;
    font-weight: 700;
    white-space: nowrap;
  }

  .rdm-orders-mobile-loyalty-card small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.35;
  }

.rdm-orders-mobile-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--rdm-border);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
  }

  .rdm-orders-mobile-stat-card {
    min-height: 118px;
    padding: 18px;
    display: grid;
    align-content: start;
    gap: 6px;
  }

  .rdm-orders-mobile-stat-card:nth-child(odd) {
    border-right: 1px solid var(--rdm-border);
  }

  .rdm-orders-mobile-stat-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--rdm-border);
  }

  .rdm-orders-mobile-stat-card span {
    color: #8a827a;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .rdm-orders-mobile-stat-card strong {
    font-family: var(--rdm-font-serif);
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 500;
    color: var(--rdm-text);
  }

  .rdm-orders-mobile-stat-card:nth-child(3) strong {
    font-size: 1.1rem;
    line-height: 1.2;
    font-family: var(--rdm-font-sans);
    font-weight: 700;
    word-break: break-word;
  }

  .rdm-orders-mobile-stat-card small {
    color: var(--rdm-muted);
    font-size: 0.92rem;
    line-height: 1.3;
  }

  .rdm-orders-mobile-history-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .rdm-orders-mobile-history-head h3 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1;
  }

  .rdm-orders-mobile-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .rdm-orders-mobile-filter {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f3eeea;
    color: #908782;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
  }

  .rdm-orders-mobile-filter.is-active {
    background: var(--rdm-primary);
    color: #fff;
  }

  .rdm-orders-mobile-card-list {
    display: grid;
    gap: 14px;
  }

  .rdm-orders-mobile-card {
    padding: 18px;
    border: 1px solid var(--rdm-border);
    border-radius: 22px;
    background: #fff;
    display: grid;
    gap: 14px;
  }

  .rdm-orders-mobile-card[hidden] {
    display: none !important;
  }

  .rdm-orders-mobile-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
  }

  .rdm-orders-mobile-card-head strong {
    display: block;
    color: var(--rdm-text);
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .rdm-orders-mobile-card-head small {
    display: block;
    margin-top: 4px;
    color: var(--rdm-muted);
    font-size: 0.9rem;
  }

  .rdm-orders-mobile-card-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .rdm-orders-mobile-preview-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .rdm-orders-mobile-preview-dot,
  .rdm-orders-mobile-preview-more {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #fff4ea;
    border: 1px solid #f6e4d7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--rdm-primary-strong);
    font-size: 0.95rem;
  }

  .rdm-orders-mobile-preview-dot svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .rdm-orders-mobile-preview-more {
    background: #f4f0ec;
    color: #8a827a;
  }

  .rdm-orders-mobile-card-total {
    display: grid;
    gap: 2px;
    justify-items: end;
    text-align: right;
  }

  .rdm-orders-mobile-card-total strong {
    color: var(--rdm-text);
    font-size: 1rem;
  }

  .rdm-orders-mobile-card-total small {
    color: var(--rdm-muted);
    font-size: 0.9rem;
  }

  .rdm-orders-mobile-card-actions,
  .rdm-orders-mobile-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .rdm-orders-mobile-card-actions .rdm-cta,
  .rdm-orders-mobile-detail-actions .rdm-cta {
    width: 100%;
    justify-content: center;
  }

  .rdm-orders-mobile-detail {
    display: none;
    gap: 14px;
  }

  .rdm-orders-mobile-detail-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 4px 2px 0;
  }

  .rdm-orders-mobile-detail-topbar a {
    color: var(--rdm-primary-strong);
    text-decoration: none;
    font-weight: 700;
  }

  .rdm-orders-mobile-detail-topbar strong {
    text-align: center;
    font-size: 1.05rem;
    color: var(--rdm-text);
  }

  .rdm-orders-mobile-detail-card {
    border: 1px solid var(--rdm-border);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
  }

  .rdm-orders-mobile-detail-status {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    background: #eef9f1;
    border-bottom: 1px solid #ddeee2;
  }

  .rdm-orders-mobile-detail-status.is-active {
    background: #fff7ef;
    border-bottom-color: #f3dfcf;
  }

  .rdm-orders-mobile-detail-status.is-cancelled {
    background: #fff4f4;
    border-bottom-color: #f1d6d6;
  }

  .rdm-orders-mobile-detail-status-main {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .rdm-orders-mobile-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #1f8f42;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
  }

  .rdm-orders-mobile-detail-status.is-active .rdm-orders-mobile-detail-icon {
    background: var(--rdm-primary);
  }

  .rdm-orders-mobile-detail-status.is-cancelled .rdm-orders-mobile-detail-icon {
    background: #b42318;
  }

  .rdm-orders-mobile-detail-status-main strong,
  .rdm-orders-mobile-detail-status-side strong {
    display: block;
    color: var(--rdm-text);
    font-size: 1rem;
  }

  .rdm-orders-mobile-detail-status-main span,
  .rdm-orders-mobile-detail-status-side span,
  .rdm-orders-mobile-detail-number {
    color: var(--rdm-muted);
    font-size: 0.94rem;
  }

  .rdm-orders-mobile-detail-status-side {
    text-align: right;
  }

  .rdm-orders-mobile-detail-number {
    padding: 0 18px 14px;
    border-bottom: 1px solid #f1ece6;
    font-weight: 700;
  }

  .rdm-orders-mobile-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid #f1ece6;
  }

  .rdm-orders-mobile-detail-meta > div {
    padding: 16px 18px;
    display: grid;
    gap: 4px;
  }

  .rdm-orders-mobile-detail-meta > div + div {
    border-left: 1px solid #f1ece6;
  }

  .rdm-orders-mobile-detail-meta span {
    color: #8a827a;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .rdm-orders-mobile-detail-meta strong {
    color: var(--rdm-text);
    font-size: 1rem;
    line-height: 1.3;
  }

  .rdm-orders-mobile-detail-meta small {
    color: var(--rdm-muted);
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .rdm-orders-mobile-detail-card .rdm-confirmation-items,
  .rdm-orders-mobile-detail-card .rdm-confirmation-totals,
  .rdm-orders-mobile-detail-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .rdm-orders-mobile-detail-card .rdm-confirmation-items {
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .rdm-orders-mobile-detail-card .rdm-confirmation-items h4 {
    margin-bottom: 12px;
    font-size: 1.05rem;
  }

  .rdm-orders-mobile-detail-totals {
    padding-top: 10px;
    padding-bottom: 18px;
    border-top: 1px solid #f1ece6;
  }

  .rdm-orders-mobile-detail-actions {
    padding-bottom: 18px;
  }

  .rdm-loyalty-checkout {
    padding: 16px;
  }

  .rdm-loyalty-checkout-head {
    display: grid;
    gap: 10px;
  }

  .rdm-loyalty-checkout-badge {
    justify-self: start;
  }

  .rdm-loyalty-toggle {
    align-items: start;
    padding: 12px 14px;
  }
}

.rdm-dispatch-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) 20px 48px;
}

.rdm-dispatch-access-card {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 42px);
}

.rdm-dispatch-access-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.rdm-dispatch-access-card p {
  margin: 0;
  color: var(--rdm-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.rdm-dispatch-app {
  min-height: 100dvh;
  background:
    radial-gradient(circle at top right, rgba(220, 101, 48, 0.16), transparent 18rem),
    linear-gradient(180deg, #f7f3ee 0%, #f3ede6 100%);
  padding: 20px;
  color: #2b2520;
}

.rdm-dispatch-app.is-loading {
  cursor: progress;
}

.rdm-dispatch-topbar {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(103, 86, 73, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(74, 56, 40, 0.08);
  backdrop-filter: blur(14px);
}

.rdm-dispatch-brand {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.rdm-dispatch-brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #db6130, #bd4d22);
  color: #fff8f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.rdm-dispatch-brand-copy {
  display: grid;
  gap: 4px;
}

.rdm-dispatch-brand-copy strong {
  font-size: 1.05rem;
}

.rdm-dispatch-brand-copy span {
  color: #7a6f65;
  font-size: 0.92rem;
}

.rdm-dispatch-clock {
  justify-self: end;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rdm-dispatch-topbar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rdm-dispatch-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(122, 111, 101, 0.12);
  color: #6b625a;
  font-size: 0.94rem;
  font-weight: 600;
}

.rdm-dispatch-chip strong {
  color: #231d18;
  font-size: 1rem;
}

.rdm-dispatch-chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d8cfc7;
}

.rdm-dispatch-chip.is-new .rdm-dispatch-chip-dot {
  background: #db6130;
}

.rdm-dispatch-chip.is-preparing .rdm-dispatch-chip-dot {
  background: #d8a238;
}

.rdm-dispatch-chip.is-active .rdm-dispatch-chip-dot {
  background: #2f7dd5;
}

.rdm-dispatch-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.rdm-dispatch-sound-toggle,
.rdm-dispatch-delivery-toggle,
.rdm-dispatch-refresh,
.rdm-dispatch-logout,
.rdm-dispatch-card-action {
  border: 0;
  appearance: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.rdm-dispatch-sound-toggle,
.rdm-dispatch-refresh,
.rdm-dispatch-logout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(122, 111, 101, 0.12);
  color: #544a42;
  font-weight: 700;
}

.rdm-dispatch-sound-toggle.is-active {
  background: #fff5ef;
  color: #bd4d22;
  border-color: rgba(219, 97, 48, 0.24);
}

.rdm-dispatch-delivery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: #eef7f0;
  color: #22643d;
  font-weight: 800;
}

.rdm-dispatch-delivery-toggle.is-closed {
  background: #fff0ec;
  color: #aa3d1c;
}

.rdm-dispatch-delivery-toggle:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.rdm-dispatch-delivery-toggle-pill {
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: rgba(34, 100, 61, 0.18);
}

.rdm-dispatch-delivery-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 21px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #22643d;
}

.rdm-dispatch-delivery-toggle.is-closed .rdm-dispatch-delivery-toggle-pill {
  background: rgba(170, 61, 28, 0.16);
}

.rdm-dispatch-delivery-toggle.is-closed .rdm-dispatch-delivery-toggle-thumb {
  left: 3px;
  background: #aa3d1c;
}

.rdm-dispatch-refresh strong {
  color: #bd4d22;
}

.rdm-dispatch-logout {
  gap: 8px;
}

.rdm-dispatch-logout strong {
  color: #bd4d22;
}

.rdm-dispatch-feedback {
  max-width: 1480px;
  margin: 14px auto 0;
  min-height: 24px;
  padding: 0 4px;
  color: #6f655d;
  font-weight: 600;
}

.rdm-dispatch-feedback:empty {
  min-height: 0;
}

.rdm-dispatch-feedback.is-error {
  color: #a3331f;
}

.rdm-dispatch-feedback.is-success {
  color: #256442;
}

.rdm-dispatch-mobile-switch {
  display: none;
  max-width: 1480px;
  margin: 14px auto 0;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(103, 86, 73, 0.12);
  box-shadow: 0 14px 32px rgba(74, 56, 40, 0.08);
}

.rdm-dispatch-mobile-switch-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #75685f;
  min-height: 54px;
  border-radius: 16px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.rdm-dispatch-mobile-switch-btn strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(117, 104, 95, 0.1);
  color: #322b25;
  font-size: 0.92rem;
}

.rdm-dispatch-mobile-switch-btn.is-active {
  background: linear-gradient(135deg, #db6130, #c65022);
  color: #fff;
  box-shadow: 0 10px 18px rgba(198, 80, 34, 0.22);
}

.rdm-dispatch-mobile-switch-btn.is-active strong {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.rdm-dispatch-board {
  max-width: 1480px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.rdm-dispatch-column {
  min-height: calc(100dvh - 158px);
  padding: 18px;
  border: 1px solid rgba(103, 86, 73, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(74, 56, 40, 0.08);
  backdrop-filter: blur(12px);
}

.rdm-dispatch-column-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
}

.rdm-dispatch-column-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: #9a8b7f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

.rdm-dispatch-column-head h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.rdm-dispatch-column-count {
  color: #6e655d;
  font-size: 0.95rem;
  font-weight: 700;
}

.rdm-dispatch-column-body {
  display: grid;
  gap: 14px;
}

.rdm-dispatch-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  padding: 28px;
  border: 1px dashed rgba(122, 111, 101, 0.24);
  border-radius: 24px;
  background: rgba(250, 247, 243, 0.9);
  color: #85796f;
}

.rdm-dispatch-empty strong {
  color: #322b25;
  font-size: 1.05rem;
}

.rdm-dispatch-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(122, 111, 101, 0.12);
  box-shadow: 0 10px 26px rgba(52, 38, 25, 0.08);
}

.rdm-dispatch-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.rdm-dispatch-card-top-main {
  display: grid;
  gap: 6px;
}

.rdm-dispatch-card-order {
  font-size: 1.12rem;
  font-weight: 800;
  color: #231d18;
}

.rdm-dispatch-card-time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7b7068;
  font-size: 0.92rem;
  font-weight: 700;
}

.rdm-dispatch-card-time span {
  color: #a39286;
  font-weight: 600;
}

.rdm-dispatch-card-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.rdm-dispatch-card-status.is-new {
  background: #fff1ea;
  color: #bd4d22;
}

.rdm-dispatch-card-status.is-preparing {
  background: #fff7e8;
  color: #a1700d;
}

.rdm-dispatch-card-status.is-active {
  background: #eef5ff;
  color: #245eb1;
}

.rdm-dispatch-card-status.is-completed {
  background: #eef8f1;
  color: #1f7a41;
}

.rdm-dispatch-card-status.is-cancelled {
  background: #fff2f2;
  color: #aa3d1c;
}

.rdm-dispatch-card-headline h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.rdm-dispatch-card-headline p {
  margin: 0;
  color: #71675f;
  font-size: 1rem;
  line-height: 1.45;
}

.rdm-dispatch-card-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.rdm-dispatch-card-meta > div,
.rdm-dispatch-card-note,
.rdm-dispatch-card-section {
  padding: 14px 16px;
  border-radius: 18px;
  background: #faf7f3;
  border: 1px solid #f0e9e1;
}

.rdm-dispatch-card-meta span,
.rdm-dispatch-card-note span,
.rdm-dispatch-card-section > span {
  display: block;
  margin-bottom: 6px;
  color: #91857c;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rdm-dispatch-card-meta strong {
  display: block;
  color: #231d18;
  font-size: 1rem;
  line-height: 1.35;
}

.rdm-dispatch-card-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rdm-dispatch-card-item-main {
  display: grid;
  gap: 4px;
}

.rdm-dispatch-card-item-main strong {
  font-size: 1rem;
  line-height: 1.35;
}

.rdm-dispatch-card-item-main span,
.rdm-dispatch-card-note p {
  color: #6f645c;
  font-size: 0.95rem;
  line-height: 1.45;
}

.rdm-dispatch-card-note p {
  margin: 0;
}

.rdm-dispatch-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rdm-dispatch-card-action {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.95rem;
}

.rdm-dispatch-card-action.is-primary {
  background: linear-gradient(135deg, #db6130, #c65022);
  color: #fff;
  box-shadow: 0 10px 18px rgba(198, 80, 34, 0.26);
}

.rdm-dispatch-card-action.is-ghost-danger {
  background: #fff2f2;
  color: #aa3d1c;
  border: 1px solid rgba(170, 61, 28, 0.16);
}

.rdm-dispatch-sound-toggle:hover,
.rdm-dispatch-delivery-toggle:hover,
.rdm-dispatch-refresh:hover,
.rdm-dispatch-logout:hover,
.rdm-dispatch-card-action:hover {
  transform: translateY(-1px);
}

@media (max-width: 1199px) {
  .rdm-dispatch-app {
    padding: 16px;
  }

  .rdm-dispatch-topbar {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
  }

  .rdm-dispatch-topbar-center,
  .rdm-dispatch-topbar-actions {
    justify-content: flex-start;
  }

  .rdm-dispatch-topbar-center {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .rdm-dispatch-chip {
    flex: 0 0 auto;
  }

  .rdm-dispatch-board {
    gap: 14px;
  }

  .rdm-dispatch-column {
    min-height: auto;
    padding: 16px;
  }

  .rdm-dispatch-column-head h2 {
    font-size: 1.7rem;
  }

  .rdm-dispatch-card-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .rdm-dispatch-mobile-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rdm-dispatch-board {
    grid-template-columns: 1fr;
  }

  .rdm-dispatch-column {
    min-height: auto;
  }

  .rdm-dispatch-app[data-rdm-dispatch-view="delivery"] [data-rdm-dispatch-column="pickup"],
  .rdm-dispatch-app[data-rdm-dispatch-view="pickup"] [data-rdm-dispatch-column="delivery"],
  .rdm-dispatch-column.is-hidden {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .rdm-dispatch-app {
    padding: 12px;
  }

  .rdm-dispatch-topbar {
    padding: 16px;
    border-radius: 22px;
  }

  .rdm-dispatch-mobile-switch {
    margin-top: 12px;
    padding: 6px;
    border-radius: 18px;
  }

  .rdm-dispatch-mobile-switch-btn {
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .rdm-dispatch-brand {
    grid-template-columns: auto 1fr;
  }

  .rdm-dispatch-clock {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .rdm-dispatch-topbar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rdm-dispatch-topbar-center {
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .rdm-dispatch-delivery-toggle,
  .rdm-dispatch-refresh,
  .rdm-dispatch-sound-toggle,
  .rdm-dispatch-logout {
    justify-content: center;
  }

  .rdm-dispatch-board {
    margin-top: 12px;
  }

  .rdm-dispatch-column {
    padding: 14px;
    border-radius: 24px;
  }

  .rdm-dispatch-column-kicker {
    margin-bottom: 4px;
  }

  .rdm-dispatch-column-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rdm-dispatch-column-head h2 {
    font-size: 1.45rem;
  }

  .rdm-dispatch-card {
    padding: 16px;
    gap: 14px;
  }

  .rdm-dispatch-card-top,
  .rdm-dispatch-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rdm-dispatch-card-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rdm-dispatch-card-headline h3 {
    font-size: 1.15rem;
  }

  .rdm-dispatch-card-headline p,
  .rdm-dispatch-card-item-main span,
  .rdm-dispatch-card-note p {
    font-size: 0.92rem;
  }

  .rdm-dispatch-card-meta > div,
  .rdm-dispatch-card-note,
  .rdm-dispatch-card-section {
    padding: 12px 14px;
  }

  .rdm-dispatch-card-action {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .rdm-menu-shell {
    max-width: 1280px;
    padding-bottom: 20px;
  }

  .rdm-menu-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 8px;
  }

  .rdm-menu-mobile-overlay,
  .rdm-menu-mobile-bar,
  .rdm-menu-mobile-sheet-handle {
    display: none;
  }

  .rdm-menu-summary {
    position: sticky;
    top: var(--rdm-sticky-offset, 22px);
    align-self: start;
  }

  body.admin-bar .rdm-menu-summary {
    top: max(var(--rdm-sticky-offset, 22px), 124px);
  }

  body:not(.admin-bar) .rdm-menu-summary {
    top: max(var(--rdm-sticky-offset, 22px), 92px);
  }

  .rdm-menu-summary-panel {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    max-height: none;
    overflow: visible;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .rdm-menu-main {
    padding-right: 24px;
    border-right: 1px solid var(--rdm-border);
  }

  .rdm-menu-summary {
    padding-left: 24px;
  }
}
