@layer reset, base, components, layout, utilities;

/* Reset Layer */
@layer reset {
}

/* Base Layer */
@layer base {
  :root {
    --color-primary: #cda461;
    --color-text-primary: #161b23;
    --color-text-secondary: #444b55;
    --color-text-light: #a2a7ae;
    --color-white: #ffffff;
    --color-background: #f9fafb;
    --color-border: #e5e7eb;
    --color-notice: #29376b;
    --color-notice-bg: #f3f4f6;
    --color-badge: #f6f2e9;
    --color-badge-text: #a87b38;
    --color-tag: #e5e7eb;
    --color-tag-text: #161b23;
    --red-600-deep: #ae0000;
    --border-radius: 4px;
    --shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);
  }

  body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI',
      Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
  }
}

/* Components Layer */
@layer components {
  .hd-membership-main {
    min-height: 100vh;
    width: 100%;
    background-color: #f9fafb;
  }

  .hd-membership-main * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* .hd-membership-main img {
    max-width: 100%;
    height: auto;
  } */

  .hd-membership-main button {
    /* border: none; */
    /* background: none; */
    cursor: pointer;
  }

  .hd-membership-hero {
    position: relative;
    height: 320px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url('https://media.eoding.com/media/travelagent/1136/imagecontent/aa751f74_membershipbanner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 768px) {
      height: 240px;
    }
  }

  .hd-membership-hero-content {
    text-align: center;
    color: var(--color-white);
    filter: drop-shadow(var(--shadow));

    @media (max-width: 768px) {
      padding: 0 20px;
    }
  }

  .hd-membership-hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;

    @media (max-width: 768px) {
      font-size: 12px;
    }
  }

  .hd-membership-hero-title {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;

    @media (max-width: 768px) {
      font-size: 28px;
    }
  }

  .hd-membership-content {
    padding: 60px 0 100px;

    @media (max-width: 768px) {
      padding: 40px 0 60px;
    }
  }

  .hd-membership-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
      padding: 0 16px;
    }
  }

  .hd-membership-tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;

    @media (max-width: 768px) {
      gap: 12px;
      margin-bottom: 24px;
      overflow-x: auto;
      padding: 0 4px;
    }
  }

  .hd-membership-tab {
    font-family: 'Pretendard';
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text-light);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;

    @media (max-width: 768px) {
      font-size: 16px;
      padding: 6px 8px;
      min-width: max-content;
    }
  }

  .hd-membership-tab--active {
    color: var(--color-text-primary);
    border-bottom-color: var(--color-primary);
  }

  .hd-membership-content-area {
    width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    @media (max-width: 768px) {
      width: 100%;
    }
  }

  .hd-membership-header {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    gap: 8px;
    margin-bottom: 40px;
    flex-direction: column;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 8px;
    }
  }

  .hd-membership-header-badge {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    @media (max-width: 768px) {
      justify-content: center;
    }
  }

  .hd-membership-badge {
    background-color: var(--color-badge);
    color: var(--color-badge-text);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.02em;
    white-space: nowrap;
    align-self: flex-start;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }

  .hd-membership-main-content {
    /* background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius); */
    /* padding: 40px; */
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media (max-width: 768px) {
      padding: 0px;
      border: none;
      gap: 16px;
    }
  }

  .hd-membership-intro {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }

  .hd-membership-intro-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: var(--color-text-primary);

    @media (max-width: 768px) {
      font-size: 20px;
      line-height: 1.4;
      font-weight: 500;
      text-align: center;
    }
  }

  .hd-membership-intro-subtitle {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--color-text-secondary);
    text-align: left;

    @media (max-width: 768px) {
      font-size: 16px;
      text-align: center;
    }
  }

  .hd-membership-process {
    border-radius: 4px;
    border: 1px solid var(--Gray-200, #e5e7eb);
    background: var(--Common-White, #fff);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 40px;
    @media (max-width: 768px) {
      padding: 20px 15px;
    }
  }

  .hd-membership-process-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-badge-text);

    @media (max-width: 768px) {
      font-size: 18px;
    }
  }

  .hd-membership-process-description {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.5;
    color: var(--color-text-secondary);

    @media (max-width: 768px) {
      font-size: 16px;
    }
  }

  .hd-membership-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;

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

  .hd-membership-step {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;

    @media (max-width: 768px) {
      padding: 12px;
      gap: 8px;
    }
  }

  .hd-membership-step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 768px) {
      width: 40px;
      height: 40px;
    }
  }

  .hd-membership-step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hd-membership-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hd-membership-step-number {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-badge-text);
    margin-bottom: 8px;

    @media (max-width: 768px) {
      font-size: 12px;
      margin-bottom: 6px;
    }
  }

  .hd-membership-step-details {
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
      gap: 6px;
    }
  }

  .hd-membership-step-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 4px;
    }
  }

  .hd-membership-step-tag {
    background-color: var(--color-tag);
    color: var(--color-tag-text);
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;

    @media (max-width: 768px) {
      font-size: 11px;
    }
  }

  .hd-membership-step-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: var(--color-text-primary);
    flex: 1;

    @media (max-width: 768px) {
      font-size: 13px;
    }
  }

  .hd-membership-notice {
    background-color: var(--color-notice-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 24px 40px;

    @media (max-width: 768px) {
      padding: 16px 20px;
    }
  }

  .hd-membership-notice-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 12px;

    @media (max-width: 768px) {
      gap: 4px;
      margin-bottom: 8px;
    }
  }

  .hd-membership-notice-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-notice);

    @media (max-width: 768px) {
      font-size: 18px;
    }
  }

  .hd-membership-notice-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 768px) {
      width: 18px;
      height: 18px;
    }
  }

  .hd-membership-notice-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hd-membership-notice-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .hd-membership-notice-list {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;

    @media (max-width: 768px) {
      padding-left: 16px;
      gap: 4px;
    }
  }

  .hd-membership-notice-text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: var(--color-text-secondary);
    list-style-type: disc;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }

  .hd-membership-notice-divider {
    border: none;
    border-top: 1px dashed var(--color-border);
    margin: 12px 0;

    @media (max-width: 768px) {
      margin: 8px 0;
    }
  }

  .hd-membership-contact {
    display: flex;
    flex-direction: row;
    gap: 8px;

    @media (max-width: 768px) {
      flex-direction: column;
      gap: 2px;
    }
  }

  .hd-membership-contact-tag {
    background-color: var(--color-tag);
    color: var(--color-text-secondary);
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    align-self: flex-start;

    @media (max-width: 768px) {
      font-size: 12px;
    }
  }

  .hd-membership-contact-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }

  .hd-membership-cta {
    background-color: var(--color-badge);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    @media (max-width: 768px) {
      flex-direction: column;
      padding: 20px;
      gap: 16px;
      text-align: center;
    }
  }

  .hd-membership-cta-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: #674c23;
    flex: 1;

    @media (max-width: 768px) {
      font-size: 16px;
      text-align: center;
    }
  }

  .hd-membership-cta-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    cursor: pointer;
    border: none;

    &:hover {
      background-color: #b8935c;
      transform: translateY(-1px);
    }

    &:active {
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      padding: 14px 24px;
      width: 100%;
      justify-content: center;
    }
  }

  .hd-membership-cta-button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }

  /* 가예약 서비스 전용 CTA 스타일 */
  .hd-reservation-cta {
    background-color: var(--color-badge);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    @media (max-width: 768px) {
      flex-direction: column;
      padding: 20px;
      gap: 16px;
      text-align: center;
    }
  }

  .hd-reservation-cta-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: #674c23;
    flex: 1;

    @media (max-width: 768px) {
      font-size: 16px;
      text-align: center;
    }
  }

  .hd-reservation-cta-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    cursor: pointer;
    border: none;

    &:hover {
      background-color: #b8935c;
      transform: translateY(-1px);
    }

    &:active {
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      padding: 14px 24px;
      width: 100%;
      justify-content: center;
    }
  }

  .hd-reservation-cta-button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }

  .hd-membership-highlight-red {
    color: var(--red-600-deep);
  }

  /* Modal Styles */
  .hd-membership-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;

    /* iOS Safari viewport fix */
    min-height: 100vh;
    min-height: -webkit-fill-available;

    @media (max-width: 768px) {
      align-items: flex-start;
      padding: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    &.hd-membership-modal--active {
      opacity: 1;
      visibility: visible;
    }
  }

  .hd-membership-modal {
    background: white;
    border-radius: 4px;
    max-width: 542px;
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.95);
    transition: transform 0.3s ease;

    @media (max-width: 768px) {
      width: 100vw;
      height: calc(var(--vh, 1vh) * 100);
      max-width: 100vw;
      max-height: 100vh;
      border-radius: 0;
      margin: 0;
    }

    .hd-membership-modal--active & {
      transform: scale(1);
    }
  }

  .hd-membership-modal-header {
    background: white;
    border-radius: 4px 4px 0 0;
    padding: 24px 28px;
    border-bottom: 1px solid #e5e7eb;

    @media (max-width: 768px) {
      padding: 20px 16px;
    }
  }

  .hd-membership-modal-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .hd-membership-modal-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: -0.0083em;
    color: #171719;
    margin: 0;
    flex: 1;

    @media (max-width: 768px) {
      font-size: 20px;
      /* text-align: center; */
    }
  }

  .hd-membership-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;

    @media (max-width: 768px) {
      width: 36px;
      height: 36px;
    }

    &:hover {
      background-color: #f3f4f6;
    }

    img {
      width: 24px;
      height: 24px;

      @media (max-width: 768px) {
        width: 20px;
        height: 20px;
      }
    }
  }

  .hd-membership-modal-body {
    flex: 1;
    -webkit-overflow-scrolling: touch;
    padding: 0 28px;

    @media (max-width: 768px) {
      padding: 0 16px;
      overflow-y: auto;
    }
  }

  .hd-membership-modal-content {
    width: 100%;
  }

  .hd-membership-modal-form-container {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 24px;
    margin: 20px 0;

    @media (max-width: 768px) {
      padding: 16px;
      margin: 16px 0;
    }
  }

  .hd-membership-modal-intro {
    margin-bottom: 24px;

    @media (max-width: 768px) {
      margin-bottom: 20px;
    }
  }

  .hd-membership-modal-intro-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    letter-spacing: -0.0111em;
    color: #a87b38;
    margin: 0 0 8px 0;

    @media (max-width: 768px) {
      font-size: 16px;
      margin-bottom: 6px;
    }
  }

  .hd-membership-modal-intro-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.0125em;
    color: #444b55;
    margin: 0;

    @media (max-width: 768px) {
      font-size: 14px;
    }
  }

  .hd-membership-modal-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;

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

  .hd-membership-modal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .hd-membership-modal-field--full {
    grid-column: 1 / -1;
  }

  .hd-membership-modal-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.43;
    letter-spacing: -0.0143em;
    color: #5b626b;
    display: flex;
    gap: 2px;
    align-items: center;
  }

  .hd-membership-modal-required {
    color: #ec0017;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.43;
    letter-spacing: 0.0145em;
  }

  .hd-membership-modal-note {
    margin-left: 4px;
    color: #a2a7ae;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.2px;
  }

  .hd-membership-modal-input-group {
    position: relative;
  }

  .hd-membership-modal-input,
  .hd-membership-modal-select,
  .hd-membership-modal-textarea {
    width: 100%;
    padding: 4px 16px;
    border: 1px solid #ccd0d7;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.43;
    color: #161b23;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;

    &:focus {
      outline: none;
      border-color: #cda461;
      box-shadow: 0 0 0 3px rgba(205, 164, 97, 0.1);
    }

    &::placeholder {
      color: #9ca3af;
    }
  }

  .hd-membership-modal-input,
  .hd-membership-modal-select {
    height: 36px;
  }

  .hd-membership-modal-textarea {
    height: 120px;
    resize: none;
  }

  .hd-membership-modal-footer {
    background: white;
    border-radius: 0 0 4px 4px;
    padding: 24px 28px;
    display: flex;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #e5e7eb;

    @media (max-width: 768px) {
      padding: 20px 16px;
      flex-direction: column;
    }
  }

  .hd-membership-modal-button {
    height: 52px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.0125em;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid;
    padding: 4px 12px;
    width: 239px;

    @media (max-width: 768px) {
      width: 100%;
    }

    &:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
  }

  .hd-membership-modal-button--cancel {
    background: white;
    color: #cda461;
    border-color: #cda461;

    &:hover:not(:disabled) {
      background: #fef7ed;
    }

    &:active:not(:disabled) {
      background: #fde68a;
    }
  }

  .hd-membership-modal-button--submit {
    background: #cda461;
    color: white;
    border-color: #cda461;

    &:hover:not(:disabled) {
      background: #b8935c;
      border-color: #b8935c;
    }

    &:active:not(:disabled) {
      background: #a67c52;
      border-color: #a67c52;
    }
  }

  /* iOS Safari specific fixes */
  @supports (-webkit-touch-callout: none) {
    .hd-membership-modal-overlay {
      min-height: 100vh;
      min-height: -webkit-fill-available;
    }

    .hd-membership-modal {
      max-height: calc(100vh - 40px);
      max-height: calc(var(--vh, 1vh) * 100 - 40px);
    }
  }

  /* Prevent body scroll when modal is open */
  body.hd-membership-modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;

    @media (max-width: 768px) {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }
  }

  /* iOS keyboard appearance adjustment */
  @media (max-width: 768px) {
    .hd-membership-modal-overlay {
      position: fixed;
      height: 100%;
      -webkit-overflow-scrolling: touch;
    }

    .hd-membership-modal {
      min-height: auto;
      max-height: calc(100vh);
      max-height: calc(var(--vh, 1vh) * 100);
      margin: 0;
    }

    .hd-membership-modal-body {
      max-height: calc(100vh - 200px);
      max-height: calc(var(--vh, 1vh) * 100 - 200px);
    }
  }

  .hd-membership-modal-select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M8 10L12 14L16 10' stroke='%23444B55' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 24px;
    padding-right: 36px;
  }
}

