@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;
}

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

html {
  overflow-x: hidden;
}
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900); background: var(--white); line-height: 1.6;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); box-shadow: var(--shadow);
  height: 70px; display: flex; align-items: center;
}
.header .container {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.logo { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.logo span { color: var(--orange); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-weight: 500; color: var(--gray-700); transition: color 0.2s; font-size: 0.95rem; }
.nav a:hover, .nav a.active { color: var(--navy); }
.header-phone { display: flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 700; font-size: 0.95rem; }
.header-phone svg { width: 18px; height: 18px; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

/* ===== HERO ===== */
.hero {
  background: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1600&q=80') center/cover no-repeat;
  color: var(--white); padding: 100px 0 120px; text-align: center; position: relative; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,21,75,0.82) 0%, rgba(26,35,126,0.7) 50%, rgba(40,53,147,0.6) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 24px; font-size: 0.95rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 { font-size: 2.6rem; font-weight: 900; margin-bottom: 16px; line-height: 1.35; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-sub { font-size: 1.15rem; opacity: 0.9; margin-bottom: 0; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  border-radius: var(--radius); font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-100); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 24px 32px; margin-top: -40px; position: relative; z-index: 10;
  display: flex; gap: 12px; align-items: end; flex-wrap: wrap;
}
.filter-group { flex: 1; min-width: 130px; }
.filter-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray-700); margin-bottom: 4px; text-transform: uppercase; }
.filter-group select,
#filterShip,
.filter-group > div > input[type="text"] {
  width: 100%; padding: 10px 32px 10px 12px; border: 1px solid var(--gray-300);
  border-radius: var(--radius); font-size: 0.9rem; font-family: inherit; color: var(--gray-700);
  background: var(--white); appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  box-sizing: border-box;
}
.filter-group select:focus, #filterShip:focus,
.filter-group > div > input[type="text"]:focus { border-color: var(--navy); outline: none; }

.filter-bar .btn { min-width: 120px; justify-content: center; height: 44px; }

/* ===== SECTION ===== */
.section { padding: 60px 0; }
.section-title {
  font-size: 1.8rem; font-weight: 900; color: var(--navy);
  margin-bottom: 8px; text-align: center;
}
.section-subtitle {
  color: var(--gray-700); text-align: center; margin-bottom: 40px; font-size: 1rem;
}

/* ===== DESTINATION CARDS ===== */
.dest-slider-wrap { position: relative; padding: 0 28px; }
.dest-slider {
  overflow: hidden; cursor: grab; padding: 8px 0;
}
.dest-slider:active { cursor: grabbing; }
.dest-track {
  display: flex; gap: 16px; transition: transform 0.4s ease;
  user-select: none; -webkit-user-select: none;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s;
  min-width: calc(25% - 12px); flex-shrink: 0; box-sizing: border-box;
  height: 180px; display: block; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; display: block;
}
.dest-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.dest-card:hover img { transform: scale(1.08); }
.dest-card .emoji { display: none; }
.dest-card .name {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 28px 14px 12px; text-align: center;
}
.dest-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gray-300);
  background: var(--white); font-size: 1.4rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center; color: var(--navy);
  transition: all 0.2s; box-shadow: var(--shadow); z-index: 10;
}
.dest-arrow-left { left: 0; }
.dest-arrow-right { right: 0; }
.dest-arrow:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== PROMO SLIDER ===== */
.promo-slider { position: relative; overflow: hidden; border-radius: 12px; }
.promo-slides { display: flex; transition: transform 0.5s ease; }
.promo-slide {
  min-width: 100%; padding: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); display: flex; flex-direction: column; justify-content: center;
  min-height: 200px;
}
.promo-slide h3 { font-size: 1.5rem; margin-bottom: 8px; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.promo-slide p { opacity: 0.95; margin-bottom: 16px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.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);
  border: none; cursor: pointer; transition: background 0.2s;
}
.promo-dot.active { background: var(--navy); }

/* ===== CRUISE CARD (Grid) ===== */
.cruise-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}

