  :root {
    --ink: #1e3a5f;
    --ink-2: #0f2340;
    --sub: #5a6c7d;
    --muted: #8a9baa;
    --bg: #f4f1ea;
    --paper: #fdfbf6;
    --card: #ffffff;
    --line: rgba(30,58,95,0.15);
    --brand: #287dfa;
    --brand-dark: #1a5cc4;
    --mint: #28d5a7;
    --danger: #d94f4f;
    --gold: #b89253;
  }
  body { background: var(--paper); font-size: 15px; }

  /* HEADER 동일 */
  .utility { background: var(--ink-2); color: #cddbe8; font-size: 12px; }
  .utility .row { max-width: 1240px; margin: 0 auto; padding: 8px 32px; display: flex; justify-content: space-between; align-items: center; }
  .utility a { color: #cddbe8; margin-left: 20px; letter-spacing: 0.5px; }
  .utility .tel { color: var(--mint); font-weight: 600; letter-spacing: 1px; }
  header.site { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
  .site-inner { max-width: 1240px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; }
  .logo img { height: 60px; width: auto; }
  nav.primary ul { display: flex; gap: 38px; }
  nav.primary a { font-size: 15px; font-weight: 500; padding: 8px 0; position: relative; letter-spacing: 0.5px; }
  nav.primary a.active { color: var(--brand); }
  .site-cta { display: flex; gap: 10px; align-items: center; }
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; transition: all .2s; border: 1px solid transparent; white-space: nowrap; cursor: pointer; }
  .btn-primary { background: var(--brand); color: #fff; }
  .btn-primary:hover { background: var(--brand-dark); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { background: var(--ink); color: #fff; }
  .btn-mint { background: var(--mint); color: #063d2b; }
  .btn-mint:hover { background: #1cbf94; }
  .btn-outline { background: transparent; border-color: var(--brand); color: var(--brand); }
  .btn-outline:hover { background: var(--brand); color: #fff; }

  /* BREADCRUMB */
  .breadcrumb {
    max-width: 1240px; margin: 0 auto; padding: 22px 32px;
    font-size: 12px; color: var(--muted); letter-spacing: 0.5px;
  }
  .breadcrumb a:hover { color: var(--brand); }
  .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
  .breadcrumb .current { color: var(--ink); font-weight: 500; }

  /* HERO TITLE */
  .product-header {
    max-width: 1240px; margin: 0 auto; padding: 12px 32px 32px;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 32px;
    border-bottom: 1px solid var(--line);
  }
  .p-title-left { flex: 1; }
  .p-badges { display: flex; gap: 8px; margin-bottom: 16px; }
  .p-badge {
    padding: 5px 12px;
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    border-radius: 2px;
  }
  .p-badge.hot { background: var(--danger); color: #fff; }
  .p-badge.exclusive { background: var(--ink); color: #fff; }
  .p-badge.rated { background: #fff5e0; color: var(--gold); border: 1px solid var(--gold); }
  .p-header-title {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 40px; font-weight: 700; line-height: 1.2;
    letter-spacing: -0.5px; margin-bottom: 14px; color: var(--ink);
  }
  .p-header-meta {
    display: flex; gap: 24px; font-size: 13px; color: var(--sub);
    flex-wrap: wrap;
  }
  .p-header-meta strong { color: var(--ink); font-weight: 600; margin-right: 6px; }
  .p-header-meta .rating { color: var(--gold); font-weight: 700; }
  .p-title-right {
    text-align: right;
    display: flex; gap: 10px; align-items: center;
    padding-bottom: 8px;
  }
  .icon-btn {
    width: 40px; height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--sub);
    transition: all .2s; cursor: pointer;
    background: #fff;
  }
  .icon-btn:hover { color: var(--brand); border-color: var(--brand); }
  .icon-btn svg { width: 16px; height: 16px; }
  .icon-btn.liked { color: var(--danger); border-color: var(--danger); }

  /* MAIN GRID: gallery + sidebar */
  .detail-wrap {
    max-width: 1240px;
    margin: 40px auto 0;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
  }
  .detail-main { min-width: 0; }
  .detail-side { position: sticky; top: 100px; }

  /* GALLERY */
  .gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 8px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
  }
  .gallery > div { position: relative; overflow: hidden; background: #e8e2d5; }
  .gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .gallery > div:hover img { transform: scale(1.05); }
  .gallery .g1 { grid-column: span 1; grid-row: span 2; }
  .gallery-badge {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(15,35,64,0.85); color: #fff;
    padding: 6px 12px; font-size: 12px; font-weight: 600; border-radius: 2px;
    backdrop-filter: blur(6px);
  }
  .gallery-badge svg { width: 12px; height: 12px; margin-right: 4px; vertical-align: -2px; }

  /* TABS */
  .anchor-tabs {
    display: flex; gap: 4px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 48px;
    position: sticky; top: 90px; background: var(--paper); z-index: 10;
  }
  .anchor-tabs a {
    padding: 16px 24px;
    font-size: 14px; font-weight: 600;
    color: var(--sub);
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: all .2s;
  }
  .anchor-tabs a:hover { color: var(--ink); }
  .anchor-tabs a.active { color: var(--brand); border-bottom-color: var(--brand); }

  /* Section blocks */
  .block { margin-bottom: 72px; }
  .block-title {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 28px; font-weight: 700; margin-bottom: 8px;
    letter-spacing: -0.3px;
  }
  .block-title small {
    font-family: 'Noto Sans KR', sans-serif;
    display: block;
    font-size: 12px; color: var(--brand); font-weight: 700;
    letter-spacing: 3px; margin-bottom: 8px;
  }
  .block-sub {
    font-size: 14px; color: var(--sub); margin-bottom: 32px;
    padding-bottom: 20px; border-bottom: 1px solid var(--line);
  }

  /* Highlights */
  .highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
  .hl-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 24px;
    border-radius: 3px;
  }
  .hl-card .n {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700; color: var(--brand);
    margin-bottom: 8px; line-height: 1;
  }
  .hl-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .hl-card p { font-size: 13px; color: var(--sub); line-height: 1.7; }

  /* Itinerary Timeline */
  .itinerary { position: relative; padding-left: 40px; }
  .itinerary::before {
    content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--brand), var(--mint));
  }
  .day {
    position: relative;
    padding: 8px 0 32px;
  }
  .day::before {
    content: ''; position: absolute; left: -34px; top: 8px;
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; border: 2px solid var(--brand);
  }
  .day::after {
    content: attr(data-day); position: absolute; left: -34px; top: 8px;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand); font-size: 11px; font-weight: 700;
  }
  .day.mint::before { border-color: var(--mint); }
  .day.mint::after { color: #0d8a63; }
  .day-head {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: 8px; margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .day-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700;
  }
  .day-head .day-region { font-size: 12px; letter-spacing: 2px; color: var(--muted); font-weight: 600; }
  .schedule { display: grid; grid-template-columns: 92px 1fr; gap: 20px; row-gap: 22px; }
  .schedule .time {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700; color: var(--brand);
    padding-top: 2px;
  }
  .schedule .info h5 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
  .schedule .info p { font-size: 13.5px; color: var(--sub); line-height: 1.7; }
  .schedule .info .tag-meal {
    display: inline-block; padding: 2px 8px; margin-top: 8px;
    background: rgba(40,213,167,0.15); color: #0d8a63;
    font-size: 11px; font-weight: 600; border-radius: 2px; letter-spacing: 0.5px;
  }

  /* Map */
  .map-wrap {
    position: relative;
    height: 460px;
    background: linear-gradient(135deg, #d8e6f5 0%, #e6f0f8 50%, #cde3f0 100%);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    background: var(--ink);
    color: #fff;
    padding: 8px 12px 8px 10px;
    border-radius: 3px;
    font-size: 12px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 6px 16px rgba(15,35,64,0.3);
  }
  .map-pin::after {
    content: ''; position: absolute; bottom: -6px; left: 14px;
    border: 6px solid transparent; border-top-color: var(--ink); border-bottom: 0;
  }
  .map-pin.mint { background: var(--mint); color: #063d2b; }
  .map-pin.mint::after { border-top-color: var(--mint); }
  .map-pin.brand { background: var(--brand); color: #fff; }
  .map-pin.brand::after { border-top-color: var(--brand); }
  .map-legend {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    padding: 16px 20px; border-radius: 3px;
    font-size: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .map-legend h6 { font-family: 'Playfair Display', serif; font-size: 15px; margin-bottom: 8px; }
  .map-legend div { color: var(--sub); line-height: 1.7; }

  /* Included / Excluded */
  .include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .include-col { padding: 28px; background: var(--paper); border-radius: 3px; border: 1px solid var(--line); }
  .include-col.excluded { background: #fff8f6; border-color: rgba(217,79,79,0.2); }
  .include-col h4 {
    font-size: 16px; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px; border-bottom: 1px solid var(--line);
  }
  .include-col.excluded h4 { color: var(--danger); border-bottom-color: rgba(217,79,79,0.2); }
  .include-col ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 13.5px;
    color: var(--sub);
    line-height: 1.6;
  }
  .include-col ul li::before {
    content: '✓'; position: absolute; left: 0; top: 8px;
    color: var(--mint); font-weight: 700;
  }
  .include-col.excluded ul li::before { content: '✕'; color: var(--danger); }

  /* Reviews */
  .review-summary {
    display: grid; grid-template-columns: 240px 1fr; gap: 40px;
    padding: 32px; background: var(--paper); border-radius: 3px;
    margin-bottom: 32px; border: 1px solid var(--line);
  }
  .review-score {
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid var(--line);
  }
  .review-score .big {
    font-family: 'Playfair Display', serif;
    font-size: 68px; font-weight: 700; color: var(--ink); line-height: 1;
  }
  .review-score .stars { color: var(--gold); font-size: 20px; letter-spacing: 4px; margin: 8px 0 4px; }
  .review-score .total { font-size: 12px; color: var(--muted); }

  .score-bars { display: flex; flex-direction: column; gap: 10px; }
  .score-bar { display: grid; grid-template-columns: 80px 1fr 40px; gap: 12px; align-items: center; font-size: 12px; }
  .score-bar .lbl { color: var(--sub); }
  .score-bar .bar { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
  .score-bar .fill { height: 100%; background: var(--brand); border-radius: 3px; }
  .score-bar .val { text-align: right; font-weight: 700; color: var(--ink); }

  .review-list { display: flex; flex-direction: column; gap: 20px; }
  .review-item { padding: 24px; border: 1px solid var(--line); border-radius: 3px; background: #fff; }
  .review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
  .reviewer {
    display: flex; align-items: center; gap: 12px;
  }
  .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--mint));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 14px;
  }
  .rev-name { font-weight: 600; font-size: 14px; }
  .rev-meta { font-size: 11px; color: var(--muted); }
  .rev-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
  .review-item p { font-size: 14px; color: var(--sub); line-height: 1.8; }
  .rev-tag { display: inline-block; padding: 3px 8px; background: rgba(40,125,250,0.08); color: var(--brand); font-size: 11px; margin-top: 12px; margin-right: 4px; border-radius: 2px; }

  /* Booking form */
  .booking-form {
    padding: 40px;
    background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
    border: 1px solid var(--line);
    border-radius: 3px;
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field.full { grid-column: span 2; }
  .form-field label { font-size: 12px; font-weight: 600; color: var(--sub); letter-spacing: 0.5px; }
  .form-field input, .form-field select, .form-field textarea {
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 14px;
    font-family: inherit;
    border-radius: 2px;
    color: var(--ink);
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(40,125,250,0.1);
  }
  .form-check {
    display: flex; align-items: center; gap: 8px; padding: 8px 0;
    font-size: 13px; color: var(--sub);
  }
  .form-submit { display: flex; gap: 12px; margin-top: 8px; }
  .form-submit .btn { flex: 1; justify-content: center; padding: 16px; font-size: 14px; }

  /* Share */
  .share-wrap {
    padding: 32px; background: var(--paper); border-radius: 3px; border: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
  }
  .share-wrap .txt h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
  .share-wrap .txt p { font-size: 13px; color: var(--sub); }
  .share-btns { display: flex; gap: 10px; }
  .share-btn {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    transition: transform .2s;
  }
  .share-btn:hover { transform: translateY(-3px); }
  .share-btn.kakao { background: #FEE500; color: #3c1e1e; }
  .share-btn.fb { background: #3b5998; }
  .share-btn.tw { background: #1da1f2; }
  .share-btn.link { background: var(--ink); }
  .share-btn svg { width: 18px; height: 18px; }

  /* ============ SIDEBAR ============ */
  .side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(15,35,64,0.05);
    margin-bottom: 20px;
  }
  .side-tag { display: inline-block; padding: 4px 10px; background: var(--danger); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; border-radius: 2px; margin-bottom: 14px; }
  .side-title {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 20px; font-weight: 700;
    margin-bottom: 22px; line-height: 1.4;
  }
  .price-block { padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
  .price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-bottom: 4px; }
  .price-main { display: flex; align-items: baseline; gap: 8px; }
  .price-main .sale-pct { color: var(--danger); font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; }
  .price-main .price-num { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--ink); }
  .price-main small { font-size: 14px; color: var(--sub); font-weight: 400; }
  .price-note { font-size: 11px; color: var(--muted); margin-top: 6px; letter-spacing: 0.5px; }

  .quick-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
  .quick-row {
    display: grid; grid-template-columns: 80px 1fr;
    font-size: 13px; align-items: baseline;
  }
  .quick-row .lbl { color: var(--muted); }
  .quick-row .val { color: var(--ink); font-weight: 500; }
  .quick-row .val strong { color: var(--brand); font-weight: 700; }

  .date-pick {
    background: var(--paper); padding: 16px; border-radius: 3px;
    margin-bottom: 20px; border: 1px solid var(--line);
  }
  .date-pick .lbl { font-size: 11px; color: var(--muted); letter-spacing: 1.5px; margin-bottom: 10px; font-weight: 600; }
  .date-options { display: flex; gap: 6px; flex-wrap: wrap; }
  .date-opt {
    padding: 8px 12px; font-size: 12px; font-weight: 600;
    background: #fff; border: 1px solid var(--line); border-radius: 2px;
    cursor: pointer; transition: all .2s;
  }
  .date-opt:hover { border-color: var(--brand); }
  .date-opt.active { background: var(--ink); color: #fff; border-color: var(--ink); }
  .date-opt.soldout { color: var(--muted); text-decoration: line-through; cursor: not-allowed; }
  .date-opt small { display: block; font-size: 10px; font-weight: 400; margin-top: 2px; opacity: 0.7; }

  .side-actions { display: flex; flex-direction: column; gap: 8px; }
  .side-actions .btn { padding: 15px; justify-content: center; font-size: 14px; }

  .side-agent {
    display: flex; align-items: center; gap: 12px;
    padding-top: 20px; margin-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12px;
  }
  .side-agent .av {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--ink), var(--brand));
    color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700;
  }
  .side-agent .info strong { display: block; color: var(--ink); font-size: 13px; font-weight: 700; margin-bottom: 2px; }
  .side-agent .info span { color: var(--muted); }

  /* Related */
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .rel-card { background: #fff; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; transition: transform .3s; }
  .rel-card:hover { transform: translateY(-4px); }
  .rel-card img { aspect-ratio: 4/3; object-fit: cover; }
  .rel-info { padding: 18px; }
  .rel-region { font-size: 10px; letter-spacing: 2px; color: var(--brand); font-weight: 700; margin-bottom: 6px; }
  .rel-name { font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; color: var(--ink); }
  .rel-price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); }
  .rel-price small { font-size: 12px; font-weight: 400; color: var(--sub); }

  /* FOOTER simple */
  footer.site { background: var(--ink-2); color: rgba(255,255,255,0.5); padding: 40px 32px; font-size: 12px; text-align: center; line-height: 1.8; margin-top: 80px; }
  footer.site strong { color: rgba(255,255,255,0.8); }

  @media (max-width: 960px) {
    .detail-wrap { grid-template-columns: 1fr; }
    .detail-side { position: static; }
    .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
    .gallery .g1 { grid-column: span 2; }
    .p-header-title { font-size: 28px; }
    .highlight-grid, .related-grid, .include-grid, .form-grid { grid-template-columns: 1fr; }
    .review-summary { grid-template-columns: 1fr; }
    .review-score { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 20px; }
  }