/* 여행먼저 크루즈 Hero 스타일 */
.hd-membership-cruise-hero {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.cruise-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://media.eoding.com/media/travelagent/1136/imagecontent/ce2848d8_cruise-hero-bg.jpg')
    center/cover no-repeat;
  z-index: 1;
}
.cruise-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cruise-hero-content {
  font-size: 16px;
  color: #fff;
  text-align: center;
  z-index: 3;
}
.cruise-hero-title {
  font-size: 32px;
  margin-bottom: 8px;
}
.cruise-hero-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .hd-membership-cruise-hero {
    height: 140px;
    margin-bottom: 16px;
  }
  .cruise-hero-title {
    font-size: 18px;
  }
  .cruise-hero-desc {
    font-size: 12px;
  }
}

/* 여행먼저 크루즈 서브탭 스타일 */
.hd-membership-cruise-subtabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: #ffffff;
  border-radius: 4px 4px 0 0;
  box-shadow: 0px 12px 20px 0px rgba(206, 206, 206, 0.1);
  width: 100%;
  margin-bottom: 0;
}

.cruise-subtab {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.cruise-subtab::after {
  content: '';
  width: 1px;
  height: 24px;
  background: #e5e7eb;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.cruise-subtab:last-child::after,
.hd-membership-cruise-subtabs .cruise-subtab:nth-child(4)::after {
  display: none !important;
}

.cruise-subtab .english-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25em;
  letter-spacing: 1.25%;
  text-align: center;
  color: #a2a7ae;
  margin-bottom: 2px;
}

.cruise-subtab .korean-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -1.25%;
  text-align: center;
  color: #a2a7ae;
}