/* Featured cruise slider */
.featured-slider-wrap {
  position: relative;
  padding: 0 52px; /* 화살표 공간 */
}
.featured-slider {
  overflow: hidden;
  width: 100%;
}
.featured-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
/* 3장 + 4번째 카드 1/3 peek: card_w = (100% - 3*20px) * 0.3 */
.featured-track .cruise-card,
.featured-track .czn-card {
  flex: 0 0 calc((100% - 60px) * 0.3);
  min-width: 0;
}
@media (max-width: 768px) {
  .featured-slider-wrap { padding: 0 40px; }
  .featured-track .cruise-card,
  .featured-track .czn-card {
    flex: 0 0 calc(100% - 20px);
  }
}
.featured-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid #e0e4ef;
  background: #fff;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  user-select: none;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.featured-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.featured-arrow.disabled { opacity: 0.3; pointer-events: none; }
.featured-arrow-left { left: 4px; }
.featured-arrow-right { right: 4px; }

.cruise-card {
  border: 2px solid #cfd8dc; border-radius: var(--radius); overflow: hidden;
  background: var(--white); transition: all 0.2s; cursor: pointer;
  display: flex; flex-direction: column;
}
.cruise-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.cruise-card-img {
  height: 200px; overflow: hidden; position: relative; background: var(--gray-200);
}
.cruise-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cruise-card-tag {
  position: absolute; top: 12px; left: 12px; background: var(--orange);
  color: var(--white); padding: 4px 10px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700;
}
.cruise-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.cruise-card-operator { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 4px; }
.cruise-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; color: var(--navy); }
.cruise-card-route { font-size: 0.85rem; color: var(--gray-700); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cruise-card-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--gray-200); margin-top: auto; }
.cruise-card-date { font-size: 0.85rem; color: var(--gray-700); }
.cruise-card-price { font-size: 1.1rem; font-weight: 900; color: var(--orange); }
.cruise-card-btn { display: block; text-align: center; padding: 10px; margin-top: 12px; background: var(--navy); color: var(--white); border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; transition: background 0.2s; }
.cruise-card-btn:hover { background: var(--navy-light); }

