/* ==================payment============== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "DM Sans", sans-serif;
}

.pm-section {
  background: #f5f4f1;
  padding: 3rem 0 5rem;
  min-height: 70vh;
}

/* Steps */
.pm-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.pm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.pm-sc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ddd;
  color: #888;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-step.done .pm-sc {
  background: #2e7d4f;
  color: #fff;
}
.pm-step.active .pm-sc {
  background: #111;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.pm-step span {
  font-size: 10px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pm-step.done span,
.pm-step.active span {
  color: #333;
}
.pm-line {
  width: 56px;
  height: 2px;
  background: #ddd;
  margin-bottom: 18px;
}
.pm-line.done {
  background: #2e7d4f;
}

/* Block card */
.pm-block {
  background: #fff;
  border: 1px solid #e5e2db;
  border-radius: 12px;
  padding: 1.5rem 1.5rem;
  margin-bottom: 12px;
  animation: fadeUp 0.35s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pm-block-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Express */
.express-row {
  display: flex;
  gap: 8px;
}
.express-btn {
  flex: 1;
  height: 44px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;
  transition:
    border-color 0.18s,
    background 0.18s;
}
.express-btn:hover {
  border-color: #aaa;
}
.apple-pay {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}
.apple-pay:hover {
  background: #1a1a1a !important;
}

/* Divider */
.pm-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.25rem;
  color: #bbb;
  font-size: 12px;
  font-weight: 500;
}
.pm-divider::before,
.pm-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}

/* Grouped Fields */
.us-field-group {
  border: 1.5px solid #d5d1c8;
  border-radius: 8px;
  overflow: hidden;
}
.us-field {
  position: relative;
}
.us-field.top-field {
  border-bottom: 1.5px solid #d5d1c8;
}
.us-field-row {
  display: flex;
}
.us-field.left-field {
  flex: 1;
  border-right: 1.5px solid #d5d1c8;
}
.us-field.right-field {
  flex: 1;
}
.us-label {
  position: absolute;
  top: 8px;
  left: 13px;
  font-size: 9.5px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}
.us-input-wrap {
  position: relative;
}
.us-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 28px 12px 9px;
  font-size: 14px;
  color: #111;
  background: #fff;
  font-family: "DM Sans", sans-serif;
  transition: background 0.15s;
  display: block;
}
#card-num {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.06em;
}
.us-input:focus {
  background: #fffef9;
}
.us-input::placeholder {
  color: #c0bdb8;
}

/* Card logos */
.card-logos {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 4px;
}
.clogo {
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.visa-logo {
  background: #1a1f71;
  color: #fff;
}
.mc-logo {
  background: #252525;
  color: #fff;
}
.amex-logo {
  background: #2e77bc;
  color: #fff;
}
.clogo.dim {
  opacity: 0.2;
}
.cvv-hint {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 16px;
}

/* Solo fields */
.us-solo-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.us-solo-input {
  width: 100%;
  height: 46px;
  border: 1.5px solid #d5d1c8;
  border-radius: 8px;
  padding: 0 13px;
  font-size: 14px;
  color: #111;
  background: #fff;
  outline: none;
  font-family: "DM Sans", sans-serif;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.us-solo-input:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.07);
}
.us-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}

/* Save toggle */
.save-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid #e8e4dc;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fafaf8;
  cursor: pointer;
}
.save-toggle {
  width: 38px;
  height: 21px;
  border-radius: 11px;
  background: #ddd;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s;
  margin-top: 2px;
}
.save-toggle.on {
  background: #111;
}
.save-knob {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: left 0.25s;
}
.save-toggle.on .save-knob {
  left: 19px;
}
.save-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.save-sub {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

/* Radio */
.us-radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
.us-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}
.us-radio.active {
  border-color: #111;
}
.us-radio.active::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
}

/* Security footer */
.pm-secure-footer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  padding: 0 2px;
}

/* ════ Summary Panel ════ */
.pm-summary {
  background: #fff;
  border: 1px solid #e5e2db;
  border-radius: 12px;
  padding: 1.5rem;
}
.pm-sum-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.25rem;
}

.pm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pm-item-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.pm-item-img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #eee;
  display: block;
}
.pm-item-placeholder {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #f5f3ef;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.pm-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #555;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.pm-item-info {
  flex: 1;
  min-width: 0;
}
.pm-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pm-item-var {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
.pm-item-price {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  flex-shrink: 0;
}
.pm-empty {
  font-size: 13px;
  color: #bbb;
  padding: 8px 0;
}

.pm-divider-line {
  height: 1px;
  background: #f0ece4;
  margin: 14px 0;
}

.pm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.pm-row span:last-child {
  color: #111;
  font-weight: 500;
}
.pm-free {
  color: #2e7d4f !important;
  font-weight: 600 !important;
}
.pm-total {
  margin-top: 4px;
}
.pm-total span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: #111 !important;
}
.pm-total span:last-child {
  font-size: 20px;
  font-weight: 800;
  color: #111 !important;
}

/* Pay button */
.pm-pay-btn {
  width: 100%;
  height: 52px;
  background: #2c1a0f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-top: 1rem;
  letter-spacing: 0.01em;
  transition:
    background 0.2s,
    transform 0.15s;
}
.pm-pay-btn:hover {
  background: #2c1a0f;
  transform: translateY(-1px);
}
.pm-pay-btn:active {
  transform: translateY(0);
}

.pm-card-logos-row {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.pm-clogo {
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.pm-stripe-note {
  text-align: center;
  font-size: 11px;
  color: #bbb;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pm-stripe-note strong {
  color: #999;
}

/* ══════════════════════════════════════
   COUPON / VOUCHER BLOCK
══════════════════════════════════════ */
.coupon-block {
  border: 1.5px dashed #d5cfc4;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
  background: #fdfcf9;
  transition: border-color 0.25s;
}
.coupon-block.open {
  border-color: #b5a890;
  border-style: solid;
}
.coupon-block.success-state {
  border-color: #2e7d4f;
  border-style: solid;
  background: #f6fbf8;
}

/* Header (always visible, clickable) */
.coupon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  cursor: pointer;
  user-select: none;
  gap: 10px;
}
.coupon-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.coupon-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f9f5ee, #ede7d6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #a08050;
  flex-shrink: 0;
  transition:
    background 0.25s,
    color 0.25s;
}
.coupon-block.success-state .coupon-icon-wrap {
  background: linear-gradient(135deg, #e8f5ee, #c8e8d4);
  color: #2e7d4f;
}
.coupon-header-title {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}
.coupon-header-sub {
  font-size: 11px;
  color: #aaa;
  margin-top: 1px;
}
.coupon-block.success-state .coupon-header-sub {
  color: #2e7d4f;
  font-weight: 600;
}
.coupon-chevron {
  font-size: 12px;
  color: #bbb;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.coupon-block.open .coupon-chevron {
  transform: rotate(180deg);
}

/* Body (collapsible) */
.coupon-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 14px;
}
.coupon-block.open .coupon-body {
  max-height: 200px;
  padding: 0 14px 14px;
}

/* Input row */
.coupon-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.coupon-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.coupon-input-icon {
  position: absolute;
  left: 11px;
  font-size: 14px;
  color: #bbb;
  pointer-events: none;
  z-index: 1;
  transition: color 0.2s;
}
.coupon-input-wrap:focus-within .coupon-input-icon {
  color: #888;
}
.coupon-input {
  width: 100%;
  height: 42px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 0 36px 0 32px;
  font-size: 13px;
  font-weight: 600;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.06em;
  color: #111;
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.coupon-input:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.coupon-input.is-success {
  border-color: #2e7d4f;
  background: #f9fffe;
  box-shadow: 0 0 0 3px rgba(46, 125, 79, 0.08);
}
.coupon-input.is-error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.08);
}
.coupon-clear-btn {
  position: absolute;
  right: 9px;
  background: none;
  border: none;
  color: #bbb;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.15s;
}
.coupon-clear-btn:hover {
  color: #555;
}

.coupon-apply-btn {
  height: 42px;
  padding: 0 18px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}
.coupon-apply-btn:hover {
  background: #333;
  transform: translateY(-1px);
}
.coupon-apply-btn:active {
  transform: translateY(0);
}
.coupon-apply-btn:disabled {
  background: #ccc;
  cursor: default;
  transform: none;
}

