/* DFADeals Wholesale Portal — BUILD 2026-06-22 */
:root {
  --ws-red: #E30613;
  --ws-pink: #FFF3F5;
  --ws-white: #ffffff;
  --ws-black: #111111;
  --ws-muted: #666666;
  --ws-border: #e8e8e8;
  --ws-radius-card: 16px;
  --ws-radius-btn: 12px;
  --ws-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.ws-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ws-black);
  background: var(--ws-white);
  padding-bottom: 88px;
}

body.ws-page #column-left,
body.ws-page #column-right {
  display: none !important;
}

body.ws-page #content {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

.ws-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 24px;
}

@media (min-width: 768px) {
  .ws-wrap {
    max-width: 960px;
    padding: 0 24px 32px;
  }
}

@media (min-width: 1024px) {
  .ws-wrap {
    max-width: 1140px;
  }

  body.ws-page {
    padding-bottom: 0;
  }
}

/* Typography */
.ws-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.2;
}

.ws-subtitle {
  font-size: 15px;
  color: var(--ws-muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

.ws-section-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px;
}

/* Cards */
.ws-card {
  background: var(--ws-white);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-card);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--ws-shadow);
}

.ws-card-pink {
  background: var(--ws-pink);
  border: none;
}

/* Buttons */
.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--ws-radius-btn);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.ws-btn-primary {
  background: var(--ws-red);
  color: var(--ws-white);
  border-color: var(--ws-red);
}

.ws-btn-primary:hover {
  opacity: 0.92;
  color: var(--ws-white);
}

.ws-btn-secondary {
  background: var(--ws-white);
  color: var(--ws-red);
  border-color: var(--ws-red);
}

.ws-btn-secondary:hover {
  background: var(--ws-pink);
  color: var(--ws-red);
}

.ws-btn-sm {
  width: auto;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 14px;
}

/* Forms */
.ws-form-group {
  margin-bottom: 16px;
}

.ws-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ws-black);
}

.ws-input,
.ws-select,
.ws-textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-btn);
  font-size: 15px;
  background: var(--ws-white);
  box-sizing: border-box;
}

.ws-textarea {
  min-height: 120px;
  resize: vertical;
}

.ws-input:focus,
.ws-select:focus,
.ws-textarea:focus {
  outline: none;
  border-color: var(--ws-red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.ws-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin: 16px 0;
}

.ws-checkbox input {
  margin-top: 3px;
  accent-color: var(--ws-red);
}

.ws-error {
  color: var(--ws-red);
  font-size: 13px;
  margin-top: 4px;
}

.ws-help-text {
  font-size: 14px;
  color: var(--ws-muted);
  line-height: 1.5;
  margin: 0 0 14px;
}

.ws-docs-desc {
  font-size: 14px;
  color: var(--ws-muted);
  line-height: 1.55;
  margin: 0 0 14px;
  padding: 12px 14px;
  background: #fafafa;
  border: 1px solid var(--ws-border);
  border-radius: 10px;
}

.ws-or-divider {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ws-muted);
  margin: 4px 0 14px;
}

.ws-alert {
  padding: 12px 16px;
  border-radius: var(--ws-radius-btn);
  font-size: 14px;
  margin-bottom: 16px;
}

.ws-alert-danger {
  background: #fff0f0;
  color: var(--ws-red);
  border: 1px solid #ffd0d0;
}

.ws-alert-success {
  background: #f0fff4;
  color: #1a7f37;
  border: 1px solid #b7ebc6;
}

/* Benefits card */
.ws-benefits {
  background: var(--ws-pink);
  border-radius: var(--ws-radius-card);
  padding: 20px;
}

.ws-benefits h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
}

.ws-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ws-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
}

.ws-benefits li i {
  color: var(--ws-red);
  width: 18px;
}

/* Status / icon screens */
.ws-icon-screen {
  text-align: center;
  padding: 32px 16px;
}

.ws-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ws-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ws-icon-circle i {
  font-size: 32px;
  color: var(--ws-red);
}

.ws-icon-circle.success i {
  color: #1a7f37;
}

.ws-checklist {
  text-align: left;
  background: var(--ws-pink);
  border-radius: var(--ws-radius-card);
  padding: 20px;
  margin: 24px 0;
}

.ws-checklist h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
}

.ws-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  list-style: none;
}

.ws-checklist ul {
  padding: 0;
  margin: 0;
}

/* Dashboard stats */
.ws-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .ws-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ws-stat-card {
  background: var(--ws-white);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-card);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.ws-stat-card:hover {
  border-color: var(--ws-red);
}

.ws-stat-label {
  font-size: 12px;
  color: var(--ws-muted);
  margin-bottom: 4px;
}

.ws-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--ws-black);
}

