/* Service add-ons, finger designs, fullscreen shop/catalog */
.svc-related-wrap, .svc-addon-wrap, .finger-design-wrap {
  border: 1px solid #e3ebe6;
  border-radius: 12px;
  background: #f7faf8;
  padding: 10px 12px;
}
.svc-related-head, .svc-addon-title, .finger-design-head {
  font-size: .78rem;
  font-weight: 700;
  color: #1f3d2e;
  margin-bottom: 6px;
}
.finger-design-sub {
  font-size: .75rem;
  color: #5b6f64;
  margin: 0 0 10px;
}
.finger-mode-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 10px;
  font-size: .8rem;
}
.finger-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e3ebe6;
  border-radius: 10px;
  background: #fff;
}
.finger-design-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
  min-width: 280px;
}
.finger-design-table th,
.finger-design-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #eef2ef;
  vertical-align: middle;
  text-align: left;
}
.finger-design-table th {
  background: #f0f5f2;
  color: #30473b;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
}
.finger-design-table tr:last-child td { border-bottom: 0; }
.finger-td-label { white-space: nowrap; color: #30473b; font-weight: 600; width: 28%; }
.finger-td-design { min-width: 140px; }
.finger-td-price { white-space: nowrap; color: #154b34; font-weight: 650; text-align: right !important; width: 30%; }
.finger-addon-select { width: 100%; }
.finger-price-total {
  margin-top: 10px;
  font-size: .82rem;
  font-weight: 650;
  color: #154b34;
}
@media (max-width: 576px) {
  .finger-design-panel { padding: 2px; }
  .finger-mode-row { gap: 8px 12px; font-size: .75rem; }
  .finger-design-table th:nth-child(3),
  .finger-design-table td.finger-td-price { font-size: .72rem; }
}

.book-svc-cat {
  border: 1px solid #e3ebe6;
  border-radius: 10px;
  padding: 8px 8px 4px;
  margin-bottom: 8px;
  background: #fff;
}
.book-svc-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #30473b;
  margin-bottom: 6px;
  padding: 0 4px;
}
.book-svc-cat-need { color: #b45309; font-weight: 650; text-transform: none; letter-spacing: 0; }

/* Fullscreen shop / catalog modal */
.shop-fs-overlay {
  position: fixed; inset: 0; z-index: 10600;
  background: rgba(10, 20, 16, .55);
  display: none;
}
.shop-fs-overlay.is-open { display: block; }
.shop-fs-modal {
  position: fixed; inset: 0; z-index: 10610;
  display: none; flex-direction: column;
  background: #fff;
}
.shop-fs-modal.is-open { display: flex; }
/* Optional head bar (unused by shop/catalog fullscreen — chrome lives inside iframe) */
.shop-fs-head {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #e3ebe6;
  background: #fff;
}
.shop-fs-head strong { flex: 1; color: #154b34; text-align: center; }
.shop-fs-home,
.shop-fs-cart,
.shop-fs-close {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 36px; padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid #d5e0d9; background: #fff; cursor: pointer;
  font-size: .8rem; color: #1a3326; text-decoration: none;
}
.shop-fs-close {
  width: 36px; height: 36px; padding: 0; justify-content: center;
}
.shop-fs-frame {
  flex: 1 1 auto; width: 100%; border: 0; min-height: 0;
}
body.shop-fs-open { overflow: hidden; }