/* Status message */
.coupon-status {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: fadeUp 0.2s ease;
}
.coupon-status.success {
  color: #2e7d4f;
}
.coupon-status.error {
  color: #e53935;
}

/* Applied row */
.coupon-applied-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  background: #edf7f1;
  border-radius: 7px;
  padding: 7px 10px;
  animation: fadeUp 0.2s ease;
}
.coupon-applied-left {
  display: flex;
  align-items: center;
  gap: 7px;
}
.coupon-applied-badge {
  background: #2e7d4f;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em;
  border-radius: 5px;
  padding: 2px 7px;
}
.coupon-applied-label {
  font-size: 12px;
  color: #2e7d4f;
  font-weight: 600;
}
.coupon-applied-amt {
  font-size: 13px;
  font-weight: 800;
  color: #2e7d4f;
}

/* Hint chips */
.coupon-hints {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.coupon-hint-label {
  font-size: 10.5px;
  color: #bbb;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.coupon-chip {
  font-size: 10.5px;
  font-weight: 700;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.05em;
  color: #888;
  background: #f0ece4;
  border-radius: 5px;
  padding: 3px 8px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  border: 1px solid #e0dbd0;
}
.coupon-chip:hover {
  background: #e5dece;
  color: #444;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .pm-summary {
    position: static !important;
  }
}
@media (max-width: 767px) {
  .pm-section {
    padding: 2rem 0 3.5rem;
  }
  .pm-block {
    padding: 1.25rem;
  }
  .express-row {
    flex-direction: column;
  }
  .pm-line {
    width: 32px;
  }
}
/* ==================payment============== */
/* ====================oderConfirmation=========== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap");

:root {
  --gold: #c9a84c;
  --gold-light: #f0d58c;
  --gold-dark: #9a7230;
  --cream: #fdf8ef;
  --dark: #1a1208;
  --brown: #3d2b1f;
  --soft: #f5edd8;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: 0 8px 32px rgba(61, 43, 31, 0.1);
  --radius: 16px;
  --green: #2e7d4f;
  --green-bg: #edf7f1;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--dark);
}

/* ── PAGE HEADER ── */
.page-header-wrap {
  /* background: linear-gradient(135deg, var(--brown) 0%, #2a1a10 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden; */
}
.page-header-wrap .deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.18);
}
.deco-circle-1 {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -60px;
}
.deco-circle-2 {
  width: 160px;
  height: 160px;
  bottom: -40px;
  left: 80px;
  border-color: rgba(201, 168, 76, 0.12);
}
.deco-circle-3 {
  width: 80px;
  height: 80px;
  top: 30px;
  left: 40%;
  border-color: rgba(201, 168, 76, 0.2);
}
.deco-stripe {
  position: absolute;
  top: 0;
  right: 120px;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.header-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 500;
}
.header-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.gold-text {
  color: var(--gold);
}
.header-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 18px;
}
.breadcrumb-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 14px 22px;
  display: inline-block;
}
.breadcrumb-card .breadcrumb {
  margin: 0;
}
.breadcrumb-item a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 14px;
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(201, 168, 76, 0.5);
}

/* ── STEPS BAR ── */
.confirm-section {
  padding: 60px 0 80px;
}
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--soft);
  color: var(--brown);
  transition: 0.3s;
}
.step-item.done .step-circle {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}
.step-item.active .step-circle {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(46, 125, 79, 0.2);
}
.step-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  opacity: 0.6;
}
.step-item.done .step-label {
  opacity: 1;
  color: var(--brown);
}
.step-item.active .step-label {
  opacity: 1;
  color: var(--green);
}
.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 4px;
}
.step-line.done {
  background: var(--brown);
}
@media (max-width: 480px) {
  .step-label {
    display: none;
  }
  .step-line {
    width: 30px;
  }
}

/* ── CARD ── */
.card-bc {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 32px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.title-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.title-icon.green {
  background: linear-gradient(135deg, var(--green), #4db87a);
}

/* ── SUCCESS HERO ── */
.success-hero {
  text-align: center;
  padding: 48px 24px 36px;
  background: linear-gradient(160deg, var(--green-bg) 0%, #fff 60%);
  border-radius: var(--radius);
  border: 1px solid rgba(46, 125, 79, 0.18);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.success-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(46, 125, 79, 0.07);
}
.success-hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
}
.check-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #4db87a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow:
    0 0 0 12px rgba(46, 125, 79, 0.12),
    0 0 0 24px rgba(46, 125, 79, 0.06);
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.check-wrap i {
  font-size: 40px;
  color: #fff;
}
@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.success-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.success-sub {
  font-size: 15px;
  color: rgba(61, 43, 31, 0.6);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 20px;
}
.order-id-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}
.order-id-pill span {
  color: var(--gold-dark);
}
.eta-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.eta-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--brown);
}
.eta-chip i {
  color: var(--gold);
}

/* ── TRACKER ── */
.tracker {
  padding: 8px 0;
}
.track-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-left: 2px solid var(--border);
  margin-left: 17px;
  padding-left: 28px;
  position: relative;
}
.track-step:last-child {
  border-left-color: transparent;
}
.track-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  position: absolute;
  left: -18px;
  top: 12px;
  border: 2px solid var(--border);
  background: var(--soft);
}
.track-step.done .track-dot {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.track-step.active .track-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  animation: pulse 1.4s ease infinite;
}
.track-step.done + .track-step {
  border-left-color: var(--green);
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0);
  }
}
.track-info {
  padding-top: 6px;
}
.track-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.track-sub {
  font-size: 12px;
  color: rgba(61, 43, 31, 0.5);
  margin-top: 3px;
}
.track-time {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 3px;
}
.track-step.pending .track-label,
.track-step.pending .track-sub {
  opacity: 0.45;
}

/* ── ORDER ITEMS ── */
.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.order-item:last-of-type {
  border-bottom: none;
}
.oi-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.oi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oi-info {
  flex: 1;
}
.oi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.oi-variant {
  font-size: 12px;
  color: rgba(61, 43, 31, 0.55);
  margin-top: 2px;
}
.oi-qty {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--brown);
  white-space: nowrap;
}
.oi-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}
.oi-empty {
  font-size: 13px;
  color: rgba(61, 43, 31, 0.4);
  padding: 12px 0;
}

/* ── PRICE ROWS ── */
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--brown);
  padding: 8px 0;
}
.price-row.total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

/* ── ADDRESS CARD ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.info-block {
  background: var(--soft);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border);
}
.info-block-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.info-block-val {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}

/* ── PAYMENT SUMMARY ── */
.pay-method-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--soft);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.pay-icon {
  font-size: 28px;
}
.pay-detail-label {
  font-size: 13px;
  color: rgba(61, 43, 31, 0.55);
}
.pay-detail-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.pay-status {
  margin-left: auto;
  background: var(--green-bg);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(46, 125, 79, 0.25);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── CTA BUTTONS ── */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-primary-bc {
  flex: 1;
  min-width: 140px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brown), var(--gold-dark));
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  text-decoration: none;
}
.btn-primary-bc:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(61, 43, 31, 0.3);
  color: #fff;
}
.btn-outline-bc {
  flex: 1;
  min-width: 140px;
  padding: 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--brown);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  text-decoration: none;
}
.btn-outline-bc:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ── RATING ── */
.rating-wrap {
  text-align: center;
  padding: 24px 0 8px;
}
.rating-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 14px;
}
.stars {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.star {
  font-size: 32px;
  cursor: pointer;
  transition: 0.2s;
  filter: grayscale(1) opacity(0.4);
}
.star.active,
.star:hover ~ .star {
  filter: none;
}
.stars:hover .star {
  filter: none;
}
.stars .star:hover ~ .star {
  filter: grayscale(1) opacity(0.4);
}

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-up {
  animation: slideUp 0.5s ease both;
}
.d1 {
  animation-delay: 0.05s;
}
.d2 {
  animation-delay: 0.14s;
}
.d3 {
  animation-delay: 0.22s;
}
.d4 {
  animation-delay: 0.3s;
}

@media (max-width: 767px) {
  .confirm-section {
    padding: 36px 0 60px;
  }
  .card-bc {
    padding: 20px;
  }
  .success-hero {
    padding: 36px 16px 28px;
  }
  .cta-row {
    flex-direction: column;
  }
}
/* ====================oderConfirmation=========== */
.ourPr {
  display: flex;
  justify-content: center;
}
/* ===================privacy and policy================= */
.overlay-outer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #000000bf;
  width: 100%;
}
.edit-container {
  display: flex;
  justify-content: center;
  padding: 20px 0 !important;
}
.edit-card {
  width: 550px;
}
/* ===================privacy and policy================= */
.cravingRow {
  display: flex;
  justify-content: center;
}
.usdaLogo {
  width: 46px;
  border-radius: 30px;
}
/* OVERLAY .overlay-outer {
  position: fixed;
  inset: 0;
  background: rgba(58, 54, 38, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(1px);
} */