/* ===== CRUISE ITEM (List) ===== */
.cruise-list { display: flex; flex-direction: column; gap: 20px; }
.cruise-item {
  display: flex; border: 2px solid #cfd8dc; border-radius: var(--radius);
  overflow: hidden; background: var(--white); transition: all 0.2s;
}
.cruise-item:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); }
.cruise-item-img {
  width: 280px; min-width: 280px; overflow: hidden; position: relative; background: var(--gray-200);
}
.cruise-item-img img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.cruise-item-tag {
  position: absolute; top: 12px; left: 12px; background: var(--orange);
  color: var(--white); padding: 4px 10px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700;
}
.cruise-item-body { flex: 1; padding: 20px; display: flex; flex-direction: column; }
.cruise-item-operator { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 4px; }
.cruise-item-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.cruise-item-route { font-size: 0.85rem; color: var(--gray-700); margin-bottom: 8px; }
.cruise-item-hashtags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.cruise-item-hashtags span { font-size: 0.75rem; color: var(--navy); background: #e8eaf6; padding: 2px 8px; border-radius: 4px; }
.cruise-item-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.cruise-item-date { font-size: 0.85rem; color: var(--gray-700); }
.cruise-item-price { font-size: 1.2rem; font-weight: 900; color: var(--orange); }
.cruise-item-actions { display: flex; gap: 8px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white); text-align: center; padding: 60px 0;
}
.cta-section h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; }
.cta-section p { opacity: 0.9; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-buttons.cta-two, .cta-two-center { max-width: 420px; margin: 0 auto; justify-content: center; display: flex; gap: 12px; flex-wrap: nowrap; align-items: stretch; }
.cta-buttons.cta-two .btn, .cta-two-center .btn { flex: 1 1 0; min-width: 0; text-align: center; padding: 16px 20px; font-size: 1.05rem; font-weight: 700; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.cta-buttons.cta-two button.btn, .cta-two-center button.btn { cursor: pointer; }
.btn-white-solid { background: var(--white); color: var(--navy); border: 2px solid #dde3f0; }
.btn-white-solid:hover { background: var(--gray-100); transform: translateY(-1px); }
.cta-buttons.cta-three { max-width: 600px; margin: 0 auto; }
.cta-buttons.cta-three .btn { flex: 1; min-width: 0; text-align: center; padding: 16px 12px; font-size: 1.02rem; font-weight: 700; border-radius: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 40px 0 24px;
}
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.footer-col p, .footer-col a { font-size: 0.9rem; line-height: 1.8; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; text-align: center; font-size: 0.8rem; opacity: 0.6; }

/* ===== DAY CARD ===== */
.day-cards { display: flex; flex-direction: column; gap: 24px; }
.day-card {
  border: 2px solid #e8eaf6; border-radius: 16px; overflow: hidden;
}
.day-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white); padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;
}
.day-card-header .day-num { font-size: 1.2rem; font-weight: 900; }
.day-card-header .day-port { font-size: 1rem; font-weight: 500; }
.day-card-header .day-time { font-size: 0.85rem; opacity: 0.8; }
.day-card-body { padding: 24px; }
.day-card-body .port-img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.day-card-body .port-desc { color: var(--gray-700); line-height: 1.7; margin-bottom: 16px; }
.day-card-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.day-card-images img { width: 100%; height: 120px; object-fit: cover; border-radius: 6px; }
.day-card.sea-day .day-card-header {
  background: linear-gradient(135deg, #37474f 0%, #546e7a 100%);
}
.day-card.sea-day .day-card-body { text-align: center; color: var(--gray-500); padding: 32px; }

/* ===== INFO BAR ===== */
.info-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--gray-300); border-radius: var(--radius); overflow: hidden;
  margin: 32px 0; box-shadow: var(--shadow);
}
.info-bar-item {
  background: var(--white); padding: 20px; text-align: center;
}
.info-bar-item .label { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 4px; text-transform: uppercase; }
.info-bar-item .value { font-size: 1rem; font-weight: 700; color: var(--navy); }

/* ===== SPEC GRID ===== */
.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0;
}
.spec-item {
  background: var(--gray-50); border-radius: var(--radius); padding: 16px; text-align: center;
}
.spec-item .spec-label { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 4px; }
.spec-item .spec-value { font-size: 1.1rem; font-weight: 700; color: var(--navy); }