.cruise-subtab--active .english-title,
.cruise-subtab--active .korean-title {
  color: #161b23;
}

/* 모바일 네비게이션 버튼 - PC에서는 숨김 */
.mobile-nav-btn {
  display: none;
}

.cruise-subcontent-area {
  border-radius: 0 0 4px 4px;
  padding: 0px;
  min-height: 400px;
}

/* Premium Membership Content Styles */
.premium-title-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
  }
}
.premium-img {
  display: block;
  margin-right: 80px;
  width: 335.604px;
  height: 334px;
  @media (max-width: 768px) {
    margin-right: 0px;
    width: 100%;
    height: 100%;
  }
}
.premium-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 0px 0px 0px 20px;
  width: 1100px;
  height: 334px;
  @media (max-width: 768px) {
    margin-bottom: 24px;
  }
}

.premium-badge {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  background: #f6f2e9;
  color: #a87b38;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4285714285714286em;
  letter-spacing: -1.4285714498588018%;
  padding: 2px 6px;
  border-radius: 2px;
  text-align: left;
}

.premium-intro {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 8px;
}

.premium-main-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4285714285714286em;
  letter-spacing: -0.7142857249294009%;
  color: #161b23;
  text-align: left;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.premium-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: -1.0000000149011612%;
  color: #444b55;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.benefits-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 40px;
}