.ws-stat-link {
  font-size: 12px;
  color: var(--ws-red);
  font-weight: 600;
  margin-top: 6px;
}

/* User card */
.ws-user-card {
  background: var(--ws-pink);
  border-radius: var(--ws-radius-card);
  padding: 20px;
  margin-bottom: 20px;
}

.ws-user-card h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
}

.ws-user-card p {
  font-size: 14px;
  color: var(--ws-muted);
  margin: 0;
}

/* Quick actions / menu list */
.ws-list-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ws-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--ws-border);
  text-decoration: none;
  color: var(--ws-black);
  background: var(--ws-white);
}

.ws-list-item:first-child {
  border-radius: var(--ws-radius-card) var(--ws-radius-card) 0 0;
}

.ws-list-item:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--ws-radius-card) var(--ws-radius-card);
}

.ws-list-item:hover {
  background: var(--ws-pink);
  color: var(--ws-black);
}

.ws-list-item.active {
  background: var(--ws-pink);
}

.ws-list-item i.icon {
  width: 24px;
  text-align: center;
  color: var(--ws-red);
  font-size: 18px;
}

.ws-list-item .arrow {
  margin-left: auto;
  color: #ccc;
}

/* Product grid */
.ws-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .ws-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .ws-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ws-product-card {
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-card);
  overflow: hidden;
  background: var(--ws-white);
  display: flex;
  flex-direction: column;
}

.ws-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fafafa;
  padding: 8px;
  box-sizing: border-box;
}

.ws-product-card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ws-product-name {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}

.ws-price-row {
  font-size: 12px;
  margin-bottom: 2px;
}

.ws-price-row .label {
  color: var(--ws-muted);
}

.ws-price-row .value {
  font-weight: 700;
}

.ws-price-wholesale {
  color: var(--ws-red);
  font-size: 15px;
  font-weight: 800;
}

.ws-savings-badge {
  display: inline-block;
  background: var(--ws-pink);
  color: var(--ws-red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  margin: 6px 0;
}

.ws-moq {
  font-size: 12px;
  color: var(--ws-muted);
  margin-bottom: 8px;
}

/* Filters */
.ws-filters {
  background: var(--ws-pink);
  border-radius: var(--ws-radius-card);
  padding: 16px;
  margin-bottom: 16px;
}

.ws-filters-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .ws-filters-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tabs */
.ws-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 16px;
  padding-bottom: 4px;
}

.ws-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ws-muted);
  background: var(--ws-white);
  border: 1px solid var(--ws-border);
}

.ws-tab.active,
.ws-tab:hover {
  background: var(--ws-red);
  color: var(--ws-white);
  border-color: var(--ws-red);
}

/* Quote status badges */
.ws-status-pending { background: #fff8e1; color: #f59e00; }
.ws-status-approved { background: #e8f5e9; color: #1a7f37; }
.ws-status-declined { background: #fff0f0; color: var(--ws-red); }
.ws-status-expired { background: #f5f5f5; color: #888; }

.ws-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* Quote / order rows */
.ws-row-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-card);
  margin-bottom: 10px;
  background: var(--ws-white);
}

.ws-row-card .meta {
  font-size: 12px;
  color: var(--ws-muted);
}

/* Cart */
.ws-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ws-border);
}

.ws-cart-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: #fafafa;
}

.ws-moq-status {
  padding: 12px 16px;
  border-radius: var(--ws-radius-btn);
  font-size: 14px;
  font-weight: 600;
  margin: 16px 0;
  text-align: center;
}

.ws-moq-met {
  background: #e8f5e9;
  color: #1a7f37;
}

.ws-moq-not-met {
  background: #fff0f0;
  color: var(--ws-red);
}

/* Checkout steps */
.ws-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.ws-step {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: var(--ws-radius-btn);
  font-size: 13px;
  font-weight: 600;
  background: var(--ws-pink);
  color: var(--ws-muted);
}

.ws-step.active {
  background: var(--ws-red);
  color: var(--ws-white);
}

.ws-step.done {
  background: #e8f5e9;
  color: #1a7f37;
}

/* Volume pricing table */
.ws-tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}

.ws-tier-table th,
.ws-tier-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--ws-border);
  text-align: left;
}

.ws-tier-table th {
  background: var(--ws-pink);
  font-weight: 700;
}

/* Two-column layout (register/login) */
.ws-split {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .ws-split {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

/* Mobile bottom nav */
.ws-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ws-white);
  border-top: 1px solid var(--ws-border);
  display: flex;
  justify-content: space-around;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
}

@media (min-width: 1024px) {
  .ws-mobile-nav {
    display: none;
  }
}

.ws-mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ws-muted);
  text-decoration: none;
  padding: 4px 8px;
}

.ws-mobile-nav a i {
  font-size: 20px;
}