/* ===== TABS ===== */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 24px; overflow-x: auto; }
.tab-btn {
  padding: 12px 20px; font-weight: 700; font-size: 0.9rem; color: var(--gray-500);
  border: none; background: none; cursor: pointer; position: relative;
  white-space: nowrap; font-family: inherit; transition: color 0.2s;
}
.tab-btn.active { color: var(--navy); }
.tab-btn.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 3px; background: var(--navy); border-radius: 3px 3px 0 0;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== FACILITY CARDS ===== */
.facility-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.facility-card {
  border: 2px solid #cfd8dc; border-radius: var(--radius); overflow: hidden;
}
.facility-card img { width: 100%; height: 180px; object-fit: cover; }
.facility-card-body { padding: 16px; }
.facility-card-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.facility-card-body p { font-size: 0.85rem; color: var(--gray-700); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== PRICE TABLE ===== */
.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.price-table th {
  background: var(--navy); color: var(--white); padding: 12px 16px;
  font-size: 0.85rem; font-weight: 700; text-align: center;
}
.price-table td {
  padding: 12px 16px; text-align: center; border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.price-table tr:hover td { background: var(--gray-50); }
.price-table .room-type { text-align: left; font-weight: 700; color: var(--navy); }

/* ===== CABIN GRID ===== */
.cabin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.cabin-card { border-radius: var(--radius); overflow: hidden; border: 2px solid #cfd8dc; }
.cabin-card img { width: 100%; height: 160px; object-fit: cover; }
.cabin-card-body { padding: 12px; }
.cabin-card-body h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); }

/* ===== SHIP CARD (Grid) ===== */
.ship-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.ship-card {
  border: 2px solid #cfd8dc; border-radius: var(--radius); overflow: hidden;
  background: var(--white); transition: all 0.2s; cursor: pointer;
}
.ship-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.ship-card-img { height: 180px; overflow: hidden; background: var(--gray-200); }
.ship-card-img img { width: 100%; height: 100%; object-fit: cover; }
.ship-card-body { padding: 16px; }
.ship-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ship-card-body .ship-class { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 10px; }
.ship-card-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.ship-card-specs .spec { font-size: 0.8rem; color: var(--gray-700); }
.ship-card-specs .spec strong { color: var(--navy); }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; padding: 0; }
.checklist li { padding: 8px 0; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.checklist li::before { font-size: 1rem; }
.checklist.included li::before { content: '✅'; }
.checklist.excluded li::before { content: '❌'; }
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ===== LOADING ===== */
.loading {
  text-align: center; padding: 60px 20px; color: var(--gray-500);
}
.loading-spinner {
  width: 40px; height: 40px; border: 4px solid var(--gray-200);
  border-top-color: var(--navy); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* 페이지 진입 로딩 */
.page-loading .loading-spinner {
  width: 48px; height: 48px; border-width: 3px;
  border-color: #e8eaf0; border-top-color: var(--navy);
  margin-bottom: 20px;
}
.page-loading .loading-main-text {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  margin: 0 0 18px; letter-spacing: -0.3px;
}
.loading-progress-wrap {
  width: 200px; height: 4px; background: #e8eaf0;
  border-radius: 2px; margin: 0 auto 12px; overflow: hidden;
}
.loading-progress-bar {
  height: 100%; background: var(--orange);
  border-radius: 2px; width: 0%;
  animation: progress-fill 3s ease-out forwards;
}
@keyframes progress-fill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  85%  { width: 90%; }
  100% { width: 95%; }
}
.loading-done-text {
  font-size: 0.85rem; color: var(--gray-400); margin: 0;
  opacity: 0; animation: done-appear 0.4s ease 2.8s forwards;
}
@keyframes done-appear { to { opacity: 1; } }

/* ===== HERO (detail pages) ===== */
.detail-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white); padding: 48px 0; position: relative;
}
.detail-hero .operator-name { font-size: 0.9rem; opacity: 0.8; margin-bottom: 4px; }
.detail-hero h1 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.detail-hero .meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; font-size: 0.9rem; opacity: 0.9; }
.detail-hero .meta span { display: flex; align-items: center; gap: 4px; }
.detail-hero .hashtags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.detail-hero .hashtags span { background: rgba(255,255,255,0.15); padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; }
.detail-hero .price-big { font-size: 1.8rem; font-weight: 900; color: var(--orange); margin-bottom: 20px; }
.detail-hero .price-big small { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.7); }

/* ===== SHIP HERO ===== */
.ship-hero {
  height: 400px; position: relative; overflow: hidden;
  background: var(--gray-200);
}
.ship-hero img { width: 100%; height: 100%; object-fit: cover; }
.ship-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 32px; color: var(--white);
}
.ship-hero-overlay h1 { font-size: 2rem; font-weight: 900; }
.ship-hero-overlay p { opacity: 0.9; }