/* POPUP CARD */
.zom-modal {
  background: #fff;
  border-radius: 16px;
  width: 400px;
  max-width: 95vw;
  overflow: hidden;
  animation: zomPop 0.2s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* ANIMATION */
@keyframes popupShow {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* TOP */
.zom-top {
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zom-top h2 {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
}

.zom-x {
  border: none;
  background: transparent;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
}

/* BODY */
.zom-body {
  padding: 16px 20px;
}

/* LOCATION BOX */
.zom-detect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0 15px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
  cursor: pointer;
}

.zom-detect-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zom-detect-icon {
  width: 44px;
  height: 44px;
  background: #fff1f2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zom-detect-label {
  font-size: 14px;
  font-weight: 700;
  color: #e23744;
  display: block;
  margin-bottom: 2px;
}

.zom-detect-sub {
  font-size: 11px;
  color: #93959f;
}

.zom-detect-arrow {
  color: #ef4444;
}

/* SEARCH */
.zom-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #d4d5d9;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 6px;
  transition: border-color 0.15s;
}

.zom-search-wrap svg {
  color: #9ca3af;
}

.zom-search-wrap input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: #111827;
}

.zom-search-wrap input::placeholder {
  color: #8b8ba3;
}

/* EMPTY AREA */
.zom-results {
  max-height: 240px;
  overflow-y: auto;
  margin-top: 4px;
}
.zom-hint {
  text-align: center;
  padding: 24px 10px;
}
.zom-hint svg {
  margin-bottom: 10px;
  opacity: 0.3;
}

.zom-hint p {
  font-size: 13px;
  color: #93959f;
  margin: 0;
}

/* BUTTON */
.loc-btn {
  border: none;
  background: #fff;
  padding: 10px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}
.coming-soon-card {
  position: relative;
  overflow: hidden;
}

.coming-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

.coming-text {
  text-align: center;
  color: #fff;
}

.coming-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.coming-text p {
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0;
}
.zom-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background 0.1s;
  border-radius: 8px;
}
.zom-ri-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zom-ri-name {
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1c;
  display: block;
}
.zom-ri-sub {
  font-size: 11px;
  color: #93959f;
  margin-top: 1px;
  display: block;
}
.menu-tabs {
  background: #f5f5f5;
  padding: 6px 0px 6px;
  border-radius: 50px;
  gap: 8px;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 12px;
}

.menu-tab-btn {
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  background: transparent;
  color: #555;
  font-weight: 600;
  transition: 0.3s ease;
}

.menu-tab-btn.active {
  background: #601500;
  color: #fff;
  box-shadow: 0 4px 12px rgba(53, 156, 204, 0.3);
}

.menu-tab-btn:hover {
  background: #601500;
  color: #fff;
}
.footerUsda {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}
.usdaFooterLogo img {
  width: 63px;
  border-radius: 30px;
}
.usda-logoo {
  height: 45px;
  border-radius: 23px;
  margin-left: 4px;
}
/* ======================OTPScreen===================== */
.otp-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f5f2;
  padding: 20px;
}

.otp-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.otp-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2d1b12;
}

.otp-subtitle {
  color: #777;
  font-size: 15px;
  margin-bottom: 30px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.otp-input {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  outline: none;
}

.otp-input:focus {
  border-color: #6f4e37;
}

.otp-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: #6f4e37;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.otp-resend {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.otp-resend span {
  color: #6f4e37;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 576px) {
  .otp-inputs {
    gap: 8px;
  }

  .otp-input {
    width: 45px;
    height: 50px;
    font-size: 20px;
  }
}
/* ======================OTPScreen===================== */
.userI {
  color: #c8843a !important;
}
/* USER DROPDOWN */
.dropdown-menu {
  background: #2a1209 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 6px !important;
  padding: 4px !important;
  min-width: 106px;
}

.dropdown-menu .dropdown-item {
  color: #ffb347 !important;
  border-radius: 8px;
  padding: 0px 10px;
  background: transparent !important;
  transition: 0.3s;
  font-size: 12px;
}

.dropdown-menu .dropdown-item:hover {
  background: #3a1b0f !important;
  color: #fff !important;
}

.dropdown-menu .fa-sign-out {
  margin-right: 8px;
}
.dropdown-menu.show {
  display: block;
  margin-top: 6px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
  -webkit-box-shadow: 0 0 0px 1000px #f5f0ea inset !important;
  transition: background-color 9999s ease-in-out 0s;
}
.eye-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.fp-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  font-family: Arial, sans-serif;
}

.fp-card {
  width: 380px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.fp-header .fp-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.fp-header h2 {
  margin: 0;
  font-size: 22px;
}

.fp-header p {
  font-size: 13px;
  color: #777;
  margin-top: 5px;
}

.fp-form {
  margin-top: 20px;
  text-align: left;
}

.fp-form label {
  font-size: 13px;
  color: #444;
}

.fp-input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  margin-top: 5px;
  background: #fafafa;
}

.fp-icon-left {
  margin-right: 8px;
}

.fp-input-box input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
}

.fp-btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #c9873b;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.fp-btn:hover {
  background: #a86b2c;
}

.fp-footer {
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
}

.fp-footer a {
  color: #c9873b;
  text-decoration: none;
  font-weight: bold;
}
.google-btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 15px 0;
}