.ws-mobile-nav a.active,
.ws-mobile-nav a:hover {
  color: var(--ws-red);
}

/* Social login buttons */
.ws-social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.ws-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-btn);
  background: var(--ws-white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.ws-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--ws-muted);
  font-size: 13px;
}

.ws-divider::before,
.ws-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ws-border);
}

/* Payment cards */
.ws-payment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-card);
  margin-bottom: 10px;
}

.ws-payment-card.default {
  border-color: var(--ws-red);
  background: var(--ws-pink);
}

.ws-payment-card .card-icon {
  font-size: 28px;
  color: var(--ws-red);
}

/* Back link */
.ws-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ws-black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.ws-back:hover {
  color: var(--ws-red);
}

/* Table */
.ws-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}

.ws-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ws-table th,
.ws-table td {
  padding: 12px;
  border-bottom: 1px solid var(--ws-border);
  text-align: left;
}

.ws-table th {
  background: var(--ws-pink);
  font-weight: 700;
  font-size: 13px;
}

/* Product detail */
.ws-product-detail {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .ws-product-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.ws-gallery-main img {
  width: 100%;
  border-radius: var(--ws-radius-card);
  background: #fafafa;
}

.ws-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.ws-qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ws-border);
  border-radius: 8px;
  background: var(--ws-white);
  font-size: 18px;
  cursor: pointer;
}

.ws-action-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

@media (min-width: 480px) {
  .ws-action-row {
    flex-direction: row;
  }

  .ws-action-row .ws-btn {
    flex: 1;
  }
}

/* Login CTA on product cards */
.ws-login-cta {
  font-size: 12px;
  color: var(--ws-red);
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-top: 8px;
}

.ws-login-cta:hover {
  text-decoration: underline;
}

/* Setup invitation wizard */
.ws-setup-welcome { margin-bottom: 24px; }
.ws-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ws-red);
  margin: 0 0 8px;
}
.ws-setup-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.ws-setup-steps li {
  flex: 1 1 120px;
  padding: 10px 12px;
  border: 1px solid var(--ws-border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-muted);
  background: #fafafa;
  text-align: center;
}
.ws-setup-steps li.is-active {
  border-color: var(--ws-red);
  color: var(--ws-red);
  background: var(--ws-pink);
}
.ws-setup-steps li.is-done {
  color: #1a7f37;
  border-color: #b7e4c7;
  background: #f0fff4;
}
.ws-setup-card { max-width: 640px; }
.ws-password-wrap { position: relative; }
.ws-password-wrap .ws-input { padding-right: 72px; }
.ws-password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--ws-red);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.ws-strength {
  height: 6px;
  background: #eee;
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}
.ws-strength span {
  display: block;
  height: 100%;
  width: 0;
  transition: width 0.2s ease, background 0.2s ease;
}
.ws-help { display: block; margin-top: 6px; font-size: 13px; color: var(--ws-muted); }
.ws-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px) {
  .ws-form-row { grid-template-columns: 1fr; }
}
.ws-hr { border: 0; border-top: 1px solid var(--ws-border); margin: 20px 0; }
.ws-separate-address { margin-top: 16px; padding-top: 8px; }
.ws-stripe-element {
  border: 1px solid var(--ws-border);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  min-height: 48px;
}
.ws-review-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 16px;
  margin: 0 0 20px;
}
@media (max-width: 640px) {
  .ws-review-list { grid-template-columns: 1fr; }
}
.ws-review-list dt { font-weight: 700; color: var(--ws-muted); }
.ws-review-list dd { margin: 0; }
.ws-btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.ws-alert {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--ws-pink);
  border: 1px solid #f5c2c7;
  margin-bottom: 16px;
}
.ws-alert-danger { background: #fff5f5; border-color: #f5c2c7; color: #9b1c1c; }

/* =========================================================
   Wholesale Membership Application (register) — mobile-first
   ========================================================= */
body.ws-apply-page {
  background: #ffffff;
  overflow-x: hidden;
}

body.ws-apply-page .ws-wrap.ws-apply {
  max-width: 560px;
  padding: 0 16px 32px;
}

@media (min-width: 768px) {
  body.ws-apply-page .ws-wrap.ws-apply {
    max-width: 640px;
    padding: 0 24px 48px;
  }
}

/* Bright white hero with light red geometric accents */
.ws-apply-hero {
  position: relative;
  margin: 0 -16px 8px;
  padding: 28px 16px 20px;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(227, 6, 19, 0.035) 10px,
      rgba(227, 6, 19, 0.035) 20px
    ),
    linear-gradient(135deg, #ffffff 0%, #ffffff 48%, #fff8f9 70%, #fff3f5 100%);
  background-size: 100% 100%, 100% 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ws-apply-hero {
    margin: 12px 0 8px;
    padding: 36px 28px 28px;
    border-radius: 16px;
  }
}

.ws-apply-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 55%;
  height: 140%;
  background:
    repeating-linear-gradient(
      -38deg,
      transparent 0 14px,
      rgba(227, 6, 19, 0.06) 14px 28px
    );
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%);
}

