/* ============================================================
   LIZABEELA Checkout — Figma-Aligned Luxury Minimal
   Brand: LIZABEELA | Palette: #fffdfb / #2e2e2e / #d8a7b1 / #887870
   ============================================================ */

/* ── Container ── */
.lzb-checkout {
  background: #faf8f5;
  min-height: 100vh;
}

.lzb-checkout__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 56px 96px;
}

/* ── Back Link ── */
.lzb-checkout__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #887870;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .3s;
}
.lzb-checkout__back:hover { color: #2e2e2e; }
.lzb-checkout__back svg { width: 14px; height: 14px; }

/* ── Page Header ── */
.lzb-checkout__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: #2e2e2e;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: .02em;
}

.lzb-checkout__subtitle {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #887870;
  letter-spacing: .5px;
  margin: 0 0 48px;
}

/* ── Progress Steps ── */
.lzb-checkout__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  padding: 0;
  list-style: none;
}

.lzb-checkout__step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #b5a89c;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color .35s;
}

.lzb-checkout__step--active { color: #2e2e2e; }
.lzb-checkout__step--done { color: #d8a7b1; }

.lzb-checkout__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  border: 1.5px solid rgba(46,46,46,.15);
  background: transparent;
  transition: all .35s;
}

.lzb-checkout__step--active .lzb-checkout__step-num {
  background: #2e2e2e;
  border-color: #2e2e2e;
  color: #fffdfb;
}

.lzb-checkout__step--done .lzb-checkout__step-num {
  background: #d8a7b1;
  border-color: #d8a7b1;
  color: #fff;
}

.lzb-checkout__step-line {
  width: 72px;
  height: 1px;
  background: rgba(46,46,46,.1);
  margin: 0 16px;
}

/* ── Two-Column Layout ── */
.lzb-checkout__layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.lzb-checkout__form-col {
  flex: 1;
  min-width: 0;
}

.lzb-checkout__sidebar {
  width: 440px;
  flex-shrink: 0;
  position: sticky;
  top: 130px;
}

/* ── Section Headings ── */
.lzb-checkout .woocommerce-billing-fields h3,
.lzb-checkout .woocommerce-shipping-fields h3,
.lzb-checkout .woocommerce-additional-fields h3 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #2e2e2e;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0 0 24px;
  padding-bottom: 0;
  border-bottom: none;
}

.lzb-checkout .woocommerce-billing-fields,
.lzb-checkout .woocommerce-shipping-fields,
.lzb-checkout .woocommerce-additional-fields {
  margin-bottom: 40px;
}

/* ── Form Rows ── */
.lzb-checkout .woocommerce-billing-fields .form-row,
.lzb-checkout .woocommerce-shipping-fields .form-row,
.lzb-checkout .woocommerce-additional-fields .form-row {
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lzb-checkout .form-row-first,
.lzb-checkout .form-row-last {
  float: left;
  width: calc(50% - 10px);
}
.lzb-checkout .form-row-last { float: right; }
.lzb-checkout .form-row-wide { clear: both; width: 100%; }

/* ── Labels ── */
.lzb-checkout .woocommerce-billing-fields .form-row label,
.lzb-checkout .woocommerce-shipping-fields .form-row label,
.lzb-checkout .woocommerce-additional-fields .form-row label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #887870;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0;
  line-height: 1;
}

.lzb-checkout label .required {
  color: #d8a7b1;
  text-decoration: none;
  margin-left: 2px;
}

/* ── Inputs / Selects / Textareas ── */
.lzb-checkout .input-text,
.lzb-checkout select,
.lzb-checkout textarea,
.lzb-checkout .select2-container .select2-selection {
  width: 100% !important;
  padding: 12px 0 !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 14px !important;
  color: #2e2e2e !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(46,46,46,.15) !important;
  border-radius: 0 !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color .35s !important;
  box-shadow: none !important;
  height: auto !important;
  min-height: unset !important;
}

.lzb-checkout .input-text:focus,
.lzb-checkout select:focus,
.lzb-checkout textarea:focus {
  border-bottom-color: #2e2e2e !important;
}