.benefits-header {
  margin-bottom: 24px;
}

.benefits-title {
  font-size: 18px;
  font-weight: 600;
  color: #a87b38;
  margin: 0 0 8px 0;
}

.benefits-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -1.25%;
  color: #444b55;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  background: #f9fafb;
  border-left: 4px solid #cda461;
  border-radius: 0 4px 4px 0;
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 6px;
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.benefit-number {
  font-size: 16px;
  font-weight: 600;
  color: #a87b38;
}

.benefit-tag {
  background: #e5e7eb;
  color: #161b23;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 2px;
}

.benefit-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.43;
  color: #161b23;
  margin: 0;
}

.info-cards {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1100px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card:not(:last-child) {
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 24px;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-title {
  font-size: 18px;
  font-weight: 600;
  color: #29376b;
  margin: 0;
}

.info-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -1.25%;
  color: #444b55;
  margin: 0;
  .note {
    color: #7b818e;
  }
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  @media (max-width: 768px) {
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.feature-tag {
  background: #e5e7eb;
  color: #161b23;
  font-size: 14px;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 2px;
  height: 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.feature-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -1.25%;
  color: #444b55;
  margin: 0;
}

.membership-details {
  margin-bottom: 20px;
}

.details-title {
  font-size: 24px;
  font-weight: 600;
  color: #161b23;
  margin: 0 0 12px 0;
}

.details-table {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.table-row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}

.table-row:last-child {
  border-bottom: none;
}

.table-header {
  background: #f3f4f6;
  width: 192px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #161b23;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;
}

.table-content {
  flex: 1;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #444b55;
}

.table-content .note {
  color: #7b818e;
}

.include-exclude {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}

.include-section,
.exclude-section {
  background: #ffffff;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.include-section {
  border-bottom: none;
  border-top: 1px solid #15204d;
}

.exclude-section {
  border-top: 1px solid #ae0000;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.section-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.include-section .section-title {
  color: #15204d;
}

.exclude-section .section-title {
  color: #ae0000;
}

.section-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #161b23;
  margin: 0;
}

.section-content .note {
  color: #444b55;
}

.important-notice {
  background: #f3f4f6;
  border-radius: 4px;
  padding: 24px 40px;
}

.notice-title {
  font-size: 18px;
  font-weight: 600;
  color: #444b55;
  text-align: left;
  margin: 0 0 12px 0;
}

.notice-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.43;
  color: #444b55;
  list-style-type: disc;
  margin: 0;
}

.notice-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.43;
  color: #444b55;
  margin: 0;
}

