/**
 * 인터넷/TV 가입 페이지 CSS
 * 제미니최종.html 시안 기반 (2025-12-29)
 */

/* ========================================
   기본 설정
   ======================================== */
.inet-page {
  font-family: Pretendard, 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  background-color: #f8f9fa;
  color: #111;
  padding-bottom: 160px;
  -webkit-tap-highlight-color: transparent;
}

.inet-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .inet-container {
    padding: 40px 24px;
  }
}

/* ========================================
   페이지 헤더
   ======================================== */
.page-header {
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 1024px) {
  .page-header {
    text-align: center;
  }
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 30px;
  }
}

.page-desc {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.page-desc i {
  color: #6b7280;
}

.link-notice {
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* ========================================
   섹션 블록
   ======================================== */
.section-block {
  margin-bottom: 48px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  max-width: 838px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 20px;
  }
}

.section-note {
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af;
  padding-left: 4px;
  max-width: 838px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   슬라이더
   ======================================== */
.slider-wrap {
  position: relative;
  width: 100%;
  max-width: 838px;
  margin: 0 auto;
}

.slider-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px;
}

@media (min-width: 1024px) {
  .slider-container {
    gap: 20px;
  }
}

.hide-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scroll::-webkit-scrollbar {
  display: none;
}

/* 네비게이션 버튼 */
.nav-btn {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover:not(:disabled) {
  background: #f8fafc;
  transform: translateY(-50%) scale(1.05);
}

.nav-btn i {
  color: #2563eb;
  font-size: 14px;
}

/* 네비게이션 버튼 disabled 상태 */
.nav-btn:disabled,
.nav-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.nav-btn:disabled i,
.nav-btn.disabled i {
  color: #9ca3af;
}

.nav-btn.prev {
  left: -10px;
}

.nav-btn.next {
  right: -10px;
}

@media (min-width: 1024px) {
  .nav-btn {
    width: 44px;
    height: 44px;
  }
  .nav-btn.prev {
    left: -60px;
  }
  .nav-btn.next {
    right: -60px;
  }
}

/* ========================================
   카드 - 통신사
   ======================================== */
.telecom-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 162px;
  height: 109px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .telecom-card {
    width: 266px;
    height: 109px;
  }
}

.telecom-card-inner {
  width: 100%;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s;
  box-sizing: border-box;
}

.telecom-card-inner:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 통신사 카드 선택 상태 강화 */
.telecom-card.selected .telecom-card-inner {
  border: 2px solid #2563eb;
  background-color: #eff6ff;
  position: relative;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.telecom-card.selected .telecom-card-inner::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #2563eb;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .telecom-card.selected .telecom-card-inner::after {
    top: 12px;
    right: 12px;
    font-size: 16px;
  }
}