.google-btn-wrapper > div {
  width: 100% !important;
  display: flex;
  justify-content: center;
}
.login-toggle {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.login-toggle button {
  flex: 1;
  padding: 12px;
  border: none;
  background: #c9a84c00;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.login-toggle button.active {
  background: #c8843a;
  color: #030303;
}
.google-btn-wrapper iframe {
  border-radius: 25px !important;
}
/* =========================================Loyalty========================================== */

.loyalty-page {
  min-height: 100vh;
  padding: 40px;
  background:
    radial-gradient(circle at top left, #f3e0c4 0%, transparent 30%),
    radial-gradient(circle at bottom right, #f7d7a8 0%, transparent 30%),
    #f5f7fa;
}

/* HERO */

.loyalty-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  border-radius: 35px;

  background: linear-gradient(135deg, #1f1f1f, #3b2c20, #b57a3c);

  color: white;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);

  margin-bottom: 35px;
}

.member-tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  display: inline-block;
  margin-bottom: 20px;
}

.loyalty-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.loyalty-hero p {
  opacity: 0.8;
}

.points-display {
  margin-top: 30px;
}

.points-display h2 {
  font-size: 72px;
  font-weight: 900;
  color: #ffd369;
}

.points-display span {
  opacity: 0.8;
}

/* 3D CARD */

.reward-card-3d {
  width: 320px;
  height: 200px;

  background: linear-gradient(135deg, #000, #222);

  border-radius: 25px;

  padding: 25px;

  position: relative;

  transform: rotateY(-15deg) rotateX(5deg);

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);

  transition: 0.4s;
}

.reward-card-3d:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.card-chip {
  width: 60px;
  height: 45px;

  background: linear-gradient(135deg, gold, #ffdc5e);

  border-radius: 10px;

  margin-bottom: 25px;
}

.reward-card-3d h2 {
  color: gold;
  font-weight: 800;
}

.reward-card-3d p {
  position: absolute;
  bottom: 20px;
  left: 25px;
}

/* STATS */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

.stat-card {
  background: white;
  border-radius: 30px;
  padding: 35px;
  text-align: center;

  transition: 0.4s;

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.stat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.stat-card h3 {
  font-size: 50px;
  font-weight: 800;

  background: linear-gradient(135deg, #c8843a, #ffba52);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card span {
  color: #666;
}

/* CLAIMS */

.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.claim-card {
  background: white;
  border-radius: 28px;
  padding: 25px;

  transition: 0.4s;

  border: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.claim-card:hover {
  transform: translateY(-10px);
}

.claim-card h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.claim-btn {
  width: 100%;
  border: none;

  background: linear-gradient(135deg, #ffb347, #ff8c42);

  color: white;

  padding: 15px;

  border-radius: 15px;

  font-weight: 700;

  margin-top: 20px;

  transition: 0.3s;
}

.claim-btn:hover {
  transform: scale(1.04);
}

/* TABLE */

.history-table {
  background: white;
  border-radius: 30px;
  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.history-table thead {
  background: linear-gradient(135deg, #111, #333);
  color: white;
}

.history-table th,
.history-table td {
  padding: 20px !important;
}

.history-table tbody tr:hover {
  background: #fafafa;
}

.peel-card-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 280px;
  margin: 40px auto;
}

.reward-content {
  position: absolute;
  inset: 0;

  border-radius: 30px;

  background: linear-gradient(135deg, #1b1b1b, #2d2d2d, #c48a3d);

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.reward-icon {
  font-size: 60px;
  margin-bottom: 10px;
}

.reward-content h2 {
  font-size: 30px;
  font-weight: 800;
}

.reward-content p {
  opacity: 0.9;
  margin-top: 8px;
}

.reward-btn {
  margin-top: 20px;

  border: none;

  background: white;

  color: #c48a3d;

  padding: 14px 30px;

  border-radius: 50px;

  font-weight: 700;

  cursor: pointer;
}

.peel-layer {
  position: absolute;
  inset: 0;

  border-radius: 30px;

  background: linear-gradient(135deg, #d9a45d, #c8843a, #9d6022);

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  cursor: grab;

  overflow: hidden;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);

  user-select: none;
}

.peel-layer h3 {
  font-size: 28px;
  font-weight: 800;
}

.peel-layer p {
  margin-top: 10px;
  opacity: 0.9;
}

.shine {
  position: absolute;

  top: -50%;

  left: -30%;

  width: 80px;

  height: 220%;

  background: rgba(255, 255, 255, 0.25);

  transform: rotate(30deg);

  animation: shineMove 3s infinite;
}

@keyframes shineMove {
  0% {
    left: -40%;
  }

  100% {
    left: 140%;
  }
}

.peel-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.peel-card-container {
  position: relative;
  height: 280px;
}

.reward-content {
  position: absolute;
  inset: 0;

  border-radius: 30px;

  background: linear-gradient(135deg, #111, #2a2a2a, #c8843a);

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.reward-icon {
  font-size: 60px;
}

.reward-content h2 {
  font-size: 34px;
  margin-top: 10px;
  font-weight: 800;
}

.reward-btn {
  margin-top: 20px;

  border: none;

  background: white;

  color: #c8843a;

  border-radius: 50px;

  padding: 12px 30px;

  font-weight: 700;
}

.peel-layer {
  position: absolute;
  inset: 0;

  border-radius: 30px;

  background: linear-gradient(135deg, #f4bc69, #c8843a, #9f5d1f);

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  cursor: grab;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.peel-layer h3 {
  font-size: 28px;
  font-weight: 800;
}

.shine {
  position: absolute;

  top: -50%;
  left: -40%;

  width: 90px;
  height: 220%;

  background: rgba(255, 255, 255, 0.3);

  transform: rotate(30deg);

  animation: shineMove 3s infinite;
}

@keyframes shineMove {
  from {
    left: -50%;
  }

  to {
    left: 150%;
  }
}

.empty-rewards {
  background: white;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
}
/* ===========================
   PREMIUM REDEEM CARD
=========================== */

.redeem-card-modern {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1f1f1f, #3b2c20, #b57a3c);
  color: #fff;
  box-shadow:
    0 20px 50px rgba(79, 70, 229, 0.35),
    0 10px 25px rgba(0, 0, 0, 0.1);
}

.redeem-card-modern::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -80px;
}

.redeem-card-modern::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -80px;
  left: -60px;
}

.redeem-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.redeem-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.redeem-top h2 {
  margin: 10px 0 5px;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
}

.redeem-top p {
  margin: 0;
  opacity: 0.85;
  font-size: 15px;
}

.redeem-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  animation: rewardFloat 3s ease-in-out infinite;
}

@keyframes rewardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.redeem-progress {
  height: 14px;
  margin: 30px 0;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
}

.redeem-progress-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffd700, #ffeb3b, #fff59d);
  transition: width 0.5s ease;
}

.redeem-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.redeem-footer span {
  font-size: 15px;
  font-weight: 600;
}

.redeem-btn-modern {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 14px;
  background: #fff;
  color: #6d28d9;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.redeem-btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.redeem-btn-modern.disabled,
.redeem-btn-modern:disabled {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  box-shadow: none;
  opacity: 0.7;
}

/* Mobile */

@media (max-width: 768px) {
  .redeem-card-modern {
    padding: 20px;
  }

  .redeem-top,
  .redeem-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .redeem-top h2 {
    font-size: 42px;
  }

  .redeem-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .redeem-btn-modern {
    width: 100%;
  }
}
/* ================================================================== */
/* ==========================
   LOYALTY PAGE
========================== */

.loyalty-page {
  max-width: 950px;
  margin: auto;
  padding: 25px;
  min-height: 100vh;
  background: linear-gradient(180deg, #faf7f4 0%, #f3ece6 100%);
  margin-bottom: 20px;
  border-radius: 25px;
  margn-top: 20px;
}

/* ==========================
   HEADER CARD
========================== */

.rewards-header-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, #9b6a5c 0%, #6f4638 50%, #1f0d08 100%);
  color: white;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 8px 25px rgba(111, 70, 56, 0.25);
}

.rewards-header-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -130px;
  right: -80px;
}

.rewards-header-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  left: -50px;
  bottom: -60px;
}

.rewards-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.points-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #f6b019;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 28px;
  animation: spinCoin 5s linear infinite;
}

.rewards-card-top h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
}

.rewards-card-top span {
  font-size: 14px;
  opacity: 0.9;
}

.card-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 24px 0;
}

.rewards-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rewards-card-bottom small {
  opacity: 0.8;
}

.rewards-card-bottom p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* ==========================
   BUTTONS
========================== */

.share-btn {
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: white;
  color: #6f4638;
  transform: translateY(-2px);
}

.share-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==========================
   REWARD SECTIONS
========================== */

.reward-box {
  background: #f4ece6;
  border-radius: 22px;
  padding: 24px;
  margin-top: 25px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.reward-box h4 {
  margin-bottom: 18px;
  color: #4b2d22;
  font-size: 20px;
  font-weight: 700;
}

/* ==========================
   REWARD ROW
========================== */

.reward-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #ddd0c6;
  transition: all 0.3s ease;
}

.reward-row:last-child {
  border-bottom: none;
}

.reward-row:hover {
  transform: translateX(4px);
}

.reward-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.reward-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a3f2f, #5a2415);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(122, 63, 47, 0.25);
}

.reward-left h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2f1d16;
}

.reward-left span {
  color: #8a7c75;
  font-size: 13px;
}

.history-points {
  font-size: 18px;
  font-weight: 800;
  color: #6f4638;
}

/* ==========================
   CLAIM BUTTON
========================== */

.claim-btn-new {
  border: 1.5px solid #8b4b35;
  background: white;
  color: #8b4b35;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.claim-btn-new:hover {
  background: #8b4b35;
  color: white;
  transform: scale(1.05);
}

/* ==========================
   COIN ANIMATION
========================== */

@keyframes spinCoin {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .loyalty-page {
    padding: 15px;
  }

  .rewards-header-card {
    padding: 20px;
  }

  .rewards-card-top h2 {
    font-size: 28px;
  }

  .points-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .rewards-card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .share-btn {
    width: 100%;
  }

  .reward-row {
    gap: 10px;
  }

  .reward-circle {
    width: 45px;
    height: 45px;
  }

  .reward-left h5 {
    font-size: 14px;
  }

  .history-points {
    font-size: 15px;
  }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║            ACCOUNT PAGE — Full Styles                  ║
   ╚══════════════════════════════════════════════════════════╝ */

/* Override the dark dropdown for the new account dropdown */
.bc-account-dropdown.dropdown-menu {
  background: #fff !important;
  border: 1px solid rgba(124, 58, 0, 0.1) !important;
  padding: 0 !important;
}
.bc-account-dropdown .dropdown-item {
  color: #3d2a1a !important;
  background: transparent !important;
}
.bc-account-dropdown .dropdown-item:hover {
  background: #fff4e8 !important;
  color: #c45c00 !important;
}

/* ── HERO ── */
.acc-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(181, 108, 43, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 92% 30%, rgba(245, 158, 11, 0.07) 0%, transparent 26%),
    #f7f3ef;
  font-family: 'DM Sans', sans-serif;
}

.acc-hero {
  position: relative;
  padding: 60px 0 44px;
  overflow: hidden;
}

.acc-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2b1200 0%, #5b2800 50%, #a85b1e 100%);
  z-index: 0;
}

.acc-hero-bg::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 214, 150, 0.08);
  top: -120px;
  right: -80px;
}

