/* ========================================= */
/* SHANAYA — REDEMPTION PAGE                 */
/* ========================================= */

/* ── HERO ──────────────────────────────── */

.rdm-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-top: 82px;
  overflow: hidden;
}

.rdm-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/shanaya-sanctuary/IMG_8520.JPG");
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.35) saturate(0.7);
  transform: scale(1.04);
}

.rdm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 7, 4, 0.1) 0%,
    rgba(10, 7, 4, 0.82) 100%
  );
}

.rdm-hero-content {
  position: relative;
  z-index: 2;
  width: min(1300px, 90%);
  margin: 0 auto;
  padding: 52px 0 48px;
}

.rdm-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.rdm-breadcrumb:hover { color: #c4ab74; }

.rdm-hero-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: #c4ab74;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rdm-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  font-weight: 500;
  line-height: 0.94;
  color: white;
  margin-bottom: 20px;
}

.rdm-hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
}

.rdm-hero-sub strong { color: #c4ab74; }

/* ── SUMMARY BAR ───────────────────────── */

.rdm-summary-bar {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 82px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rdm-summary-inner {
  width: min(1300px, 90%);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.rdm-balance-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rdm-balance-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
}

.rdm-balance-pts {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1d;
  font-variant-numeric: tabular-nums;
}

.rdm-tier-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 171, 116, 0.1);
  color: #c4ab74;
  border: 1px solid rgba(196, 171, 116, 0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
}

.rdm-cart-preview {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.rdm-dot { color: #ccc; }

.rdm-view-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1d1d1d;
  color: white;
  border: none;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.rdm-view-cart-btn:hover {
  background: #c4ab74;
  transform: translateY(-1px);
}

/* ── MAIN LAYOUT ───────────────────────── */

.rdm-wrap {
  background: #f3f0ea;
  padding: 48px 0 100px;
}

.rdm-container {
  width: min(1300px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ── CATALOG ────────────────────────────── */

.rdm-catalog-header {
  margin-bottom: 28px;
}

.rdm-catalog-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 8px;
}

.rdm-catalog-sub {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* filter tabs */
.rdm-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.rdm-filter-tab {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: white;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.rdm-filter-tab:hover {
  border-color: #c4ab74;
  color: #c4ab74;
}

.rdm-filter-tab.is-active {
  background: #1d1d1d;
  border-color: #1d1d1d;
  color: white;
}

/* reward cards grid */
.rdm-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.rdm-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
  cursor: default;
}

.rdm-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.rdm-card.in-cart {
  border-color: #c4ab74;
  box-shadow: 0 0 0 3px rgba(196, 171, 116, 0.12), 0 6px 28px rgba(0, 0, 0, 0.08);
}

.rdm-card.unavailable {
  opacity: 0.45;
  pointer-events: none;
}

.rdm-card.rdm-card-highlight {
  animation: rdmHighlight 1.8s ease;
}

@keyframes rdmHighlight {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196, 171, 116, 0.12); }
  40% { box-shadow: 0 0 0 6px rgba(196, 171, 116, 0.35); }
}

.rdm-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.rdm-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #f3f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #c4ab74;
  flex-shrink: 0;
}

.rdm-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.rdm-card-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
}

.rdm-card-pts {
  font-size: 17px;
  font-weight: 700;
  color: #c4ab74;
  font-variant-numeric: tabular-nums;
}

.rdm-card-body {
  flex: 1;
}

.rdm-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 6px;
  line-height: 1.1;
}

.rdm-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.rdm-card-note {
  font-size: 11px;
  color: #bbb;
  line-height: 1.5;
  font-style: italic;
}

.rdm-card-footer {
  margin-top: 4px;
}

/* add button */
.rdm-add-btn {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid #c4ab74;
  background: transparent;
  color: #c4ab74;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s;
}

.rdm-add-btn:hover:not(:disabled) {
  background: #c4ab74;
  color: white;
}

.rdm-add-btn:disabled {
  border-color: #ddd;
  color: #ccc;
  cursor: not-allowed;
}

