@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --rc-bg: #ece4da;
  --rc-text: #36302a;
  --rc-text-light: #5a524a;
  --rc-accent: #a39485;
  --rc-white: #fcfbf9;
  --rc-border: #d4cec6;
  --rc-radius: 8px;
  --rc-font: 'Newsreader', serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-wrapper {
  font-family: var(--rc-font);
  background-color: var(--rc-bg);
  color: var(--rc-text);
  max-width: 650px;
  margin: 0 auto;
  padding: 30px;
  border-radius: var(--rc-radius);
  box-shadow: 0 4px 20px rgba(54, 48, 42, 0.05);
  line-height: 1.4;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.rc-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.01) 0px, rgba(0, 0, 0, 0.01) 2px, transparent 2px, transparent 4px);
  z-index: 0;
}

.rc-wrapper>* {
  position: relative;
  z-index: 1;
}

.rc-header {
  margin-bottom: 30px;
  text-align: center;
}

.rc-title {
  font-size: 32px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}


.rc-progress {
  background-color: rgba(212, 206, 198, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  height: 6px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.rc-progress-bar {
  background-color: var(--rc-text);
  height: 100%;
  width: 25%;
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.rc-step-indicator {
  font-size: 14px;
  color: var(--rc-text-light);
  position: relative;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.rc-indicator-text {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(5px);
}

.rc-indicator-text.active {
  opacity: 1;
  transform: translateY(0);
}

.rc-indicator-text.fade-out {
  opacity: 0;
  transform: translateY(-5px);
}

.rc-step {
  display: none;
}

.rc-step.active {
  display: block;
  animation: rcStepIn 0.32s ease-out both;
}

.rc-step.fading-out {
  display: block !important;
  animation: rcStepOut 0.18s ease-in both;
  pointer-events: none;
}

@keyframes rcStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes rcStepOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--rc-text);
}

.rc-subtitle {
  font-size: 15px;
  color: var(--rc-text-light);
  opacity: 0.7;
  margin-bottom: 15px;
}

/* Grid & Cards */
.rc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.rc-card {
  background-color: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-top: 2px solid transparent;
  padding: 28px;
  border-radius: var(--rc-radius);
  cursor: pointer;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rc-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--rc-border);
  box-shadow: 0 12px 40px rgba(163, 148, 133, 0.12);
}

.rc-card:active {
  transform: scale(0.97);
}

.rc-card.selected {
  border-color: transparent;
  border-top-color: var(--rc-text);
  background-color: var(--rc-text);
  color: var(--rc-white);
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(54, 48, 42, 0.1);
}

.rc-card.selected .rc-icon-wrapper {
  color: var(--rc-white);
}

.rc-card.selected .rc-card-label {
  color: var(--rc-white);
}

/* Staggered card entrance */
.rc-step.active .rc-card {
  animation: bloomIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.rc-step.active .rc-card:nth-child(1) {
  animation-delay: 0.05s;
}

.rc-step.active .rc-card:nth-child(2) {
  animation-delay: 0.1s;
}

.rc-step.active .rc-card:nth-child(3) {
  animation-delay: 0.15s;
}

.rc-step.active .rc-card:nth-child(4) {
  animation-delay: 0.2s;
}

/* Inputs & Selects */
.rc-select {
  width: 100%;
  padding: 15px;
  font-family: var(--rc-font);
  font-size: 16px;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  background-color: var(--rc-white);
  color: var(--rc-text);
}

/* Addons */
.rc-addons-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.rc-addon-item {
  display: flex;
  justify-content: space-between;
  background-color: var(--rc-white);
  border-radius: var(--rc-radius);
  border: 1px solid var(--rc-border);
  padding: 0;
  overflow: hidden;
}

/* Buttons */
.rc-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--rc-border);
}

