:root {
  --brand: #f48ca0;
  --brand-deep: #e26a82;
  --brand-soft: #fce8ea;
  --brand-tint: #ffd9e0;
  --bg: #fff8f9;
  --card: #ffffff;
  --ink: #4a2a31;
  --ink-soft: #8a6770;
  --line: #f3dde2;
  --line-strong: #ecc3cc;
  --shadow: 0 6px 0 rgba(244, 140, 160, 0.18), 0 18px 32px -18px rgba(226, 106, 130, 0.35);
  --radius: 18px;
  --pixel: 'Press Start 2P', 'Noto Sans TC', monospace;
  --body: 'Noto Sans TC', 'Helvetica Neue', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, #ffe6eb 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 110%, #fff1d6 0%, transparent 60%),
    var(--bg);
  min-height: 100vh;
  padding: 32px 16px 80px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

/* --- Page header --- */
.page-header {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  padding: 8px 4px 0;
}
.page-header .ribbon {
  display: inline-block;
  background: var(--brand);
  color: white;
  font-family: var(--pixel);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 8px 14px 7px;
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--brand-deep);
  transform: rotate(-2deg);
  margin-bottom: 14px;
}
.page-header h1 {
  font-family: var(--pixel);
  font-size: clamp(18px, 4vw, 28px);
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--brand-deep);
  text-shadow: 3px 3px 0 var(--brand-soft);
}
.page-header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.page-header .by {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--brand);
  letter-spacing: 1px;
  margin-top: 6px;
}

/* --- Form shell (this is what gets screenshotted) --- */
#formShell {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
  border: 2px solid var(--line-strong);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  position: relative;
}
#formShell::before,
#formShell::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  background: var(--brand);
  border-radius: 4px;
  top: -10px;
}
#formShell::before { left: 28px; transform: rotate(45deg); box-shadow: -3px -3px 0 white; }
#formShell::after  { right: 28px; transform: rotate(45deg); box-shadow: 3px -3px 0 white; }

/* --- Section card --- */
.section {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin-bottom: 18px;
  position: relative;
}
.section:last-of-type { margin-bottom: 0; }
.section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-num {
  font-family: var(--pixel);
  font-size: 10px;
  background: var(--brand);
  color: white;
  padding: 6px 8px 5px;
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--brand-deep);
  flex-shrink: 0;
}
.section-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0;
}
.section-hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin: -8px 0 12px;
}

/* --- Pill/Chip controls (radio + checkbox lookalike) --- */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: white;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}
.pill input { position: absolute; opacity: 0; pointer-events: none; }
.pill:hover { border-color: var(--brand); }
.pill:has(input:checked) {
  background: var(--brand);
  color: white;
  border-color: var(--brand-deep);
  box-shadow: 2px 3px 0 var(--brand-deep);
  transform: translate(-1px, -1px);
}
.pill .dot {
  width: 8px; height: 8px;
  background: var(--brand-tint);
  border: 1px solid var(--brand-deep);
}
.pill:has(input:checked) .dot { background: white; }

/* --- Field row layouts --- */
.field { margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }
.field-label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
}
.field-label .opt {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 4px;
}

/* --- Color picker row --- */
.color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}
.color-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.color-swatch {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--line-strong), 0 4px 10px rgba(226, 106, 130, 0.2);
  overflow: hidden;
  cursor: pointer;
}
.color-swatch input[type="color"] {
  position: absolute;
  inset: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border: none;
  background: none;
  cursor: pointer;
}
.color-cell .hex {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--brand-deep);
  background: #fff4f6;
  border: 1px solid var(--line-strong);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.5px;
}
.color-cell .lbl {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 0;
}
.color-clear {
  border: none;
  background: transparent;
  color: var(--brand-deep);
  font-size: 11px;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 2px;
}
/* Version / face position preview image */
.face-preview {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--line-strong);
  background: #fffafb;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
}
.face-preview img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}
/* Dual char position preview */
.dual-pos-preview {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--line-strong);
  background: #fffafb;
}
.dual-pos-preview img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}
.dual-pos-label {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  padding: 4px 0 2px;
}

/* Dual character block (雙人緞帶餐) */
.dual-char {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .dual-char { grid-template-columns: 1fr; }
}
/* Screenshot output forces desktop side-by-side regardless of viewport */
body.screenshotting .dual-char { grid-template-columns: 1fr 1fr; }
.dual-char-cell {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px 14px;
  background: #fffdfe;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.dual-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--pixel);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 2px 0 var(--brand-deep);
}
.dual-tag.tag-b {
  background: #7ac9d9;
  box-shadow: 0 2px 0 #4d9aa9;
}
.dual-char-cell input[type="text"] {
  margin: 0;
}
.dual-face {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.dual-face-lbl {
  font-size: 11px;
  color: var(--ink-soft);
}
.dual-face .pill {
  padding: 4px 10px;
  font-size: 12px;
}
/* "Add secondary color" placeholder cell — looks like a ghost swatch */
.color-add-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px dashed var(--line-strong);
  background: #fffafb;
  color: var(--brand-deep);
  font-family: var(--pixel);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .12s ease;
  padding: 0;
}
.color-add-btn:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-1px);
}
.color-add-btn span { line-height: 1; }