/* qty control */
.rdm-qty-control {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(196, 171, 116, 0.08);
  border-radius: 10px;
  padding: 0 6px;
  gap: 8px;
}

.rdm-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: white;
  color: #c4ab74;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.rdm-qty-btn:hover {
  background: #c4ab74;
  color: white;
}

.rdm-qty-count {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d;
  min-width: 24px;
  text-align: center;
}

/* ── ASIDE / CART ───────────────────────── */

.rdm-aside {
  position: sticky;
  top: 158px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rdm-aside-empty {
  background: white;
  border-radius: 16px;
  border: 1.5px dashed rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 10px;
}

.rdm-empty-icon {
  font-size: 40px;
  color: #ddd;
}

.rdm-empty-title {
  font-size: 15px;
  font-weight: 500;
  color: #999;
}

.rdm-empty-hint {
  font-size: 12px;
  color: #bbb;
  line-height: 1.6;
}

.rdm-cart-block {
  background: white;
  border-radius: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.rdm-aside-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rdm-cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rdm-cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rdm-cart-item:last-child { border-bottom: none; }

.rdm-cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.rdm-cart-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rdm-cart-item-pts {
  font-size: 11px;
  color: #aaa;
}

.rdm-cart-item-subtotal {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1d;
  white-space: nowrap;
}

.rdm-cart-item-remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f3f0ea;
  border: none;
  color: #bbb;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.rdm-cart-item-remove:hover {
  background: #fee;
  color: #e55;
}

.rdm-cart-total-row,
.rdm-cart-remaining-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 0;
  font-size: 13px;
}

.rdm-cart-remaining-row {
  padding-top: 8px;
  padding-bottom: 6px;
  color: #888;
  font-size: 12px;
}

.rdm-cart-total-label { color: #555; font-weight: 500; }

.rdm-cart-total-pts {
  font-size: 18px;
  font-weight: 700;
  color: #c4ab74;
}

.rdm-proceed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 44px);
  margin: 14px 22px 20px;
  height: 50px;
  border-radius: 12px;
  background: #1d1d1d;
  border: none;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, opacity 0.2s;
}

.rdm-proceed-btn:hover:not(:disabled) {
  background: #c4ab74;
  transform: translateY(-2px);
}

.rdm-proceed-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── CONFIRMATION PANEL ─────────────────── */

.rdm-confirm-panel {
  background: #f3f0ea;
  padding: 56px 0 100px;
}

.rdm-confirm-inner {
  width: min(1300px, 90%);
  margin: 0 auto;
}

.rdm-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #888;
  cursor: pointer;
  padding: 0;
  margin-bottom: 36px;
  transition: color 0.2s;
}

.rdm-back-btn:hover { color: #1d1d1d; }

.rdm-confirm-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.rdm-confirm-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 8px;
}

.rdm-confirm-sub {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* items block */
.rdm-confirm-items-block {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  margin-bottom: 24px;
}

.rdm-confirm-items-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rdm-confirm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rdm-confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13px;
}

.rdm-confirm-item:last-child { border-bottom: none; }

.rdm-confirm-item-name { color: #333; }
.rdm-confirm-item-pts { font-weight: 600; color: #c4ab74; }

.rdm-confirm-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: #faf9f7;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  border-top: 1.5px solid rgba(0,0,0,0.07);
}

.rdm-confirm-total-row strong {
  font-size: 18px;
  font-weight: 700;
  color: #c4ab74;
}

/* confirm item validity sub-label */
.rdm-confirm-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rdm-confirm-item-validity {
  font-size: 11px;
  color: #bbb;
  font-style: italic;
}

/* how it works block */
.rdm-confirm-how-block {
  background: #faf9f7;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
}

.rdm-confirm-how-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}