.lzb-checkout .input-text::placeholder,
.lzb-checkout textarea::placeholder {
  color: rgba(136,120,112,.35);
}

.lzb-checkout select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23887870' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
  padding-right: 24px !important;
  cursor: pointer;
}

.lzb-checkout textarea { min-height: 60px; resize: vertical; padding-top: 8px !important; }

/* ── Select2 Overrides ── */

/* Container — match the underline input style */
.lzb-checkout .select2-container {
  width: 100% !important;
}
.lzb-checkout .select2-container .select2-selection {
  height: auto !important;
  min-height: 40px !important;
  padding: 12px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(46,46,46,.15) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Focus state */
.lzb-checkout .select2-container--open .select2-selection {
  border-bottom-color: #2e2e2e !important;
}

/* ── Single arrow, theme-styled ── */
/* Hide Select2's default arrow <b> element — we use our own clean SVG */
.lzb-checkout .select2-selection__arrow {
  height: 100% !important;
  right: 0 !important;
  top: 0 !important;
}
.lzb-checkout .select2-selection__arrow b {
  display: none !important;
}
/* Custom arrow via pseudo-element on the selection */
.lzb-checkout .select2-selection {
  position: relative;
}
.lzb-checkout .select2-selection::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23887870' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  transition: transform .3s;
}
.lzb-checkout .select2-container--open .select2-selection::after {
  transform: translateY(-50%) rotate(180deg);
}

/* ── Rendered text (selected value) ── */
.lzb-checkout .select2-selection__rendered {
  padding: 0 24px 0 0 !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 14px !important;
  color: #2e2e2e !important;
  line-height: 1.4 !important;
}

/* ── Placeholder — hide when interacting ── */
.lzb-checkout .select2-selection__placeholder {
  color: rgba(136,120,112,.35) !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 14px !important;
}
/* When select2 is focused, fade the placeholder so user knows to type */
.lzb-checkout .select2-container--open .select2-selection__placeholder {
  opacity: 0;
}

/* ── Dropdown panel ── */
.lzb-checkout .select2-dropdown {
  border: 1px solid rgba(46,46,46,.1) !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.08) !important;
  margin-top: 4px;
}
.lzb-checkout .select2-results__option {
  padding: 10px 14px !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 13px !important;
  color: #2e2e2e !important;
}
.lzb-checkout .select2-results__option--highlighted {
  background: #f5f1ee !important;
  color: #2e2e2e !important;
}
.lzb-checkout .select2-results__option[aria-selected="true"] {
  background: transparent !important;
  color: #887870 !important;
}
.lzb-checkout .select2-search__field {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 13px !important;
  border-bottom: 1px solid rgba(46,46,46,.1) !important;
}

/* ── Fix label overlap with Select2 ── */
/* Give Select2-enabled form rows proper spacing between label and field */
.lzb-checkout .form-row .select2-container {
  margin-top: 6px;
}

/* Remove the custom arrow from the HIDDEN original <select> (prevents ghost arrow) */
.lzb-checkout select.select2-hidden-accessible {
  background-image: none !important;
}

/* ── Shipping / Different Address Toggle ── */
.lzb-checkout .woocommerce-shipping-fields__field-wrapper {
  margin-top: 4px;
}
.lzb-checkout #ship-to-different-address {
  margin-bottom: 20px;
}
.lzb-checkout #ship-to-different-address label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #2e2e2e !important;
  cursor: pointer;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.lzb-checkout #ship-to-different-address input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #2e2e2e;
  margin: 0;
}

/* ── Order Review Card ── */
.lzb-checkout__order {
  background: #fffdfb;
  border: 1px solid rgba(216,167,177,.12);
  padding: 36px 32px;
  box-shadow: 0 2px 32px rgba(0,0,0,.04);
}

.lzb-checkout__order-title,
.lzb-checkout #order_review_heading {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #2e2e2e;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(216,167,177,.15);
}

/* ── Order Items Table ── */
.lzb-checkout .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.lzb-checkout .shop_table thead { display: none; }

.lzb-checkout .shop_table tbody tr {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(216,167,177,.08);
}
.lzb-checkout .shop_table tbody tr:first-child { padding-top: 0; }
.lzb-checkout .shop_table tbody tr:last-child { border-bottom: none; }

