/* ============================================================
   YummyBite — Fresh groceries site styles
   Theme: red (#FF0000) + warm neutrals
   ============================================================ */

:root {
  --red: #FF0000;
  --red-dark: #cc0000;
  --red-light: #ffebeb;
  --cream: #fffaf5;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --border: #ececec;
  --bg: #ffffff;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
               "Hiragino Sans GB", "Microsoft YaHei", Roboto, "Helvetica Neue",
               Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 760px; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2 { line-height: 1.2; margin: 0 0 16px; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
p  { margin: 0 0 16px; }

.muted { color: var(--muted); }
.small { font-size: 0.875rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.25rem;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.5px;
}
.brand-name { color: var(--red); }

.nav { display: flex; gap: 24px; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--red); text-decoration: none; }

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.lang-switch button {
  background: #fff;
  border: 0;
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
}
.lang-switch button.active {
  background: var(--red);
  color: #fff;
}

/* ===== CART TOGGLE ===== */
.cart-toggle {
  position: relative;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-toggle:hover { background: var(--red-light); border-color: var(--red); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}
.cart-count.empty { display: none; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fff5f5 0%, var(--red-light) 100%);
  padding: 80px 0;
}
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero h1 { color: var(--ink); margin-bottom: 16px; }
.hero p { font-size: 1.15rem; color: var(--muted); margin-bottom: 32px; }

.cta {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.3);
}
.cta:hover { background: var(--red-dark); text-decoration: none; transform: translateY(-1px); }
.cta.big { padding: 18px 40px; font-size: 1.1rem; }

.trust-row {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ===== HERO PRODUCT ===== */
.hero-product {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
}
.hero-product-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.hero-product-info {
  padding: 20px;
  text-align: center;
}
.hero-product-info h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}
.hero-product-price {
  color: var(--red);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 16px;
}
.hero-product-info .cta {
  width: 100%;
  padding: 12px 16px;
}

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section.alt { background: var(--cream); }
.section h2 { text-align: center; margin-bottom: 12px; }
.section-lead { text-align: center; color: var(--muted); margin-bottom: 40px; font-size: 1.05rem; }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.product-card .img-wrap {
  aspect-ratio: 1/1;
  background: var(--cream);
  overflow: hidden;
}
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .product-card .img-wrap { position: relative; }
  .product-card .free-ship-sticker {
    position: absolute;
    top: 12px;
    left: -8px;
    z-index: 2;
    width: 110px;
    height: 50px;
    transform: rotate(-6deg);
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-card .free-ship-sticker .sticker-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .product-card .free-ship-sticker .sticker-text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    padding-top: 2px;
  }