/* 서브탭 반응형 스타일 */
@media (max-width: 768px) {
  .hd-membership-cruise-subtabs {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0px 8px 14px 0px rgba(206, 206, 206, 0.1);
    position: relative;
  }

  .cruise-subtab {
    display: none;
  }

  .cruise-subtab--active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 234px;
    background: none;
    border: none;
    padding: 0;
  }

  .cruise-subtab::after {
    display: none;
  }

  .cruise-subtab .english-title {
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 1.25%;
    text-align: center;
    color: #161b23;
  }

  .cruise-subtab .korean-title {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: -1.25%;
    text-align: center;
    color: #161b23;
    font-weight: 600;
  }

  /* 모바일 네비게이션 버튼 - 모바일에서만 표시 */
  .mobile-nav-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 2px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }

  /* .mobile-nav-btn--prev {
    background: #f3f4f6;
  } */

  .mobile-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .mobile-nav-btn--prev svg {
    transform: rotate(180deg);
  }

  .cruise-subcontent-area {
    padding: 0px;
    min-height: 300px;
  }
}

/* Mobile responsive styles for premium title section */
@media (max-width: 768px) {
  .premium-title {
    margin-top: 40px;
    width: 100%;
    height: auto;
    padding: 0px 0px 0px 0px;
    gap: 8px;
  }

  .premium-main-title {
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.5%;
  }

  .premium-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.8%;
  }

  .badge-text {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -1%;
  }
  .premium-badge {
    justify-content: center;
  }
}

.benefits-card {
  padding: 20px;
}

.info-cards {
  width: 100%;
  padding: 20px;
}

.info-card-header {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.table-header {
  width: 120px;
  padding: 16px 20px;
  font-size: 14px;
}

.table-content {
  padding: 16px;
  font-size: 14px;
}

.include-exclude {
  gap: 0;
}

.include-section,
.exclude-section {
  padding: 16px;
}

.important-notice {
  padding: 16px 20px;
}

.cruise-transfer-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1100px;
  height: auto;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.cruise-transfer-pc {
  display: block;
  width: 100%;
  height: auto;
  @media (max-width: 768px) {
    display: none;
  }
}

.cruise-transfer-mobile {
  display: none;

  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Layout Layer */
@layer layout {
  .hd-membership-main {
    display: flex;
    flex-direction: column;
  }
}

/* Utilities Layer */
@layer utilities {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .flex-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

/* Available Destinations Styles */
.available-destinations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0px;

  @media (max-width: 768px) {
    padding: 20px 0px;
    gap: 20px;
  }
}

.destinations-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1100px;

  @media (max-width: 768px) {
    max-width: 400px;
    align-items: center;
  }
}

.destinations-title-section {
  display: flex;
  align-items: center;
  gap: 12px;

  @media (max-width: 768px) {
    justify-content: center;
  }
}

.destinations-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.83%;
  color: #161b23;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
  }
}