.ws-apply-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ws-apply-hero-copy {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 8px;
}

.ws-apply-hero-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111111;
}

.ws-apply-hero-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.ws-apply-hero-icon {
  flex: 0 0 auto;
  padding-top: 4px;
}

.ws-apply-hero-crown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--ws-red);
  border-radius: 50%;
  color: var(--ws-red);
  background: rgba(255, 255, 255, 0.7);
}

.ws-apply-hero-crown i {
  font-size: 22px;
}

.ws-apply-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
}

.ws-apply-back:hover,
.ws-apply-back:focus {
  color: var(--ws-red);
  text-decoration: none;
}

/* Accordion cards */
.ws-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-acc-item {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.ws-acc-item.has-error {
  border-color: #E30613;
}

.ws-req {
  color: var(--ws-red);
  font-weight: 700;
}

.ws-acc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 14px 14px 14px 16px;
  margin: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ws-acc-header:focus-visible {
  outline: 2px solid var(--ws-red);
  outline-offset: -2px;
}

.ws-acc-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--ws-red);
  border-radius: 10px;
  color: var(--ws-red);
  background: #fff;
}

.ws-acc-icon i {
  font-size: 15px;
}

.ws-acc-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ws-acc-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
}

.ws-acc-desc {
  font-size: 12px;
  font-weight: 400;
  color: #888888;
  line-height: 1.35;
}

.ws-acc-chevron {
  flex: 0 0 auto;
  color: #999999;
  transition: transform 0.2s ease;
}

.ws-acc-chevron i {
  font-size: 13px;
}

.ws-acc-item.is-open .ws-acc-chevron {
  transform: rotate(180deg);
}

.ws-acc-body {
  padding: 0 16px 18px;
  border-top: 1px solid #f0f0f0;
}

.ws-acc-body[hidden] {
  display: none !important;
}

.ws-acc-body > .ws-form-group:first-child,
.ws-acc-body > .ws-help-text:first-child,
.ws-acc-body > .ws-docs-desc:first-child {
  margin-top: 16px;
}

.ws-acc-body .ws-form-group:last-child {
  margin-bottom: 0;
}

.ws-apply-form .ws-input,
.ws-apply-form .ws-select {
  min-height: 50px;
  border-radius: 10px;
  border-color: #e0e0e0;
  font-size: 15px;
}

.ws-apply-form .ws-input.is-invalid,
.ws-apply-form .ws-select.is-invalid {
  border-color: var(--ws-red);
}

.ws-apply-form .ws-label {
  font-size: 13px;
  font-weight: 600;
}

.ws-apply-form .ws-label small {
  font-weight: 500;
  color: #888888;
}

.ws-apply-form .ws-file-input {
  padding: 10px 12px;
  font-size: 14px;
}

.ws-apply-form .ws-docs-desc {
  background: #fff3f5;
  border: 1px solid #ffd6dc;
  border-radius: 10px;
  color: #555555;
  font-size: 13px;
  line-height: 1.55;
  padding: 12px 14px;
  margin: 16px 0 14px;
}

.ws-apply-form .ws-help-text {
  margin-top: 16px;
  font-size: 13px;
}

.ws-error-block {
  margin: 0 0 12px;
}

/* Submission area */
.ws-apply-submit {
  margin-top: 22px;
  padding-bottom: 8px;
}

.ws-apply-submit .ws-checkbox {
  margin: 0 0 16px;
  font-size: 14px;
  color: #333333;
  align-items: center;
}

.ws-apply-submit .ws-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  flex-shrink: 0;
}

.ws-apply-submit .ws-checkbox a {
  color: var(--ws-red);
  font-weight: 700;
  text-decoration: none;
}

.ws-apply-submit .ws-checkbox a:hover {
  text-decoration: underline;
}

.ws-apply-btn {
  min-height: 52px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ws-apply-btn.is-loading,
.ws-apply-btn:disabled {
  opacity: 0.85;
  cursor: not-allowed;
  pointer-events: none;
}

.ws-apply-btn-loading i {
  margin-right: 6px;
}

.ws-apply-login {
  text-align: center;
  margin: 16px 0 0;
  font-size: 14px;
  color: #666666;
}

.ws-apply-login a {
  color: var(--ws-red);
  font-weight: 700;
  text-decoration: none;
}

.ws-apply-login a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ws-apply-form .ws-form-row {
    grid-template-columns: 1fr;
  }

  .ws-apply-hero-title {
    font-size: 24px;
  }
}