.acc-hero-bg::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 190, 110, 0.1);
  top: -140px;
  right: -90px;
}

.acc-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 42px;
  background: #f7f3ef;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.acc-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.acc-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #f59e0b, #d97706);
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.35);
}

.acc-hero-info { flex: 1; }

.acc-hero-name {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.acc-hero-email {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin: 4px 0 0;
}

.acc-logout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  backdrop-filter: blur(4px);
}
.acc-logout-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ── BODY LAYOUT ── */
.acc-body {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding-top: 30px;
  padding-bottom: 60px;
  align-items: start;
}

/* ── SIDEBAR ── */
.acc-sidebar {
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 6px 24px rgba(61, 26, 0, 0.08);
  border: 1px solid #f3e6d8;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 90px;
}

.acc-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  border: none;
  background: transparent;
  color: #5b4a38;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
  position: relative;
}
.acc-tab-btn svg {
  width: 20px;
  height: 20px;
  color: #b56c2b;
  flex-shrink: 0;
}
.acc-tab-btn:hover {
  background: #fff4e8;
  color: #c45c00;
  transform: translateX(3px);
}
.acc-tab-btn.active {
  background: linear-gradient(135deg, #7c3a00, #b56c2b);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(124, 58, 0, 0.28);
}
.acc-tab-btn.active svg {
  color: #ffd369;
}

/* ── CONTENT PANEL ── */
.acc-panel {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 24px rgba(61, 26, 0, 0.08);
  border: 1px solid #f3e6d8;
  min-height: 400px;
}

.acc-panel-title {
  font-size: 21px;
  font-weight: 800;
  color: #3d1a00;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f5ece3;
  position: relative;
}
.acc-panel-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, #b56c2b);
  border-radius: 2px;
}

/* ── LOADING / EMPTY STATES ── */
.acc-loading {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.acc-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid #f5ece3;
  border-top-color: #b56c2b;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.acc-empty {
  text-align: center;
  padding: 60px 20px;
}
.acc-empty-icon {
  font-size: 60px;
  margin-bottom: 18px;
  animation: floatY 2.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.acc-empty h3 { font-size: 19px; font-weight: 700; color: #3d1a00; margin-bottom: 8px; }
.acc-empty p { color: #9a8b78; font-size: 14px; margin-bottom: 22px; }

.acc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #7c3a00, #b56c2b);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 6px 18px rgba(124,58,0,0.3);
  margin-top: 20px;
}
.acc-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(124,58,0,0.38);
  color: #fff;
}

/* ── ORDERS ── */
.acc-orders-list { display: flex; flex-direction: column; gap: 16px; }

.acc-order-card {
  border: 1px solid #f0e8df;
  border-radius: 16px;
  padding: 20px;
  transition: 0.25s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.acc-order-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f59e0b, #b56c2b);
  border-radius: 0 4px 4px 0;
}
.acc-order-card:hover {
  box-shadow: 0 10px 30px rgba(61, 26, 0, 0.1);
  border-color: #ddc9b6;
  transform: translateY(-3px);
}

.acc-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}