.destinations-map {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.destinations-map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  @media (max-width: 768px) {
    max-width: 400px;
    height: 211px;
  }
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  box-shadow: 0px 12px 20px 0px rgba(206, 206, 206, 0.1);

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 20px;
  }
}

.destination-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}

.destination-image {
  width: 100%;
  height: 320px;
  overflow: hidden;

  @media (max-width: 768px) {
    height: 237px;
  }
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-content {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;

  @media (max-width: 768px) {
    padding: 20px;
    height: auto;
    min-height: auto;
  }
}

.destination-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;

  @media (max-width: 768px) {
    gap: 8px;
  }
}

.destination-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.destination-title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.destination-english {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.17;
  letter-spacing: 0.83%;
  color: #15204d;

  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1%;
  }
}

.destination-divider {
  width: 1px;
  height: 12px;
  background-color: #7b818e;
  flex-shrink: 0;
}

.destination-korean {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #7b818e;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1.25%;
  }
}

.destination-countries {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #161b23;
  margin: 0;
  white-space: nowrap;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1.25%;
    white-space: wrap;
  }
}

.destination-description {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -1.25%;
  color: #444b55;
  margin: 0;
  flex-grow: 1;
  /* white-space: nowrap; */

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -1.43%;
    white-space: wrap;
  }
}

.destinations-notice {
  width: 100%;
  max-width: 1100px;
  background: #f3f4f6;
  border-radius: 4px;
  padding: 24px 40px;

  @media (max-width: 768px) {
    max-width: 400px;
    padding: 20px 15px;
  }
}

.destinations-notice .notice-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #444b55;
  text-align: left;
  margin: 0 0 12px 0;
}

.destinations-notice .notice-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.destinations-notice .notice-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;

  @media (max-width: 768px) {
    padding-left: 16px;
  }
}

.destinations-notice .notice-list li {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.43;
  letter-spacing: -1.43%;
  color: #444b55;
  list-style-type: disc;
  margin: 0;
}

/* Premium+ Styles */
.premium-plus-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 40px;

  @media (max-width: 768px) {
    margin-bottom: 20px;
  }
}

.premium-plus-header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 1100px;
  width: 100%;

  @media (max-width: 768px) {
    max-width: 400px;
    align-items: center;
  }
}

.premium-plus-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}

.premium-plus-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 8px;
}

.premium-plus-text-group {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  align-self: stretch;
  gap: 12px;

  @media (max-width: 768px) {
    justify-content: center;
  }
}

.premium-plus-description-text {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4375em;
  letter-spacing: -0.625%;
  text-align: left;
  color: #161b23;
  margin: 0;
  flex: 1;

  @media (max-width: 768px) {
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -1%;
  }
}

.premium-plus-text-group:last-child .premium-plus-description-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4em;
  letter-spacing: -1%;
  color: #444b55;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1.25%;
  }
}

.premium-plus-hero {
  position: relative;
  width: 100%;
  height: 518px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 80px;

  @media (max-width: 768px) {
    height: 240px;
    margin-bottom: 40px;
  }
}

.premium-plus-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://media.eoding.com/media/travelagent/1136/imagecontent/f71c7bad_premium-plus-bg-pc-776931.jpg')
    center/cover no-repeat;
  z-index: 1;

  @media (max-width: 768px) {
    background: url('https://media.eoding.com/media/travelagent/1136/imagecontent/9550389b_premium-plus-bg-mobile.jpg')
      center/cover no-repeat;
  }
}

.premium-plus-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.premium-plus-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-plus-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 24px;
  text-align: center;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  word-break: keep-all;

  @media (max-width: 768px) {
    gap: 12px;
  }
}

.premium-plus-hero-subtitle {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -1.25%;
  text-align: center;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -1.43%;
  }
}

.premium-plus-hero-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 0.7em;
  letter-spacing: 2%;
  text-align: center;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 32px;
    line-height: 1.1em;
  }
}

.premium-plus-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 80px;

  @media (max-width: 768px) {
    max-width: 400px;
    margin-bottom: 40px;
    gap: 20px;
  }
}

.premium-plus-section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-plus-section-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.83%;
  color: #161b23;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -1%;
  }
}

.premium-plus-section-note {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -1.25%;
  color: #444b55;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -1.43%;
  }
}