.product-card .info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card .name { font-weight: 600; margin-bottom: 6px; }
.product-card .price { color: var(--red); font-weight: 700; font-size: 1.05rem; margin-bottom: 12px; }
.product-card .order-btn {
  margin-top: auto;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.product-card .order-btn:hover { background: var(--red-dark); text-decoration: none; }

/* placeholder shimmer */
.product-card.placeholder { padding: 0; }
.product-card.placeholder .ph-img {
  aspect-ratio: 1/1;
  background: linear-gradient(90deg, #f0f0f0 0%, #e8e8e8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.product-card.placeholder .ph-line {
  height: 14px;
  background: #f0f0f0;
  margin: 12px 16px;
  border-radius: 4px;
}
.product-card.placeholder .ph-line.short { width: 50%; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ===== LISTS ===== */
.check-list { list-style: none; padding: 0; }
.check-list li { padding: 8px 0 8px 28px; position: relative; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.steps { padding-left: 0; counter-reset: step; list-style: none; }
.steps li {
  padding: 16px 20px 16px 60px;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.steps li strong { display: block; margin-bottom: 4px; }

/* ===== FAQ ===== */
details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 10px;
}
details summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary::after { content: "−"; }
details p { margin-top: 12px; color: var(--muted); }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 40px 0;
}
.site-footer strong { color: var(--red); }
.site-footer a { color: #ddd; }
.site-footer a:hover { color: var(--red); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.footer-inner > div:last-child { text-align: right; }
.footer-links { display: flex; gap: 20px; justify-content: center; }
.site-footer .muted { color: #999; }

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: 56px 0; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-text { text-align: center; }
  .trust-row { justify-content: center; }
  .section { padding: 48px 0; }
  .header-inner { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
  .nav { gap: 14px; order: 3; flex-basis: 100%; justify-content: center; }
  .nav a { font-size: 0.85rem; }
  .lang-switch button { padding: 5px 9px; font-size: 0.8rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner > div:last-child { text-align: center; }
}

/* ===== CART MODAL ===== */
.cart-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cart-modal.hidden { display: none; }
.cart-modal-inner {
  background: #fff;
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { margin: 0; font-size: 1.25rem; }
.cart-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  line-height: 1;
}
.cart-close:hover { color: var(--red); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  margin: 40px 0;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 4px; }
.cart-item-price { color: var(--red); font-weight: 700; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item-qty button {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}\; .cart-item-qty button:hover { border-color: var(--red); }
.cart-item-qty span { min-width: 24px; text-align: center; font-weight: 600; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
}
.cart-item-remove:hover { color: var(--red); }
.cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--cream);
  border-radius: 0 0 var(--radius) var(--radius);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1.1rem;
}
.cart-total span:last-child { color: var(--red); }
.cart-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cart-actions .cta {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.95rem;
  border-radius: 6px;  /* Shopee-style, not pill */
  font-weight: 500;
  letter-spacing: 0.2px;
}
.cart-actions .cta.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}
.cart-actions .cta.secondary:hover {
  background: var(--red-light);
  border-color: var(--red);
  color: var(--red);
}

/* Cart checkout variants — Shopee-style (orange primary, teal secondary) */
.cart-actions .cta.cyan {
  background: #00BFA5;  /* Shopee teal */
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 191, 165, 0.25);
}
.cart-actions .cta.cyan:hover {
  background: #00A48D;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.cart-actions .cta.online {
  background: #EE4D2D;  /* Shopee orange */
  color: #fff;
  box-shadow: 0 2px 8px rgba(238, 77, 45, 0.3);
}
.cart-actions .cta.online:hover {
  background: #D73211;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Cart page + modal: Online (Shopee orange) is the primary CTA — appears first */
.cart-footer-page .cart-actions .cta.online,
.cart-modal .cart-actions .cta.online {
  order: -1;
  font-weight: 700;
}

/* Inline status banner above/below checkout buttons (visible at glance) */
.cart-action-status {
  flex-basis: 100%;
  margin: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  border: 1px solid transparent;
}
.cart-action-status[hidden] { display: none !important; }
.cart-action-status.error {
  background: #fff5f5;
  color: #D73211;
  border-color: #fbb;
}
.cart-action-status.info {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--border);
}
.cart-action-status.success {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

/* Disabled checkout buttons (cart empty, etc.) */
.cta:disabled,
.cta[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.4);
  transform: none !important;
  box-shadow: none !important;
}
.cta:disabled:hover,
.cta[disabled]:hover {
  background: inherit;
  transform: none;
}

/* Mobile: stack checkout buttons, full width */
@media (max-width: 720px) {
  .cart-footer-page .cart-actions,
  .cart-modal .cart-actions { flex-direction: column; }
  .cart-footer-page .cart-actions .cta,
  .cart-modal .cart-actions .cta { width: 100%; }

  /* Cart item: better mobile layout so long names don't crush into 1-char lines */
  .cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-areas:
      "img info remove"
      "img qty  remove";
    column-gap: 12px;
    row-gap: 8px;
    padding: 14px 0;
  }
  .cart-item-img {
    grid-area: img;
    width: 72px; height: 72px;
    align-self: center;
  }
  .cart-item-info {
    grid-area: info;
    min-width: 0;
  }
  .cart-item-name {
    line-height: 1.3;
    word-break: break-word;
  }
  .cart-item-qty {
    grid-area: qty;
    align-self: start;
    justify-content: flex-start;
  }
  .cart-item-remove {
    grid-area: remove;
    align-self: center;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
  }
}

/* ===== CART PAGE ===== */
.cart-items-page {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.cart-items-page .cart-empty {
  margin: 60px 0;
  font-size: 1.1rem;
}

/* ===== DELIVERY FORM ===== */
.delivery-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.delivery-form h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  text-align: left;
}
.delivery-form .form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 20px;
}
.form-row { margin-bottom: 16px; }
.form-row > label,
.form-row > div > label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-row .req {
  color: var(--red);
  font-weight: 700;
  margin-left: 2px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row textarea { resize: vertical; min-height: 70px; line-height: 1.5; }
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}
.form-row input.invalid,
.form-row textarea.invalid {
  border-color: var(--red);
  background: #fff5f5;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .form-row-split { grid-template-columns: 1fr; }
}
.form-error {
  display: block;
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 500;
  min-height: 0;
}
.form-error:empty { display: none; }

.cart-footer-page {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
}
.cart-footer-page .cart-total {
  margin-bottom: 20px;
  font-size: 1.25rem;
}
.cart-footer-page .cart-actions {
  gap: 16px;
}
.cart-footer-page .cta {
  padding: 14px 20px;
  font-size: 1rem;
}
/* ===== STEP INDICATOR ===== */
.step-indicator {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 28px;
  counter-reset: step;
}
.step-indicator .step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.step-indicator .step + .step::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}
.step-indicator .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.step-indicator .step.active {
  color: var(--red);
  font-weight: 700;
}
.step-indicator .step.active .step-num {
  background: var(--red);
}
.step-indicator .step.done {
  color: var(--ink);
}
.step-indicator .step.done .step-num {
  background: var(--ink);
}
@media (max-width: 480px) {
  .step-indicator .step-label { display: none; }
  .step-indicator .step + .step::before { width: 16px; margin: 0 4px; }
}

/* ===== ORDER SUMMARY (checkout page) ===== */
.order-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.order-summary h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}
.checkout-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}
.checkout-item-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}
.checkout-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

/* ===== PAYMENT METHODS (checkout page) ===== */
.payment-methods {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.payment-methods h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.payment-methods > .form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 20px;
}
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.15s, transform 0.1s, box-shadow 0.15s;
}
.payment-card:hover:not(:disabled) {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.08);
}
.payment-card:active:not(:disabled) {
  transform: scale(0.99);
}
.payment-card:focus-visible {
  outline: 3px solid rgba(255, 0, 0, 0.3);
  outline-offset: 2px;
}
.payment-card:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.payment-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream);
}
.payment-card.whatsapp .payment-card-icon { background: #e6f9ed; }
.payment-card.online .payment-card-icon { background: #fff5f5; }
.payment-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.payment-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.payment-card-arrow {
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
  transition: transform 0.15s;
}
.payment-card:hover:not(:disabled) .payment-card-arrow {
  transform: translateX(4px);
}
.secure-note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