/* ===== DECK PLAN ===== */
.deck-plans { display: flex; flex-direction: column; gap: 16px; }
.deck-plan-img { width: 100%; border-radius: var(--radius); border: 1px solid var(--gray-200); }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.empty-state .emoji { font-size: 3rem; margin-bottom: 16px; display: block; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.page-btn {
  width: 40px; height: 40px; border: 2px solid var(--gray-300); border-radius: var(--radius);
  background: var(--white); font-weight: 700; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; font-family: inherit;
}
.page-btn.active, .page-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-ellipsis { display:flex; align-items:center; font-weight:700; color:var(--text-secondary); padding:0 4px; }

/* ===== MAIN SHIP IMAGE ===== */
.main-ship-image { margin: 32px 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.main-ship-image img { width: 100%; height: 400px; object-fit: cover; }

/* ===== DETAIL PAGE EXTRAS ===== */
.detail-hero-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.hero-tag { background:rgba(255,255,255,0.15); padding:4px 12px; border-radius:20px; font-size:0.8rem; color:#fff; backdrop-filter:blur(4px); }

.day-card-img-wrap { overflow:hidden; }
.day-card-main-img { width:100%; max-height:300px; object-fit:cover; display:block; }

.facility-row { display:flex; gap:16px; margin-bottom:16px; padding:16px; background:var(--gray-50); border-radius:12px; }
.facility-row img { width:100px; height:80px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.facility-row-body { flex:1; }
.facility-row-name { font-size:0.95rem; font-weight:700; color:var(--navy); }
.facility-row-desc { font-size:0.85rem; color:var(--gray-700); margin-top:4px; line-height:1.6; }

.deck-scroll-wrap { display:flex; gap:12px; overflow-x:auto; padding:10px 0; }
.deck-card-v2 { min-width:220px; border:1px solid var(--gray-300); border-radius:10px; overflow:hidden; flex-shrink:0; }
.deck-card-v2 img { width:100%; height:170px; object-fit:contain; background:var(--gray-50); }
.deck-name-v2 { padding:10px; font-size:0.85rem; text-align:center; color:var(--navy); font-weight:600; }

/* ===== FACILITY SLIDER ===== */
.facility-slider { position:relative; overflow:hidden; border-radius:12px; border:2px solid var(--gray-300); background:var(--white); }
.facility-slides { display:flex; transition:transform 0.3s ease; }
.facility-slide { min-width:100%; }
.facility-slide img { width:100%; height:250px; object-fit:cover; }
.facility-slide-body { padding:16px 20px; }
.facility-slide-name { font-size:16px; font-weight:700; color:var(--navy); }
.facility-slide-desc { font-size:14px; color:var(--gray-700); margin-top:8px; line-height:1.6; }
.slider-btn { position:absolute; top:125px; transform:translateY(-50%); background:rgba(0,0,0,0.4); color:#fff; border:none; width:40px; height:40px; border-radius:50%; font-size:18px; cursor:pointer; z-index:5; }
.slider-btn:hover { background:rgba(0,0,0,0.6); }
.slider-prev { left:10px; }
.slider-next { right:10px; }
.slider-dots { display:flex; justify-content:center; gap:6px; padding:12px; }
.slider-dot { width:8px; height:8px; border-radius:50%; background:var(--gray-300); border:none; cursor:pointer; padding:0; }
.slider-dot.active { background:var(--navy); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.5rem; }
  .hero { padding: 56px 0 80px; }
  .hero-badge { font-size: 0.85rem; padding: 6px 16px; }
  .hero-sub { font-size: 1rem; }
  .filter-bar { flex-direction: column; padding: 20px; margin-top: -30px; }
  .filter-group { min-width: 100% !important; flex: 1 1 100% !important; }
  .filter-bar .btn { width: 100%; box-sizing: border-box; }
  .dr-display { width: 100%; box-sizing: border-box; }
  .dest-card { min-width: calc(50% - 8px); height: 140px; }
  .cruise-grid { grid-template-columns: 1fr; }
  /* 모바일 featured slider — scroll-snap 방식 */
  .featured-arrow { display: none !important; }
  .featured-slider-wrap { padding: 0 !important; overflow: hidden; }
  .featured-slider {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .featured-slider::-webkit-scrollbar { display: none; }
  .featured-track {
    gap: 0;
    transition: none;
  }
  .featured-track .cruise-card,
  .featured-track .czn-card {
    flex: 0 0 88%;
    margin-right: 12px;
    scroll-snap-align: start;
  }
  /* 도트 인디케이터 */
  .featured-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
  .featured-dot { width: 8px; height: 8px; border-radius: 50%; background: #CBD5E1; transition: background 0.2s, transform 0.2s; cursor: pointer; }
  .featured-dot.active { background: var(--blue, #2B7FFF); transform: scale(1.3); }
  .cruise-item { flex-direction: column; }
  .cruise-item-img { width: 100%; min-width: 100%; height: 200px; }
  .cruise-item-img img { min-height: 200px; }
  .info-bar { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .day-card-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .day-card-images { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .mobile-menu-btn { display: block; }
  .header-phone { display: none; }
  .section-title { font-size: 1.4rem; }
  .detail-hero h1 { font-size: 1.4rem; }
  .ship-hero { height: 250px; }
  .main-ship-image img { height: 250px; }
  .footer-content { flex-direction: column; }
  .price-table { font-size: 0.8rem; }
  .price-table th, .price-table td { padding: 8px; }
  .cruise-item-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .cruise-item-actions { width: 100%; }
  .cruise-item-actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .dest-card { min-width: calc(50% - 8px); height: 120px; padding: 0; }
  .dest-arrow { width: 32px; height: 32px; font-size: 1.2rem; }
  /* hero-ctas removed */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons.cta-three { align-items: stretch; }
  .cta-buttons.cta-three .btn { width: 100%; }
  .cta-buttons.cta-two, .cta-two-center { flex-direction: row; flex-wrap: nowrap; align-items: stretch; }
  .cta-buttons.cta-two .btn, .cta-two-center .btn { flex: 1 1 0; min-width: 0; text-align: center; display: flex; align-items: center; justify-content: center; }
  .info-bar { grid-template-columns: 1fr; }
}

/* Inquiry Modal */
.modal-overlay { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6); z-index:9999; align-items:center; justify-content:center; }
.modal-overlay.open { display:flex; }
.modal { background:var(--white); border-radius:16px; width:90%; max-width:520px; max-height:90vh; overflow-y:auto; box-shadow:0 20px 60px rgba(0,0,0,0.3); }
.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:1.2rem; margin:0; }
.modal-close { background:none; border:none; font-size:1.8rem; cursor:pointer; color:var(--text-secondary); line-height:1; }
.modal-body { padding:24px; }
.modal-product-info { background:var(--gray-50); padding:14px 16px; border-radius:10px; margin-bottom:16px; font-size:0.95rem; line-height:1.6; }
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-size:0.9rem; font-weight:600; margin-bottom:6px; color:var(--text-primary); }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:10px 12px; border:1px solid var(--gray-300); border-radius:8px; font-size:0.95rem; font-family:inherit; box-sizing:border-box; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:var(--navy); box-shadow:0 0 0 3px rgba(26,35,126,0.1); }
.req { color:#e53935; }
.privacy-section { margin-top:16px; padding-top:16px; border-top:1px solid var(--gray-200); }
.privacy-check { display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.privacy-check input { width:18px; height:18px; }
.privacy-toggle { background:none; border:none; color:var(--text-secondary); font-size:0.85rem; cursor:pointer; padding:0; }
.privacy-detail { display:none; background:var(--gray-50); padding:12px; border-radius:8px; font-size:0.85rem; color:var(--text-secondary); margin-top:8px; line-height:1.6; }
.privacy-detail.open { display:block; }
.form-status { }

/* Logo Slider */
.logo-slider-wrap {
  margin: 8px 0 32px; 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-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; }
/* 익스플로라 저니 — 검정 배경 제거 */
.logo-slider-track img[alt="Explora Journeys"] { mix-blend-mode: multiply; height: 52px; }
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-slider-wrap:hover .logo-slider-track { animation-play-state: paused; }

/* Multi-select dropdown */
.multi-select { position: relative; cursor: pointer; }
.multi-select-display {
  padding: 10px 32px 10px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius);
  background: var(--white); font-size: 0.9rem; color: var(--gray-700); min-height: 20px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.multi-select-dropdown {
  display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 100;
  background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); max-height: 240px; overflow-y: auto; margin-top: 4px;
}
.multi-select.open .multi-select-dropdown { display: block; }
.ms-option {
  padding: 8px 12px; font-size: 0.9rem; cursor: pointer; transition: background 0.15s;
  user-select: none;
}
.ms-option:hover { background: var(--gray-100); }
.ms-option.selected { background: var(--navy); color: var(--white); }
.ms-option.selected:hover { background: var(--navy-light); }

/* ── Port Preset Buttons ── */
.port-preset {
  padding: 4px 10px; font-size: 0.82rem; border: 1px solid var(--gray-300);
  border-radius: 20px; background: var(--white); cursor: pointer;
  transition: all 0.15s; white-space: nowrap;
}
.port-preset:hover { background: var(--gray-100); }
.port-preset.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Date Range Picker ── */
.dr-display {
  width:100%; padding:10px 32px 10px 12px; border:1px solid var(--gray-300); border-radius:var(--radius);
  background:var(--white); font-size:0.9rem; color:var(--gray-700); text-align:left;
  cursor:pointer; font-family:inherit; box-sizing:border-box;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center;
}
.dr-display.has-range { color:var(--navy); font-weight:600; border-color:var(--navy); }
.dr-popup {
  display:none; position:absolute; top:calc(100% + 4px); left:0; z-index:999;
  background:#fff; border:1px solid var(--gray-300); border-radius:12px;
  box-shadow:0 8px 32px rgba(0,0,0,0.15); min-width:580px; padding:16px;
}
.dr-popup.open { display:block; }
.dr-months { display:flex; gap:24px; }
.dr-month { flex:1; min-width:240px; }
.dr-month-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.dr-month-title { font-size:0.95rem; font-weight:700; color:var(--navy); }
.dr-nav { background:none; border:none; cursor:pointer; font-size:1.1rem; color:var(--gray-600); padding:2px 6px; border-radius:4px; }
.dr-nav:hover { background:var(--gray-100); }
.dr-weekdays { display:grid; grid-template-columns:repeat(7,1fr); text-align:center; font-size:0.72rem; color:var(--gray-500); font-weight:600; margin-bottom:4px; }
.dr-days { display:grid; grid-template-columns:repeat(7,1fr); gap:1px; }
.dr-day {
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  font-size:0.8rem; cursor:pointer; border-radius:50%; transition:all 0.1s;
  position:relative;
}
.dr-day:hover:not(.dr-empty):not(.dr-past) { background:var(--gray-100); }
.dr-day.dr-past { color:var(--gray-400); cursor:default; }
.dr-day.dr-empty { cursor:default; }
.dr-day.dr-start, .dr-day.dr-end {
  background:var(--navy); color:#fff; font-weight:700; border-radius:50%;
  z-index:1;
}
.dr-day.dr-in-range {
  background:#e8eaf6; border-radius:0; color:var(--navy);
}
.dr-day.dr-start.dr-in-range-right { border-radius:50% 0 0 50%; }
.dr-day.dr-end.dr-in-range-left { border-radius:0 50% 50% 0; }
.dr-day.dr-start.dr-end { border-radius:50%; }
.dr-day.dr-today::after {
  content:''; position:absolute; bottom:3px; left:50%; transform:translateX(-50%);
  width:4px; height:4px; background:var(--orange); border-radius:50%;
}
.dr-footer { display:flex; justify-content:space-between; align-items:center; margin-top:12px; padding-top:12px; border-top:1px solid var(--gray-200); }
.dr-hint { font-size:0.78rem; color:var(--gray-500); }
.dr-btn-clear { background:none; border:1px solid var(--gray-300); border-radius:var(--radius); padding:6px 14px; cursor:pointer; font-size:0.85rem; color:var(--gray-700); }
.dr-btn-ok { background:var(--navy); border:none; border-radius:var(--radius); padding:6px 18px; cursor:pointer; font-size:0.85rem; color:#fff; font-weight:600; }
@media (max-width:700px) {
  .dr-popup { width:calc(100vw - 32px); max-width:100%; box-sizing:border-box; left:0; }
  .dr-months { flex-direction:column; gap:16px; }
}
/* ── 헤더 찜목록 버튼 ── */
.header-right { display: flex; align-items: center; gap: 8px; }
.wish-header-btn { background: #fff; border: 1.5px solid #d0d5e8; border-radius: 50px; width: 40px; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; position: relative; }
.wish-header-btn:hover { border-color: #FF4081; background: #fff0f5; }
.wish-header-svg { display:block; fill:none; stroke:#bbb; stroke-width:2; transition:fill .2s,stroke .2s; }
.wish-header-count { position: absolute; top: -4px; right: -4px; background: #e53935; color: #fff; border-radius: 10px; font-size: 10px; font-weight: 800; min-width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; padding: 0 3px; }
.mobile-header-right { display: none; align-items: center; gap: 2px; }
.wish-mobile-btn { background: #fff; border: 1.5px solid #d0d5e8; border-radius: 50px; width: 36px; height: 36px; cursor: pointer; font-size: 17px; color: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; }
.wish-mobile-count { position: absolute; top: -3px; right: -3px; background: #e53935; color: #fff; border-radius: 8px; font-size: 10px; font-weight: 800; min-width: 15px; height: 15px; display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 768px) {
  .header-right { display: none; }
  .mobile-header-right { display: flex; }
}
.tab-card-depart { font-size: 11px; color: #1565C0; font-weight: 600; margin-bottom: 6px; }
/* ── czn-card 공통 디자인 ── */
.czn-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media(max-width:900px){.czn-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.czn-grid{grid-template-columns:1fr;}}
.czn-card{background:#fff;border-radius:14px;overflow:hidden;border:1px solid #e8eaed;transition:box-shadow .2s,transform .2s;cursor:pointer;display:flex;flex-direction:column;}
.czn-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.13);transform:translateY(-3px);}
.czn-card-img-wrap{position:relative;height:200px;overflow:hidden;background:#e0e0e0;flex-shrink:0;}
.czn-card-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s;display:block;}
.czn-card:hover .czn-card-img-wrap img{transform:scale(1.05);}
.czn-badge{position:absolute;top:12px;left:12px;padding:4px 10px;border-radius:6px;font-size:11px;font-weight:800;color:#fff;letter-spacing:.3px;}
.czn-wish{position:absolute;top:10px;right:12px;background:rgba(255,255,255,.9);border:none;border-radius:50%;width:32px;height:32px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:transform .15s;}
.czn-wish:hover{transform:scale(1.15);}
.czn-heart-svg{display:block;fill:none;stroke:#bbb;stroke-width:2;transition:fill .2s,stroke .2s;}
.czn-wish.wished .czn-heart-svg{fill:#FF4081;stroke:#FF4081;}
.czn-body{padding:16px;flex:1;display:flex;flex-direction:column;}
.czn-operator{font-size:11px;font-weight:700;color:#1565C0;letter-spacing:.5px;margin-bottom:6px;}
.czn-title{font-size:15px;font-weight:800;color:#0a1628;line-height:1.4;margin-bottom:10px;}
.czn-meta{font-size:13px;color:#555;line-height:1.9;margin-bottom:10px;}
.czn-tags{margin-bottom:12px;}
.czn-footer{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid #f0f0f0;margin-top:auto;}
.czn-price-wrap{display:flex;align-items:baseline;gap:2px;}
.czn-from{font-size:11px;color:#888;margin-right:2px;}
.czn-price{font-size:24px;font-weight:900;color:#E65100;}
.czn-unit{font-size:11px;color:#888;}
.czn-btn{background:#00338D;color:#fff;border:none;padding:9px 18px;border-radius:8px;font-size:13px;font-weight:700;cursor:pointer;text-decoration:none;white-space:nowrap;transition:background .2s;}
.czn-btn:hover{background:#001f6b;}
