/* Enbowl 앱 다운로드 버튼 공통 스타일 (브랜드 주황 #FF7200) */

/* 헤더(nav)용 단일 다운로드 알약 버튼 */
.nav-app-dl {
  display: inline-flex; align-items: center; justify-content: center;
  background: #FF7200; color: #fff !important;
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 700; line-height: 1; white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}
.nav-app-dl:hover { background: #E55F00; transform: translateY(-1px); }

/* 스토어 버튼 묶음(데스크톱=2개 나란히, 모바일=1개) */
.app-dl { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; vertical-align: middle; }
.app-dl .app-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF7200; color: #fff !important;
  padding: 14px 26px; border-radius: 100px;
  font-size: 15px; font-weight: 700; line-height: 1; white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}
.app-dl .app-btn:hover { background: #E55F00; transform: translateY(-2px); }
.app-dl .app-btn svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* 히어로 영역용 소형 변형 */
.hero-app-dl { margin-top: 12px; }
.hero-app-dl .app-btn { padding: 11px 18px; font-size: 13px; }

/* 볼 상세 모달 하단 CTA */
.modal-app-cta { padding: 22px 24px 4px; text-align: center; }
.modal-app-cta p { font-size: 13px; color: #888; margin-bottom: 14px; font-weight: 600; line-height: 1.5; }