.premium-plus-usage-table {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.usage-table-row {
  display: flex;
  border-bottom: 1px solid #e5e7eb;

  /* @media (max-width: 768px) {
    flex-direction: column;
  } */
}

.usage-table-row:last-child {
  border-bottom: none;
}

.usage-table-header {
  background: #f3f4f6;
  width: 192px;
  padding: 16px 40px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -1.25%;
  color: #161b23;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;

  @media (max-width: 768px) {
    width: 152px;
    padding: 16px 20px;
    font-size: 14px;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

.usage-table-content {
  flex: 1;
  padding: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -1.25%;
  color: #444b55;

  @media (max-width: 768px) {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -1.43%;
  }
}

.premium-plus-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.includes-section,
.excludes-section {
  background: #ffffff;
  padding: 24px;
  border: 1px solid #e5e7eb;

  @media (max-width: 768px) {
    padding: 16px 20px;
  }
}

.includes-section {
  border-top: 1px solid #15204d;
}

.excludes-section {
  border-top: 1px solid #ae0000;
}

.includes-header,
.excludes-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.includes-icon,
.excludes-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.includes-title,
.excludes-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1.25%;
  }
}

.includes-title {
  color: #15204d;
}

.excludes-title {
  color: #ae0000;
}

.includes-content,
.excludes-content {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -1.25%;
  color: #161b23;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -1.43%;
  }
}

.premium-plus-price-example {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 40px;

  @media (max-width: 768px) {
    padding: 24px 20px;
  }
}

.price-example-text {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4em;
  letter-spacing: -1%;
  color: #444b55;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: -1.25%;
  }
}

.premium-plus-destinations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  box-shadow: 0px 12px 20px 0px rgba(206, 206, 206, 0.1);

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

.destination-item {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;

  @media (max-width: 768px) {
    flex-direction: row; /* 모바일에서도 가로 레이아웃 유지 */
  }
}

.destination-image {
  width: 240px;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;

  @media (max-width: 768px) {
    width: 160px;
    height: 160px;
  }
}

.destination-img-pc {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  @media (max-width: 768px) {
    display: none;
  }
}

.destination-img-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;

  @media (max-width: 768px) {
    display: block;
  }
}

/* .destination-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px;
  flex: 1;

  @media (max-width: 768px) {
    padding: 12px;
    gap: 8px;
  }
} */

.destination-info {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 4px;
  flex: 1;
}

.destination-name {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #161b23;
  margin: 0 0 4px 0;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -1.43%;
  }
}

.destination-details {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 6px;

  @media (max-width: 768px) {
    gap: 4px;
  }
}

.destination-location,
.destination-description {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -1.25%;
  color: #444b55;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: -1.67%;
  }
}

.destination-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
}

.destination-season {
  display: flex;
  align-items: center;
  gap: 4px;
}

.season-badge {
  background-color: #f6f2e9;
  color: #a87b38;
  padding: 2px 6px;
  border-radius: 2px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.43;
  letter-spacing: -1.43%;

  @media (max-width: 768px) {
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: -1.67%;
  }
}

.premium-plus-application-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 8px;

  @media (max-width: 768px) {
    gap: 12px;
  }
}

.application-step {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;

  @media (max-width: 768px) {
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }
}

.step-number {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-right: 8px;

  @media (max-width: 768px) {
    margin-right: 0;
    align-self: stretch;
  }
}

.step-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #29376b;
  color: #ffffff;
  border-radius: 50%;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.43;
  letter-spacing: -1.43%;

  @media (max-width: 768px) {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;

  @media (max-width: 768px) {
    align-items: flex-start;
    align-self: stretch;
    flex-direction: column;
  }
}

.step-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #29376b;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1.25%;
  }
}

.step-description {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.43;
  letter-spacing: -1.43%;
  color: #444b55;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 13px;
  }
}

.application-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 4px;

  @media (max-width: 768px) {
    padding: 16px;
  }
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #29376b;
  margin: 0;
  text-align: center;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1.25%;
  }
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 12px;

  @media (max-width: 768px) {
    gap: 8px;
  }
}

.contact-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-self: stretch;
  gap: 12px;

  @media (max-width: 768px) {
    flex-direction: column;
    gap: 8px;
  }
}

.contact-tag {
  background: #e5e7eb;
  color: #444b55;
  padding: 2px 4px;
  border-radius: 2px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.33;
  letter-spacing: -1.67%;
  align-self: flex-start;

  @media (max-width: 768px) {
    font-size: 11px;
  }
}

.contact-number {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.43;
  letter-spacing: -1.43%;
  color: #444b55;

  @media (max-width: 768px) {
    font-size: 13px;
  }
}

.premium-plus-notice {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 40px;

  @media (max-width: 768px) {
    padding: 24px 20px;
  }
}

.notice-text {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4em;
  letter-spacing: -1%;
  color: #444b55;
  margin: 0;
  padding-left: 10px;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.625em;
    letter-spacing: -1.25%;
  }
}