.rc-btn {
  font-family: var(--rc-font);
  padding: 12px 24px;
  font-size: 16px;
  border-radius: var(--rc-radius);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.rc-btn-primary {
  background-color: var(--rc-text);
  color: var(--rc-white);
  margin-left: auto;
}

.rc-btn-primary:hover:not(:disabled) {
  background-color: #4a433a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(54, 48, 42, 0.2);
}

.rc-btn-secondary {
  background-color: transparent;
  color: var(--rc-text);
  border: 1px solid var(--rc-border);
}

.rc-btn-secondary:hover:not(:disabled) {
  background-color: var(--rc-white);
  border-color: var(--rc-accent);
}

.rc-btn-outline {
  background-color: transparent;
  color: var(--rc-text);
  border: 1px dashed var(--rc-text);
  width: 100%;
  margin-top: 10px;
}

.rc-btn-outline:hover:not(:disabled) {
  background-color: var(--rc-white);
  border-style: solid;
}

/* Action Buttons (Step 4) */
.rc-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.rc-action-buttons .rc-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
}

.rc-action-buttons .rc-btn-outline {
  margin-top: 0;
}

/* Customer Form (Lead Capture) */
.rc-customer-form {
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  padding: 24px;
  margin-bottom: 24px;
}

.rc-customer-form h4 {
  margin-top: 0;
  font-size: 18px;
  color: var(--rc-text);
}

.rc-form-group {
  margin-bottom: 16px;
}

.rc-form-group:last-child {
  margin-bottom: 0;
}

.rc-form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rc-text-light);
  margin-bottom: 6px;
}

.rc-form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--rc-font);
  font-size: 15px;
  border: 1px solid var(--rc-border);
  border-radius: 8px;
  background: var(--rc-bg);
  color: var(--rc-text);
  transition: all 0.2s ease;
}

.rc-form-input:focus {
  outline: none;
  border-color: var(--rc-text);
  box-shadow: 0 0 0 3px rgba(54, 48, 42, 0.08);
  background: var(--rc-white);
}

.rc-form-input::placeholder {
  color: var(--rc-accent);
  opacity: 0.6;
}

.rc-form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.rc-input-error {
  border-color: #c97a7e !important;
  box-shadow: 0 0 0 3px rgba(201, 122, 126, 0.12) !important;
  animation: shake 0.4s ease-in-out;
}

.rc-field-error {
  display: block;
  font-size: 12px;
  color: #c97a7e;
  margin-top: 5px;
  min-height: 16px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.rc-field-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Step 5: Action buttons layout */
.rc-action-buttons {
  display: flex;
  gap: 12px;
  margin: 24px 0 16px;
  flex-wrap: wrap;
}

.rc-action-buttons .rc-btn {
  flex: 1;
  min-width: 160px;
  text-align: center;
}


/* Summary */
.rc-summary-card {
  background: linear-gradient(180deg, #fcfbf9 0%, #f7f5f2 100%);
  padding: 40px;
  border-radius: var(--rc-radius);
  border: 1px solid var(--rc-border);
  box-shadow: 0 20px 60px rgba(54, 48, 42, 0.06);
  position: relative;
}

.rc-summary-card::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 1px solid var(--rc-white);
  border-radius: calc(var(--rc-radius) - 1px);
  pointer-events: none;
}

.rc-quote-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--rc-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 206, 198, 0.4);
}

.rc-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(212, 206, 198, 0.4);
}

.rc-summary-row:last-of-type {
  border-bottom: none;
}

.rc-divider {
  height: 15px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q25,10 50,5 T100,5' fill='none' stroke='%23d4cec6' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  margin: 0;
  border: none;
}

.rc-total-row {
  font-size: 24px;
  font-weight: 400;
  color: var(--rc-text);
  margin-top: 8px;
  padding-top: 10px;
  border-top: none;
  border-bottom: none;
}

.rc-time-estimate {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rc-accent);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 206, 198, 0.3);
}

.rc-disclaimer {
  font-size: 14px;
  color: var(--rc-text-light);
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}