/* 통신사 카드 포커스 상태 (키보드 접근성) */
.telecom-card:focus-visible .telecom-card-inner {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* 선택된 카드 내부 텍스트 선명하게 */
.telecom-card.selected .telecom-name {
  color: #1e40af;
  font-weight: 600;
}

.telecom-logo {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .telecom-logo {
    font-size: 24px;
  }
}

/* 통신사 로고 이미지 */
.telecom-logo-img {
  height: 28px;
  max-width: 100px;
  object-fit: contain;
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .telecom-logo-img {
    height: 36px;
    max-width: 140px;
  }
}

.telecom-name {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

/* 통신사별 컬러 */
.telecom-logo.kt { color: #000; }
.telecom-logo.lg { color: #A50034; }
.telecom-logo.sk { color: #E4002B; }
.telecom-logo.skb { color: #E4002B; }
.telecom-logo.skylife { color: #E4002B; }
.telecom-logo.lghello { color: #A50034; }

/* ========================================
   카드 - 상품 (인터넷/TV)
   ======================================== */
.product-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 162px;
  height: 164px;
  cursor: pointer;
  padding-top: 12px;
}

@media (min-width: 1024px) {
  .product-card {
    width: 266px;
    height: 184px;
    padding-top: 0;
  }
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .product-card-inner {
    padding: 24px;
  }
}

.product-card-inner:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 상품 카드 선택 상태 */
.product-card.selected .product-card-inner {
  border: 2px solid #2563eb;
  background-color: #eff6ff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.product-card.selected .product-card-inner::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #2563eb;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .product-card.selected .product-card-inner::after {
    top: 12px;
    right: 12px;
    font-size: 16px;
  }
}

/* 상품 카드 포커스 상태 */
.product-card:focus-visible .product-card-inner {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* 미제공 상품 카드 */
.product-card.unavailable {
  pointer-events: none;
  opacity: 0.6;
}

.product-card.unavailable .product-card-inner {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.product-card.unavailable .product-price {
  color: #9ca3af;
  font-size: 14px;
}

/* 추천 상품 카드 강조 (선택 시) */
.product-card.recommended.selected .product-card-inner {
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

/* ========================================
   통합 배지 시스템
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* 추천 배지 */
.badge--recommended {
  background: #ef4444;
  color: white;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

/* 기본제공 배지 */
.badge--included {
  background: #d1fae5;
  color: #059669;
  border: 1px solid #6ee7b7;
}

/* 미제공 배지 */
.badge--unavailable {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

/* 미연결 배지 */
.badge--not-connected {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fcd34d;
}

/* 상품 카드 배지 (기존 호환) */
.product-badge {
  position: absolute;
  top: -10px;
  right: 8px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
  z-index: 1;
}

@media (min-width: 1024px) {
  .product-badge {
    top: -10px;
    right: 16px;
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* 미제공 상품 배지 */
.product-badge.badge--unavailable {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #d1d5db;
  box-shadow: none;
}

/* 미연결 상품 배지 */
.product-badge.badge--not-connected {
  background: #fef3c7;
  color: #d97706;
  border: 1px solid #fcd34d;
  box-shadow: none;
}

.product-speed {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .product-speed {
    font-size: 36px;
  }
}

.product-speed .unit {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  margin-left: 2px;
}

@media (min-width: 1024px) {
  .product-speed .unit {
    font-size: 18px;
  }
}

.product-name {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .product-name {
    font-size: 14px;
  }
}

.product-target {
  font-size: 10px;
  color: #9ca3af;
}

@media (min-width: 1024px) {
  .product-target {
    font-size: 14px;
  }
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
  text-align: right;
}

@media (min-width: 1024px) {
  .product-price {
    font-size: 20px;
  }
}

/* ========================================
   옵션 체크박스
   ======================================== */
.option-checkboxes {
  margin-top: 16px;
  display: flex;
  gap: 24px;
  padding-left: 4px;
  max-width: 838px;
  margin-left: auto;
  margin-right: auto;
}

.option-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

@media (min-width: 768px) {
  .option-checkbox {
    font-size: 16px;
  }
}

.option-checkbox:hover {
  color: #111827;
}

.option-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #2563eb;
  border-radius: 4px;
}

/* 옵션 체크박스 disabled 상태 개선 */
.option-checkbox input[type="checkbox"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.option-checkbox:has(input:disabled) {
  cursor: not-allowed;
  color: #6b7280;
}

.option-checkbox:has(input:disabled):hover {
  color: #6b7280;
}

/* 공유기 기본제공 배지 */
.router-included-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 4px;
}

/* ========================================
   가격 영역 레이아웃 안정화
   ======================================== */
/* 가격 텍스트 영역 고정 높이로 점프 방지 */
.final-value {
  min-height: 28px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .final-value {
    min-height: 36px;
  }
}

/* 가격 변경 시 부드러운 전환 */
.final-value,
.gift-mobile span,
.gift-pc span,
.gift-info span,
#base-expanded,
#bundle-expanded,
#base-pc,
#bundle-pc {
  transition: opacity 0.15s ease-out;
}

/* 가격 업데이트 중 상태 */
.price-updating {
  opacity: 0.7;
}

/* ========================================
   필독사항 배너
   ======================================== */
.notice-banner {
  background: #2563eb;
  border-radius: 12px;
  padding: 24px 32px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  transition: background 0.2s;
}

.notice-banner:hover {
  background: #1d4ed8;
}

.banner-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .banner-text h3 {
    font-size: 20px;
  }
}

.banner-text p {
  font-size: 14px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .banner-text p {
    font-size: 16px;
  }
}

.banner-icon {
  font-size: 40px;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .banner-icon {
    font-size: 48px;
  }
}

/* ========================================
   탭 섹션
   ======================================== */
.tab-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin-bottom: 48px;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}

.tab-btn {
  flex: 1;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  background: #f9fafb;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

@media (min-width: 768px) {
  .tab-btn {
    font-size: 16px;
  }
}

.tab-btn.active {
  background: #2563eb;
  color: white;
  font-weight: 700;
}

.tab-content-area {
  padding: 24px;
  min-height: 400px;
}

@media (min-width: 768px) {
  .tab-content-area {
    padding: 40px;
  }
}

/* 탭 컨텐츠 스타일 */
.step-badge {
  display: inline-block;
  background: #2563eb;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.content-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .content-title {
    font-size: 24px;
  }
}

.content-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* 테이블 */
.table-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.custom-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
  border-top: 2px solid #2563eb;
}

@media (min-width: 768px) {
  .custom-table {
    font-size: 16px;
  }
}

.custom-table th {
  background-color: #f9fafb;
  font-weight: 700;
  color: #374151;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px;
}

.custom-table td {
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
  padding: 12px;
  vertical-align: middle;
}

.custom-table th:last-child,
.custom-table td:last-child {
  border-right: none;
}

.custom-table .highlight {
  font-weight: 700;
  color: #111;
}

.custom-table .highlight-row {
  background: rgba(59, 130, 246, 0.05);
}

.badge-green {
  background-color: #28a745;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-top: 2px;
}

/* 체크 리스트 */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.check-item .icon {
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item a {
  color: #2563eb;
  text-decoration: underline;
}

/* ========================================
   후기 섹션
   ======================================== */
.review-section {
  margin-top: 60px;
  margin-bottom: 48px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 4px;
}

.review-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

@media (min-width: 768px) {
  .review-header h3 {
    font-size: 24px;
  }
}

.more-link {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
}

.more-link:hover {
  color: #4b5563;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 32px;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-thumb {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #eee;
}

.review-content {
  flex: 1;
  min-width: 0;
}

.review-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.review-detail {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
  .review-detail {
    -webkit-line-clamp: 2;
  }
}

.review-meta {
  font-size: 11px;
  color: #999;
  margin-bottom: 6px;
}

/* .review-tags 삭제됨 - 인터넷 후기에서 태그 미사용 */

/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  background: transparent;
}

.page-btn.active {
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: bold;
}

.page-btn:hover:not(.active) {
  background-color: #f3f4f6;
}

.page-btn.next-page {
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

/* ========================================
   CTA 섹션
   ======================================== */
.cta-section {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.cta-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .cta-section h3 {
    font-size: 20px;
  }
}

.cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 30px;
  }
}

.cta-section .highlight {
  color: #2563eb;
}

.cta-desc {
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cta-btn.phone {
  background: #eff6ff;
  color: #2563eb;
}

.cta-btn.phone:hover {
  background: #dbeafe;
}

.cta-btn.kakao {
  background: #ffe812;
  color: #3c1e1e;
}

.cta-btn.kakao:hover {
  background: #ebd511;
}

.cta-btn.apply {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-btn.apply:hover {
  background: #1d4ed8;
}

/* ========================================
   하단 플로팅 바 V2 (시안 기반 - 모바일)
   ======================================== */
.floating-bar-v2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .floating-bar-v2 {
    display: none;
  }
}

.floating-bar-v2__container {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  position: relative;
}

/* 토글 핸들 */
.floating-bar-v2__toggle {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
  cursor: pointer;
  border-radius: 23px 23px 0 0;
  -webkit-tap-highlight-color: transparent;
  height: 10px;
}

.floating-bar-v2__toggle:active {
  background: #f9fafb;
}

.floating-bar-v2__chevron {
  width: 20px;
  height: 20px;
  color: #d1d5db;
  transition: transform 0.3s ease;
}

.floating-bar-v2[aria-expanded="true"] .floating-bar-v2__chevron {
  transform: rotate(180deg);
}

/* 펼침 영역 */
.floating-bar-v2__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease-in-out;
  background: rgba(249, 250, 251, 0.5);
}

.floating-bar-v2[aria-expanded="true"] .floating-bar-v2__details {
  max-height: 300px;
  opacity: 1;
}

.floating-bar-v2__details-inner {
  padding: 4px 24px 16px;
  border-bottom: 1px solid #f3f4f6;
}

.floating-bar-v2__details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.floating-bar-v2__gift-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f43f5e;
  font-weight: 700;
  font-size: 15px;
}

.floating-bar-v2__gift-badge i {
  font-size: 14px;
}

.floating-bar-v2__collapse-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

.floating-bar-v2__price-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-bar-v2__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
}

.floating-bar-v2__price-value {
  font-weight: 500;
  color: #111827;
}

.floating-bar-v2__price-row--discount {
  color: #f43f5e;
  font-weight: 500;
}

.floating-bar-v2__price-row--discount span:last-child {
  color: #f43f5e;
}

/* 메인 바 */
.floating-bar-v2__main {
  padding: 8px 20px 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  background: white;
}

.floating-bar-v2__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 13px;
}

.floating-bar-v2__gift-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.floating-bar-v2__gift-info i {
  color: #f43f5e;
  font-size: 13px;
}

.floating-bar-v2__detail-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

.floating-bar-v2__price-display {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.floating-bar-v2__price-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #6b7280;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.floating-bar-v2__price-label .product-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-bar-v2__price-label .product-line .label {
  color: #9ca3af;
}

.floating-bar-v2__price-amount {
  color: #2563eb;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.floating-bar-v2__buttons {
  display: flex;
  gap: 10px;
  height: 52px;
}

.floating-bar-v2__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.floating-bar-v2__btn--outline {
  background: white;
  border: 1.5px solid #2563eb;
  color: #2563eb;
}

.floating-bar-v2__btn--outline:hover {
  background: #eff6ff;
}

.floating-bar-v2__btn--primary {
  background: #2563eb;
  border: none;
  color: white;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
}

.floating-bar-v2__btn--primary:hover {
  background: #1d4ed8;
}

/* ========================================
   플로팅 바 V2 - 모바일 (메인바 고정, 펼침영역 위로)
   핵심: container가 bottom:0 고정이므로 자연스럽게 위로 확장됨
   ======================================== */
@media (max-width: 480px) {
  /* 컨테이너: 고정 높이 제거, 자연스럽게 위로 확장 */
  .floating-bar-v2__container {
    /* height/max-height 제거 - 콘텐츠에 따라 자연 확장 */
    overflow: visible;
  }

  /* 토글 핸들 */
  .floating-bar-v2__toggle {
    padding: 1px 0 4px;
  }

  /* 펼침 영역: 부드러운 확장 애니메이션 */
  .floating-bar-v2__details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.25s ease-out;
  }

  .floating-bar-v2[aria-expanded="true"] .floating-bar-v2__details {
    max-height: 120px; /* 충분한 높이 */
    opacity: 1;
  }

  .floating-bar-v2__details-inner {
    padding: 4px 16px 12px;
    border-bottom: 1px solid #f3f4f6;
  }

  .floating-bar-v2__details-header {
    margin-bottom: 8px;
  }

  .floating-bar-v2__gift-badge {
    font-size: 13px;
  }

  .floating-bar-v2__price-rows {
    gap: 6px;
  }

  .floating-bar-v2__price-row {
    font-size: 13px;
  }

  /* 메인 바: 항상 하단 고정 (컨테이너 bottom:0이므로 뷰포트 하단에 고정) */
  .floating-bar-v2__main {
    padding: 8px 16px 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: white;
  }

  .floating-bar-v2__top-row {
    margin-bottom: 4px;
  }

  .floating-bar-v2__gift-info {
    font-size: 13px;
  }

  .floating-bar-v2__detail-btn {
    font-size: 13px;
  }

  .floating-bar-v2__price-display {
    margin-bottom: 12px;
  }

  .floating-bar-v2__price-label {
    font-size: 11px;
  }

  .floating-bar-v2__price-amount {
    font-size: 16px;
  }

  /* 버튼 영역 */
  .floating-bar-v2__buttons {
    height: 48px;
    gap: 8px;
  }

  .floating-bar-v2__btn {
    font-size: 15px;
  }
}

/* ========================================
   하단 플로팅 바 (PC 전용)
   ======================================== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px -5px rgba(0,0,0,0.1);
  z-index: 100000;
  display: none;
}

@media (min-width: 768px) {
  .bottom-bar {
    display: block;
  }
}

/* 인터넷 페이지: 플로팅바가 모바일 푸터바를 덮도록 */
.inet-page ~ .mobile-bottom-nav {
  z-index: 950;
}

.toggle-handle {
  display: flex;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 24px;
  background: white;
  border-radius: 12px 12px 0 0;
  border: 1px solid #e5e7eb;
  border-bottom: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .toggle-handle {
    display: none;
  }
}

.toggle-handle i {
  color: #9ca3af;
  font-size: 12px;
  transition: transform 0.3s;
}

.bottom-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
}

/* 확장 영역 */
.expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0 20px;
  background: #f9fafb;
}

.expanded-content.open {
  max-height: 400px;
  border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .expanded-content {
    display: none;
  }
}

.expanded-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-bottom: 12px;
}