.lzb-checkout .shop_table .product-thumbnail {
  width: 56px;
  flex-shrink: 0;
}
.lzb-checkout .shop_table .product-thumbnail img {
  width: 56px;
  height: 74px;
  object-fit: cover;
  display: block;
  background: #f5f1ee;
}
.lzb-checkout .shop_table .product-thumbnail a {
  display: block;
  line-height: 0;
}

.lzb-checkout .shop_table .product-name {
  flex: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  color: #2e2e2e;
  line-height: 1.45;
  min-width: 0;
}
.lzb-checkout .shop_table .product-name a {
  color: inherit;
  text-decoration: none;
}
.lzb-checkout .shop_table .product-name a:hover { color: #d8a7b1; }
.lzb-checkout .shop_table .product-name .product-quantity,
.lzb-checkout .shop_table .product-name strong.product-quantity {
  display: block;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #887870;
  margin-top: 3px;
  letter-spacing: .3px;
}

.lzb-checkout .shop_table .product-total {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2e2e2e;
  text-align: right;
  white-space: nowrap;
  padding-top: 2px;
}

/* Variation / meta */
.lzb-checkout .shop_table .product-name .variation,
.lzb-checkout .shop_table .product-name dl.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  margin: 4px 0 0;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  color: #887870;
}
.lzb-checkout .shop_table .product-name .variation dt,
.lzb-checkout .shop_table .product-name .variation dd {
  margin: 0;
  display: inline;
}
.lzb-checkout .shop_table .product-name .variation dt { font-weight: 500; }
.lzb-checkout .shop_table .product-name .variation dt::after { content: ':'; }

/* ── Totals ── */
.lzb-checkout .cart-subtotal,
.lzb-checkout .shipping,
.lzb-checkout .order-total,
.lzb-checkout .cart-discount,
.lzb-checkout .tax-rate,
.lzb-checkout .tax-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  color: #887870;
  letter-spacing: .3px;
}

.lzb-checkout .cart-subtotal .woocommerce-Price-amount,
.lzb-checkout .shipping .woocommerce-Price-amount {
  font-weight: 500;
  color: #2e2e2e;
}

.lzb-checkout .order-total {
  font-size: 15px;
  font-weight: 600;
  color: #2e2e2e;
  padding-top: 18px;
  margin-top: 12px;
  border-top: 2px solid rgba(46,46,46,.08);
  letter-spacing: 0;
}
.lzb-checkout .order-total .woocommerce-Price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.lzb-checkout .shipping .woocommerce-shipping-destination {
  display: none;
}
.lzb-checkout .shipping .shipping-calculator-button {
  font-size: 10px;
  color: #d8a7b1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lzb-checkout .shipping .shipping-calculator-button:hover { color: #2e2e2e; }

/* Discount row */
.lzb-checkout .cart-discount .woocommerce-Price-amount {
  color: #d8a7b1;
}

/* ── Payment Methods ── */
.lzb-checkout__payment {
  margin-top: 28px;
}

.lzb-checkout__payment-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #2e2e2e;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0 0 14px;
}

.lzb-checkout .woocommerce-checkout-payment {
  background: transparent !important;
  border-radius: 0 !important;
}

.lzb-checkout .wc_payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lzb-checkout .wc_payment_method {
  margin-bottom: 6px;
}

.lzb-checkout .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #2e2e2e;
  background: #faf8f5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s;
  letter-spacing: .3px;
}

.lzb-checkout .wc_payment_method > label:hover {
  background: #fffdfb;
  border-color: rgba(216,167,177,.2);
}

.lzb-checkout .wc_payment_method input[type="radio"] {
  accent-color: #2e2e2e;
  width: 15px;
  height: 15px;
  margin: 0;
  flex-shrink: 0;
}

.lzb-checkout .wc_payment_method img {
  max-height: 22px;
  margin-left: auto;
}

.lzb-checkout .wc_payment_method .payment_box {
  background: #fffdfb;
  padding: 16px 20px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  color: #887870;
  line-height: 1.7;
  border: 1px solid rgba(216,167,177,.1);
  border-top: none;
  margin-bottom: 2px;
}