.acc-order-id {
  display: block;
  font-weight: 800;
  font-size: 15px;
  color: #3d1a00;
}
.acc-order-date { display: block; font-size: 12px; color: #9a8b78; margin-top: 3px; }

.acc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.acc-dot { width: 7px; height: 7px; border-radius: 50%; }

.acc-order-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}
.acc-order-item-chip {
  background: #fff4e8;
  color: #7c3a00;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #f6e2cd;
}
.acc-order-item-chip.acc-more { background: #f3f0ed; color: #777; border-color: #e9e4df; }

.acc-order-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.acc-order-total {
  font-size: 18px;
  font-weight: 800;
  color: #3d1a00;
}
.acc-order-total::before {
  content: "Total: ";
  font-size: 12px;
  font-weight: 600;
  color: #9a8b78;
}
.acc-view-link {
  font-size: 13px;
  color: #b56c2b;
  font-weight: 700;
  text-decoration: none;
  transition: 0.15s;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1.5px solid #f0dcc5;
}
.acc-view-link:hover {
  color: #7c3a00;
  background: #fff8f0;
  border-color: #e0c2a0;
}

/* ── ADDRESSES ── */
.acc-addr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.acc-addr-card {
  border: 1.5px solid #f0e8df;
  border-radius: 14px;
  padding: 16px;
  position: relative;
}

.acc-addr-label { margin-bottom: 8px; }
.acc-addr-tag {
  background: #fff8f0;
  color: #b56c2b;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.acc-addr-line { font-size: 13px; color: #333; margin: 8px 0 4px; }
.acc-addr-city { font-size: 12px; color: #888; margin-bottom: 12px; }
.acc-addr-delete {
  font-size: 12px;
  color: #dc2626;
  border: 1px solid #fee2e2;
  background: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.15s;
}
.acc-addr-delete:hover { background: #fee2e2; }

.acc-addr-add {
  border: 2px dashed #ddc9b6;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #b56c2b;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  min-height: 100px;
  transition: 0.2s;
}
.acc-addr-add:hover { background: #fff8f0; border-color: #b56c2b; }
.acc-add-plus { font-size: 28px; line-height: 1; }

.acc-addr-form {
  background: #f9f5f0;
  border-radius: 14px;
  padding: 22px;
  margin-top: 8px;
}
.acc-addr-form h4 { font-size: 16px; font-weight: 700; color: #3d1a00; margin-bottom: 16px; }

.acc-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.acc-form-row input {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: border 0.15s;
  background: #fff;
}
.acc-form-row input:focus { border-color: #b56c2b; }

.acc-form-actions { display: flex; gap: 10px; justify-content: flex-end; }
.acc-btn-cancel {
  padding: 10px 20px; border-radius: 10px; border: 1.5px solid #ddd;
  background: #fff; color: #666; font-size: 14px; cursor: pointer;
}
.acc-btn-save {
  padding: 10px 24px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, #7c3a00, #b56c2b);
  color: #fff; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: 0.2s;
}
.acc-btn-save:hover { opacity: 0.9; }
.acc-btn-save:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── WISHLIST ── */
.acc-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.acc-wish-card {
  border: 1px solid #f0e8df;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.acc-wish-card:hover {
  box-shadow: 0 14px 34px rgba(61, 26, 0, 0.14);
  transform: translateY(-5px);
  border-color: #e0c2a0;
}

.acc-wish-img-wrap { position: relative; overflow: hidden; }
.acc-wish-img {
  width: 100%; height: 150px; object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.acc-wish-card:hover .acc-wish-img { transform: scale(1.07); }
.acc-wish-img-placeholder {
  width: 100%; height: 150px;
  background: linear-gradient(135deg, #f9e6cf, #f5d7b2);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.acc-wish-remove {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  font-size: 14px;
  color: #dc2626;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  transition: all 0.18s;
  z-index: 2;
}
.acc-wish-remove:hover {
  background: #dc2626;
  color: #fff;
  transform: scale(1.1);
}

.acc-wish-info { padding: 14px 14px 6px; flex: 1; }
.acc-wish-info h5 {
  font-size: 14px; font-weight: 700; color: #2d2d2d; margin: 0 0 5px;
  line-height: 1.35;
}
.acc-wish-price {
  font-size: 16px; font-weight: 800; color: #b56c2b;
}
.acc-wish-price::before { content: "$"; font-size: 12px; }

.acc-wish-add-btn {
  display: block;
  margin: 10px 12px 14px;
  padding: 10px 0;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3a00, #b56c2b);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(124, 58, 0, 0.25);
}
.acc-wish-add-btn:hover {
  opacity: 0.92; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 0, 0.35);
}

/* ── LOYALTY TAB ── */
.acc-loyalty {
  max-width: 520px;
  margin: 0 auto;
}

/* Hero points card */
.acc-loyalty-card {
  position: relative;
  border-radius: 24px;
  padding: 28px 26px;
  color: #fff;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 220, 150, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 8% 95%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
    linear-gradient(135deg, #1c0e02 0%, #5b2800 52%, #a85b1e 100%);
  box-shadow: 0 20px 45px rgba(61, 26, 0, 0.35);
  overflow: hidden;
  border: 1px solid rgba(255, 214, 150, 0.18);
}

.acc-loyalty-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: skewX(-20deg);
  animation: loyaltyShine 3.2s ease infinite;
}

@keyframes loyaltyShine {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

.acc-loyalty-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.acc-loyalty-coin-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd369, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(255, 180, 60, 0.45);
  border: 2px solid rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.acc-loyalty-coin { font-size: 32px; line-height: 1; }

.acc-loyalty-head-txt { flex: 1; }

.acc-loyalty-pts {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffe9b0, #ffd369);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.acc-loyalty-pts-label {
  font-size: 12.5px;
  opacity: 0.78;
  margin-top: 3px;
}

.acc-loyalty-tier-pill {
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.acc-loyalty-divider {
  height: 1px;
  background: rgba(255,255,255,0.16);
  margin: 20px 0 16px;
  position: relative;
  z-index: 1;
}

/* Tier progress */
.acc-loyalty-progress { position: relative; z-index: 1; }

.acc-loyalty-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.acc-loyalty-progress-head b { color: #ffd369; }
.acc-loyalty-progress-head span:last-child { color: rgba(255,255,255,0.6); }

.acc-loyalty-progress-track {
  position: relative;
  height: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  overflow: visible;
}

.acc-loyalty-progress-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #ffd369, #ffb347);
  box-shadow: 0 0 12px rgba(255, 211, 105, 0.6);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-loyalty-progress-coin {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.acc-loyalty-maxed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ffd369;
  padding: 8px 0;
}

.acc-loyalty-card-bottom {
  margin-top: 18px;
  text-align: right;
  position: relative;
  z-index: 1;
}

.acc-loyalty-redeem-btn {
  padding: 11px 26px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #ffb347, #f59e0b);
  color: #3d1a00;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 18px rgba(255, 170, 60, 0.4);
}
.acc-loyalty-redeem-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 170, 60, 0.55);
}
.acc-loyalty-redeem-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.acc-loyalty-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.acc-loyalty-stat {
  background: #fff;
  border: 1px solid #f3e6d8;
  border-radius: 16px;
  padding: 18px 10px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.acc-loyalty-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(124,58,0,0.12);
}

.acc-ls-icon { display: block; font-size: 20px; margin-bottom: 6px; }
.acc-ls-val { display: block; font-size: 21px; font-weight: 800; color: #3d1a00; }
.acc-ls-label { display: block; font-size: 11px; color: #9a8b78; margin-top: 4px; }

/* Earn banner */
.acc-loyalty-earn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff8f0, #fef1df);
  border: 1px solid #f3dcc2;
  margin-bottom: 6px;
}

.acc-loyalty-earn-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffb347, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.acc-loyalty-earn-title {
  font-size: 14px;
  font-weight: 700;
  color: #3d1a00;
}

.acc-loyalty-earn-sub {
  font-size: 12px;
  color: #8a6f4f;
  margin-top: 2px;
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .acc-body {
    grid-template-columns: 1fr;
  }
  .acc-sidebar {
    flex-direction: row;
    overflow-x: auto;
    position: static;
    gap: 6px;
  }
  .acc-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .acc-hero-inner { flex-wrap: wrap; }
  .acc-loyalty-stats { grid-template-columns: repeat(3, 1fr); }
  .acc-addr-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   PROFILE TAB
══════════════════════════════════════════════════════ */
.acc-profile-form {
  max-width: 580px;
}

.acc-profile-avatar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
  background: linear-gradient(135deg, #2b1200, #5b2800, #a85b1e);
  border-radius: 18px;
  border: none;
  box-shadow: 0 12px 30px rgba(61, 26, 0, 0.22);
  position: relative;
  overflow: hidden;
}
.acc-profile-avatar-row::after {
  content: "☕";
  position: absolute;
  right: -6px;
  bottom: -14px;
  font-size: 90px;
  opacity: 0.08;
  transform: rotate(-10deg);
}

.acc-profile-avatar-big {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #f59e0b, #d97706);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

.acc-profile-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}

.acc-profile-email-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.acc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.acc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acc-field--full {
  grid-column: 1 / -1;
}

.acc-field label {
  font-size: 12px;
  font-weight: 600;
  color: #7a5c3c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.acc-field input,
.acc-select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #efe7dd;
  font-size: 14px;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
  background: #fdfbf9;
  color: #333;
  width: 100%;
}

.acc-field input:focus,
.acc-select:focus {
  border-color: #b56c2b;
  box-shadow: 0 0 0 4px rgba(181,108,43,0.12);
  background: #fff;
}

.acc-input-disabled {
  background: #f5f5f5 !important;
  color: #999 !important;
  cursor: not-allowed;
}

.acc-field small {
  font-size: 11px;
  color: #aaa;
}

/* ══════════════════════════════════════════════════════
   ADDRESSES ENHANCEMENTS
══════════════════════════════════════════════════════ */
.acc-addr-card.acc-addr-default {
  border-color: #b56c2b;
  background: #fffaf5;
}

.acc-addr-default-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #b56c2b;
  background: #fff3e0;
  border: 1px solid #f0c070;
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.acc-addr-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.acc-addr-default-btn {
  font-size: 11px;
  color: #059669;
  border: 1px solid #d1fae5;
  background: #f0fdf4;
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.15s;
}
.acc-addr-default-btn:hover { background: #d1fae5; }

.acc-addr-edit-btn {
  font-size: 11px;
  color: #0284c7;
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.15s;
}
.acc-addr-edit-btn:hover { background: #bae6fd; }

.acc-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  margin: 4px 0 14px;
}
.acc-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #b56c2b;
  cursor: pointer;
}

/* address form row with .acc-field inside */
.acc-addr-form .acc-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.acc-addr-form .acc-form-row .acc-field {
  flex: 1;
  min-width: 130px;
}
.acc-addr-form .acc-form-row .acc-field input,
.acc-addr-form .acc-select {
  width: 100%;
}

/* ══════════════════════════════════════════════════════
   ORDERS — cancel button
══════════════════════════════════════════════════════ */
.acc-cancel-btn {
  font-size: 12px;
  font-weight: 600;
  color: #dc2626;
  border: 1px solid #fecaca;
  background: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.15s;
}
.acc-cancel-btn:hover:not(:disabled) { background: #fee2e2; }
.acc-cancel-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ══════════════════════════════════════════════════════
   WISHLIST — description
══════════════════════════════════════════════════════ */
.acc-wish-desc {
  font-size: 11px;
  color: #999;
  margin: 2px 0 6px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   LOYALTY — history & redeem rows
══════════════════════════════════════════════════════ */
.acc-loyalty-section {
  margin-top: 24px;
}

.acc-loyalty-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: #3d1a00;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0e8df;
}

.acc-loyalty-section-count {
  font-size: 11px;
  font-weight: 700;
  color: #b56c2b;
  background: #fff4e6;
  border: 1px solid #f3d7b8;
  padding: 2px 9px;
  border-radius: 20px;
}

.acc-loyalty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #f4eee8;
  margin-bottom: 8px;
  transition: all 0.18s ease;
  box-shadow: 0 1px 3px rgba(61, 26, 0, 0.04);
}
.acc-loyalty-row:hover {
  background: #fff8f0;
  border-color: #f0d9bd;
  transform: translateX(3px);
  box-shadow: 0 6px 16px rgba(124, 58, 0, 0.08);
}

.acc-loyalty-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.acc-loyalty-row-icon {
  font-size: 16px;
  font-weight: 800;
  width: 38px;
  height: 38px;
  background: #f5ece3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acc-loyalty-row-icon.earn {
  background: #dcfce7;
  color: #16a34a;
}
.acc-loyalty-row-icon.spend {
  background: #fee2e2;
  color: #dc2626;
}

.acc-loyalty-row-label {
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.acc-loyalty-row-date {
  font-size: 11px;
  color: #a99a88;
  margin-top: 2px;
}

.acc-loyalty-pts-badge {
  font-size: 14px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}

.acc-pts-earn {
  color: #16a34a;
  background: #dcfce7;
}

.acc-pts-spend {
  color: #dc2626;
  background: #fee2e2;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — profile grid collapses on mobile
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .acc-form-grid {
    grid-template-columns: 1fr;
  }
  .acc-field--full {
    grid-column: 1;
  }
  .acc-profile-avatar-row {
    flex-direction: column;
    text-align: center;
  }
  .acc-loyalty-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════
   MANAGE ADDRESSES — warm brand style
══════════════════════════════════════════════════════════════════ */

.ma-page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── "+ ADD A NEW ADDRESS" Banner ── */
.ma-add-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 2px dashed #b56c2b;
  border-radius: 14px;
  color: #b56c2b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.18s;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(181, 108, 43, 0.06);
}
.ma-add-banner:hover {
  background: #fff8f0;
  border-color: #7c3a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181, 108, 43, 0.15);
}
.ma-add-plus {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

/* ── Inline Form Wrapper ── */
.ma-form-wrap {
  border: 1.5px solid #f0e0cc;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(61, 26, 0, 0.08);
}

.ma-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, #2b1200, #5b2800);
  border-bottom: 1px solid #f0e0cc;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.ma-form-close {
  background: none;
  border: none;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
  transition: background 0.15s;
}
.ma-form-close:hover { background: rgba(255,255,255,0.2); color: #fff; }

.ma-form { padding: 20px; }

/* Address type chips */
.ma-label-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ma-label-tab {
  padding: 7px 16px;
  border-radius: 20px;
  border: 1.5px solid #e0d5c8;
  background: #fff;
  color: #6b5b4a;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ma-label-tab:hover { border-color: #b56c2b; color: #b56c2b; }
.ma-label-tab.active {
  border-color: #b56c2b;
  background: #fff4e8;
  color: #7c3a00;
  box-shadow: 0 3px 10px rgba(181, 108, 43, 0.15);
}

/* Form grid */
.ma-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ma-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ma-field--full { grid-column: 1 / -1; }

.ma-field label {
  font-size: 12px;
  font-weight: 600;
  color: #7a5c3c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ma-opt { font-weight: 400; color: #aaa; text-transform: none; }

.ma-field input {
  padding: 11px 13px;
  border-radius: 10px;
  border: 1.5px solid #efe7dd;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border 0.15s, box-shadow 0.15s;
  color: #333;
  background: #fdfbf9;
}
.ma-field input:focus {
  border-color: #b56c2b;
  box-shadow: 0 0 0 4px rgba(181, 108, 43, 0.12);
  background: #fff;
}

/* Default checkbox */
.ma-default-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  margin-bottom: 20px;
}
.ma-default-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #b56c2b;
  cursor: pointer;
}

/* Form action buttons */
.ma-form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.ma-btn-cancel {
  padding: 10px 24px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.15s;
}
.ma-btn-cancel:hover { background: #f5f5f5; }

.ma-btn-save {
  padding: 10px 28px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #7c3a00, #b56c2b);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 4px 14px rgba(124, 58, 0, 0.3);
}
.ma-btn-save:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(124, 58, 0, 0.4); }
.ma-btn-save:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Address Card List ── */
.ma-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ma-card {
  background: #fff;
  border: 1px solid #f0e6db;
  border-radius: 16px;
  padding: 20px 20px 14px;
  position: relative;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(61, 26, 0, 0.05);
}
.ma-card:hover {
  background: #fffaf5;
  box-shadow: 0 10px 28px rgba(61, 26, 0, 0.1);
  transform: translateY(-2px);
}
.ma-card--default {
  border-left: 4px solid #b56c2b;
  background: #fffaf5;
}

/* Card top row: name + phone + default pill + 3-dot */
.ma-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ma-card-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ma-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #3d1a00;
}
.ma-card-phone {
  font-size: 14px;
  color: #5b4a38;
  font-weight: 500;
}
.ma-card-default-pill {
  font-size: 10px;
  font-weight: 700;
  color: #b56c2b;
  border: 1px solid #b56c2b;
  border-radius: 20px;
  padding: 2px 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff4e8;
}

/* Label badge row */
.ma-card-label-row { margin-bottom: 5px; }
.ma-label-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #b56c2b;
  background: #f5ece3;
  border-radius: 20px;
  padding: 2px 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Address text */
.ma-card-address {
  font-size: 13px;
  color: #5b4a38;
  line-height: 1.55;
  margin: 0 0 14px;
}

/* Bottom action links */
.ma-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ma-action-link {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 700;
  color: #b56c2b;
  cursor: pointer;
  letter-spacing: 0.04em;
  padding: 0;
  transition: color 0.15s;
}
.ma-action-link:hover { color: #7c3a00; text-decoration: underline; }
.ma-action-link:disabled { opacity: 0.5; cursor: not-allowed; }
.ma-action-delete { color: #e23744 !important; }
.ma-action-delete:hover { color: #c62828 !important; }
.ma-action-default { color: #388e3c !important; }
.ma-action-default:hover { color: #1b5e20 !important; }
.ma-action-sep { color: #ddd; font-size: 12px; }

/* 3-dot dropdown menu */
.ma-menu-wrap {
  position: relative;
  flex-shrink: 0;
}
.ma-three-dot {
  background: none;
  border: none;
  font-size: 20px;
  color: #9a8b78;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.15s;
}
.ma-three-dot:hover { background: #f5ece3; color: #3d1a00; }

.ma-menu-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border: 1px solid #f0e6db;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(61, 26, 0, 0.16);
  z-index: 200;
  min-width: 170px;
  overflow: hidden;
  animation: maDropFade 0.15s ease;
}
@keyframes maDropFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ma-menu-dropdown button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 13px;
  color: #3d2a1a;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.12s;
  font-weight: 500;
}
.ma-menu-dropdown button:hover { background: #fff4e8; }
.ma-menu-dropdown .ma-menu-delete { color: #e23744; }
.ma-menu-dropdown .ma-menu-delete:hover { background: #fff1f1; }
.ma-menu-dropdown button:disabled { opacity: 0.5; cursor: not-allowed; }
.ma-menu-dropdown button + button { border-top: 1px solid #f5f0eb; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .ma-form-grid { grid-template-columns: 1fr; }
  .ma-field--full { grid-column: 1; }
  .ma-card { padding: 16px 14px 12px; }
  .ma-card-identity { gap: 8px; }
  .ma-form-actions { justify-content: stretch; }
  .ma-btn-cancel, .ma-btn-save { flex: 1; text-align: center; }
}

/* -- Heart button on MenuPage cards -- */
.menu-page-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
  line-height: 1;
  color: #aaa;
}
.menu-page-heart:hover { transform: scale(1.18); background: #fff; color: #e23744; }
.menu-page-heart.liked { color: #e23744; background: #fff0f1; }
.menu-page-heart:disabled { opacity: 0.6; cursor: not-allowed; }

/* Pulse animation when liked */
.item-heart.liked {
  animation: heartPop 0.3s ease;
}
@keyframes heartPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Spinner state */
.item-heart.toggling {
  font-size: 12px;
  color: #888;
}

/* -- Wishlist card enhancements -- */
.acc-wish-variant-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(61,26,0,0.75);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.acc-wish-product {
  font-size: 11px;
  font-weight: 600;
  color: #b56c2b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.acc-wish-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM CHECKOUT UI (co-)
══════════════════════════════════════════════════════════════ */
.co-section {
  padding: 60px 0 90px;
}

/* ── Stepper ── */
.co-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
}
.co-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.co-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--border);
  background: var(--soft);
  color: var(--brown);
  transition: 0.3s;
}
.co-step.done .co-step-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: #fff;
}
.co-step.active .co-step-circle {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(61, 43, 31, 0.12);
}
.co-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  opacity: 0.55;
}
.co-step.done .co-step-label,
.co-step.active .co-step-label {
  opacity: 1;
}
.co-step-line {
  width: 64px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 6px;
}
.co-step-line.done {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ── Cards ── */
.co-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(61, 43, 31, 0.08);
  padding: 26px;
  margin-bottom: 22px;
}
.co-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.co-card-head--row {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.co-card-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.35);
}
.co-card-title h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0;
}
.co-card-title p {
  font-size: 12.5px;
  color: rgba(61, 43, 31, 0.55);
  margin: 2px 0 0;
}

/* ── Order type toggle cards ── */
.co-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.co-type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s;
  position: relative;
}
.co-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.18);
}
.co-type-card.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf5, #fbf3dd);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.22);
}
.co-type-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  color: var(--gold-dark);
  font-size: 18px;
  flex-shrink: 0;
}
.co-type-card.active .co-type-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
}
.co-type-info {
  display: flex;
  flex-direction: column;
}
.co-type-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
}
.co-type-desc {
  font-size: 12px;
  color: rgba(61, 43, 31, 0.55);
  margin-top: 2px;
}
.co-type-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e2d5;
  color: transparent;
  font-size: 12px;
  transition: 0.2s;
}
.co-type-card.active .co-type-check {
  background: var(--green);
  color: #fff;
}

/* ── Link / gold buttons ── */
.co-link-btn {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 9px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}
.co-link-btn:hover {
  background: var(--gold);
  color: #fff;
}
.co-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.3);
  transition: 0.2s;
}
.co-btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.4);
}
.co-btn-gold:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Address preview ── */
.co-loading {
  display: flex;
  justify-content: center;
  padding: 14px 0;
}
.co-addr-preview {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffdf5, #fdf7e8);
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  padding: 16px 18px;
}
.co-addr-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.co-addr-main {
  flex: 1;
  min-width: 0;
}
.co-addr-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.co-addr-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
}
.co-addr-phone {
  font-size: 12.5px;
  color: rgba(61, 43, 31, 0.6);
}
.co-addr-tag {
  background: rgba(201, 168, 76, 0.16);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 6px;
  padding: 1px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.co-addr-tag--green {
  background: rgba(46, 125, 79, 0.12);
  color: var(--green);
  border-color: rgba(46, 125, 79, 0.3);
}
.co-addr-text {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}
.co-addr-empty {
  border: 2px dashed #e6c97e;
  border-radius: 14px;
  padding: 26px;
  text-align: center;
}
.co-addr-empty i {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}
.co-addr-empty p {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: rgba(61, 43, 31, 0.6);
}

/* ── Address picker ── */
.co-addr-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.co-addr-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}
.co-addr-opt {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 2px solid #eee;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  transition: 0.2s;
}
.co-addr-opt:hover {
  border-color: #e6cd8f;
}
.co-addr-opt.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf5, #fbf3dd);
}
.co-addr-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.co-addr-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cfc4ab;
  margin-top: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 11px;
  transition: 0.2s;
}
.co-addr-opt.active .co-addr-radio {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.co-addr-opt-main {
  flex: 1;
  min-width: 0;
}
.co-edit-btn {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  margin-top: 6px;
}
.co-add-addr-btn {
  border: 2px dashed var(--gold);
  background: none;
  border-radius: 12px;
  padding: 11px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.2s;
}
.co-add-addr-btn:hover {
  background: rgba(201, 168, 76, 0.08);
}
.co-panel-actions {
  display: flex;
  justify-content: flex-end;
}

/* ── Address form ── */
.co-form {
  background: #fffdf5;
  border: 1px solid #e8d9b5;
  border-radius: 14px;
  padding: 18px;
}
.co-form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.co-form-head > span {
  font-weight: 700;
  font-size: 13px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.co-form-x {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
}
.co-label-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.co-label-tab {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid #e2ddcf;
  background: #fff;
  color: #666;
  cursor: pointer;
  transition: 0.2s;
}
.co-label-tab.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.co-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.co-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
}
.co-field label span {
  color: #b9a992;
  font-weight: 400;
}
.co-input {
  width: 100%;
  border: 1.5px solid #e7e0cf;
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 13.5px;
  color: var(--brown);
  background: #fff;
  outline: none;
  transition: 0.2s;
}
.co-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.co-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
}
.co-check input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.co-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.co-form-cancel {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid #e2ddcf;
  background: #fff;
  color: #666;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.co-form-submit {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.co-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Time input ── */
.co-time-wrap {
  position: relative;
}
.co-time-wrap > i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 15px;
  z-index: 1;
}
.co-time-wrap .co-input {
  padding-left: 40px;
}

