/* ===== RESET & BASE (matching landing page) ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 10px; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #212121;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER (solid bg) ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,26,0.95); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header__inner {
  max-width: 980px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo {
  font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 400;
  color: #fff; letter-spacing: 6px;
}
.header__nav { display: flex; align-items: center; gap: 20px; }
.header__link {
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600;
  font-family: 'Raleway', sans-serif; letter-spacing: 0.5px;
  transition: color 0.3s;
}
.header__link:hover { color: #fff; }
.header__link--btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 20px;
  color: #fff; font-size: 14px; font-weight: 600;
}
.header__link--active { background: rgba(176,191,189,0.15); border-color: #B0BFBD; color: #B0BFBD; }

/* Language Switcher */
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; padding: 4px 8px; border-radius: 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
}
.lang-switch:hover { background: rgba(255,255,255,0.15); }
.lang-switch__label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.4); transition: color 0.3s;
  font-family: 'Montserrat', sans-serif; text-transform: uppercase;
  user-select: none;
}
.lang-switch__label.active { color: #fff; }
.lang-switch__toggle {
  position: relative; width: 32px; height: 16px;
  background: rgba(255,255,255,0.15); border-radius: 8px;
  transition: background 0.3s;
}
.lang-switch__knob {
  position: absolute; top: 2px; left: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #B0BFBD; transition: transform 0.3s;
}

.header__menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.header__menu-btn span { display: block; width: 24px; height: 2px; background: #fff; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu__close { position: absolute; top: 24px; right: 24px; font-size: 36px; color: #fff; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu__nav a { font-size: 20px; color: #fff; font-weight: 400; transition: color 0.3s; }
.mobile-menu__nav a:hover { color: #B0BFBD; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; height: 320px; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: #000;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg-img {
  width: 100%; height: 320px; object-fit: cover;
  filter: brightness(0.4);
}
.page-hero__content {
  position: relative; z-index: 10; text-align: center; color: #fff;
  padding: 80px 24px 40px;
}
.page-hero__label {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600;
  color: #B0BFBD; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 12px;
}
.page-hero__title {
  font-size: 42px; font-weight: 700; margin-bottom: 12px; letter-spacing: 2px;
}
.page-hero__desc {
  font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.8;
  max-width: 560px; margin: 0 auto;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: sticky; top: 56px; z-index: 90;
  background: #fff; border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.progress-bar__inner {
  max-width: 820px; margin: 0 auto; padding: 0 24px;
}
.progress-bar__track {
  height: 4px; background: #e8e8e8; border-radius: 2px; margin-bottom: 12px;
}
.progress-bar__fill {
  height: 100%; background: #B0BFBD; border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 16.66%;
}
.progress-bar__steps {
  display: flex; justify-content: space-between;
}
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 4px 8px;
  transition: opacity 0.3s;
}
.progress-step__num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: #e8e8e8; color: #999;
  transition: background 0.3s, color 0.3s;
}
.progress-step.active .progress-step__num { background: #B0BFBD; color: #fff; }
.progress-step.completed .progress-step__num { background: #B0BFBD; color: #fff; }
.progress-step__label {
  font-size: 10px; font-weight: 600; color: #999;
  letter-spacing: 0.5px; white-space: nowrap;
  transition: color 0.3s;
}
.progress-step.active .progress-step__label { color: #B0BFBD; }
.progress-step.completed .progress-step__label { color: #B0BFBD; }

/* ===== APPLY MAIN ===== */
.apply-main {
  padding: 48px 0 80px;
  min-height: 60vh;
}

/* ===== FORM STEPS ===== */
.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step__header { margin-bottom: 36px; }
.form-step__title {
  font-size: 28px; font-weight: 700; color: #212121;
  letter-spacing: 2px; margin-bottom: 8px;
}
.form-step__desc {
  font-size: 14px; color: #666; line-height: 1.6;
}

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 24px; }
.form-group--shrink { flex: 0 0 auto; }

.form-label {
  display: block; font-size: 14px; font-weight: 600;
  color: #212121; margin-bottom: 8px; letter-spacing: 0.5px;
}
.form-label--small { font-size: 12px; font-weight: 500; color: #666; }

.required { color: #e74c3c; }

.form-hint {
  font-size: 12px; color: #888; margin-bottom: 8px; line-height: 1.5;
}

.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 16px;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  border: 1.5px solid #ddd; border-radius: 8px;
  background: #f8f8f8; color: #212121;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: #B0BFBD;
  box-shadow: 0 0 0 3px rgba(176,191,189,0.12);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: #aaa;
}
.form-textarea { resize: vertical; line-height: 1.6; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}

.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }

.form-color {
  width: 48px; height: 48px; border: 2px solid #ddd;
  border-radius: 8px; cursor: pointer; padding: 2px;
}
.color-input { display: flex; align-items: center; gap: 12px; }
.form-input--color { flex: 1; font-family: monospace; font-size: 14px; }

.form-checkbox {
  width: 18px; height: 18px; accent-color: #B0BFBD;
  cursor: pointer; vertical-align: middle;
}

.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 14px; line-height: 1.5;
}
.checkbox-text { flex: 1; padding-top: 2px; }

.form-divider {
  height: 1px; background: #e8e8e8; margin: 32px 0;
}

/* ===== FORM NOTICE ===== */
.form-notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: #f0fafa; border: 1px solid #b2e8e0; border-radius: 8px;
  padding: 16px; margin-bottom: 24px;
}
.form-notice__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.form-notice p { font-size: 13px; color: #212121; line-height: 1.7; }

/* ===== PAYMENT INFO ===== */
.payment-info {
  display: flex; flex-direction: column; gap: 10px; margin-top: 8px;
}
.payment-info__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #212121;
}
.payment-info__icon { font-size: 18px; }

/* ===== BRAND OPTIONS ===== */
.brand-options { display: flex; gap: 16px; }
.brand-option { flex: 1; cursor: pointer; }
.brand-option__radio { position: absolute; opacity: 0; pointer-events: none; }
.brand-option__card {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 24px 16px;
  border: 2px solid #e8e8e8; border-radius: 12px;
  background: #fff; transition: border-color 0.3s, box-shadow 0.3s;
  text-align: center;
}
.brand-option__radio:checked + .brand-option__card {
  border-color: #B0BFBD; box-shadow: 0 0 0 3px rgba(176,191,189,0.12);
}
.brand-option__icon { font-size: 32px; }
.brand-option__title { font-size: 14px; font-weight: 700; color: #212121; }
.brand-option__desc { font-size: 12px; color: #888; line-height: 1.4; }

.brand-own-fields {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid #e8e8e8;
  animation: fadeIn 0.3s ease;
}

/* ===== TERMS OPTIONS ===== */
.terms-options { display: flex; gap: 16px; }
.terms-option { flex: 1; cursor: pointer; }
.terms-option__radio { position: absolute; opacity: 0; pointer-events: none; }
.terms-option__card {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 24px 16px;
  border: 2px solid #e8e8e8; border-radius: 12px;
  background: #fff; transition: border-color 0.3s, box-shadow 0.3s;
  text-align: center;
}
.terms-option__radio:checked + .terms-option__card {
  border-color: #B0BFBD; box-shadow: 0 0 0 3px rgba(176,191,189,0.12);
}
.terms-option__icon { font-size: 32px; }
.terms-option__title { font-size: 14px; font-weight: 700; color: #212121; }
.terms-option__desc { font-size: 12px; color: #888; line-height: 1.4; }

.custom-terms-fields {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid #e8e8e8;
  animation: fadeIn 0.3s ease;
}

/* ===== FILE UPLOAD ===== */
.file-upload {
  position: relative; border: 2px dashed #ddd; border-radius: 12px;
  padding: 32px; text-align: center; cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  background: #fafafa;
}
.file-upload:hover { border-color: #B0BFBD; background: #f0fafa; }
.file-upload__input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}
.file-upload__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #888; font-size: 14px;
}
.file-upload__icon { font-size: 28px; }
.file-upload__preview {
  position: relative; display: inline-block;
}
.file-upload__preview img {
  max-width: 200px; max-height: 100px; object-fit: contain;
  border-radius: 8px;
}
.file-upload__remove {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #e74c3c; color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

/* ===== PROMOTION ITEMS ===== */
.promotion-item {
  background: #f8f8f8; border-radius: 10px; padding: 16px;
  margin-bottom: 12px; border: 1px solid #e8e8e8;
}

.btn--add-promo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #B0BFBD;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(176,191,189,0.08); transition: background 0.3s;
}
.btn--add-promo:hover { background: rgba(176,191,189,0.15); }

.btn--remove-promo {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(231,76,60,0.08); color: #e74c3c;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.btn--remove-promo:hover { background: rgba(231,76,60,0.15); }

/* ===== REVIEW SECTION ===== */
.review-section { margin-bottom: 24px; }
.review-group {
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.review-group:last-child { border-bottom: none; }
.review-group__title {
  font-size: 16px; font-weight: 700; color: #B0BFBD;
  letter-spacing: 1px; margin-bottom: 12px;
}
.review-item { display: flex; gap: 16px; margin-bottom: 8px; }
.review-item__label {
  font-size: 13px; font-weight: 600; color: #888;
  min-width: 140px; flex-shrink: 0;
}
.review-item__value {
  font-size: 13px; color: #212121; word-break: break-word;
}

/* ===== AGREEMENT PREVIEW ===== */
.agreement-section { margin-bottom: 32px; }
.agreement-section__title {
  font-size: 18px; font-weight: 700; color: #212121;
  letter-spacing: 1px; margin-bottom: 8px;
}
.agreement-section__desc {
  font-size: 13px; color: #888; margin-bottom: 16px;
}
.agreement-preview {
  background: #f8f8f8; border: 1px solid #e8e8e8; border-radius: 12px;
  padding: 24px; max-height: 400px; overflow-y: auto;
  font-size: 12px; line-height: 1.8; color: #212121;
}
.agreement-preview h3 {
  font-size: 16px; font-weight: 700; text-align: center;
  margin-bottom: 16px; letter-spacing: 2px;
}
.agreement-preview h4 {
  font-size: 13px; font-weight: 700; margin: 12px 0 6px;
}
.agreement-preview p { margin-bottom: 8px; }
.agreement-preview .agreement-signature {
  margin-top: 24px; display: flex; justify-content: space-between;
}
.agreement-preview .agreement-signature div { width: 45%; }
.agreement-preview .signature-line {
  border-top: 1px solid #212121; margin-top: 40px; padding-top: 8px;
}

/* ===== BUTTONS ===== */
.form-step__actions {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 36px; padding-top: 24px; border-top: 1px solid #e8e8e8;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.5px;
  transition: all 0.3s;
}
.btn--next {
  background: #B0BFBD; color: #fff;
}
.btn--next:hover { background: #04b692; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(176,191,189,0.3); }
.btn--back {
  background: transparent; color: #666;
  border: 1.5px solid #ddd;
}
.btn--back:hover { border-color: #999; color: #212121; }
.btn--submit {
  background: #212121; color: #fff; padding: 16px 48px;
}
.btn--submit:hover { background: #333; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.btn--submit:disabled {
  background: #ccc; cursor: not-allowed; transform: none; box-shadow: none;
}

/* ===== SUCCESS ===== */
.success-content { text-align: center; padding: 60px 0; }
.success-icon { font-size: 64px; margin-bottom: 24px; }
.success-title {
  font-size: 28px; font-weight: 700; color: #212121;
  letter-spacing: 2px; margin-bottom: 16px;
}
.success-text {
  font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 12px;
}
.btn--back-home {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 24px; padding: 14px 36px; border-radius: 50px;
  background: #B0BFBD; color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.5px;
  transition: all 0.3s;
}
.btn--back-home:hover { background: #04b692; }

/* ===== VALIDATION ===== */
.form-input.error, .form-textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.form-error {
  font-size: 12px; color: #e74c3c; margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a; color: rgba(255,255,255,0.6); padding: 48px 0 32px;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
}
.footer__brand { max-width: 400px; }
.footer__logo {
  font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 400;
  color: #fff; letter-spacing: 4px; margin-bottom: 12px; display: block;
}
.footer__address { font-size: 13px; margin-bottom: 4px; line-height: 1.5; }
.footer__email { font-size: 13px; margin-top: 8px; }
.footer__email a { color: #B0BFBD; }
.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer__links a:hover { color: #B0BFBD; }
.footer__bottom {
  text-align: center; font-size: 13px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__menu-btn { display: flex; }
  .page-hero { height: 240px; }
  .page-hero__bg-img { height: 240px; }
  .page-hero__title { font-size: 28px; }
  .page-hero__content { padding: 70px 16px 32px; }
  .progress-bar { top: 52px; }
  .progress-step__label { display: none; }
  .progress-bar__steps { justify-content: center; gap: 8px; }
  .form-row { flex-direction: column; gap: 0; }
  .brand-options, .terms-options { flex-direction: column; }
  .form-step__actions { flex-direction: column-reverse; }
  .btn { width: 100%; justify-content: center; }
  .review-item { flex-direction: column; gap: 4px; }
  .footer__inner { flex-direction: column; gap: 24px; }
  .footer__links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .page-hero { height: 200px; }
  .page-hero__bg-img { height: 200px; }
  .page-hero__title { font-size: 24px; }
  .form-step__title { font-size: 22px; }
}

/* ===== PRICE RULES (Phase 1) ===== */
.price-rule-item {
  background: #f8f8f8; border-radius: 10px; padding: 16px;
  margin-bottom: 12px; border: 1px solid #e8e8e8;
}
.price-rule-item .form-row {
  display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap;
}
.price-rule-item .form-group { flex: 1; min-width: 120px; margin-bottom: 0; }
.price-rule-item .form-group--shrink { flex: 0 0 auto; min-width: auto; }
.price-rule-item .form-label { font-size: 12px; margin-bottom: 4px; }
.price-rule-item .form-input, .price-rule-item .form-select {
  padding: 10px 12px; font-size: 13px;
}

/* ===== BUSINESS HOURS (Phase 2) ===== */
.business-hours-grid { display: flex; flex-direction: column; gap: 8px; }
.business-hours-row {
  display: flex; align-items: center; gap: 12px;
  background: #f8f8f8; border-radius: 8px; padding: 10px 16px;
  border: 1px solid #e8e8e8;
}
.business-hours-row__day {
  min-width: 48px; font-size: 13px; font-weight: 600; color: #212121;
}
.business-hours-row__toggle {
  display: flex; align-items: center; gap: 6px;
}
.business-hours-row__toggle label {
  font-size: 12px; color: #666; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
}
.business-hours-row__times {
  display: flex; align-items: center; gap: 8px; flex: 1;
}
.business-hours-row__times input[type="time"] {
  padding: 6px 10px; font-size: 13px; border: 1.5px solid #ddd;
  border-radius: 6px; background: #fff; font-family: 'Montserrat', sans-serif;
}
.business-hours-row__times input[type="time"]:focus {
  outline: none; border-color: #B0BFBD;
}
.business-hours-row__separator {
  font-size: 12px; color: #999;
}
.business-hours-row--closed .business-hours-row__times { opacity: 0.4; pointer-events: none; }
.business-hours-row--24h .business-hours-row__times { opacity: 0.4; pointer-events: none; }

/* ===== PAYMENT METHOD CARDS (Phase 3) ===== */
.payment-methods-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: 8px;
}
.payment-method-card {
  cursor: pointer; position: relative;
}
.payment-method-card__checkbox {
  position: absolute; opacity: 0; pointer-events: none;
}
.payment-method-card__inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 8px;
  border: 2px solid #e8e8e8; border-radius: 12px;
  background: #fff; transition: all 0.2s;
  min-height: 90px;
}
.payment-method-card__checkbox:checked + .payment-method-card__inner {
  border-color: #B0BFBD; background: rgba(176,191,189,0.06);
  box-shadow: 0 0 0 3px rgba(176,191,189,0.12);
}
.payment-method-card__inner:hover {
  border-color: #ccc; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.payment-method-card__icon {
  width: 48px; height: 32px; object-fit: contain;
}
.payment-method-card__icon svg {
  width: 100%; height: 100%;
}
.payment-method-card__name {
  font-size: 11px; font-weight: 600; color: #666; text-align: center;
  line-height: 1.3;
}

/* ===== BRAND SUB-OPTIONS (Phase 4) ===== */
.brand-sub-options {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid #e8e8e8;
  animation: fadeIn 0.3s ease;
}
.brand-sub-options__grid {
  display: flex; gap: 16px;
}
.brand-sub-option { flex: 1; cursor: pointer; }
.brand-sub-option__radio {
  position: absolute; opacity: 0; pointer-events: none;
}
.brand-sub-option__card {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 20px 16px;
  border: 2px solid #e8e8e8; border-radius: 12px;
  background: #fff; transition: all 0.2s; text-align: center;
}
.brand-sub-option__radio:checked + .brand-sub-option__card {
  border-color: #B0BFBD; box-shadow: 0 0 0 3px rgba(176,191,189,0.12);
}
.brand-sub-option__logo {
  width: 120px; height: 60px; object-fit: contain;
}
.brand-sub-option__logo--contain { object-fit: contain; }
.brand-sub-option__name {
  font-size: 14px; font-weight: 700; color: #212121;
}
.brand-sub-option__colors {
  display: flex; gap: 6px;
}
.brand-color-swatch {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid #e8e8e8;
}

/* 3-column form row */
.form-row--3 { display: flex; gap: 16px; }
.form-row--3 .form-group { flex: 1; }

/* ===== BANK PROVIDE LATER (Phase 5) ===== */
#bankFieldsContainer.disabled {
  opacity: 0.4; pointer-events: none;
  filter: grayscale(0.5);
}

/* ===== RESPONSIVE additions ===== */
@media (max-width: 768px) {
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row--3 { flex-direction: column; gap: 0; }
  .brand-sub-options__grid { flex-direction: column; }
  .business-hours-row { flex-wrap: wrap; gap: 8px; }
  .business-hours-row__times { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
  .price-rule-item .form-row { flex-direction: column; gap: 8px; }
  .price-rule-item .form-group { min-width: 100%; width: 100%; }
  .price-rule-item { padding: 12px; }
  .business-hours-row { flex-wrap: wrap; gap: 8px; padding: 8px 12px; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .agreement-preview { max-height: 60vh; padding: 16px; font-size: 11px; line-height: 1.6; }
  .agreement-preview h3 { font-size: 14px; }
  .agreement-preview h4 { font-size: 12px; }
  .agreement-section { display: block !important; }
  .btn--save-draft { position: static !important; display: block; width: 100%; margin-bottom: 12px; }
}

/* Save Draft inline button */
.form-step__actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn--save-draft-inline {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn--save-draft-inline:hover { background: #f5f5f5; border-color: #ccc; }

/* Highlight skip option */
.form-group--highlight {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 8px 0;
}
.checkbox-label--highlight {
  font-weight: 500;
  color: #166534;
}
.form-hint--highlight {
  color: #16a34a;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

/* ===== Pricing Module ===== */
.pm-empty { color: #999; font-size: 14px; text-align: center; padding: 20px; }
.pm-rules-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.pm-rule-card { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 10px; padding: 14px; }
.pm-rule-card__header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.pm-rule-card__icon { font-size: 18px; }
.pm-rule-card__type { font-weight: 600; font-size: 14px; color: #333; flex: 1; }
.pm-rule-card__price { font-weight: 700; font-size: 16px; color: #c79e46; }
.pm-rule-card__details { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #666; margin-bottom: 8px; }
.pm-rule-card__details span { background: #fff; padding: 2px 8px; border-radius: 4px; border: 1px solid #eee; }
.pm-rule-card__actions { display: flex; gap: 8px; }
.pm-edit-btn, .pm-delete-btn { background: none; border: 1px solid #ddd; padding: 4px 12px; border-radius: 6px; font-size: 12px; cursor: pointer; font-family: 'Poppins', sans-serif; }
.pm-edit-btn:hover { border-color: #c79e46; color: #c79e46; }
.pm-delete-btn:hover { border-color: #e53e3e; color: #e53e3e; }

/* Modal */
.pm-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.pm-modal { background: #fff; border-radius: 16px; max-width: 600px; width: 100%; max-height: 85vh; overflow-y: auto; }
.pm-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid #eee; }
.pm-modal-header h4 { margin: 0; font-size: 16px; }
.pm-modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: #999; padding: 4px; }
.pm-modal-body { padding: 20px; }
.pm-modal-actions { display: flex; gap: 8px; justify-content: flex-end; padding: 16px 20px; border-top: 1px solid #eee; }
.pm-field { margin-bottom: 16px; }
.pm-field label { display: block; font-size: 13px; font-weight: 500; color: #555; margin-bottom: 6px; }
.pm-field-row { display: flex; gap: 16px; }
.pm-field-row .pm-field { flex: 1; }
.pm-input { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; font-family: 'Poppins', sans-serif; box-sizing: border-box; }
.pm-input:focus { outline: none; border-color: #c79e46; }
.pm-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 6px; }
.pm-type-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 6px; border: 1px solid #ddd; border-radius: 8px; background: #fff; cursor: pointer; font-family: 'Poppins', sans-serif; transition: all 0.15s; }
.pm-type-btn:hover { border-color: #c79e46; }
.pm-type-btn.active { border-color: #c79e46; background: #fdf6e3; }
.pm-type-icon { font-size: 18px; }
.pm-type-label { font-size: 11px; text-align: center; }
.pm-weekday-grid { display: flex; gap: 6px; margin-bottom: 8px; }
.pm-weekday-btn { width: 40px; height: 40px; border: 1px solid #ddd; border-radius: 8px; background: #fff; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'Poppins', sans-serif; }
.pm-weekday-btn.active { border-color: #c79e46; background: #fdf6e3; color: #c79e46; }
.pm-weekday-presets { display: flex; gap: 8px; }
.pm-preset-btn { background: none; border: 1px solid #ddd; padding: 4px 10px; border-radius: 6px; font-size: 11px; cursor: pointer; color: #666; font-family: 'Poppins', sans-serif; }
.pm-preset-btn:hover { border-color: #c79e46; color: #c79e46; }
.pm-price-row { display: flex; gap: 8px; align-items: center; }
.pm-currency-select { width: 100px !important; }
.pm-price-input { flex: 1; }
.pm-vtype-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-vtype-item { display: flex; align-items: center; gap: 4px; font-size: 13px; cursor: pointer; }
.pm-vtype-check { width: 16px; height: 16px; }
.pm-checkbox { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; }
.pm-advanced { margin-top: 12px; }
.pm-advanced summary { font-size: 13px; color: #666; cursor: pointer; font-weight: 500; }
.pm-advanced summary:hover { color: #c79e46; }