.lzb-checkout .wc_payment_method .payment_box p {
  margin: 0;
}

/* ── Place Order Button ── */
.lzb-checkout .woocommerce-checkout-payment #place_order,
.lzb-checkout #place_order {
  display: block;
  width: 100%;
  padding: 18px 0;
  margin-top: 24px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fffdfb;
  background: #2e2e2e;
  border: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: background .35s, transform .15s;
  text-align: center;
  float: none !important;
}

.lzb-checkout #place_order:hover {
  background: #d8a7b1;
}
.lzb-checkout #place_order:active {
  transform: scale(.985);
}

/* ── Terms & Conditions ── */
.lzb-checkout .woocommerce-terms-and-conditions-wrapper {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(46,46,46,.06);
}
.lzb-checkout .woocommerce-terms-and-conditions-wrapper .form-row {
  margin: 0 !important;
  flex-direction: row !important;
}
.lzb-checkout .woocommerce-terms-and-conditions-wrapper label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 11px !important;
  color: #887870 !important;
  line-height: 1.6 !important;
  text-transform: none !important;
  letter-spacing: .2px !important;
  font-weight: 400 !important;
}
.lzb-checkout .woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
  accent-color: #2e2e2e;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.lzb-checkout .woocommerce-terms-and-conditions-wrapper a {
  color: #d8a7b1;
  text-decoration: none;
}
.lzb-checkout .woocommerce-terms-and-conditions-wrapper a:hover {
  color: #2e2e2e;
}