.premium-plus-footer {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;

  @media (max-width: 768px) {
    height: 200px;
    margin-top: 20px;
  }
}

.premium-plus-footer-bg {
  position: absolute;
  inset: 0;
  background: url('https://media.eoding.com/media/travelagent/1136/imagecontent/3603fcf9_premium-plus-footer-bg-pc-1df1ee.jpg')
    center/cover no-repeat;
  z-index: 1;

  @media (max-width: 768px) {
    background: url('https://media.eoding.com/media/travelagent/1136/imagecontent/ed44bbf8_premium-plus-footer-bg-mobile-6923f0.jpg')
      center/cover no-repeat;
  }
}

.premium-plus-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 55, 0.35);
  z-index: 2;
}

.premium-plus-footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;

  @media (max-width: 768px) {
    padding: 20px;
  }
}

.premium-plus-footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  gap: 10px;
  color: #ffffff;
  background: rgba(135, 141, 147, 0.25);
  border-radius: 4px;
  width: 100%;
  max-width: 1020px;

  @media (max-width: 768px) {
    gap: 12px;
  }
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 12px;

  @media (max-width: 768px) {
    gap: 8px;
  }
}

.footer-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.36;
  letter-spacing: -0.71%;
  color: #ffffff;
  text-align: left;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: -1.11%;
  }
}

.footer-description {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.67;
  letter-spacing: -1.11%;
  color: #ffffff;
  text-align: left;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -1.67%;
  }
}

.footer-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;

  /* @media (max-width: 768px) {
    justify-content: center;
  } */
}

.cta-text {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #ffffff;
  text-align: right;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -1.43%;
    text-align: center;
  }
}

.cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;

  @media (max-width: 768px) {
    width: 16px;
    height: 16px;
  }
}

/* Cruise Available Destinations Styles - Unique Classes */
.cruise-available-destinations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0px;

  @media (max-width: 768px) {
    padding: 20px 0px;
    gap: 20px;
  }
}

.cruise-destinations-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1100px;

  @media (max-width: 768px) {
    max-width: 400px;
    align-items: center;
  }
}

.cruise-destinations-title-section {
  display: flex;
  align-items: center;
  gap: 12px;

  @media (max-width: 768px) {
    justify-content: center;
  }
}

.cruise-destinations-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.83%;
  color: #161b23;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
  }
}

.cruise-destinations-map {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.cruise-destinations-map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  @media (max-width: 768px) {
    max-width: 400px;
    height: 211px;
  }
}

.cruise-destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1100px;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 20px;
  }
}

.cruise-destination-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 12px 20px 0px rgba(206, 206, 206, 0.1);
}

.cruise-destination-image {
  width: 100%;
  height: 320px;
  overflow: hidden;

  @media (max-width: 768px) {
    height: 237px;
  }
}

.cruise-destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cruise-destination-content {
  padding: 24px;
  height: auto;
  display: flex;
  flex-direction: column;

  @media (max-width: 768px) {
    padding: 20px;
    height: auto;
    min-height: auto;
  }
}

.cruise-destination-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;

  @media (max-width: 768px) {
    gap: 8px;
  }
}

.cruise-destination-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cruise-destination-title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cruise-destination-english {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.17;
  letter-spacing: 0.83%;
  color: #15204d;

  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1%;
  }
}

.cruise-destination-divider {
  width: 1px;
  height: 12px;
  background-color: #7b818e;
  flex-shrink: 0;
}

.cruise-destination-korean {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #7b818e;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1.25%;
  }
}

.cruise-destination-countries {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #161b23;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1.25%;
  }
}

.cruise-destination-description {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -1.25%;
  color: #444b55;
  margin: 0;
  flex-grow: 1;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -1.43%;
  }
}

.cruise-destinations-notice {
  width: 100%;
  max-width: 1100px;
  background: #f3f4f6;
  border-radius: 4px;
  padding: 24px 40px;

  @media (max-width: 768px) {
    max-width: 400px;
    padding: 20px 15px;
  }
}

.cruise-destinations-notice .notice-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: -1.11%;
  color: #444b55;
  text-align: left;
  margin: 0 0 12px 0;
}

.cruise-destinations-notice .notice-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cruise-destinations-notice .notice-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;

  @media (max-width: 768px) {
    padding-left: 16px;
  }
}

.cruise-destinations-notice .notice-list li {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.43;
  letter-spacing: -1.43%;
  color: #444b55;
  list-style-type: disc;
  margin: 0;
}
