/* === CruiseLink Global Styles === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

:root {
  --navy: #1a237e;
  --navy-light: #283593;
  --navy-dark: #0d1642;
  --orange: #ff6f00;
  --orange-hover: #e65100;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-500: #9e9e9e;
  --gray-700: #616161;
  --gray-900: #212121;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans KR', -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--radius); font-weight: 700;
  font-size: 15px; border: none; cursor: pointer; transition: all .2s;
  text-decoration: none; gap: 8px;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hover); color: var(--white); transform: translateY(-1px); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-kakao { background: #FEE500; color: #191919; }
.btn-kakao:hover { background: #FADA0A; color: #191919; }

/* === Header === */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 70px;
}
.logo { font-size: 24px; font-weight: 900; color: var(--navy); }
.logo span { color: var(--orange); }
.nav-menu { display: flex; gap: 28px; align-items: center; }
.nav-menu a { font-weight: 500; font-size: 15px; color: var(--gray-900); position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.header-phone { font-weight: 700; color: var(--navy); font-size: 16px; }

.mobile-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; }

@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; border-bottom: 2px solid var(--navy); gap: 16px; }
  .nav-menu.open { display: flex; }
  .mobile-toggle { display: block; }
  .header-cta .btn { display: none; }
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white); padding: 80px 0; position: relative; overflow: hidden;
  min-height: 480px; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('') center/cover; opacity: 0.15;
}
.hero-content { position: relative; z-index: 1; text-align: center; width: 100%; }
.hero h1 { font-size: 42px; font-weight: 900; margin-bottom: 16px; line-height: 1.3; }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
.hero .btn { margin: 0 8px; }

@media (max-width: 768px) {
  .hero { padding: 50px 0; min-height: 360px; }
  .hero h1 { font-size: 28px; }
}

/* === Search Filter Bar === */
.filter-bar {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 24px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end;
  margin: -40px auto 40px; position: relative; z-index: 10;
  max-width: var(--max-width);
}
.filter-bar .filter-group { flex: 1; min-width: 150px; }
.filter-bar label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-700); margin-bottom: 4px; text-transform: uppercase; }
.filter-bar select, .filter-bar input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--gray-300);
  border-radius: 6px; font-size: 14px; font-family: inherit;
  background: var(--white); appearance: auto;
}
.filter-bar .btn { min-width: 100px; height: 42px; }

@media (max-width: 768px) {
  .filter-bar { margin: -20px 16px 20px; flex-direction: column; }
  .filter-bar .filter-group { min-width: 100%; }
}

/* === Section === */
.section { padding: 60px 0; }
.section-alt { background: var(--gray-50); }
.section-title { font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.section-subtitle { font-size: 16px; color: var(--gray-700); margin-bottom: 32px; }

/* Itinerary summary route */
.itinerary-summary {
  background: var(--gray-50, #f5f5f5); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 32px;
  border: none;
}
.itinerary-summary-inner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.itinerary-route {
  font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 40px; }

/* === Cruise List View === */
.cruise-list { display: flex; flex-direction: column; gap: 16px; }

.cruise-item {
  display: flex; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: all .2s;
  border: 2px solid #cfd8dc; height: 280px;
}
.cruise-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--navy); }

.cruise-item-image {
  width: 280px; flex-shrink: 0; align-self: stretch;
  background: var(--navy-light); position: relative; overflow: hidden;
}
.cruise-item-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cruise-item-image .placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); font-size: 40px;
}

