/* ─── PROGRESS STEPS ───────────────────────────── */
    .progress-bar-checkout {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px 48px;
      gap: 0;
      border-bottom: 1px solid var(--bordergrey);
      background: var(--cream);
      padding-top: 86px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: default;
    }

    .step-bubble {
      width: 30px; height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      border: 1px solid var(--bordergrey);
      color: var(--text-light);
      transition: all .3s;
      flex-shrink: 0;
    }

    .step.done .step-bubble { background: var(--deep-brown); border-color: var(--deep-brown); color: white; }
    .step.active .step-bubble { background: var(--mid-brown); border-color: var(--mid-brown); color: white; }

    .step-name {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-light);
      font-weight: 400;
      white-space: nowrap;
    }

    .step.active .step-name { color: var(--deep-brown); font-weight: 500; }
    .step.done .step-name { color: var(--success); }

    .step-connector {
      flex: 0 0 52px;
      height: 1px;
      background: var(--bordergrey);
      margin: 0 12px;
      position: relative;
    }

    .step-connector.done::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      height: 100%;
      width: 100%;
      background: var(--success);
      transition: width .5s ease;
    }

    /* ─── LAYOUT ───────────────────────────────────── */
    .checkout-layout {
      display: grid;
      grid-template-columns: 1fr 420px;
      min-height: calc(100vh - 132px);
    }

    /* ─── LEFT PANEL ───────────────────────────────── */
    .checkout-left {
      padding: 48px 56px 80px 48px;
      border-right: 1px solid var(--bordergrey);
    }

    /* ─── SECTION BLOCKS ───────────────────────────── */
    .form-section {
      margin-bottom: 44px;
    }

    .section-eyebrow {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--deep-brown);
      font-weight: 500;
      margin-bottom: 6px;
    }

    .section-title {
      font-size: 20px;
      font-weight: 400;
      color: var(--deep-brown);
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .section-title em { font-style: italic; color: var(--deep-brown); }

    /* ─── CONTACT BLOCK ────────────────────────────── */
    .contact-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .contact-label {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--deep-brown);
      font-weight: 500;
    }

    .contact-login {
      font-size: 11px;
      color: var(--deep-brown);
      text-decoration: none;
      letter-spacing: 0.06em;
      cursor: pointer;
      border-bottom: 1px solid transparent;
      transition: border-color .2s;
    }

    .contact-login:hover { border-color: var(--deep-brown); }

    /* ─── FORM FIELDS ──────────────────────────────── */
    .field-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field-grid-3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
    }

    .field {
      position: relative;
      margin-bottom: 14px;
    }

    .field.no-margin { margin-bottom: 0; }

    .field label {
      display: block;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 6px;
      font-weight: 500;
      transition: color .2s;
    }

    .field:focus-within label { color: var(--deep-brown); }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--bordergrey);
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 300;
      color: var(--deep-brown);
      background: var(--warm-white);
      transition: border-color .2s, box-shadow .2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--deep-brown);
      box-shadow: 0 0 0 2px rgba(26,23,20,.06);
    }

    .field input.error { border-color: var(--error); }
    .field input.success { border-color: var(--success); }

    .field .field-error {
      font-size: 10px;
      color: var(--error);
      letter-spacing: 0.08em;
      margin-top: 5px;
      display: none;
    }

    .field input.error + .field-error,
    .field .field-error.show { display: block; }

    .field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7068' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }

    .field-suffix {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .field-suffix svg {
      width: 16px; height: 16px;
      stroke: var(--success);
      fill: none;
      stroke-width: 2;
    }

    .field-hint {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 5px;
      letter-spacing: 0.04em;
    }

    /* ─── CHECKBOX / RADIO ─────────────────────────── */
    .check-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      cursor: pointer;
    }

    .check-row input[type="checkbox"],
    .check-row input[type="radio"] {
      appearance: none;
      width: 16px; height: 16px;
      border: 1px solid var(--bordergrey);
      cursor: pointer;
      position: relative;
      flex-shrink: 0;
      margin-top: 2px;
      transition: all .2s;
    }

    .check-row input[type="radio"] { border-radius: 50%; }

    .check-row input[type="checkbox"]:checked {
      background: var(--deep-brown);
      border-color: var(--deep-brown);
    }

    .check-row input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      top: 2px; left: 5px;
      width: 4px; height: 8px;
      border: 1.5px solid white;
      border-top: none; border-left: none;
      transform: rotate(45deg);
    }

    .check-row input[type="radio"]:checked {
      border-color: var(--deep-brown);
    }

    .check-row input[type="radio"]:checked::after {
      content: '';
      position: absolute;
      top: 3px; left: 3px;
      width: 8px; height: 8px;
      background: var(--deep-brown);
      border-radius: 50%;
    }

    .check-label {
      font-size: 13px;
      color: var(--text);
      line-height: 1.5;
    }

    .check-label small {
      display: block;
      font-size: 11px;
      color: var(--text-light);
      margin-top: 2px;
    }

    /* ─── SHIPPING OPTIONS ─────────────────────────── */
    .shipping-options { display: flex; flex-direction: column; gap: 10px; }

    .shipping-opt {
      border: 1px solid var(--bordergrey);
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      transition: border-color .2s, background .2s;
      position: relative;
    }

    .shipping-opt:hover { border-color: var(--taupe); }
    .shipping-opt.selected { border-color: var(--deep-brown); background: var(--cream); }

    .shipping-opt input[type="radio"] {
      appearance: none;
      width: 18px; height: 18px;
      border: 1px solid var(--bordergrey);
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
      transition: border-color .2s;
    }

    .shipping-opt.selected input[type="radio"] { border-color: var(--deep-brown); }

    .shipping-opt.selected input[type="radio"]::after {
      content: '';
      position: absolute;
      top: 3px; left: 3px;
      width: 10px; height: 10px;
      background: var(--deep-brown);
      border-radius: 50%;
    }

    .shipping-opt-info { flex: 1; }

    .shipping-opt-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--deep-brown);
      margin-bottom: 2px;
      letter-spacing: 0.04em;
    }

    .shipping-opt-desc {
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: 0.04em;
    }

    .shipping-opt-price {
      font-size: 18px;
      font-weight: 400;
      color: var(--deep-brown);
    }

    .shipping-opt-price.free { color: var(--success); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; }

    /* ─── PAYMENT SECTION ──────────────────────────── */
    .payment-tabs {
      display: flex;
      border: 1px solid var(--bordergrey);
      margin-bottom: 20px;
      overflow: hidden;
    }

    .payment-tab {
      flex: 1;
      padding: 13px 10px;
      text-align: center;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--text-light);
      font-family: var(--font-body);
      border-right: 1px solid var(--bordergrey);
      transition: all .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .payment-tab:last-child { border-right: none; }
    .payment-tab:hover { background: var(--cream); color: var(--deep-brown); }
    .payment-tab.active { background: var(--deep-brown); color: var(--warm-white); }

    .payment-tab svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

    .payment-panel { display: none; }
    .payment-panel.active { display: block; }

    .card-number-field {
      position: relative;
    }

    .card-icons {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      gap: 4px;
    }

    .card-icon {
      font-size: 9px;
      letter-spacing: 0.08em;
      padding: 3px 6px;
      border: 1px solid var(--bordergrey);
      color: var(--text-light);
      background: white;
      font-weight: 500;
    }

    .eft-info {
      background: var(--cream);
      border: 1px solid var(--bordergrey);
      border-left: 3px solid var(--deep-brown);
      padding: 16px 18px;
    }

    .eft-info p {
      font-size: 12px;
      color: var(--text-light);
      line-height: 1.8;
    }

    .eft-info strong { color: var(--deep-brown); font-weight: 500; }

    /* ─── PLACE ORDER BTN ──────────────────────────── */
    .place-order-btn {
      width: 100%;
      background: var(--deep-brown);
      color: var(--warm-white);
      border: 1px solid var(--deep-brown);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 20px;
      cursor: pointer;
      transition: background .25s, transform .15s;
      margin-top: 28px;
      position: relative;
      overflow: hidden;
    }

    .place-order-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
      transform: translateX(-100%);
      transition: transform .6s ease;
    }

    .place-order-btn:hover { background: var(--warm-white); color: var(--deep-brown); }
    .place-order-btn:hover::after { transform: translateX(100%); }
    .place-order-btn:active { transform: scale(.99); }

    .place-order-btn.loading {
      pointer-events: none;
      background: var(--deep-brown);
    }

    .btn-inner { display: flex; align-items: center; justify-content: center; gap: 10px; }

    .spinner {
      display: none;
      width: 16px; height: 16px;
      border: 2px solid rgba(255,255,255,.3);
      border-top-color: white;
      border-radius: 50%;
      animation: spin .7s linear infinite;
    }

    .place-order-btn.loading .spinner { display: block; }
    .place-order-btn.loading .btn-text { opacity: .7; }

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

    .secure-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 14px;
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: 0.06em;
    }

    .secure-note svg { width: 12px; height: 12px; stroke: var(--text-light); fill: none; stroke-width: 2; }

    /* ─── RIGHT PANEL ──────────────────────────────── */
    .checkout-right {
      background: var(----warm-white);
      padding: 48px 40px 80px;
      border-left: 1px solid var(--bordergrey);
      position: sticky;
      top: 68px;
      height: fit-content;
      align-self: start;
    }

    .order-title {
      font-size: 20px;
      font-weight: 400;
      color: var(--deep-brown);
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--bordergrey);
    }

    .order-title em { font-style: italic; color: var(--deep-brown); }

    /* Mini cart items */
    .mini-items { margin-bottom: 24px; }

    .mini-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid var(--bordergrey);
    }

    .mini-item:first-child { padding-top: 0; }

    .mini-img {
      width: 64px; height: 76px;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--sand);
      position: relative;
    }

    .mini-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .mini-qty-badge {
      position: absolute;
      top: -6px; right: -6px;
      width: 20px; height: 20px;
      background: var(--deep-brown);
      color: white;
      border-radius: 50%;
      font-size: 10px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mini-info { flex: 1; }

    .mini-cat {
      font-size: 9px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--deep-brown);
      margin-bottom: 3px;
    }

    .mini-name {
      font-size: 0.8rem;
      font-weight: 400;
      color: var(--deep-brown);
      line-height: 1.2;
      margin-bottom: 4px;
      text-transform: uppercase;
    }

    .mini-variant {
      font-size: 10px;
      color: var(--text-light);
      letter-spacing: 0.04em;
    }

    .mini-price {
      font-size: 18px;
      font-weight: 400;
      color: var(--deep-brown);
      flex-shrink: 0;
    }

    /* Promo field in sidebar */
    .sidebar-promo {
      display: flex;
      margin-bottom: 20px;
      border: 1px solid var(--bordergrey);
      overflow: hidden;
    }

    .sidebar-promo input {
      flex: 1;
      border: none;
      padding: 11px 14px;
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--text);
      background: white;
    }

    .sidebar-promo input::placeholder { color: var(--taupe); }
    .sidebar-promo input:focus { outline: none; }

    .sidebar-promo button {
      padding: 11px 16px;
      background: var(--deep-brown);
      color: white;
      border: none;
      font-family: var(--font-body);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s;
      font-weight: 600;
    }

    .sidebar-promo button:hover { background: var(--deep-brown); }

    /* Summary rows */
    .summary-rows { margin-bottom: 4px; }

    .sum-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 9px 0;
    }

    .sum-row + .sum-row { border-top: 1px solid var(--bordergrey); }

    .sum-label {
      font-size: 12px;
      letter-spacing: 0.06em;
      color: var(--text-light);
    }

    .sum-val {
      font-size: 16px;
      color: var(--deep-brown);
    }

    .sum-val.green { color: var(--success); font-family: var(--font-body); font-size: 12px; font-weight: 600; }
    .sum-val.red { color: var(--error); }

    .sum-divider { height: 1px; background: var(--bordergrey); margin: 12px 0; }

    .sum-total-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 4px;
    }

    .sum-total-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--deep-brown);
    }

    .sum-total-val {
      font-size: 30px;
      font-weight: 400;
      color: var(--deep-brown);
    }

    .sum-vat { font-size: 10px; color: var(--text-light); text-align: right; letter-spacing: 0.06em; margin-bottom: 20px; }

    /* Trust pills */
    .trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding-top: 20px;
      border-top: 1px solid var(--bordergrey);
    }

    .trust-pill {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      padding: 5px 10px;
      border: 1px solid var(--bordergrey);
      background: white;
    }

    .trust-pill svg { width: 11px; height: 11px; stroke: var(--deep-brown); fill: none; stroke-width: 2; }

    /* ─── SUCCESS OVERLAY ──────────────────────────── */
    .success-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--warm-white);
      z-index: 300;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 48px;
      text-align: center;
      animation: fadeIn .5s ease forwards;
    }

    .success-overlay.show { display: flex; }

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

    .success-icon {
      width: 80px; height: 80px;
      background: var(--deep-brown);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px;
      animation: popIn .5s .2s cubic-bezier(.34,1.56,.64,1) both;
    }

    @keyframes popIn {
      from { transform: scale(0); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }

    .success-icon svg { width: 36px; height: 36px; stroke: white; fill: none; stroke-width: 2; }

    .success-eyebrow {
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--success);
      margin-bottom: 12px;
    }

    .success-title {
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 300;
      color: var(--deep-brown);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .success-title em { font-style: italic; color: var(--deep-brown); }

    .success-desc {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.8;
      max-width: 440px;
      margin-bottom: 12px;
    }

    .success-order {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 40px;
    }

    .success-order strong { color: var(--deep-brown); }

    .success-actions {
      display: flex;
      gap: 14px;
    }

    .success-btn-primary {
      padding: 14px 32px;
      background: var(--deep-brown);
      color: white;
      border: none;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s;
    }

    .success-btn-primary:hover { background: var(--deep-brown); }

    .success-btn-secondary {
      padding: 14px 32px;
      background: none;
      color: var(--text);
      border: 1px solid var(--bordergrey);
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .2s;
    }

    .success-btn-secondary:hover { border-color: var(--deep-brown); color: var(--deep-brown); }

    .success-details {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(3, 180px);
      gap: 20px;
      text-align: left;
    }

    .success-detail-card {
      padding: 20px;
      background: var(--cream);
      border: 1px solid var(--bordergrey);
    }

    .sd-label {
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 6px;
    }

    .sd-value {
      font-size: 18px;
      font-weight: 400;
      color: var(--deep-brown);
    }

    /* ─── FIELD VALIDATION FLASH ───────────────────── */
    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      20%, 60% { transform: translateX(-6px); }
      40%, 80% { transform: translateX(6px); }
    }

    .shake { animation: shake .35s ease; }

    /* ─── RESPONSIVE TWEAKS ────────────────────────── */
    @media (max-width: 900px) {
      .checkout-layout { grid-template-columns: 1fr; }
      .checkout-right { position: static; }
      .field-grid-2 { grid-template-columns: 1fr; }
      .field-grid-3 { grid-template-columns: 1fr 1fr; }
      .checkout-left { padding: 32px 24px; }
      .checkout-right { padding: 32px 24px; }
    }