.gift-info {
  color: #ef4444;
  font-weight: 700;
  font-size: 16px;
}

.gift-info i {
  margin-right: 4px;
}

.collapse-btn {
  font-size: 12px;
  color: #2563eb;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
}

.price-details {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 8px;
}

.price-row span:last-child {
  font-weight: 500;
  color: #1f2937;
}

.price-row.discount {
  color: #ef4444;
}

.price-row.discount span:last-child {
  color: #ef4444;
  font-weight: 600;
}

/* 메인 바 */
.bar-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 12px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .bar-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 20px;
  }
}

/* PC 플로팅바 선택 상품 표시 */
.selected-products-pc {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  min-width: 280px;
  flex: 1;
}

.selected-products-pc .product-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selected-products-pc .product-line .label {
  color: #6b7280;
  font-weight: 500;
}

.price-area {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.price-area .final-price {
  margin-left: auto;
  text-align: right;
}

/* 모바일 가격: 접힌 상태 */
.mobile-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .mobile-price {
    display: none;
  }
}

/* 선택 상품 요약 */
.selected-summary {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.summary-product {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.summary-plan {
  font-size: 11px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 모바일 금액 정보 */
.mobile-price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
}

.gift-mobile {
  color: #ef4444;
  font-weight: 600;
  font-size: 12px;
}

.final-mobile {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

.detail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f3f4f6;
  border-radius: 6px;
  color: #6b7280;
  cursor: pointer;
  flex-shrink: 0;
}

.detail-toggle i {
  font-size: 10px;
  transition: transform 0.3s;
}

.bottom-bar.expanded .detail-toggle i {
  transform: rotate(180deg);
}

/* PC 가격 */
.pc-price {
  display: none;
}

@media (min-width: 768px) {
  .pc-price {
    display: block;
  }
}

.gift-pc {
  color: #ef4444;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.price-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 4px;
}

.price-summary .divider {
  width: 1px;
  height: 16px;
  background: #d1d5db;
}

/* 최종 가격 */
.final-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .final-price {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

.final-label {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

@media (min-width: 768px) {
  .final-label {
    font-size: 20px;
  }
}

.final-label .mobile-label {
  display: inline;
}

.final-label .pc-label {
  display: none;
}

@media (min-width: 768px) {
  .final-label .mobile-label {
    display: none;
  }
  .final-label .pc-label {
    display: inline;
  }
}

.final-label small {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 4px;
}

@media (min-width: 768px) {
  .final-label small {
    font-size: 14px;
  }
}

.final-value {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .final-value {
    font-size: 30px;
    margin-top: 0;
  }
}

/* 버튼 영역 */
.btn-area {
  display: flex;
  gap: 8px;
  height: 44px;
}

@media (min-width: 768px) {
  .btn-area {
    height: 56px;
    flex-shrink: 0;
  }
}

.bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .bar-btn {
    flex: none;
    width: 160px;
    font-size: 16px;
  }
}

.bar-btn.outline {
  background: white;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.bar-btn.outline:hover {
  background: #eff6ff;
}

.bar-btn.primary {
  background: #2563eb;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.bar-btn.primary:hover {
  background: #1d4ed8;
}

@media (min-width: 768px) {
  .bar-btn.primary {
    width: 192px;
  }
}

/* ========================================
   신청 모달
   ======================================== */
.apply-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
}

.apply-modal.open {
  display: block;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(75, 85, 99, 0.75);
}

.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 512px;
  max-height: calc(100vh - 124px - 108px - 64px);
  overflow-y: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 640px) {
  .modal-header {
    padding: 12px 24px;
  }
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.modal-header h3 i {
  color: #2563eb;
  margin-right: 8px;
}

.close-btn {
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #4b5563;
}

.modal-body {
  padding: 16px;
}

@media (min-width: 640px) {
  .modal-body {
    padding: 24px;
  }
}

/* 선택 정보 */
.selected-info {
  background: #eff6ff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid #dbeafe;
}

.selected-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.selected-info h4 i {
  color: #2563eb;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #dbeafe;
  margin-bottom: 8px;
}

.info-row .telecom-name {
  font-weight: 700;
  color: #4b5563;
}

.product-info {
  text-align: right;
  font-weight: 700;
  color: #111827;
}

.product-info div {
  margin-bottom: 2px;
}

.info-details {
  padding-top: 8px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.detail-row.discount {
  color: #ef4444;
}

.info-total {
  border-top: 1px solid #bfdbfe;
  margin-top: 8px;
  padding-top: 8px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.total-row span:first-child {
  font-weight: 700;
  color: #1f2937;
}

.total-price {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

.gift-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #dbeafe;
}

.gift-row span:first-child {
  font-size: 12px;
  font-weight: 700;
  color: #4b5563;
}

.gift-row span:first-child i {
  color: #ef4444;
  margin-right: 4px;
}

.gift-amount {
  font-size: 16px;
  font-weight: 700;
  color: #ef4444;
}

/* 신청 폼 */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: #f9fafb;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.submit-btn {
  margin-top: 8px;
  width: 100%;
  padding: 12px;
  background: #2563eb;
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #1d4ed8;
}

/* ========================================
   전체요금표 (Pricing Table) 스타일 - 아정당 스타일
   ======================================== */
.pricing-table-section {
  margin-bottom: 32px;
}

.pricing-table-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #4183ed;
}

.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* 모바일 스크롤 힌트 */
.pricing-table-scroll-hint {
  display: none;
  padding: 8px 12px;
  background: #f0f7ff;
  color: #4183ed;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-table-scroll-hint i {
  margin-right: 6px;
}

.pricing-table {
  width: 100%;
  min-width: 750px;
  border-collapse: collapse;
  font-size: 14px;
}

/* 헤더 1행: 메인 헤더 (회색 배경) */
.pricing-table thead tr:first-child th {
  background: #4b5563;
  color: #fff;
  font-weight: 600;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid #374151;
  white-space: nowrap;
}

/* 헤더 2행: 서브 헤더 (요금/사은품) */
.pricing-table thead tr.sub-header th {
  background: #6b7280;
  color: #fff;
  font-weight: 500;
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #6b7280;
}

/* 바디 셀 */
.pricing-table tbody td {
  padding: 12px 10px;
  text-align: center;
  border: 1px solid #e5e7eb;
  vertical-align: middle;
}

.pricing-table tbody tr:nth-child(4n+3),
.pricing-table tbody tr:nth-child(4n+4) {
  background-color: #f9fafb;
}

.pricing-table tbody tr:hover {
  background-color: #f0f7ff;
}

/* 상품명 컬럼 */
.pricing-table .col-product {
  text-align: center;
  font-weight: 600;
  min-width: 160px;
  background: #f8fafc;
  color: #1f2937;
  padding: 12px 8px;
  line-height: 1.5;
}

.pricing-table .col-product .product-name {
  display: block;
  margin-bottom: 4px;
}

/* 채널 뱃지 (빨간 테두리) */
.pricing-table .col-product .badge {
  display: inline-block;
  background: transparent;
  color: #ef4444;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #ef4444;
  margin-top: 4px;
}

/* 결합 유형 컬럼 */
.pricing-table .col-bundle {
  min-width: 90px;
  font-weight: 500;
  color: #374151;
  background: #fafafa;
}

/* 요금 컬럼 */
.pricing-table .col-fee {
  min-width: 80px;
  color: #111827;
  font-weight: 600;
}

/* 사은품 컬럼 (분홍색) */
.pricing-table .col-benefit {
  min-width: 70px;
  color: #ec4899;
  font-weight: 700;
}

/* 빈 셀 스타일 */
.pricing-table .col-fee.empty,
.pricing-table .col-benefit.empty {
  color: #9ca3af;
  font-weight: 400;
}

/* 관리자 탭 콘텐츠 (요금표 아래) */
.admin-tab-content {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

/* 반응형 - 모바일 */
@media (max-width: 767px) {
  .pricing-table-scroll-hint {
    display: block;
  }

  .pricing-table-wrapper {
    margin: 0 -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .pricing-table {
    font-size: 13px;
    min-width: 680px;
  }

  .pricing-table thead tr:first-child th {
    padding: 12px 6px;
    font-size: 13px;
  }

  .pricing-table thead tr.sub-header th {
    padding: 8px 4px;
    font-size: 12px;
  }

  .pricing-table tbody td {
    padding: 10px 6px;
  }

  .pricing-table .col-product {
    min-width: 120px;
    font-size: 12px;
  }

  .pricing-table .col-product .badge {
    font-size: 10px;
    padding: 1px 5px;
  }

  .pricing-table .col-bundle {
    min-width: 70px;
    font-size: 12px;
  }

  .pricing-table .col-fee,
  .pricing-table .col-benefit {
    min-width: 55px;
    font-size: 12px;
  }

  .pricing-table-title {
    font-size: 18px;
  }
}

/* ========================================
   요금표 셀 클릭 연동 스타일
   ======================================== */
.pricing-table td.clickable {
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.pricing-table td.clickable:hover {
  background: #e3f2fd !important;
  box-shadow: inset 0 0 0 2px #4183ed;
}

.pricing-table td.clickable:active {
  background: #bbdefb !important;
}

/* 연결된 셀 (linked) - 진한 파란색 강조 */
.pricing-table td.clickable.linked {
  background: #f0f7ff;
}

/* 미연결 셀 (unlinked) - 연한 회색 배경 */
.pricing-table td.clickable.unlinked {
  background: #f8f9fa;
  color: #888;
}

.pricing-table td.clickable.unlinked:hover {
  background: #fff3cd !important;
  box-shadow: inset 0 0 0 2px #ffc107;
}

/* ========================================
   토스트 메시지 스타일
   ======================================== */
.internet-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #333;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10000;
  max-width: 90%;
}

.internet-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.internet-toast i {
  font-size: 18px;
}

.internet-toast.toast-success {
  background: #2e7d32;
}

.internet-toast.toast-success i {
  color: #a5d6a7;
}

.internet-toast.toast-warning {
  background: #f57c00;
}

.internet-toast.toast-warning i {
  color: #ffe0b2;
}

.internet-toast.toast-error {
  background: #c62828;
}

.internet-toast.toast-error i {
  color: #ffcdd2;
}

.internet-toast.toast-info {
  background: #1565c0;
}

.internet-toast.toast-info i {
  color: #bbdefb;
}

@media (max-width: 767px) {
  .internet-toast {
    bottom: 80px;
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* ========================================
   실시간 신청현황 섹션
   ======================================== */
.request-status-section {
  margin-top: 60px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.request-status-header {
  text-align: center;
  margin-bottom: 28px;
}

.request-status-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.request-status-header p {
  font-size: 14px;
  color: #6b7280;
}

/* 테이블 컨테이너 */
.request-status-table-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.request-status-table-container {
  max-height: 400px;
  overflow-y: auto;
}

/* 테이블 스타일 */
.request-status-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.request-status-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.request-status-table th {
  background: #f3f4f6;
  color: #374151;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

.request-status-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.request-status-table tbody tr:hover {
  background: #f9fafb;
}

.request-status-table tbody tr:last-child td {
  border-bottom: none;
}

/* 날짜 셀 */
.date-cell {
  color: #6b7280;
  font-size: 13px;
  white-space: nowrap;
}

/* 상품 셀 */
.product-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* 통신사 배지 */
.provider-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.provider-kt {
  background: #000;
  color: #fff;
}

.provider-sk {
  background: #e60012;
  color: #fff;
}

.provider-lg {
  background: #ec008c;
  color: #fff;
}

.provider-hellovision {
  background: #ff5722;
  color: #fff;
}

.provider-etc {
  background: #9ca3af;
  color: #fff;
}

/* 상품 텍스트 */
.product-text {
  color: #374151;
}

/* NEW 배지 */
.new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
}

/* 이름 셀 */
.name-cell {
  color: #374151;
  font-weight: 500;
}

/* 상태 배지 */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.status-received,
.status-접수완료 {
  background: #dbeafe;
  color: #1d4ed8;
}

.status-consulting,
.status-상담중 {
  background: #fef3c7;
  color: #d97706;
}

.status-scheduled,
.status-설치예정 {
  background: #e0e7ff;
  color: #4338ca;
}

.status-installed,
.status-설치완료,
.status-completed,
.status-개통완료 {
  background: #d1fae5;
  color: #059669;
}

.status-cancelled,
.status-취소 {
  background: #fee2e2;
  color: #dc2626;
}

/* Empty 상태 */
.request-status-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}

.request-status-empty i {
  font-size: 48px;
  margin-bottom: 16px;
}

.request-status-empty p {
  font-size: 15px;
}

/* 롤링 애니메이션 */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.request-status-table-container.rolling tbody {
  animation: scrollUp 20s linear infinite;
}

.request-status-table-container.rolling:hover tbody {
  animation-play-state: paused;
}

/* 모바일 반응형 */
@media (max-width: 767px) {
  .request-status-section {
    padding: 20px 12px;
    margin-top: 40px;
    border-radius: 12px;
  }

  .request-status-header h3 {
    font-size: 18px;
  }

  .request-status-table {
    font-size: 11px;
  }

  .request-status-table th,
  .request-status-table td {
    padding: 8px 6px;
    white-space: nowrap;
  }

  .request-status-table th {
    font-size: 10px;
  }

  .date-cell {
    font-size: 10px;
  }

  .product-cell {
    gap: 4px;
  }

  .product-cell .product-text {
    display: none;
  }

  .product-cell .new-badge {
    display: none;
  }

  .provider-badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .name-cell {
    font-size: 11px;
  }

  .status-badge {
    font-size: 10px;
    padding: 3px 8px;
  }
}