.cruise-item-body { flex: 1; padding: 16px 20px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.cruise-item-meta { font-size: 14px; color: var(--gray-700); margin-bottom: 4px; }
.cruise-item-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.cruise-item-title a { color: inherit; }
.cruise-item-title a:hover { color: var(--orange); }
.cruise-item-ports { font-size: 14px; color: var(--gray-700); margin-bottom: 12px; }
.cruise-item-footer { display: flex; flex-direction: column; gap: 12px; }
.cruise-item-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.cruise-item-info { display: flex; gap: 16px; font-size: 15px; color: var(--gray-700); }
.cruise-item-price { font-size: 26px; font-weight: 900; color: var(--orange); }
.cruise-item-price small { font-size: 14px; font-weight: 400; color: var(--gray-700); }
.cruise-item-hashtags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.hashtag {
  font-size: 12px; color: var(--navy); background: #e8eaf6;
  padding: 3px 10px; border-radius: 12px; font-weight: 600;
  white-space: nowrap;
}
.cruise-item-actions { display: flex; gap: 8px; justify-content: flex-end; }
.cruise-item .tag {
  display: inline-block; padding: 5px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 700; margin-right: 4px; text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.tag-추천 { background: var(--orange); color: var(--white); }
.tag-인기 { background: #e53935; color: var(--white); }
.tag-특가 { background: #43a047; color: var(--white); }
.tag-라스트미닛 { background: #8e24aa; color: var(--white); }
.tag-신규 { background: var(--navy); color: var(--white); }

@media (max-width: 768px) {
  .cruise-item { flex-direction: column; height: auto; }
  .cruise-item-image { width: 100%; height: 180px; }
  .cruise-item-footer { flex-direction: column; align-items: flex-start; }
  .cruise-item-actions { width: 100%; }
  .cruise-item-actions a,
  .cruise-item-actions button { flex: 1; text-align: center; justify-content: center; }
}

/* === Cruise Cards (for featured grid) === */
.cruise-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.cruise-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: all .2s;
  border: 2px solid #cfd8dc;
}
.cruise-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--navy); }
.cruise-card-image { height: 200px; overflow: hidden; position: relative; }
.cruise-card-image img { width: 100%; height: 100%; object-fit: cover; }
.cruise-card-image .placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); font-size: 48px;
}
.cruise-card-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 4px; flex-wrap: wrap; }
.cruise-card-tags .tag { font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 6px; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.tag-한국출발 { background: #1a237e; color: #fff; }
.cruise-card-body { padding: 20px; }
.cruise-card-meta { font-size: 12px; color: var(--gray-700); margin-bottom: 4px; }
.cruise-card-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.cruise-card-ports { font-size: 13px; color: var(--gray-700); margin-bottom: 12px; }
.cruise-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.cruise-card-price { font-size: 20px; font-weight: 900; color: var(--orange); }
.cruise-card-price small { font-size: 12px; color: var(--gray-700); font-weight: 400; }

/* === Destination Grid === */
.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
@media (max-width: 1024px) { .dest-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
.dest-card {
  text-align: center; padding: 40px 16px 32px; border-radius: var(--radius);
  background: var(--white); transition: all .2s; text-decoration: none;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.dest-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.12); transform: translateY(-4px); border-color: var(--navy); }
.dest-card .icon { font-size: 56px; margin-bottom: 16px; display: block; }
.dest-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.dest-card p { font-size: 13px; color: var(--gray-700); line-height: 1.4; }

/* Destination Card Slide (slider version) */
.dest-card-slide {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; text-decoration: none;
  min-width: 160px; padding: 28px 20px; margin-bottom: 8px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #e0e0e0; box-shadow: 0 2px 8px rgba(0,0,0,.06);
  flex-shrink: 0; transition: all .2s;
}
.dest-card-slide:hover { box-shadow: 0 6px 18px rgba(0,0,0,.12); transform: translateY(-5px); border-color: var(--navy); }
.dest-card-slide:last-child { margin-right: 20px; }
.dest-card-slide .icon { font-size: 48px; margin-bottom: 10px; display: block; }
.dest-card-slide h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.dest-card-slide p { font-size: 12px; color: var(--gray-700); }

/* === Promo Slider === */
.promo-slider { position: relative; overflow: hidden; border-radius: var(--radius); }
.promo-slides { display: flex; transition: transform .5s ease; }
.promo-slide {
  min-width: 100%; padding: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); min-height: 240px;
}
.promo-slide h3 { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.promo-slide p { font-size: 16px; opacity: 0.9; margin-bottom: 20px; }
.promo-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.promo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); cursor: pointer; border: none; }
.promo-dot.active { background: var(--orange); }

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white); padding: 60px 0; text-align: center;
}
.cta-section h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: nowrap; }
.cta-buttons .btn { flex: 1; max-width: 220px; min-width: 0; text-align: center; padding: 16px 12px; font-size: 15px; }
@media (max-width: 768px) {
  .cta-buttons { flex-wrap: nowrap; gap: 8px; }
  .cta-buttons .btn { padding: 12px 8px; font-size: 13px; max-width: none; }
}

