/* GiftCardUS — plain CSS */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }
.icon { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-lg { width: 32px; height: 32px; }
.icon-sm { width: 14px; height: 14px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* ---------- Header ---------- */
.site-header { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 30; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }
.logo { display: flex; align-items: center; gap: 8px; user-select: none; }
.logo-badge { background: #111827; color: #fff; font-weight: 700; font-size: 14px; padding: 6px 10px; border-radius: 6px; }
.logo-text { font-size: 20px; font-weight: 700; color: #111827; }
.logo-text .accent { color: #2563eb; }
.search-wrap { position: relative; flex: 1; max-width: 448px; margin: 0 32px; display: none; }
.search-wrap .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #9ca3af; }
.search-wrap input { width: 100%; padding: 8px 16px 8px 36px; border: 1px solid #d1d5db; border-radius: 9999px; font-size: 14px; outline: none; }
.search-wrap input:focus { border-color: #2563eb; box-shadow: 0 0 0 1px #2563eb; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.signin-btn { display: none; align-items: center; gap: 6px; font-size: 14px; color: #4b5563; padding: 6px 8px; border-radius: 6px; }
.signin-btn:hover { color: #111827; background: #f3f4f6; }
.cart-btn { display: flex; align-items: center; gap: 6px; font-size: 14px; color: #374151; padding: 6px 12px; border-radius: 9999px; border: 1px solid #d1d5db; position: relative; background: #fff; }
.cart-btn:hover { background: #f9fafb; color: #111827; }
.cart-btn .cart-label { display: none; font-weight: 500; }
.cart-count { color: #fff; font-size: 12px; border-radius: 9999px; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-weight: 700; background: #9ca3af; }
.cart-count.has-items { background: #2563eb; }
.menu-btn { padding: 6px; border-radius: 6px; display: flex; }
.menu-btn:hover { background: #f3f4f6; }
.mobile-menu { display: none; border-top: 1px solid #f3f4f6; padding: 12px 0; }
.mobile-menu.open { display: block; }
.mobile-menu .m-search { position: relative; margin-bottom: 12px; }
.mobile-menu .m-search .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #9ca3af; }
.mobile-menu .m-search input { width: 100%; padding: 8px 16px 8px 36px; border: 1px solid #d1d5db; border-radius: 9999px; font-size: 14px; outline: none; }
.mobile-menu a { display: block; padding: 8px 12px; font-size: 14px; color: #374151; border-radius: 6px; }
.mobile-menu a:hover { background: #f9fafb; }
.cat-nav { display: none; background: #f9fafb; border-top: 1px solid #f3f4f6; }
.nav-row { display: flex; align-items: center; gap: 24px; height: 40px; font-size: 14px; }
.nav-row a { color: #4b5563; }
.nav-row a:hover { color: #2563eb; }
.nav-row a.strong { font-weight: 500; }
.nav-row .sep { color: #d1d5db; }
.nav-row .muted { color: #9ca3af; cursor: default; }

@media (min-width: 768px) {
  .search-wrap { display: block; }
  .signin-btn { display: flex; }
  .cart-btn .cart-label { display: inline; }
  .menu-btn { display: none; }
  .mobile-menu { display: none !important; }
  .cat-nav { display: block; }
}

/* ---------- Promo banner ---------- */
.promo-banner { background: #2563eb; color: #fff; text-align: center; font-size: 14px; padding: 8px 16px; font-weight: 500; }

/* ---------- Home ---------- */
.page-wrap { padding: 32px 16px; max-width: 1280px; margin: 0 auto; }
.page-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.page-head h1 { font-size: 24px; font-weight: 700; color: #111827; }
.page-head h1 .count { color: #6b7280; font-weight: 400; font-size: 18px; }
.page-head .sub { font-size: 14px; color: #6b7280; margin-top: 4px; }
.sort-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #4b5563; }
.sort-row .sort-box { border: 1px solid #d1d5db; border-radius: 6px; padding: 6px 12px; color: #374151; cursor: pointer; }
.sort-row .sort-box:hover { background: #f9fafb; }
@media (min-width: 640px) {
  .page-head { flex-direction: row; align-items: center; justify-content: space-between; }
}
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip { display: flex; align-items: center; gap: 6px; border: 1px solid #d1d5db; border-radius: 9999px; padding: 6px 16px; font-size: 14px; color: #374151; background: #fff; }
.chip:hover { background: #f9fafb; }

.grid-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .grid-products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-products { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .grid-products { grid-template-columns: repeat(5, 1fr); } }

.product-card { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; background: #fff; transition: box-shadow .2s; }
.product-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }
.card-media { position: relative; background: #f9fafb; display: flex; align-items: center; justify-content: center; padding: 16px; height: 208px; }
.card-media img { max-height: 160px; max-width: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.badge { position: absolute; top: 12px; left: 12px; z-index: 10; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 8px; border-radius: 4px; }
.badge-orange { background: #f97316; }
.badge-blue { background: #2563eb; }
.raffle-status { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; z-index: 10; }
.raffle-status span { background: #10b981; color: #fff; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 9999px; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.btn { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 14px; font-weight: 600; width: 100%; border-radius: 6px; padding: 9px 12px; transition: background .2s; }
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1d4ed8; }
.btn-added { background: #16a34a !important; color: #fff; }
.card-price { font-size: 18px; font-weight: 700; color: #111827; margin-top: 12px; }
.card-options { font-size: 12px; color: #6b7280; margin-top: 4px; }
.card-name { font-size: 14px; color: #1f2937; font-weight: 500; line-height: 1.3; margin: 4px 0 8px; }
.rating { display: flex; align-items: center; gap: 2px; }
.rating .star { width: 14px; height: 14px; }
.star-full { fill: #facc15; }
.star-half { fill: #facc15; opacity: .6; }
.star-empty { fill: #e5e7eb; }
.rating .rcount { font-size: 12px; color: #6b7280; margin-left: 3px; }
.ship-row { display: flex; align-items: center; gap: 4px; margin-top: 8px; color: #1d4ed8; font-size: 12px; font-weight: 500; }
.ship-row .icon { color: #2563eb; }

.trust-row { margin-top: 64px; display: grid; grid-template-columns: 1fr; gap: 24px; border-top: 1px solid #e5e7eb; padding-top: 40px; }
@media (min-width: 640px) { .trust-row { grid-template-columns: repeat(3, 1fr); } }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item .icon-lg { color: #2563eb; margin-top: 2px; }
.trust-item h3 { font-size: 16px; font-weight: 600; color: #111827; }
.trust-item p { font-size: 14px; color: #6b7280; margin-top: 2px; }

/* ---------- Footer ---------- */
.site-footer { background: #111827; color: #d1d5db; margin-top: 64px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 48px 16px; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-brand .fb-badge { background: #374151; color: #fff; font-weight: 700; font-size: 12px; padding: 4px 8px; border-radius: 4px; }
.footer-brand .fb-name { color: #fff; font-weight: 700; }
.footer-desc { font-size: 14px; color: #9ca3af; line-height: 1.6; }
.footer-grid h4 { color: #fff; font-weight: 600; margin-bottom: 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
.footer-grid li a:hover { color: #fff; }
.footer-grid li .dead { color: #6b7280; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 14px; color: #6b7280; text-align: center; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); backdrop-filter: blur(4px); z-index: 40; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 448px; background: #fff; z-index: 50; box-shadow: -10px 0 25px rgba(0,0,0,.15); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s; }
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #e5e7eb; }
.drawer-head .dh-left { display: flex; align-items: center; gap: 8px; }
.drawer-head .dh-left .icon { color: #2563eb; width: 20px; height: 20px; }
.drawer-head h2 { font-size: 18px; font-weight: 700; color: #111827; }
.drawer-head .dh-count { background: #2563eb; color: #fff; font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 9999px; margin-left: 4px; }
.icon-btn { padding: 6px; border-radius: 9999px; display: flex; color: #6b7280; }
.icon-btn:hover { background: #f3f4f6; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 64px 0; }
.cart-empty .big-icon { width: 64px; height: 64px; color: #e5e7eb; margin-bottom: 16px; }
.cart-empty .ce-title { color: #6b7280; font-weight: 500; font-size: 18px; }
.cart-empty .ce-sub { color: #9ca3af; font-size: 14px; margin-top: 4px; }
.cart-empty button { margin-top: 24px; color: #2563eb; font-size: 14px; font-weight: 600; }
.cart-empty button:hover { text-decoration: underline; }
.cart-item { display: flex; gap: 12px; background: #f9fafb; border-radius: 12px; padding: 12px; margin-bottom: 16px; }
.cart-item img { width: 96px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-size: 14px; font-weight: 600; color: #1f2937; line-height: 1.3; }
.ci-price { color: #2563eb; font-weight: 700; font-size: 14px; margin-top: 2px; }
.ci-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.qty-box { display: flex; align-items: center; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; background: #fff; }
.qty-box button { padding: 4px 8px; color: #4b5563; display: flex; }
.qty-box button:hover { background: #f3f4f6; }
.qty-box .qty { padding: 4px 12px; font-size: 14px; font-weight: 600; color: #1f2937; border-left: 1px solid #e5e7eb; border-right: 1px solid #e5e7eb; }
.ci-remove { padding: 6px; border-radius: 8px; color: #9ca3af; display: flex; }
.ci-remove:hover { background: #fef2f2; color: #ef4444; }
.drawer-foot { border-top: 1px solid #e5e7eb; padding: 16px 20px; background: #fff; }
.df-row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: #6b7280; margin-bottom: 8px; }
.df-row .free { color: #16a34a; font-weight: 500; }
.df-total { display: flex; align-items: center; justify-content: space-between; font-weight: 700; color: #111827; padding-top: 8px; border-top: 1px solid #f3f4f6; margin-bottom: 12px; }
.df-total .amt { font-size: 18px; }
.btn-checkout { background: #2563eb; color: #fff; font-weight: 700; padding: 12px; border-radius: 12px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 16px; }
.btn-checkout:hover { background: #1d4ed8; }
.btn-clear { width: 100%; text-align: center; font-size: 12px; color: #9ca3af; margin-top: 12px; }
.btn-clear:hover { color: #4b5563; }

/* ---------- Modals ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); z-index: 40; display: none; }
.modal-wrap { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.show, .modal-wrap.show { display: flex; }
.modal { background: #fff; border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); width: 100%; max-width: 512px; overflow: hidden; max-height: 90vh; display: flex; flex-direction: column; }
.modal-sm { max-width: 384px; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid #f3f4f6; flex-shrink: 0; }
.modal-head .mh-left { display: flex; align-items: center; gap: 8px; }
.modal-head .mh-left .icon { color: #2563eb; width: 20px; height: 20px; }
.modal-head h2 { font-size: 18px; font-weight: 700; color: #111827; }
.modal-body { overflow-y: auto; flex: 1; padding: 20px 24px; }
.modal-foot { padding: 16px 24px; border-top: 1px solid #f3f4f6; flex-shrink: 0; }

.raffle-intro { background: #eff6ff; border: 1px solid #dbeafe; border-radius: 12px; padding: 16px; margin-bottom: 24px; font-size: 14px; color: #1e40af; }
.raffle-intro .ri-title { font-weight: 600; margin-bottom: 4px; }
.raffle-intro .ri-sub { color: #1d4ed8; }
.rq-block { margin-bottom: 24px; }
.rq-text { font-size: 14px; font-weight: 600; color: #1f2937; margin-bottom: 12px; }
.radio-card { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; border: 2px solid #e5e7eb; cursor: pointer; transition: all .15s; margin-bottom: 8px; font-size: 14px; color: #374151; }
.radio-card:hover { border-color: #d1d5db; background: #f9fafb; }
.radio-card.selected { border-color: #2563eb; background: #eff6ff; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-dot { width: 16px; height: 16px; border-radius: 9999px; border: 2px solid #d1d5db; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.radio-card.selected .radio-dot { border-color: #2563eb; }
.radio-dot::after { content: ""; width: 8px; height: 8px; border-radius: 9999px; background: #2563eb; display: none; }
.radio-card.selected .radio-dot::after { display: block; }
.field-label { display: block; font-size: 14px; font-weight: 600; color: #1f2937; margin-bottom: 8px; }
.text-input { width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 12px; font-size: 14px; outline: none; transition: border-color .2s; }
.text-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,.2); }
.text-input.error { border-color: #f87171; background: #fef2f2; }
.field-error { color: #ef4444; font-size: 12px; margin-top: 4px; }
.field-hint { font-size: 12px; color: #9ca3af; margin-top: 8px; }
.btn-submit { width: 100%; font-weight: 700; padding: 12px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; background: #2563eb; color: #fff; transition: background .2s; }
.btn-submit:hover { background: #1d4ed8; }
.btn-submit:disabled { background: #e5e7eb; color: #9ca3af; cursor: not-allowed; }
.modal-foot .fine-print { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 8px; }
.success-view { text-align: center; padding: 32px 0; }
.success-circle { width: 80px; height: 80px; background: #dcfce7; border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-circle .icon { width: 40px; height: 40px; color: #22c55e; stroke-width: 2.5; }
.success-view h3 { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.success-view p { color: #6b7280; font-size: 14px; margin-bottom: 8px; }
.success-view p strong, .success-view p b { color: #374151; }
.success-view .btn-close-modal { background: #2563eb; color: #fff; font-weight: 600; padding: 10px 32px; border-radius: 12px; margin-top: 16px; }
.success-view .btn-close-modal:hover { background: #1d4ed8; }

/* Amount picker */
.ap-product { display: flex; gap: 12px; margin-bottom: 20px; }
.ap-product img { width: 96px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.ap-product .ap-name { font-size: 14px; font-weight: 600; color: #1f2937; line-height: 1.3; }
.ap-product .ap-sub { font-size: 12px; color: #6b7280; margin-top: 4px; }
.ap-label { font-size: 14px; font-weight: 600; color: #374151; margin-bottom: 12px; }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.amount-btn { padding: 10px 0; border-radius: 12px; font-size: 14px; font-weight: 700; border: 2px solid #e5e7eb; color: #374151; background: #fff; transition: all .15s; }
.amount-btn:hover { border-color: #93c5fd; background: rgba(239,246,255,.5); }
.amount-btn.selected { border-color: #2563eb; background: #eff6ff; color: #1d4ed8; }

/* ---------- Checkout ---------- */
.checkout-wrap { max-width: 1024px; margin: 0 auto; padding: 32px 16px; }
.checkout-wrap > h1 { font-size: 24px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.steps { display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
.step-item { display: flex; align-items: center; }
.step-col { display: flex; flex-direction: column; align-items: center; }
.step-dot { width: 32px; height: 32px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; background: #e5e7eb; color: #6b7280; transition: background .2s; }
.step-dot.active { background: #2563eb; color: #fff; }
.step-dot.done { background: #22c55e; color: #fff; }
.step-label { font-size: 12px; margin-top: 4px; font-weight: 500; color: #9ca3af; }
.step-label.active { color: #2563eb; }
.step-line { width: 64px; height: 2px; background: #e5e7eb; margin: 0 4px 16px; }
.step-line.done { background: #22c55e; }
@media (min-width: 640px) { .step-line { width: 96px; } }
.checkout-grid { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) { .checkout-grid { flex-direction: row; } }
.checkout-main { flex: 1; }
.panel { background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; padding: 24px; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.panel-title { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.panel-title .icon { color: #2563eb; width: 20px; height: 20px; }
.panel-title h2 { font-size: 20px; font-weight: 700; color: #111827; }
.form-row { display: flex; gap: 12px; margin-bottom: 16px; }
.form-field { flex: 1; min-width: 0; }
.form-field.full { width: 100%; flex: none; }
.form-field label { display: block; font-size: 14px; font-weight: 500; color: #374151; margin-bottom: 4px; }
.form-field input, .form-field select { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 14px; outline: none; background: #fff; transition: border-color .2s; }
.form-field input:focus, .form-field select:focus { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,.2); }
.form-field input.error, .form-field select.error { border-color: #f87171; background: #fef2f2; }
.form-field .field-error { display: none; }
.form-field .field-error.show { display: block; }
.btn-next { margin-top: 24px; width: 100%; background: #2563eb; color: #fff; font-weight: 700; padding: 12px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-next:hover { background: #1d4ed8; }
.btn-row { display: flex; gap: 12px; margin-top: 8px; }
.btn-back { flex: 1; border: 1px solid #d1d5db; color: #374151; font-weight: 600; padding: 12px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 4px; background: #fff; }
.btn-back:hover { background: #f9fafb; }
.btn-forward { flex: 2; background: #2563eb; color: #fff; font-weight: 700; padding: 12px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-forward:hover { background: #1d4ed8; }
.btn-forward:disabled { opacity: .7; cursor: wait; }
.paypal-option { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 12px; border: 2px solid #2563eb; background: #eff6ff; margin-bottom: 16px; }
.paypal-radio { width: 20px; height: 20px; border-radius: 9999px; border: 2px solid #2563eb; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.paypal-radio::after { content: ""; width: 10px; height: 10px; border-radius: 9999px; background: #2563eb; }
.pp-logo { background: #003087; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.pp-logo span { color: #009cde; }
.pp-title-row { display: flex; align-items: center; gap: 12px; }
.pp-title { font-size: 14px; font-weight: 600; color: #1f2937; }
.pp-desc { font-size: 12px; color: #4b5563; margin-top: 4px; }
.info-box { background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px; padding: 16px; font-size: 14px; color: #92400e; margin-bottom: 24px; display: flex; gap: 12px; }
.info-box .icon { color: #d97706; margin-top: 2px; }
.info-box-blue { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 12px; padding: 16px; font-size: 14px; color: #1e40af; margin-bottom: 24px; display: flex; gap: 12px; text-align: left; }
.info-box-blue .icon { color: #2563eb; margin-top: 2px; }
.info-box-blue .ib-title { font-weight: 600; margin-bottom: 4px; }
.ssl-row { display: flex; align-items: center; gap: 8px; background: #f9fafb; border-radius: 8px; padding: 12px; margin-bottom: 24px; }
.ssl-row .icon { color: #16a34a; }
.ssl-row span { font-size: 12px; color: #4b5563; }
.review-box { background: #f9fafb; border-radius: 12px; padding: 16px; border: 1px solid #e5e7eb; margin-bottom: 16px; }
.review-box .rb-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-box h4 { font-size: 14px; font-weight: 700; color: #374151; display: flex; align-items: center; gap: 6px; }
.review-box .edit-link { font-size: 12px; color: #2563eb; font-weight: 500; }
.review-box .edit-link:hover { text-decoration: underline; }
.review-box p { font-size: 14px; color: #4b5563; }
.review-box p.strong { color: #1f2937; font-weight: 500; }
.review-box p.faded { color: #6b7280; margin-top: 4px; }
.review-items .ri-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.review-items .ri-row .ri-name { color: #4b5563; flex: 1; padding-right: 8px; }
.review-items .ri-row .ri-amt { font-weight: 600; color: #111827; }
.review-totals { border-top: 1px solid #e5e7eb; margin-top: 12px; padding-top: 12px; }
.review-totals .rt-row { display: flex; justify-content: space-between; font-size: 14px; color: #6b7280; margin-bottom: 4px; }
.review-totals .rt-total { display: flex; justify-content: space-between; font-weight: 700; color: #111827; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 9999px; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.checkout-side { flex-shrink: 0; }
@media (min-width: 1024px) { .checkout-side { width: 320px; } }
.summary-card { background: #f9fafb; border-radius: 16px; padding: 20px; border: 1px solid #e5e7eb; }
.summary-card h3 { font-weight: 700; color: #111827; margin-bottom: 16px; }
.sum-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sum-item img { width: 56px; height: 40px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sum-item .si-info { flex: 1; min-width: 0; }
.sum-item .si-name { font-size: 12px; font-weight: 500; color: #374151; line-height: 1.3; }
.sum-item .si-qty { font-size: 12px; color: #6b7280; }
.sum-item .si-amt { font-size: 14px; font-weight: 700; color: #111827; }
.sum-totals { border-top: 1px solid #e5e7eb; padding-top: 12px; }
.sum-totals .st-row { display: flex; justify-content: space-between; font-size: 14px; color: #4b5563; margin-bottom: 8px; }
.sum-totals .st-row .free { color: #16a34a; font-weight: 500; }
.sum-totals .st-total { display: flex; justify-content: space-between; font-weight: 700; color: #111827; padding-top: 8px; border-top: 1px solid #e5e7eb; font-size: 16px; }
.side-ssl { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: #9ca3af; justify-content: center; }

.empty-cart-page { max-width: 512px; margin: 0 auto; padding: 80px 16px; text-align: center; }
.empty-cart-page .big-icon { width: 64px; height: 64px; color: #e5e7eb; margin: 0 auto 16px; }
.empty-cart-page h2 { font-size: 20px; font-weight: 700; color: #374151; margin-bottom: 8px; }
.empty-cart-page p { color: #6b7280; font-size: 14px; margin-bottom: 24px; }
.empty-cart-page a { display: inline-block; background: #2563eb; color: #fff; font-weight: 600; padding: 10px 24px; border-radius: 12px; }
.empty-cart-page a:hover { background: #1d4ed8; }

.confirm-view { text-align: center; padding: 24px 0; }
.confirm-view h2 { font-size: 24px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.confirm-view .cv-thanks { color: #6b7280; margin-bottom: 4px; }
.confirm-view .cv-thanks b { color: #374151; }
.confirm-view .cv-sent { color: #6b7280; font-size: 14px; margin-bottom: 24px; }
.confirm-view .cv-sent b { color: #374151; font-weight: 500; }
.order-box { background: #f9fafb; border-radius: 16px; padding: 20px; border: 1px solid #e5e7eb; text-align: left; margin-bottom: 24px; }
.order-box .ob-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.order-box .ob-row:last-child { margin-bottom: 0; }
.order-box .ob-label { font-size: 14px; color: #6b7280; }
.order-box .ob-value { font-weight: 700; color: #111827; font-family: ui-monospace, monospace; }
.order-box .ob-value-sm { font-size: 14px; font-weight: 600; color: #1f2937; }
.btn-continue { width: 100%; background: #2563eb; color: #fff; font-weight: 700; padding: 12px; border-radius: 12px; display: block; text-align: center; }
.btn-continue:hover { background: #1d4ed8; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 768px; margin: 0 auto; padding: 48px 16px; }
.legal-wrap h1 { font-size: 30px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.legal-wrap .updated { font-size: 14px; color: #6b7280; margin-bottom: 32px; }
.legal-wrap section { margin-bottom: 24px; }
.legal-wrap h2 { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.legal-wrap p { font-size: 14px; color: #374151; line-height: 1.7; }
.legal-wrap a { color: #2563eb; }
.legal-wrap a:hover { text-decoration: underline; }

.hidden { display: none !important; }