.rdm-confirm-how-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: how-step;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rdm-confirm-how-list li {
  counter-increment: how-step;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.rdm-confirm-how-list li::before {
  content: counter(how-step);
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c4ab74;
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.rdm-confirm-how-list strong { color: #1d1d1d; }

/* confirm button */
.rdm-confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 54px;
  border-radius: 12px;
  background: #c4ab74;
  border: none;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 12px;
}

.rdm-confirm-btn:hover:not(:disabled) {
  background: #b79a5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 171, 116, 0.35);
}

.rdm-confirm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rdm-spin {
  animation: rdmSpin 0.8s linear infinite;
  font-size: 18px;
}

@keyframes rdmSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* breakdown card */
.rdm-breakdown-card {
  background: #1d1d1d;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.rdm-breakdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.rdm-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.rdm-breakdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 12px 0;
}

.rdm-breakdown-remaining {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.rdm-pts-val { font-weight: 600; font-variant-numeric: tabular-nums; }
.rdm-pts-red { color: #e57373; }
.rdm-pts-green { color: #81c784; }

.rdm-breakdown-tier-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #c4ab74;
  font-weight: 600;
  letter-spacing: 1px;
}

/* policy card */
.rdm-policy-card {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 22px;
}

.rdm-policy-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
}

.rdm-policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rdm-policy-list li {
  font-size: 12.5px;
  color: #666;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.rdm-policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c4ab74;
}

/* ── SUCCESS PANEL ──────────────────────── */

.rdm-success-panel {
  min-height: calc(100vh - 82px);
  background: #f3f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.rdm-success-inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.rdm-success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(196, 171, 116, 0.1);
  border: 2px solid rgba(196, 171, 116, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #c4ab74;
}

.rdm-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1;
}

.rdm-success-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  max-width: 420px;
}

/* voucher cards in success state */
.rdm-success-vouchers-block {
  width: 100%;
}

.rdm-success-vouchers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rdm-success-voucher-item {
  background: white;
  border-radius: 14px;
  border: 1.5px solid rgba(196, 171, 116, 0.25);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.rdm-success-voucher-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #c4ab74;
  border-radius: 0 2px 2px 0;
}

.rdm-success-voucher-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 8px;
}

.rdm-success-voucher-name {
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1d;
}

.rdm-success-voucher-expiry {
  font-size: 11px;
  color: #bbb;
}

.rdm-success-voucher-code {
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 700;
  color: #c4ab74;
  letter-spacing: 2px;
  background: rgba(196, 171, 116, 0.08);
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.rdm-success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.rdm-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.rdm-success-btn-primary {
  background: #1d1d1d;
  color: white;
}

.rdm-success-btn-primary:hover {
  background: #c4ab74;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 171, 116, 0.3);
}

.rdm-success-btn-outline {
  background: transparent;
  color: #555;
  border: 1.5px solid rgba(0,0,0,0.15);
}

.rdm-success-btn-outline:hover {
  border-color: #1d1d1d;
  color: #1d1d1d;
}

/* ── RESPONSIVE ─────────────────────────── */

@media (max-width: 1100px) {
  .rdm-container {
    grid-template-columns: 1fr 300px;
  }
}

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

  .rdm-aside {
    position: static;
  }

  .rdm-confirm-layout {
    grid-template-columns: 1fr;
  }

  .rdm-confirm-breakdown {
    display: flex;
    gap: 16px;
  }

  .rdm-breakdown-card,
  .rdm-policy-card {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .rdm-hero-title { font-size: 50px; }
  .rdm-hero-content { padding: 40px 0 36px; }

  .rdm-summary-bar { top: 82px; }

  .rdm-summary-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
    gap: 12px;
  }

  .rdm-cart-preview { margin-left: 0; width: 100%; }

  .rdm-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rdm-confirm-breakdown { flex-direction: column; }
}

@media (max-width: 540px) {
  .rdm-hero-title { font-size: 40px; }
  .rdm-cards-grid { grid-template-columns: 1fr; }
  .rdm-success-actions { flex-direction: column; width: 100%; }
  .rdm-success-btn { justify-content: center; }
}