/* ── Payment method ── */
.co-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.co-pay-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #fffdf5, #fbf3dd);
}
.co-pay-brand {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.co-pay-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.co-pay-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
}
.co-pay-desc {
  font-size: 12px;
  color: rgba(61, 43, 31, 0.55);
  margin-top: 2px;
}
.co-pay-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.co-pay-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--green-bg);
  border: 1px solid rgba(46, 125, 79, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--green);
}
.co-pay-note i {
  font-size: 15px;
  margin-top: 1px;
}

/* ── Dark premium summary panel ── */
.co-summary {
  position: sticky;
  top: 20px;
  background: linear-gradient(165deg, #241407 0%, #3a1f0c 45%, #2b1608 100%);
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(26, 18, 8, 0.35);
  overflow: hidden;
}
.co-summary::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
}
.co-summary::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.07);
}
.co-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.co-summary-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.co-summary-head p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 2px 0 0;
}
.co-summary-count {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #2b1608;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.co-summary-items {
  max-height: 280px;
  overflow: auto;
  margin: 0 -6px 0 0;
  padding-right: 6px;
  position: relative;
  z-index: 1;
}
.co-summary-empty {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
}
.co-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.co-summary-item:last-child {
  border-bottom: none;
}
.co-sum-item-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.co-sum-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.co-sum-item-img i {
  color: var(--gold-light);
  font-size: 20px;
}
.co-sum-item-info {
  flex: 1;
  min-width: 0;
}
.co-sum-item-name {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.co-sum-item-meta {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.co-sum-item-price {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--gold-light);
  white-space: nowrap;
}

/* ── Coupon ── */
.co-promo {
  position: relative;
  z-index: 1;
  margin-top: 6px;
}
.co-promo-form {
  display: flex;
  gap: 8px;
}
.co-promo-input {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0 12px;
}
.co-promo-input i {
  color: var(--gold-light);
  font-size: 14px;
}
.co-promo-input input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  padding: 11px 8px;
  text-transform: uppercase;
  min-width: 0;
}
.co-promo-input input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.co-promo-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #2b1608;
  border: none;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}
