/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; }
body {
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ---------- Topbar (sub page) ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  height: 48px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.topbar__btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #222;
}
.topbar__btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.topbar__title {
  flex: 1; text-align: center;
  font-size: 15px; font-weight: 600; letter-spacing: 0.06em;
}

/* ---------- Utility bar ---------- */
.utility {
  display: flex; justify-content: flex-end; gap: 12px;
  padding: 8px 16px;
  font-size: 11px; color: #666;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.utility a { color: #333; }
.utility .point { color: #e84c88; font-weight: 700; margin-left: 3px; }

/* ---------- Header (home) ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: 52px; padding: 0 8px;
  background: #fff; border-bottom: 1px solid #eee;
}
.header__btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.header__btn svg { width: 22px; height: 22px; stroke: #222; fill: none; stroke-width: 1.6; }
.header__logo {
  font-size: 22px; font-weight: 900; letter-spacing: 0.12em;
}
.header__right { display: flex; align-items: center; }
.header__cart { position: relative; }
.header__cart .badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  border-radius: 8px; background: #e84c88; color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

/* ---------- Category nav ---------- */
.nav {
  display: flex; overflow-x: auto;
  border-bottom: 1px solid #eee;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #fff;
  position: sticky; top: 52px; z-index: 45;
}
.nav::-webkit-scrollbar { display: none; }
.nav__item {
  flex-shrink: 0;
  padding: 14px 14px 12px;
  font-size: 13px; font-weight: 700;
  color: #777;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.04em;
}
.nav__item.is-active { color: #111; border-bottom-color: #111; }
.nav__item .tag { color: #e84c88; font-size: 9px; margin-left: 2px; vertical-align: super; font-weight: 700; }

/* ---------- Login ---------- */
.login { padding: 28px 24px 40px; }
.login__status {
  text-align: center; font-size: 13px; color: #666;
  padding: 8px 0 28px;
}
.login__status strong { color: #e84c88; }
.login__form { display: flex; flex-direction: column; gap: 10px; }

.field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fafafa;
  font-size: 14px;
  transition: border-color .15s, background .15s;
}
.field input:focus { outline: none; border-color: #111; background: #fff; }

.check {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #666;
  margin: 6px 2px 12px;
  user-select: none;
}
.check input { width: 16px; height: 16px; accent-color: #111; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 20px;
  border-radius: 2px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.12em;
  transition: opacity .15s;
}
.btn:active { opacity: .7; }
.btn--primary { background: #111; color: #fff; }
.btn--block { width: 100%; }
.btn--line { background: #fff; color: #222; border: 1px solid #222; }

.login__links {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  margin-top: 20px;
  font-size: 12px; color: #555;
}
.login__links a { color: #444; padding: 4px 2px; }
.login__links span { color: #ddd; }
.login__msg { text-align: center; color: #d33; font-size: 12px; min-height: 18px; margin-top: 10px; font-weight: 500; }

.divider {
  position: relative; text-align: center;
  margin: 34px 0 18px;
}
.divider::before {
  content: ''; position: absolute; left: 0; right: 0; top: 50%;
  height: 1px; background: #eee;
}
.divider span {
  position: relative; padding: 0 14px;
  background: #fff; color: #999; font-size: 12px; letter-spacing: 0.04em;
}

.sns { display: flex; flex-direction: column; gap: 8px; }
.sns__btn {
  height: 48px; border-radius: 2px;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  transition: opacity .15s;
}
.sns__btn:active { opacity: .7; }
.sns__btn--kakao    { background: #FEE500; color: #191919; }
.sns__btn--naver    { background: #03C75A; color: #fff; }
.sns__btn--facebook { background: #1877F2; color: #fff; }
.sns__btn--google   { background: #fff;    color: #222; border: 1px solid #ddd; }
.sns__btn--line     { background: #06C755; color: #fff; }
.sns__btn--apple    { background: #000;    color: #fff; }

.guest {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 24px;
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 13px; color: #333;
  font-weight: 500;
}
.guest::after { content: '›'; color: #999; font-size: 16px; }

.secure {
  text-align: center; margin-top: 18px;
  font-size: 11px; color: #999;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* ---------- Bottom tabbar ---------- */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  max-width: 500px; margin: 0 auto;
  height: 58px;
  display: flex;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 40;
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  font-size: 10px; color: #777;
  letter-spacing: 0.04em;
}
.tabbar__item.is-active { color: #111; }
.tabbar__item svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* ---------- Home ---------- */
.hero {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fbe9ef 0%, #f6d6df 50%, #efc6d1 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #8b3a5a;
  position: relative;
}
.hero__tag { font-size: 11px; letter-spacing: 0.3em; font-weight: 700; }
.hero__title { font-size: 28px; font-weight: 800; letter-spacing: 0.08em; margin-top: 12px; }
.hero__sub { font-size: 12px; margin-top: 14px; letter-spacing: 0.1em; opacity: .75; }
.hero__dots {
  position: absolute; bottom: 18px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.hero__dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(139,58,90,0.35); }
.hero__dots span.is-on { background: #8b3a5a; }

.section { padding: 30px 0 6px; }
.section__head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0 16px 16px;
}
.section__title { font-size: 16px; font-weight: 800; letter-spacing: 0.06em; }
.section__sub { font-size: 11px; color: #999; margin-top: 4px; }
.section__more { font-size: 11px; color: #999; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 10px;
  padding: 0 14px 10px;
}
.card__thumb {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #f5f2ef 0%, #ece7e2 100%);
  display: flex; align-items: center; justify-content: center;
  color: #b9aca0; font-size: 11px; letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}
.card__thumb--b { background: linear-gradient(180deg, #e9edf1 0%, #d9dfe5 100%); color: #8a99a7; }
.card__thumb--c { background: linear-gradient(180deg, #f7eef0 0%, #efd9de 100%); color: #b08792; }
.card__thumb--d { background: linear-gradient(180deg, #efeeea 0%, #ddd8cf 100%); color: #a29c8e; }
.card__thumb .ribbon {
  position: absolute; top: 8px; left: 8px;
  padding: 3px 7px; background: #e84c88; color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
  z-index: 2;
}
.card__thumb .ribbon--dark { background: #111; }
.card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.card__heart {
  position: absolute; bottom: 8px; right: 8px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
  z-index: 2;
}
.card__name { font-size: 12px; color: #222; margin-top: 10px; line-height: 1.4; padding: 0 2px; }
.card__price { display: flex; gap: 6px; align-items: baseline; margin-top: 5px; padding: 0 2px; }
.card__price .orig { font-size: 11px; color: #bbb; text-decoration: line-through; }
.card__price .sale { font-size: 14px; color: #111; font-weight: 800; }
.card__price .pct  { font-size: 14px; color: #e84c88; font-weight: 800; }
.card__meta { font-size: 10px; color: #999; margin-top: 5px; padding: 0 2px; display: flex; gap: 8px; }
.card__meta .star { color: #f5a623; }

/* ---------- Band banner ---------- */
.band {
  margin: 20px 0;
  padding: 26px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}
.band__title { font-size: 16px; font-weight: 800; letter-spacing: 0.1em; }
.band__sub { font-size: 12px; margin-top: 8px; opacity: .75; letter-spacing: 0.08em; }

/* ---------- Footer ---------- */
.footer {
  padding: 30px 20px 28px;
  border-top: 8px solid #f5f5f5;
  font-size: 11px; color: #888; line-height: 1.75;
}
.footer__title { font-weight: 700; color: #333; margin-bottom: 6px; font-size: 12px; letter-spacing: 0.04em; }
.footer__cs { font-size: 22px; font-weight: 800; color: #222; letter-spacing: 0.02em; margin: 4px 0 6px; }
.footer__links { display: flex; gap: 12px; flex-wrap: wrap; margin: 14px 0 18px; }
.footer__links a { color: #444; font-weight: 600; font-size: 12px; }
.footer__section { margin-top: 18px; }
.footer__social { display: flex; gap: 12px; margin: 14px 0; }
.footer__social a {
  width: 34px; height: 34px; border: 1px solid #ddd; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #555;
}
.footer__copyright { margin-top: 20px; color: #aaa; letter-spacing: 0.04em; font-size: 10px; }

/* ---------- Myshop ---------- */
.myshop { padding: 16px 16px 30px; }
.myshop__greet {
  padding: 16px 4px 20px;
  font-size: 20px; font-weight: 800; letter-spacing: 0.02em;
}
.myshop__greet small { display: block; font-size: 12px; font-weight: 400; color: #666; margin-top: 6px; letter-spacing: 0; }
.myshop__summary {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid #eee;
  margin-bottom: 22px;
  background: #fff;
}
.myshop__summary > a {
  text-align: center; padding: 18px 0;
  border-right: 1px solid #eee;
  transition: background .15s;
}
.myshop__summary > a:last-child { border-right: 0; }
.myshop__summary > a:active { background: #fafafa; }
.myshop__summary .num { font-size: 20px; font-weight: 800; color: #111; display: block; }
.myshop__summary .lbl { font-size: 11px; color: #888; margin-top: 4px; display: block; letter-spacing: 0.04em; }

.menu-list__section {
  padding: 22px 4px 8px;
  font-size: 12px; color: #999; font-weight: 700; letter-spacing: 0.06em;
}
.menu-list__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 1px solid #f3f3f3;
  font-size: 14px; color: #222;
}
.menu-list__item::after { content: '›'; color: #ccc; font-size: 18px; }
.menu-list__item.is-danger { color: #999; }
.menu-list__item.is-danger::after { color: #ddd; }

/* ---------- Loading / notice ---------- */
.notice {
  margin: 20px 16px; padding: 12px;
  background: #fff9fb; border: 1px solid #ffe0ea; color: #9a3058;
  font-size: 12px; text-align: center; letter-spacing: 0.02em;
}

.empty {
  text-align: center; padding: 60px 20px;
  color: #888; font-size: 13px;
}
.empty .btn { display: inline-flex; padding: 0 32px; }

/* ---------- Sidebar ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 80; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.overlay.is-on { opacity: 1; pointer-events: auto; }

.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 82%; max-width: 340px;
  background: #fff; z-index: 90;
  transform: translateX(-100%); transition: transform .25s ease;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.sidebar.is-on { transform: translateX(0); }
.sidebar__head { padding: 22px 18px 16px; border-bottom: 1px solid #eee; }
.sidebar__hello { font-size: 16px; margin-bottom: 12px; }
.sidebar__hello strong { font-weight: 800; }
.sidebar__nav { padding: 8px 0 30px; }
.sidebar__title {
  padding: 18px 18px 8px;
  font-size: 11px; font-weight: 700; color: #999; letter-spacing: 0.1em;
}
.sidebar__nav a {
  display: block; padding: 13px 18px;
  font-size: 14px; color: #222;
  border-bottom: 1px solid #f4f4f4;
}
.sidebar__nav a:active { background: #fafafa; }

/* ---------- Search modal ---------- */
.search-modal {
  position: fixed; top: 0; left: 0; right: 0;
  max-width: 500px; margin: 0 auto;
  height: 100%;
  background: #fff; z-index: 95;
  transform: translateY(-100%); transition: transform .22s ease;
  display: flex; flex-direction: column;
}
.search-modal.is-on { transform: translateY(0); }
.search-modal__head {
  height: 52px; display: flex; align-items: center; gap: 8px;
  padding: 0 12px; border-bottom: 1px solid #eee;
}
.search-modal__head input {
  flex: 1; height: 40px;
  border: 1px solid #eee; background: #fafafa;
  padding: 0 14px; border-radius: 22px;
  font-size: 14px;
}
.search-modal__head input:focus { outline: none; border-color: #111; background: #fff; }
.search-modal__head button { font-size: 13px; color: #555; padding: 6px 4px; }
.search-modal__body { flex: 1; overflow-y: auto; padding: 8px 12px 80px; }
.search-modal__hint { text-align: center; color: #999; font-size: 13px; padding: 40px 0; }

.search-hit {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 4px; border-bottom: 1px solid #f4f4f4;
}
.search-hit__thumb { width: 54px; height: 72px; flex-shrink: 0; position: relative; overflow: hidden; }
.search-hit__name { font-size: 13px; color: #222; line-height: 1.4; }
.search-hit__price { font-size: 13px; color: #111; font-weight: 700; margin-top: 4px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(17,17,17,0.92); color: #fff;
  padding: 12px 20px; border-radius: 4px;
  font-size: 13px; font-weight: 500;
  z-index: 100; opacity: 0; transition: all .2s;
  max-width: 80%; text-align: center;
}
.toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Heart states ---------- */
.card__heart.is-on { color: #e84c88; }

/* ---------- Product detail ---------- */
.prod { padding-bottom: 80px; }
.prod__thumb {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  color: #b9aca0; position: relative; overflow: hidden;
  background: #f5f2ef;
}
.prod__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.prod__body { padding: 20px 18px 24px; }
.prod__cat { font-size: 11px; color: #999; letter-spacing: 0.08em; text-transform: uppercase; }
.prod__name { font-size: 18px; font-weight: 700; margin-top: 6px; line-height: 1.35; }
.prod__desc { font-size: 13px; color: #555; margin-top: 10px; line-height: 1.6; }
.prod__price { display: flex; gap: 8px; align-items: baseline; margin-top: 16px; }
.prod__price .pct { font-size: 20px; color: #e84c88; font-weight: 800; }
.prod__price .sale { font-size: 20px; color: #111; font-weight: 800; }
.prod__price .orig { font-size: 13px; color: #bbb; text-decoration: line-through; }
.prod__meta { font-size: 12px; color: #666; margin-top: 6px; }
.prod__meta .star, .prod__meta { color: #666; }
.prod__opt {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-top: 1px solid #eee;
  font-size: 13px; color: #333;
}
.prod__opt:first-of-type { margin-top: 20px; }
.prod__opt-label { min-width: 54px; font-weight: 600; color: #111; }
.opts { display: flex; flex-wrap: wrap; gap: 6px; }
.opt {
  padding: 7px 12px; border: 1px solid #ddd; border-radius: 4px;
  background: #fff; font-size: 12px; color: #444; cursor: pointer;
}
.opt.is-on { border-color: #111; background: #111; color: #fff; }
.prod__qty {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 16px;
  border-top: 1px solid #eee;
  font-size: 13px; color: #333;
}
.prod__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0 4px; border-top: 1px solid #eee;
  font-size: 13px; color: #333;
}
.prod__total strong { font-size: 20px; font-weight: 800; color: #111; }
.prod__bar {
  position: fixed; left: 0; right: 0; bottom: 58px;
  max-width: 500px; margin: 0 auto;
  display: flex; gap: 8px; padding: 10px 12px;
  background: #fff; border-top: 1px solid #eee; z-index: 40;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.prod__heart {
  width: 48px; height: 48px; border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #e84c88;
}
.prod__bar .btn { flex: 1; }

/* ---------- Qty control ---------- */
.qty { display: inline-flex; align-items: stretch; border: 1px solid #ddd; height: 34px; }
.qty button { width: 32px; font-size: 16px; color: #333; }
.qty input { width: 42px; text-align: center; border: 0; border-left: 1px solid #eee; border-right: 1px solid #eee; font-size: 13px; }
.qty input:focus { outline: none; }

/* ---------- Cart ---------- */
.cart-item {
  display: flex; gap: 12px;
  padding: 16px 14px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.cart-item__thumb { width: 80px; height: 100px; flex-shrink: 0; position: relative; overflow: hidden; }
.cart-item__body { flex: 1; }
.cart-item__name { font-size: 13px; color: #222; line-height: 1.4; padding-right: 24px; }
.cart-item__price { font-size: 14px; color: #111; font-weight: 700; margin-top: 6px; margin-bottom: 10px; }
.cart-item__x {
  position: absolute; top: 12px; right: 10px;
  width: 30px; height: 30px;
  font-size: 20px; color: #999;
}

.cart-total {
  position: fixed; left: 0; right: 0; bottom: 58px;
  max-width: 500px; margin: 0 auto;
  background: #fff; border-top: 1px solid #eee;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  z-index: 40;
}
.cart-total__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 0; font-size: 13px; color: #555;
}
.cart-total__row strong { font-size: 18px; color: #111; font-weight: 800; }
.cart-total .btn { margin-top: 10px; }

/* ---------- Forms (join / find) ---------- */
.form { padding: 24px 20px 30px; }
.form__row { margin-bottom: 12px; }
.form__label { display: block; font-size: 12px; color: #666; margin-bottom: 6px; font-weight: 500; }
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%; height: 48px;
  padding: 0 14px; background: #fafafa;
  border: 1px solid #ddd; border-radius: 2px;
  font-size: 14px;
}
.form__row textarea { padding: 12px 14px; height: auto; min-height: 100px; resize: vertical; }
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus { outline: none; border-color: #111; background: #fff; }
.form__check { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #333; margin: 14px 0; }
.form__check input { margin-top: 3px; }
.form__msg { min-height: 20px; color: #d33; font-size: 12px; margin: 8px 0; text-align: center; }
.form__hint { font-size: 11px; color: #999; margin-top: 4px; }
.form__tabs { display: flex; border-bottom: 1px solid #eee; }
.form__tabs a {
  flex: 1; text-align: center; padding: 14px 0;
  font-size: 13px; color: #888; font-weight: 600;
  border-bottom: 2px solid transparent;
}
.form__tabs a.is-active { color: #111; border-bottom-color: #111; }

/* ---------- Generic page sections ---------- */
.pageinfo {
  padding: 18px 16px;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}
.pageinfo h2 { font-size: 16px; font-weight: 800; }
.pageinfo p { font-size: 12px; color: #666; margin-top: 4px; }

.order-item {
  padding: 16px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.order-item__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.order-item__no { font-size: 12px; color: #999; }
.order-item__status { font-size: 12px; color: #e84c88; font-weight: 700; }
.order-item__body { display: flex; gap: 10px; }
.order-item__thumb { width: 70px; height: 88px; flex-shrink: 0; }
.order-item__info { flex: 1; font-size: 13px; }
.order-item__info .date { font-size: 11px; color: #888; margin-top: 4px; }

.coupon {
  margin: 10px 14px; padding: 16px;
  border: 1px dashed #e84c88; border-radius: 4px;
  display: flex; justify-content: space-between; align-items: center;
}
.coupon__left strong { font-size: 18px; color: #e84c88; font-weight: 800; }
.coupon__left p { font-size: 12px; color: #555; margin-top: 4px; }
.coupon__left small { font-size: 11px; color: #999; }

.point-box {
  margin: 16px 14px; padding: 22px 18px;
  background: #111; color: #fff; border-radius: 4px;
}
.point-box p { font-size: 12px; opacity: .75; letter-spacing: 0.04em; }
.point-box strong { font-size: 26px; font-weight: 800; display: block; margin-top: 6px; }

.btn--block { width: 100%; }
.btn--lg { height: 52px; font-size: 15px; }