/* ── Coupon Form ── */
.lzb-checkout .woocommerce-form-coupon-toggle {
  margin-bottom: 20px;
}
.lzb-checkout .showcoupon {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  color: #d8a7b1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: color .3s;
}
.lzb-checkout .showcoupon:hover { color: #2e2e2e; }

.lzb-checkout .checkout_coupon {
  background: #fffdfb;
  border: 1px solid rgba(216,167,177,.12);
  padding: 24px;
  margin-bottom: 28px;
}
.lzb-checkout .checkout_coupon .form-row {
  display: flex;
  gap: 12px;
  margin: 0;
  flex-direction: row !important;
}
.lzb-checkout .checkout_coupon .form-row-first,
.lzb-checkout .checkout_coupon .form-row-last {
  width: auto;
  float: none;
}
.lzb-checkout .checkout_coupon .input-text {
  flex: 1;
  border-bottom: 1px solid rgba(46,46,46,.15) !important;
  padding: 12px 0 !important;
  font-size: 13px !important;
}
.lzb-checkout .checkout_coupon .button {
  padding: 12px 28px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #fffdfb;
  background: #2e2e2e;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
}
.lzb-checkout .checkout_coupon .button:hover { background: #d8a7b1; }

/* ── Notices / Messages ── */
.lzb-checkout .woocommerce-error,
.lzb-checkout .woocommerce-info,
.lzb-checkout .woocommerce-message {
  padding: 16px 20px;
  margin-bottom: 28px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  background: #fffdfb;
  border-left: 3px solid #d8a7b1;
  color: #2e2e2e;
  list-style: none;
}
.lzb-checkout .woocommerce-error {
  border-left-color: #c0392b;
  background: #fefafa;
}
.lzb-checkout .woocommerce-message {
  border-left-color: #7fb380;
  background: #f8fcf8;
}
.lzb-checkout .woocommerce-info a,
.lzb-checkout .woocommerce-message a,
.lzb-checkout .woocommerce-error a {
  color: #d8a7b1;
  text-decoration: none;
  font-weight: 500;
}
.lzb-checkout .woocommerce-info .button,
.lzb-checkout .woocommerce-message .button,
.lzb-checkout .woocommerce-error .button {
  float: right;
  padding: 6px 18px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  cursor: pointer;
}

/* ── Stripe / Gateway Specific Overrides ── */
.lzb-checkout .wc-stripe-elements-field,
.lzb-checkout .StripeElement {
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(46,46,46,.15) !important;
}
.lzb-checkout #wc-stripe-cc-form .form-row {
  margin-bottom: 16px;
}
.lzb-checkout .wc-credit-card-form-card-number,
.lzb-checkout .wc-credit-card-form-card-expiry,
.lzb-checkout .wc-credit-card-form-card-cvc {
  padding: 12px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(46,46,46,.15) !important;
  font-size: 14px !important;
}

/* ── Login / Create Account ── */
.lzb-checkout .woocommerce-form-login-toggle {
  margin-bottom: 16px;
}
.lzb-checkout .showlogin {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  color: #887870;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color .3s;
}
.lzb-checkout .showlogin:hover { color: #d8a7b1; }

.lzb-checkout .woocommerce-form-login {
  background: #fffdfb;
  border: 1px solid rgba(216,167,177,.1);
  padding: 28px;
  margin-bottom: 28px;
}
.lzb-checkout .woocommerce-form-login .form-row {
  margin-bottom: 16px;
}
.lzb-checkout .woocommerce-form-login .button {
  padding: 14px 32px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #fffdfb;
  background: #2e2e2e;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background .3s;
}
.lzb-checkout .woocommerce-form-login .button:hover { background: #d8a7b1; }
.lzb-checkout .woocommerce-form-login .lost_password {
  font-size: 11px;
  color: #887870;
  text-decoration: none;
}
.lzb-checkout .woocommerce-form-login .lost_password:hover { color: #d8a7b1; }

/* ── Create Account ── */
.lzb-checkout .woocommerce-account-fields {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(46,46,46,.06);
}
.lzb-checkout .woocommerce-account-fields .create-account label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #2e2e2e !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
}
.lzb-checkout .woocommerce-account-fields .create-account input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #2e2e2e;
  margin: 0;
}

/* ── Order Notes ── */
.lzb-checkout .woocommerce-additional-fields__field-wrapper .form-row.notes textarea {
  min-height: 70px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lzb-checkout__layout {
    flex-direction: column-reverse;
    gap: 48px;
  }
  .lzb-checkout__sidebar {
    width: 100%;
    position: static;
  }
  .lzb-checkout__step-line {
    width: 40px;
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .lzb-checkout__inner {
    padding: 110px 20px 56px;
  }
  .lzb-checkout__title {
    font-size: 30px;
  }
  .lzb-checkout__subtitle {
    margin-bottom: 32px;
    font-size: 12px;
  }
  .lzb-checkout__steps {
    margin-bottom: 40px;
    font-size: 10px;
  }
  .lzb-checkout__step-line {
    display: none;
  }
  .lzb-checkout__step {
    gap: 6px;
    letter-spacing: 1px;
  }
  .lzb-checkout__step-num {
    width: 24px;
    height: 24px;
    font-size: 9px;
  }

  /* Stack form rows */
  .lzb-checkout .form-row-first,
  .lzb-checkout .form-row-last {
    float: none;
    width: 100%;
  }

  .lzb-checkout .checkout_coupon .form-row {
    flex-direction: column;
  }

  .lzb-checkout__order {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .lzb-checkout__inner {
    padding: 100px 16px 48px;
  }
  .lzb-checkout__title {
    font-size: 26px;
  }
  .lzb-checkout__layout {
    gap: 32px;
  }
  .lzb-checkout .shop_table tbody tr {
    gap: 10px;
  }
  .lzb-checkout .shop_table .product-thumbnail {
    width: 48px;
  }
  .lzb-checkout .shop_table .product-thumbnail img {
    width: 48px;
    height: 64px;
  }
  .lzb-checkout .shop_table .product-name {
    font-size: 12px;
  }
  .lzb-checkout .shop_table .product-total {
    font-size: 12px;
  }
}

/* ── Print / Receipt ── */
@media print {
  .lzb-site-header,
  .lzb-announcement,
  .lzb-footer,
  .lzb-checkout__back,
  .lzb-checkout__steps,
  .lzb-checkout__subtitle {
    display: none !important;
  }
  .lzb-checkout__inner {
    padding: 20px;
    max-width: 100%;
  }
  .lzb-checkout__layout {
    display: block;
  }
  .lzb-checkout__sidebar {
    width: 100%;
    position: static;
  }
}