/* --- Text inputs --- */
input[type="text"], textarea {
  width: 100%;
  background: #fffafb;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .12s ease, box-shadow .12s ease;
}
input[type="text"]:focus, textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(244, 140, 160, 0.18);
}
/* Snapshot substitute for input[type="text"] — html2canvas misplaces native
   input text; this div renders identically and stays within its box. */
.input-snap-value {
  width: 100%;
  background: #fffafb;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
textarea { min-height: 70px; resize: vertical; }

/* --- Topping cards (grid of circles) --- */
.topping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 14px;
}
.topping {
  --c: var(--brand);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 6px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  user-select: none;
  transition: transform .08s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
}
.topping input { position: absolute; opacity: 0; pointer-events: none; }
.topping:hover { border-color: var(--brand); }
.topping:has(input:checked) {
  border-color: var(--brand-deep);
  background: var(--brand-soft);
  box-shadow: 2px 3px 0 var(--brand-deep);
  transform: translate(-1px, -1px);
}
.topping .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, #fff 0deg 90deg, #fde0e6 90deg 180deg);
  background-size: 8px 8px;
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  image-rendering: pixelated;
  overflow: hidden;
}
.topping .icon img {
  width: 40px; height: 40px;
  image-rendering: pixelated;
  object-fit: contain;
}
.topping .code {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--brand-deep);
  margin-top: -2px;
}
.topping .name {
  font-size: 12px;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
}
.topping:has(input:checked) .icon {
  border-color: var(--brand-deep);
  background: white;
}
.topping.shake {
  animation: shake .35s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
/* A/B owner badge — visible only in double mode on checked toppings */
.topping-ab-btn {
  display: none;
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  font-family: var(--body);
  font-size: 9px;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--brand-deep);
  transition: background .15s ease, transform .08s ease;
}
.topping-ab-btn[data-owner="B"] { background: #4d9aa9; }
.topping-ab-btn:hover { transform: scale(1.15); }
body.is-double .topping:has(input:checked) .topping-ab-btn { display: flex; }

.topping-counter {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 12px;
  text-align: right;
}
.topping-counter b { color: var(--brand-deep); font-weight: 700; }
#toppingOtherWrap { margin-top: 12px; display: none; }
#toppingOtherWrap.show { display: block; }

/* --- Animation/background icon cards --- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.icard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px 12px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: all .12s ease;
}
.icard input { position: absolute; opacity: 0; pointer-events: none; }
.icard:hover { border-color: var(--brand); }
.icard:has(input:checked) {
  border-color: var(--brand-deep);
  background: var(--brand-soft);
  box-shadow: 2px 3px 0 var(--brand-deep);
  transform: translate(-1px, -1px);
}
.icard .preview {
  width: 64px; height: 48px;
  border-radius: 8px;
  background: #fffafb;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 22px;
}
.icard .lbl {
  font-size: 12px;
  color: var(--ink);
}
.icard .tag {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--brand-deep);
}

/* SVG pattern previews — drawn directly */
.preview.pat-check { background: repeating-conic-gradient(#f48ca0 0 25%, #fff 0 50%) 0 0 / 14px 14px; }
.preview.pat-diag  { background: repeating-linear-gradient(45deg, #f48ca0 0 4px, #fff 4px 10px); }
.preview.pat-stripe { background: repeating-linear-gradient(0deg, #f48ca0 0 4px, #fff 4px 10px); }
.preview.none { background: #fffafb; color: var(--ink-soft); font-size: 16px; }
.preview.img { padding: 0; background: #fff; }
.preview.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  display: block;
}
.icard .tag { margin-top: 2px; }

/* --- File upload --- */
.dropzone {
  border: 2px dashed var(--line-strong);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  color: var(--ink-soft);
  background: #fffafb;
  cursor: pointer;
  transition: all .15s ease;
}
.dropzone:hover, .dropzone.drag {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-deep);
}
.dropzone .big {
  font-family: var(--pixel);
  font-size: 11px;
  color: var(--brand-deep);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.dropzone .sub { font-size: 12px; }
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  border-radius: 14px;
  transition: background .15s ease;
}
.thumbs.drag {
  background: var(--brand-soft);
  outline: 2px dashed var(--brand);
  outline-offset: 4px;
}
.thumbs:empty { display: none; }
.thumb {
  position: relative;
  width: 100%;
  min-height: 120px;
  padding: 8px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  box-shadow: 0 3px 10px rgba(226, 106, 130, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb img {
  display: block;
  max-width: 100%;
  max-height: 640px;
  width: auto;
  height: auto;
  border-radius: 6px;
}
.thumb .rm {
  position: absolute;
  top: 6px; right: 6px;
  width: 26px; height: 26px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--brand-deep);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.thumbs-add {
  width: 100%;
  height: 56px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 2px dashed var(--line-strong);
  background: #fffafb;
  color: var(--brand-deep);
  font-family: var(--pixel);
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .15s ease;
}
.thumbs-add:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-1px);
}
.thumbs-add span { line-height: 1; }

/* Price snap bar — visible only in the screenshot output */
.price-snap-bar {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff9fa 0%, var(--brand-soft) 100%);
  border: 2px dashed var(--line-strong);
  border-radius: 14px;
  align-items: center;
  gap: 16px;
}
body.screenshotting .price-snap-bar { display: flex; }
.price-snap-label {
  font-family: var(--pixel);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--brand-deep);
  flex-shrink: 0;
}
.price-snap-amount {
  font-family: var(--pixel);
  font-size: 15px;
  color: var(--brand-deep);
}
.price-snap-desc {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 3px;
}
.price-snap-split {
  font-size: 12px;
  color: var(--brand);
  margin-top: 3px;
  display: none;
}
.price-snap-split.show { display: block; }

/* Screenshot mode: hide empty optional fields and interactive chrome */
body.screenshotting .thumb .rm,
body.screenshotting .thumbs-add,
body.screenshotting #addColor2Cell,
body.screenshotting .color-clear { display: none !important; }
body.screenshotting .hide-on-snap { display: none !important; }
body.screenshotting .section.hide-on-snap { display: none !important; }

/* --- CTA Buttons --- */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: 22px auto 0;
}
.btn-primary {
  font-family: var(--pixel);
  font-size: 13px;
  letter-spacing: 1px;
  background: var(--brand);
  color: white;
  border: 2px solid var(--brand-deep);
  padding: 16px 28px 14px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 0 var(--brand-deep);
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn-primary:hover { transform: translateY(2px); box-shadow: 0 4px 0 var(--brand-deep); }
.btn-primary:active { transform: translateY(6px); box-shadow: 0 0 0 var(--brand-deep); }
.btn-primary:disabled { opacity: 0.7; cursor: wait; }
.btn-secondary {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px 10px;
}
.btn-secondary:hover { color: var(--brand-deep); }

/* --- Conditional sections --- */
[data-cond] { display: none; }
[data-cond].show { display: block; }

/* --- Footer note --- */
.footnote {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.footnote .pix {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--brand);
  letter-spacing: 1px;
}

/* --- Price estimate card --- */
.price-card {
  margin-top: 16px;
  padding: 14px 16px 16px;
  background: linear-gradient(135deg, #fff9fa 0%, var(--brand-soft) 100%);
  border: 2px dashed var(--line-strong);
  border-radius: 14px;
}
.price-card-title {
  font-family: var(--pixel);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--brand-deep);
  margin-bottom: 10px;
}
.price-item-desc {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 6px;
}
.split-pill-wrap {
  margin: 8px 0 8px;
  display: none;
}
.split-pill-wrap.show { display: flex; }
.price-amount {
  font-family: var(--pixel);
  font-size: 16px;
  color: var(--brand-deep);
  margin-top: 4px;
}
.price-twd {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 3px;
}
.price-split-bonus {
  font-size: 12px;
  color: var(--brand);
  margin-top: 4px;
  display: none;
}
.price-split-bonus.show { display: block; }
.price-special-note {
  margin-top: 10px;
  padding: 8px 12px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  font-size: 12px;
  color: #e65100;
  display: none;
}
.price-special-note.show { display: block; }

/* ---- Floating price widget ---- */
#priceFloat {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.price-float-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 52px;
  height: 52px;
  padding: 0;
  background: var(--brand);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(226,106,130,0.45);
  transition: background .12s ease;
  flex-shrink: 0;
  order: 2;
}
.price-float-toggle:hover { background: var(--brand-deep); }
.price-float-icon { font-size: 20px; line-height: 1; }
.price-float-chip { display: none; }
.price-float-panel {
  width: min(260px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: white;
  border: 2px solid var(--line-strong);
  border-radius: 14px;
  padding: 16px 14px;
  box-shadow: -4px 4px 20px rgba(226,106,130,0.2);
  display: none;
  order: 1;
  margin-bottom: 10px;
}
#priceFloat.open .price-float-panel { display: block; }
.price-float-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.price-float-close {
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 16px;
  padding: 2px 4px;
  line-height: 1;
}
.price-float-close:hover { color: var(--brand-deep); }
.price-topping-note {
  margin-top: 8px;
  padding: 7px 10px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  font-size: 12px;
  color: #7a5800;
  display: none;
}
.price-topping-note.show { display: block; }
/* Screenshot: hide float + hide color input inside swatch (shows hex text natively) */
body.screenshotting #priceFloat { display: none !important; }
body.screenshotting .color-swatch input[type="color"] { display: none !important; }

/* Mobile tweaks */
@media (max-width: 480px) {
  body { padding: 16px 10px 60px; }
  #formShell { padding: 22px 16px; }
  .section { padding: 18px 14px; }
  .color-row { gap: 14px; }
  .color-cell .lbl { font-size: 11px; }
  .btn-primary { font-size: 11px; padding: 14px 20px 12px; }
}
