/* 방문상담 사은품 안내 팝업 — 인라인 style 없이 동작 (CSP 유지) */
.promo-modal { position: fixed; inset: 0; z-index: 9999; display: none;
  align-items: center; justify-content: center; padding: 16px;
  background: rgba(10, 14, 24, .64); }
.promo-modal.is-open { display: flex; }
body.promo-open { overflow: hidden; }

.promo-box { position: relative; width: 100%; max-width: 440px; background: #fff;
  border-radius: 16px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.35);
  animation: promo-in .22s ease-out; }
@keyframes promo-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

.promo-link { display: block; line-height: 0; }
.promo-link img { display: block; width: 100%; height: auto; }

.promo-x { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(21, 24, 28, .10); border-radius: 50%; background: #fff; color: #1d2430;
  font-size: 17px; font-weight: 700; line-height: 1; cursor: pointer; padding: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .30); }
.promo-x:hover { background: #f1f3f6; }
.promo-x:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

.promo-foot { display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  justify-content: space-between; padding: 12px 14px; border-top: 1px solid #eceae6; }
.promo-today { border: 0; background: none; color: #6b6b72; font-size: 14px;
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
  min-height: 44px; padding: 0 4px; font-family: inherit; }
.promo-today:hover { color: #33333a; }
.promo-cta { display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 20px; border-radius: 10px;
  background: #17283e; color: #fff; font-weight: 700; font-size: 15px;
  text-decoration: none; font-family: inherit; }
.promo-cta:hover { background: #0b1220; }
.promo-cta:focus-visible, .promo-today:focus-visible { outline: 3px solid #c9a24b; outline-offset: 2px; }

@media (max-width: 400px) {
  .promo-modal { padding: 12px; }
  .promo-foot { padding: 10px 12px; gap: 8px; }
  .promo-today { font-size: 13px; }
  .promo-cta { flex: 1 1 auto; padding: 0 14px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) { .promo-box { animation: none; } }

/* 여러 장 넘기기 */
.promo-slides { position: relative; background: #fff; }
.promo-nav { display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 10px 0 2px; }
.promo-nav[hidden] { display: none; }
.promo-arrow { width: 34px; height: 34px; border: 1px solid #dcdfe4; border-radius: 50%;
  background: #fff; color: #3a4250; font-size: 18px; line-height: 1; cursor: pointer;
  padding: 0; display: flex; align-items: center; justify-content: center; font-family: inherit; }
.promo-arrow:hover { background: #f1f3f6; color: #0b1220; }
.promo-arrow:focus-visible { outline: 3px solid #c9a24b; outline-offset: 2px; }
.promo-count { font: 700 14px 'Noto Sans KR', sans-serif; color: #6b6b72; min-width: 46px;
  text-align: center; }
.promo-count b { color: #17283e; }