.co-promo-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.co-promo-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(46, 125, 79, 0.18);
  border: 1.5px solid rgba(46, 125, 79, 0.5);
  border-radius: 12px;
  padding: 10px 14px;
}
.co-promo-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.co-promo-tag {
  color: #5fd08a;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.co-promo-saved {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}
.co-promo-remove {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}
.co-promo-remove:hover {
  border-color: #ff6b6b;
  color: #ff8080;
}

/* ── Wallet ── */
.co-wallet {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 12px;
}
.co-wallet-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.co-wallet-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #2b1608;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.co-wallet-left > div {
  display: flex;
  flex-direction: column;
}
.co-wallet-name {
  font-weight: 700;
  font-size: 13px;
}
.co-wallet-amt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
}
.co-wallet-used {
  font-size: 11.5px;
  color: #5fd08a;
  margin-top: 1px;
}
.co-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.co-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.co-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  transition: 0.3s;
}
.co-switch-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.co-switch input:checked + .co-switch-slider {
  background: var(--gold);
}
.co-switch input:checked + .co-switch-slider::before {
  transform: translateX(22px);
}

/* ── Pricing & total ── */
.co-pricing {
  position: relative;
  z-index: 1;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  margin-top: 14px;
  padding-top: 12px;
}
.co-pricing-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding: 7px 0;
}
.co-pricing-row--green {
  color: #5fd08a;
}
.co-total {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 6px;
}
.co-total span:first-child {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.co-total span:last-child {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* ── Pay button & trust ── */
.co-pay-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #2b1608;
  border: none;
  border-radius: 14px;
  padding: 15px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.co-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 168, 76, 0.4);
}
.co-pay-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.co-pay-btn-brand {
  background: rgba(43, 22, 8, 0.15);
  padding: 3px 9px;
  border-radius: 7px;
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.co-trust {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.co-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
}
.co-trust i {
  color: var(--gold-light);
}

/* ── Responsive ── */
@media (max-width: 575px) {
  .co-card {
    padding: 20px 16px;
  }
  .co-type-grid {
    grid-template-columns: 1fr;
  }
  .co-summary {
    padding: 18px;
  }
  .co-trust {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .co-steps .co-step-label {
    display: none;
  }
  .co-step-line {
    width: 32px;
  }
}