.rc-disclaimer a {
  color: var(--rc-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bloomIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   BLINDS MATRIX — UNIFIED, MOBILE-FIRST
   ============================================ */

.rc-blinds-section {
  margin-top: 20px;
  padding-top: 5px;
  border-top: 1px dashed var(--rc-border);
}

.rc-blind-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  padding: 24px;
  padding-top: 56px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 15px rgba(54, 48, 42, 0.05);
  animation: fadeIn 0.3s ease;
}

.rc-blind-header {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.rc-remove-blind {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--rc-border);
  transition: all 0.2s ease;
  position: relative;
}



.rc-remove-blind:hover {
  background: rgba(201, 122, 126, 0.1);
  color: #c97a7e;
}

.rc-tooltip {
  position: absolute;
  background: var(--rc-text);
  color: var(--rc-white);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  z-index: 10;
}

.rc-remove-blind:hover .rc-tooltip {
  opacity: 1;
}

.rc-blind-complete-icon {
  color: var(--rc-accent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
}

.rc-blind-row.complete .rc-blind-complete-icon {
  opacity: 1;
}

.rc-pill-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.rc-pill-section:last-child {
  margin-bottom: 0;
}

.rc-pill-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: var(--rc-text-light);
}

.rc-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rc-pill {
  padding: 10px 18px;
  border: 1px solid var(--rc-border);
  border-radius: 20px;
  background: transparent;
  color: var(--rc-text-light);
  font-family: var(--rc-font);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 80px;
  text-align: center;
  line-height: 1.3;
}

/* Liquid fill on selection */
.rc-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--rc-text);
  border-radius: 20px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo);
  z-index: -1;
}

.rc-pill:hover {
  border-color: var(--rc-accent);
}

.rc-pill.active {
  color: var(--rc-white);
  border-color: var(--rc-text);
}

.rc-pill.active::before {
  transform: scaleX(1);
}

.rc-micro-copy {
  font-size: 13px;
  font-style: italic;
  color: var(--rc-accent);
  margin-bottom: 15px;
  padding: 8px 12px;
  background: rgba(163, 148, 133, 0.08);
  border-radius: 6px;
  border-left: 2px solid var(--rc-accent);
}

.rc-blind-price {
  font-size: 16px;
  color: var(--rc-text);
  font-weight: 500;
  text-align: right;
  margin-top: 4px;
}

.rc-blinds-subtotal {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: var(--rc-text);
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rc-blinds-subtotal.visible {
  opacity: 1;
}

/* Disable state for max blinds reached */
.rc-btn-outline:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============================================
   STEP 2: SLIDER & INPUT
   ============================================ */

.rc-slider-group {
  margin: 20px 0 10px 0;
}

.rc-input-large {
  width: 100%;
  font-family: var(--rc-font);
  font-size: 24px;
  text-align: center;
  padding: 15px;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  background: var(--rc-white);
  color: var(--rc-text);
  margin-bottom: 15px;
}

.rc-error-msg {
  color: #c97a7e;
  font-size: 14px;
  margin-top: 15px;
  padding: 10px;
  background: rgba(201, 122, 126, 0.1);
  border-radius: 4px;
  text-align: center;
}



/* noUiSlider Overrides */
.rc-slider-ui.noUi-target {
  border: none;
  background: var(--rc-border);
  box-shadow: none;
  height: 6px;
}

.rc-slider-ui .noUi-connect {
  background: var(--rc-text);
  border-radius: 25px;
}

.rc-slider-ui .noUi-handle {
  width: 22px !important;
  height: 22px !important;
  top: -8px !important;
  left: -12px !important;
  border-radius: 50%;
  background: var(--rc-white);
  border: 3px solid var(--rc-white);
  box-shadow: 0 0 0 2px var(--rc-text), 0 4px 12px rgba(54, 48, 42, 0.15);
  top: -12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rc-slider-ui .noUi-handle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px var(--rc-text), 0 6px 20px rgba(54, 48, 42, 0.2);
}

.rc-slider-ui .noUi-handle.noUi-active {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px var(--rc-text), 0 8px 25px rgba(54, 48, 42, 0.25);
}

.rc-slider-ui .noUi-handle:before,
.rc-slider-ui .noUi-handle:after {
  display: none;
}

.rc-slider-ui .noUi-tooltip {
  display: none;
  background: var(--rc-text);
  color: var(--rc-white);
  border: none;
  border-radius: 4px;
  font-family: var(--rc-font);
  font-size: 13px;
  padding: 4px 8px;
  opacity: 0;
  transition: opacity 0.2s;
  bottom: 150%;
  white-space: nowrap;
}

.rc-slider-ui .noUi-handle.noUi-active .noUi-tooltip {
  display: none;
  opacity: 0;
}

.rc-slider-ui .noUi-value {
  display: none;
}

.rc-slider-ui .noUi-marker {
  background: var(--rc-border);
  width: 1px !important;
  height: 7px !important;
  border-radius: 50%;
  margin-top: 5px;
}

.rc-slider-ui .noUi-pips {
  height: 26px;
  padding: 0;
}

/* ============================================
   SERVICE CARD ICONS
   ============================================ */

.rc-icon-wrapper {
  margin-bottom: 12px;
  color: var(--rc-text);
  transition: color 0.3s ease;
}

.rc-icon {
  width: 40px;
  height: 40px;
}

.rc-card-label {
  font-family: var(--rc-font);
  font-size: 18px;
  font-weight: 400;
}

/* ============================================
   CUSTOM CHECKBOXES
   ============================================ */

.rc-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  width: 100%;
  padding: 15px;
}