/* === Detail Page === */
.detail-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white); padding: 60px 0;
}
.detail-hero h1 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.detail-hero .meta { font-size: 16px; opacity: 0.9; margin-bottom: 20px; }

.info-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--gray-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); margin: -30px auto 40px;
  position: relative; z-index: 10;
}
.info-bar-item { background: var(--white); padding: 20px; text-align: center; }
.info-bar-item .label { font-size: 12px; color: var(--gray-500); margin-bottom: 4px; }
.info-bar-item .value { font-size: 16px; font-weight: 700; color: var(--navy); }

/* === Timeline === */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 3px; background: var(--navy);
}
.timeline-day { position: relative; margin-bottom: 32px; }
.timeline-day::before {
  content: ''; position: absolute; left: -31px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy);
}
.timeline-day h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-day .port { font-size: 15px; color: var(--gray-700); margin-bottom: 4px; }
.timeline-day .time { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.timeline-day .desc { font-size: 14px; line-height: 1.7; }
.timeline-day .tours { margin-top: 8px; padding: 12px; background: var(--gray-50); border-radius: 6px; font-size: 13px; }

/* === Cabin Table === */
.cabin-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.cabin-table th { background: var(--navy); color: var(--white); padding: 14px; font-size: 14px; }
.cabin-table td { padding: 14px; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.cabin-table tr:hover { background: var(--gray-50); }
.cabin-table .price-cell { font-weight: 700; color: var(--orange); font-size: 16px; }

/* === Inclusions === */
.inclusions { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inclusion-list h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.inclusion-list.included h3 { color: #2e7d32; }
.inclusion-list.excluded h3 { color: #c62828; }
.inclusion-list li { padding: 6px 0; font-size: 14px; padding-left: 24px; position: relative; }
.inclusion-list.included li::before { content: '✓'; position: absolute; left: 0; color: #2e7d32; font-weight: 700; }
.inclusion-list.excluded li::before { content: '✗'; position: absolute; left: 0; color: #c62828; font-weight: 700; }

@media (max-width: 768px) {
  .inclusions { grid-template-columns: 1fr; }
}

/* === Sort/Filter Controls === */
.list-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.sort-select { padding: 8px 12px; border: 1px solid var(--gray-300); border-radius: 6px; font-family: inherit; font-size: 14px; }
.result-count { font-size: 14px; color: var(--gray-700); }

/* === Inquiry Modal === */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1000; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 12px; max-width: 500px; width: 90%;
  max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.modal-header h2 { font-size: 20px; font-weight: 700; }
.modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray-700); }
.modal-body { padding: 24px; }
.modal-product-info { background: var(--gray-50); padding: 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.modal-product-info strong { color: var(--navy); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group label .req { color: #e53935; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--gray-300);
  border-radius: 6px; font-family: inherit; font-size: 14px;
}
.form-group textarea { resize: vertical; min-height: 80px; }

.privacy-section { margin: 16px 0; }
.privacy-check { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; }
.privacy-check input { margin-top: 3px; }
.privacy-toggle { background: none; border: none; color: var(--navy); font-size: 13px; cursor: pointer; text-decoration: underline; }
.privacy-detail { display: none; background: var(--gray-50); padding: 12px; border-radius: 6px; font-size: 12px; color: var(--gray-700); margin-top: 8px; line-height: 1.8; }
.privacy-detail.open { display: block; }

.modal-footer { padding: 0 24px 24px; }
.modal-footer .btn { width: 100%; }

.form-status { padding: 12px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; display: none; }
.form-status.success { display: block; background: #e8f5e9; color: #2e7d32; }
.form-status.error { display: block; background: #ffebee; color: #c62828; }

/* === Footer === */
.site-footer { background: var(--navy-dark); color: var(--white); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.footer-section a { color: rgba(255,255,255,0.7); font-size: 14px; display: block; margin-bottom: 8px; }
.footer-section a:hover { color: var(--orange); }
.footer-section p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* === About / Contact Pages === */
.page-header { background: var(--navy); color: var(--white); padding: 48px 0; text-align: center; }
.page-header h1 { font-size: 32px; font-weight: 900; }
.page-content { padding: 48px 0; }
.page-content h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 32px 0 16px; }
.page-content p { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { background: var(--gray-50); padding: 24px; border-radius: var(--radius); }
.contact-info-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; }
.contact-info-item .icon { font-size: 20px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* === Deals Page === */
.deals-banner { background: linear-gradient(135deg, #e65100, var(--orange)); color: var(--white); padding: 32px; border-radius: var(--radius); text-align: center; margin-bottom: 32px; }
.deals-banner h2 { font-size: 28px; font-weight: 900; }

/* === Ship Specs === */
.ship-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 20px 0; }
.ship-spec { background: var(--gray-50); padding: 16px; border-radius: 8px; text-align: center; }
.ship-spec .label { font-size: 12px; color: var(--gray-500); }
.ship-spec .value { font-size: 18px; font-weight: 700; color: var(--navy); }

/* === Utilities === */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* === No Results === */
.no-results { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.no-results .icon { font-size: 48px; margin-bottom: 16px; }

/* === Blog placeholder === */
.blog-coming-soon { text-align: center; padding: 80px 20px; }

/* Card link */
.cruise-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.cruise-card-link:hover { color: inherit; }
.cruise-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

/* Detail page styles */
.detail-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #283593 100%);
  color: white;
  padding: 60px 0;
}
.detail-hero h1 { font-size: 2rem; margin-bottom: 12px; }
.detail-hero .meta { font-size: 15px; opacity: 0.9; }

.info-bar {
  display: flex;
  justify-content: space-around;
  background: var(--gray-50);
  border-radius: 12px;
  padding: 20px;
  margin: -30px 0 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.info-bar-item { text-align: center; }
.info-bar-item .label { font-size: 12px; color: var(--gray-600); margin-bottom: 4px; }
.info-bar-item .value { font-size: 16px; font-weight: 700; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--navy);
  border-radius: 3px;
}
.timeline-day {
  position: relative;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: 12px;
}
.timeline-day::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--navy);
}
.timeline-day h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.timeline-day .port { font-weight: 700; color: var(--navy-light, #283593); margin-bottom: 4px; }
.timeline-day .time { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
.timeline-day .desc { font-size: 14px; line-height: 1.7; color: var(--gray-700, #616161); }
.timeline-day .tours { margin-top: 8px; font-size: 13px; color: var(--navy); font-weight: 600; }

.ship-specs {
  display: flex;
  gap: 40px;
  margin-top: 16px;
}
.ship-spec { text-align: center; }
.ship-spec .label { font-size: 13px; color: var(--gray-600); }
.ship-spec .value { font-size: 20px; font-weight: 800; color: var(--navy); }

.cabin-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.cabin-table th { background: var(--navy); color: white; padding: 12px 16px; text-align: left; }
.cabin-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200, #eee); }
.price-cell { font-weight: 800; color: var(--orange); font-size: 18px; }

.inclusions { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.inclusion-list h3 { margin-bottom: 12px; }
.inclusion-list ul { list-style: none; padding: 0; }
.inclusion-list li { padding: 6px 0; font-size: 14px; padding-left: 28px; position: relative; }
.included li::before { content: "✅"; position: absolute; left: 0; }
.excluded li::before { content: "❌"; position: absolute; left: 0; }

.section-alt { background: var(--gray-50); }

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #283593 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}
.cta-section h2 { font-size: 1.6rem; margin-bottom: 12px; }
.cta-section p { opacity: 0.9; margin-bottom: 24px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-kakao { background: #fee500; color: #3c1e1e; }
.btn-kakao:hover { background: #fdd835; }

@media (max-width: 768px) {
  .info-bar { flex-direction: column; gap: 12px; margin-top: -20px; }
  .inclusions { grid-template-columns: 1fr; }
  .ship-specs { flex-direction: column; gap: 16px; }
  .detail-hero h1 { font-size: 1.4rem; }
}

/* Port/Day images in detail timeline — unified size */
.port-image,
.timeline img,
.timeline-day img,
#timeline-area img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* DAY mini image slider */
.day-slider {
  position: relative; overflow: hidden; border-radius: 12px;
  margin: 16px 0; box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.day-slider-track {
  display: flex; transition: transform .4s ease;
}
.day-slider-track img {
  width: 100%; height: 280px; object-fit: cover; flex-shrink: 0;
  margin: 0; border-radius: 0; box-shadow: none;
}
.day-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 14px; z-index: 2; transition: background .2s;
}
.day-slider-btn:hover { background: rgba(0,0,0,.75); }
.day-slider-btn.prev { left: 8px; }
.day-slider-btn.next { right: 8px; }
.day-slider-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.day-slider-dots .dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5);
  cursor: pointer; transition: background .2s;
}
.day-slider-dots .dot.active { background: #fff; }

/* 더보기 expand/collapse */
.day-expandable { display: none; }
.day-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 12px auto 0; padding: 8px 20px;
  background: var(--gray-50); border: 1.5px solid #cfd8dc; border-radius: 20px; cursor: pointer;
  color: var(--navy); font-size: 14px; font-weight: 600; gap: 6px;
  transition: all .2s;
}
.day-toggle:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Day expandable (inline toggle) */
.day-expandable { display: none; }
.day-expandable.open { display: block; }

/* Ship facility tab images — unified size */
.facility-tab-content img,
.facility-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

/* Ship slider images — original full size */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ship Image Slider */
.ship-slider-section {
  margin: 0 0 20px;
  text-align: center;
}
.ship-slider-section h2 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.ship-slider {
  position: relative;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}
.slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #111;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s;
}
.slider-btn:hover { background: rgba(0,0,0,.8); }
.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }
.slider-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300, #ccc);
  cursor: pointer;
  transition: background .2s;
}
.dot.active { background: var(--navy); }
.slider-counter {
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray-600);
}

/* Facility Tabs */
.facility-tabs { margin-top: 20px; }
.facility-tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--gray-300, #e0e0e0);
  padding-bottom: 0;
}
.facility-tab-btn {
  background: none;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  white-space: nowrap;
}
.facility-tab-btn:hover { color: var(--navy); }
.facility-tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
.facility-panel { display: none; }
.facility-panel.active { display: block; }
.facility-panel-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
}
.facility-panel-image {
  flex: 0 0 50%;
  max-width: 50%;
}
.facility-panel-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.facility-panel-text { flex: 1; }
.facility-panel-text h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.facility-panel-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700, #616161);
}

@media (max-width: 768px) {
  .facility-panel-inner { flex-direction: column; }
  .facility-panel-image { flex: none; max-width: 100%; }
  .facility-tab-nav { gap: 4px; }
  .facility-tab-btn { padding: 8px 12px; font-size: 13px; }
}

/* Form select */
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-300, #ddd);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-900);
  background: white;
  appearance: auto;
  cursor: pointer;
}
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
}

/* Destination Chip Slider */
/* === Cruise Line Logo Slider === */
.logo-slider-wrap {
  margin: 32px 0 48px;
  overflow: hidden;
  position: relative;
}
.logo-slider-wrap::before, .logo-slider-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.logo-slider-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.logo-slider-wrap::after { right: 0; background: linear-gradient(to left, white, transparent); }
.logo-slider { overflow: hidden; }
.logo-slider-track {
  display: flex; align-items: center; gap: 72px;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}
.logo-slider-track img {
  height: 40px; width: auto; opacity: 0.7;
  transition: opacity .2s; flex-shrink: 0;
}
.logo-slider-track img:hover { opacity: 1; }
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-slider-wrap:hover .logo-slider-track { animation-play-state: paused; }

.dest-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 8px;
  overflow: visible;
}
.dest-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  flex: 1;
  padding: 10px 20px 10px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dest-slider::-webkit-scrollbar { display: none; }
.dest-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: white;
  border-radius: 30px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid #cfd8dc;
  box-shadow: 0 3px 10px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.dest-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.15), 0 2px 6px rgba(0,0,0,.08);
  border-color: var(--navy);
  color: var(--orange);
}
.dest-icon { font-size: 26px; }
.dest-slider-btn {
  background: rgba(255,255,255,.9);
  border: none;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  flex-shrink: 0;
  z-index: 2;
}
.dest-slider-btn:hover { background: white; box-shadow: 0 4px 10px rgba(0,0,0,.15); }

/* === Cruise Line Filter Buttons === */
.line-filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; padding: 4px 0;
}
.line-filter-btn {
  padding: 10px 20px; border-radius: 24px; border: 2px solid #cfd8dc;
  background: var(--white); color: var(--navy); font-weight: 700; font-size: 14px;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.line-filter-btn:hover { border-color: var(--navy); background: #e8eaf6; }
.line-filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* === Pagination === */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 4px; margin: 32px 0 16px; flex-wrap: wrap;
}
.pag-btn {
  min-width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid #cfd8dc; background: var(--white);
  color: var(--navy); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all .15s; padding: 0 12px;
}
.pag-btn:hover { background: #e8eaf6; border-color: var(--navy); }
.pag-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pag-ellipsis { padding: 0 8px; color: var(--gray-500); }

@media (max-width: 768px) {
  .line-filter-bar { gap: 6px; }
  .line-filter-btn { padding: 8px 14px; font-size: 12px; }
}

/* === Multi-Select Dropdown === */
.multi-select { position: relative; }
.ms-selected {
  border: 1px solid var(--gray-300); padding: 6px 12px; cursor: pointer;
  min-height: 42px; display: flex; flex-wrap: wrap; gap: 4px;
  border-radius: 6px; background: var(--white); align-items: center;
  font-size: 14px; font-family: inherit;
}
.ms-placeholder { color: var(--gray-700); }
.ms-tag {
  background: #e8eaf6; color: #1a237e; padding: 2px 8px; border-radius: 12px;
  font-size: 12px; display: inline-flex; align-items: center; white-space: nowrap;
}
.ms-tag .ms-remove {
  margin-left: 4px; cursor: pointer; font-size: 14px; line-height: 1;
  color: #1a237e; opacity: 0.6;
}
.ms-tag .ms-remove:hover { opacity: 1; }
.ms-dropdown {
  position: absolute; top: 100%; left: 0; width: 100%; background: white;
  border: 1px solid var(--gray-300); border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12); z-index: 100;
  max-height: 280px; overflow-y: auto; margin-top: 2px;
}
.ms-search {
  width: 100%; padding: 8px 12px; border: none; border-bottom: 1px solid #eee;
  font-size: 13px; font-family: inherit; outline: none; box-sizing: border-box;
}
.ms-options label {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; cursor: pointer; font-size: 13px; transition: background .1s;
}
.ms-options label:hover { background: #f5f5f5; }
.ms-options label input[type="checkbox"] { margin: 0; cursor: pointer; }

@media (max-width: 768px) {
  .ms-dropdown { max-height: 200px; }
}

/* Search spinner */
.search-spinner {
  width: 40px; height: 40px; margin: 0 auto;
  border: 4px solid #e8eaf6;
  border-top: 4px solid #1a237e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