.rc-checkbox-input {
  display: none;
}

.rc-checkbox-custom {
  width: 22px;
  height: 22px;
  border: 1px solid var(--rc-border);
  border-radius: 4px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: var(--rc-white);
  flex-shrink: 0;
}

.rc-checkbox-custom svg {
  width: 14px;
  height: 14px;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--rc-white);
}

.rc-checkbox-input:checked+.rc-checkbox-custom {
  background: var(--rc-text);
  border-color: var(--rc-text);
}

.rc-checkbox-input:checked+.rc-checkbox-custom svg {
  stroke-dashoffset: 0;
}

.rc-checkbox-text {
  font-family: var(--rc-font);
  font-size: 16px;
}

/* ============================================
   VALIDATION & ACCESSIBILITY
   ============================================ */

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  75% {
    transform: translateX(6px);
  }
}

.rc-error-shake {
  animation: shake 0.4s ease-in-out;
}

.rc-input-large:focus,
.rc-select:focus,
.rc-form-input:focus {
  outline: none;
  border-color: var(--rc-text);
  box-shadow: 0 0 0 3px rgba(54, 48, 42, 0.08);
}

/* Recommended badge */
.rc-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--rc-text);
  color: var(--rc-white);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================
   PAYMENT NOTIFICATION
   ============================================ */

.rc-payment-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 16px 24px;
  border-radius: var(--rc-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.4s var(--ease-out-expo);
  max-width: 90vw;
  width: 400px;
}

.rc-payment-success {
  background: #f0f7f0;
  border: 1px solid #4a7c59;
  color: #2d5a3d;
}

.rc-payment-cancelled {
  background: #faf5f0;
  border: 1px solid var(--rc-accent);
  color: var(--rc-text);
}

.rc-notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-notification-icon {
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.rc-notification-text {
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

.rc-notification-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
  opacity: 0.5;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-notification-close:hover {
  opacity: 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================
   SPINNER (Loading State)
   ============================================ */

.rc-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--rc-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
  .rc-wrapper {
    padding: 16px;
    border-radius: 0;
    max-width: 100%;
    min-height: 100vh;
  }

  .rc-grid {
    grid-template-columns: 1fr;
  }

  .rc-card {
    padding: 20px;
  }

  .rc-card-label {
    font-size: 16px;
  }

  .rc-summary-card {
    padding: 24px;
  }

  .rc-customer-form {
    padding: 16px;
  }

  .rc-nav {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .rc-btn {
    width: 100%;
    text-align: center;
  }

  .rc-btn-primary {
    margin-left: 0;
  }

  .rc-input-large {
    font-size: 20px;
  }

  h3 {
    font-size: 22px;
  }

  .rc-title {
    font-size: 26px;
  }

  .rc-action-buttons {
    gap: 10px;
  }

  .rc-action-buttons .rc-btn {
    padding: 14px 20px;
  }

  .rc-blind-row {
    padding: 20px;
    padding-top: 48px;
  }

  .rc-pill {
    padding: 8px 14px;
    font-size: 13px;
    min-width: 70px;
  }

  .rc-payment-notification {
    width: calc(100vw - 32px);
    left: 16px;
    right: 16px;
    transform: none;
  }
}

@media (max-width: 360px) {
  .rc-pill {
    padding: 8px 12px;
    font-size: 12px;
    min-width: 60px;
  }

  .rc-form-input {
    padding: 10px 12px;
    font-size: 14px;
  }
}