    @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

    :root {
      --brand-blue: #1239ba;
      --brand-orange: #ff6828;
      --text: #161b26;
      --muted: #697386;
      --line: #e9edf3;
      --header-height: 92px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      background: #fff;
      font-family: "Noto Sans KR", sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .site-header {
      position: sticky;
      z-index: 1000;
      top: 0;
      width: 100%;
      height: var(--header-height);
      border-bottom: 1px solid var(--line);
      background: #fff;
      /*box-shadow: 0 8px 30px rgba(20, 39, 82, .045);
      backdrop-filter: blur(12px);*/
    }

    .header-inner {
      display: grid;
      grid-template-columns: 290px minmax(500px, 1fr) 310px;
      align-items: center;
      width: min(1320px, calc(100% - 48px));
      height: 100%;
      margin: 0 auto;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      width: 264px;
      height: 58px;
      overflow: hidden;
	  /*border:1px solid red*/
    }
    .brand svg {
      display: block;
      width: 100%;
      height: 100%;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      gap: clamp(22px, 2.3vw, 42px);
    }
    .main-nav a {
      position: relative;
      display: flex;
      align-items: center;
      height: 100%;
      white-space: nowrap;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: -.035em;
      transition: color .2s ease;
    }
    .main-nav a::after {
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 3px;
      border-radius: 3px 3px 0 0;
      background: linear-gradient(90deg, var(--brand-blue), #2ba5db);
      content: "";
      transition: right .22s ease, left .22s ease;
    }
    .main-nav a:hover,
    .main-nav a:focus-visible { color: var(--brand-blue); }
    .main-nav a:hover::after,
    .main-nav a:focus-visible::after { right: 0; left: 0; }

    .quick-nav {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 5px;
    }
    .quick-link {
      display: grid;
      min-width: 68px;
      place-items: center;
      gap: 5px;
      padding: 8px 7px;
      border-radius: 12px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 500;
      line-height: 1;
      transition: color .2s ease, background-color .2s ease, transform .2s ease;
    }
    .quick-link svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.8;
    }
    .quick-link:hover,
    .quick-link:focus-visible {
      color: var(--brand-blue);
      background: #f3f6ff;
      transform: translateY(-1px);
    }
    .quick-link.reservation {
      color: #e64d14;
      background: #fff3ec;
    }
    .quick-link.reservation:hover,
    .quick-link.reservation:focus-visible { background: #ffe9dc; }
    .quick-link.kakao {
      color: #3b1e1e;
      background: #fee500;
    }
    .quick-link.kakao:hover,
    .quick-link.kakao:focus-visible {
      color: #3b1e1e;
      background: #f4da00;
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 0;
      border-radius: 12px;
      color: var(--text);
      background: #f5f7fa;
      cursor: pointer;
    }
    .menu-button svg { width: 24px; height: 24px; }

    .mobile-panel,
    .mobile-dim { display: none; }

    .page-canvas {
      min-height: 130vh;
      padding: 30px 0 0px;
      overflow: hidden;
      background:
        radial-gradient(circle at 14% 8%, rgba(18,57,186,.045), transparent 25rem),
        radial-gradient(circle at 88% 4%, rgba(255,104,40,.045), transparent 22rem),
        #fff;
    }

    .hero-slider {
      --slide-width: min(58vw, 1100px);
      --slide-gap: 38px;
      position: relative;
      width: 100%;
      height: clamp(390px, 27vw, 520px);
	  background:#fff;
	  
    }
    .hero-viewport {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    .hero-track {
      display: flex;
      width: max-content;
      height: 100%;
      gap: var(--slide-gap);
      will-change: transform;
      transition: transform .65s ease;
    }
    .hero-track.no-transition { transition: none; }
    .hero-card {
      position: relative;
      flex: 0 0 var(--slide-width);
      width: var(--slide-width);
      height: 100%;
      overflow: hidden;
      border-radius: 34px;
      background: #183b5a;
      /*box-shadow: 0 20px 55px rgba(11, 35, 61, .12);*/
    }
    .hero-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-card img[src*="jeju-coast"] { object-position: center 56%; }
    .hero-card img[src*="jeju-tea-field"] { object-position: center 47%; }
    .hero-card img[src*="jeju-autumn"] { object-position: center 43%; }
    .hero-shade {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(4,20,40,.60) 0%, rgba(6,24,43,.20) 43%, rgba(5,17,28,.03) 70%),
        linear-gradient(180deg, rgba(0,0,0,.22), transparent 38%, rgba(0,0,0,.12));
    }
    .hero-copy {
      position: absolute;
      z-index: 2;
      top: clamp(42px, 4vw, 66px);
      left: clamp(40px, 4vw, 66px);
      max-width: 70%;
      color: #fff;
      text-shadow: 0 2px 12px rgba(0,0,0,.18);
    }
    .hero-copy h1 {
      margin: 0 0 14px;
      font-size: clamp(30px, 2.35vw, 44px);
      line-height: 1.25;
      letter-spacing: -.055em;
      font-weight: 700;
    }
    .hero-copy p {
      margin: 0;
      font-size: clamp(15px, 1.03vw, 19px);
      line-height: 1.7;
      letter-spacing: -.025em;
      font-weight: 500;
    }
    .slider-controls {
      position: absolute;
      z-index: 10;
      right: calc((100vw - var(--slide-width)) / 2 + 24px);
      bottom: 22px;
      display: flex;
      gap: 8px;
    }
    .slide-button {
      display: grid;
      width: 42px;
      height: 42px;
      padding: 0;
      place-items: center;
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 50%;
      color: #fff;
      background: rgba(9,23,40,.34);
      backdrop-filter: blur(8px);
      cursor: pointer;
      transition: background-color .2s ease, transform .2s ease;
    }
    .slide-button:hover,
    .slide-button:focus-visible {
      background: rgba(9,23,40,.65);
      transform: translateY(-1px);
    }
    .slide-button svg {
      width: 20px;
      height: 20px;
    }

    .travel-products {
      width: min(1180px, calc(100% - 64px));
      margin: 118px auto 0;
    }
    .product-section {
      margin-bottom: 118px;
    }
    .product-section-title {
      margin: 0 0 48px;
      text-align: center;
      font-size: clamp(28px, 2.2vw, 36px);
      line-height: 1.3;
      letter-spacing: -.055em;
      font-weight: 700;
    }
    .product-carousel {
      position: relative;
    }
    .product-viewport {
      width: 100%;
      overflow: hidden;
    }
    .product-track {
      display: flex;
      gap: 24px;
      transition: transform .55s ease;
      will-change: transform;
    }
    .product-card {
      flex: 0 0 calc((100% - 48px) / 3);
      min-width: 0;
      color: var(--text);
    }
    .product-photo {
      position: relative;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 1.48 / 1;
      border-radius: 18px;
      background: #eef2f6;
    }
    .product-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      transition: transform .48s cubic-bezier(.22,.7,.25,1);
      will-change: transform;
    }
    .product-card:hover .product-photo img,
    .product-card:focus-visible .product-photo img {
      transform: scale(1.075);
    }
    .product-badge {
      position: absolute;
      bottom: 0;
      left: 18px;
      padding: 8px 12px 7px;
      border-radius: 7px 7px 0 0;
      color: #fff;
      background: #3473c8;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
    }
    .product-info {
      padding: 19px 18px 0;
    }
    .product-name {
      margin: 0 0 7px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: -.035em;
      font-weight: 600;
    }
    .product-desc {
      margin: 0;
      color: #727987;
      font-size: 15px;
      line-height: 1.5;
      letter-spacing: -.02em;
    }
    .product-price {
      margin: 23px 0 15px;
      font-size: 15px;
      line-height: 1;
    }
    .product-price strong {
      font-size: 26px;
      letter-spacing: -.035em;
      font-weight: 700;
    }
    .product-tags {
      display: block;
      overflow: hidden;
      width: 100%;
      padding: 13px 16px;
      border-radius: 6px;
      color: #64707f;
      background: #edf6fc;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 14px;
      line-height: 1.2;
    }
    .product-arrow {
      position: absolute;
      z-index: 3;
      top: 31%;
      display: grid;
      width: 48px;
      height: 48px;
      padding: 0;
      place-items: center;
      border: 1px solid #dde2e8;
      border-radius: 50%;
      color: #767f8c;
      background: #fff;
      box-shadow: 0 3px 10px rgba(16,31,58,.08);
      cursor: pointer;
      transition: color .2s ease, border-color .2s ease, transform .2s ease;
    }
    .product-arrow:hover,
    .product-arrow:focus-visible {
      color: var(--brand-blue);
      border-color: #bac8e3;
      transform: translateY(-1px);
    }
    .product-arrow.prev { left: -68px; }
    .product-arrow.next { right: -68px; }
    .product-arrow svg { width: 21px; height: 21px; }

    .shortcut-section {
      width: 100%;
      margin: 4px 0 0;
      padding: 64px max(32px, calc((100% - 1180px) / 2)) 72px;
      background-image:
        linear-gradient(180deg, rgba(242,250,253,.94), rgba(255,255,255,.97)),
        url("assets/jeju-coast.jpg");
      background-position: center;
      background-size: cover;
    }
    .shortcut-title {
      margin: 0 0 28px;
      text-align: center;
      font-size: clamp(26px, 2vw, 32px);
      line-height: 1.3;
      letter-spacing: -.055em;
      font-weight: 700;
    }
    .shortcut-grid {
      display: grid;
      grid-template-columns: repeat(8, minmax(132px, 1fr));
      gap: 12px;
      overflow-x: auto;
      padding: 8px 4px 18px;
      scroll-snap-type: x proximity;
      scrollbar-color: rgba(18,57,186,.32) rgba(255,255,255,.45);
      scrollbar-width: thin;
    }
    .shortcut-card {
      --shortcut-color: #1769b7;
      --shortcut-soft: #eaf5ff;
      position: relative;
      overflow: hidden;
      display: flex;
      min-width: 0;
      min-height: 220px;
      padding: 24px 10px 17px;
      flex-direction: column;
      align-items: center;
      border: 1px solid rgba(195, 211, 224, .72);
      border-radius: 15px;
      background: rgba(255,255,255,.96);
      box-shadow: 0 8px 22px rgba(28, 59, 85, .08);
      scroll-snap-align: start;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .shortcut-card:nth-child(1) { --shortcut-color: #1673c8; --shortcut-soft: #e9f4ff; }
    .shortcut-card:nth-child(2) { --shortcut-color: #347c58; --shortcut-soft: #eaf6ef; }
    .shortcut-card:nth-child(3) { --shortcut-color: #159a70; --shortcut-soft: #e5f8f1; }
    .shortcut-card:nth-child(4) { --shortcut-color: #555ec8; --shortcut-soft: #eff0ff; }
    .shortcut-card:nth-child(5) { --shortcut-color: #e9662e; --shortcut-soft: #fff0e9; }
    .shortcut-card:nth-child(6) { --shortcut-color: #1769b7; --shortcut-soft: #e9f3fc; }
    .shortcut-card:nth-child(7) { --shortcut-color: #118c91; --shortcut-soft: #e6f7f7; }
    .shortcut-card:nth-child(8) { --shortcut-color: #da8e0b; --shortcut-soft: #fff5db; }
    .shortcut-card:hover,
    .shortcut-card:focus-visible {
      border-color: var(--shortcut-color);
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(28, 59, 85, .13);
    }
    .shortcut-icon-wrap {
      display: grid;
      width: 68px;
      height: 68px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 20px;
      color: var(--shortcut-color);
      background: var(--shortcut-soft);
    }
    .shortcut-icon-wrap svg { width: 34px; height: 34px; }
    .shortcut-content {
      display: flex;
      width: 100%;
      min-height: 0;
      padding: 16px 0 0;
      flex: 1;
      flex-direction: column;
      text-align: center;
    }
    .shortcut-content h3 {
      display: grid;
      min-height: 40px;
      margin: 0;
      place-items: center;
      font-size: 16px;
      line-height: 1.25;
      letter-spacing: -.045em;
      font-weight: 700;
    }
    .shortcut-content p {
      min-height: 32px;
      margin: 4px 0 0;
      color: #727987;
      font-size: 12px;
      line-height: 1.4;
      letter-spacing: -.025em;
    }

    .support-section {
      padding: 54px 32px 64px;
      background: #eef5fb;
	 
    }
    .support-inner {
      display: grid;
      width: min(1180px, 100%);
      margin: 0 auto;
      min-height: 280px;
      padding: 34px 38px;
      grid-template-columns: 1.5fr .92fr .92fr;
      gap: 32px;
      border: 1px solid #e4e8ec;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 8px 28px rgba(28, 52, 72, .06);
    }
    .notice-panel {
      padding-right: 34px;
      border-right: 1px solid #e6eaee;
    }
    .support-heading {
      display: flex;
      min-height: 36px;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid #25303b;
    }
    .support-heading h2 {
      margin: 0;
      font-size: 20px;
      line-height: 1.3;
      letter-spacing: -.04em;
      font-weight: 700;
    }
    .notice-more {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: #4c5663;
      font-size: 13px;
      font-weight: 600;
    }
    .notice-list { margin: 0; padding: 0; list-style: none; }
    .notice-list a {
      display: flex;
      min-height: 54px;
      align-items: center;
      border-bottom: 1px solid #edf0f2;
      color: #353e48;
      font-size: 14px;
      letter-spacing: -.025em;
      transition: color .2s ease;
    }
    .notice-list a:hover,
    .notice-list a:focus-visible { color: var(--brand-blue); }
    .support-card {
      display: flex;
	  padding-top: 28px;
      min-width: 0;
      flex-direction: column;
    }
    .support-card-top {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 18px;
      align-items: center;
    }
    .support-icon {
      display: grid;
      width: 76px;
      height: 76px;
      place-items: center;
      border-radius: 50%;
      color: #2478c7;
      background: #eaf4ff;
    }
    .support-icon svg { width: 38px; height: 38px; }
    .support-copy h2 {
      margin: 0 0 8px;
      font-size: 20px;
      line-height: 1.25;
      letter-spacing: -.04em;
      font-weight: 700;
    }
    .support-copy p {
      margin: 0;
      color: #616b76;
      font-size: 13px;
      line-height: 1.55;
      letter-spacing: -.02em;
    }
    .support-action {
      display: grid;
      overflow: hidden;
      min-height: 34px;
      margin-top: 20px;
      grid-template-columns: 58px 1fr;
      border-radius: 999px;
      color: #596979;
      background: #edf1f4;
      font-size: 12px;
      text-align: center;
    }
    .support-action strong,
    .support-action span {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .support-action strong {
      color: #fff;
      background: #3e6e9d;
      font-weight: 600;
    }
    .support-action:hover span,
    .support-action:focus-visible span { color: var(--brand-blue); }

    .site-footer {
      padding: 58px 32px 42px;
      color: #a9b8cd;
      background: #1c2b41;

    }
    .footer-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
    }
    .footer-brand {
      display: inline-flex;
      align-items: baseline;
      color: #fff;
      font-size: 25px;
      letter-spacing: -.055em;
      font-weight: 800;
    }
    .footer-brand span {
      margin-left: 5px;
      color: #5bb4ff;
      font-weight: 500;
    }
    .footer-nav {
      display: flex;
      margin-top: 30px;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-nav a {
      color: #e7eef8;
      font-size: 14px;
      font-weight: 600;
    }
    .footer-nav a:hover,
    .footer-nav a:focus-visible { color: #75c5ff; }
    .footer-meta {
      display: flex;
      margin-top: 22px;
      flex-wrap: wrap;
      gap: 8px 22px;
      color: #9aabc0;
      font-size: 13px;
      line-height: 1.7;
    }
    .footer-meta strong { color: #bac8d8; font-weight: 600; }
    .footer-copy {
      margin: 30px 0 0;
      color: #71849c;
      font-size: 12px;
      letter-spacing: .02em;
    }
    .support-mini-nav {
      display: grid;
      grid-column: 2 / -1;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: -8px;
    }
    .support-mini-link {
      display: flex;
      min-width: 0;
      align-items: center;
      gap: 12px;
      color: #1d4f82;
      font-size: 14px;
      font-weight: 700;
    }
    .support-mini-icon {
      display: grid;
      width: 46px;
      height: 46px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 50%;
      color: #2478c7;
      background: #eaf4ff;
    }
    .support-mini-icon svg { width: 24px; height: 24px; }
    .support-mini-link small {
      display: block;
      margin-top: 4px;
      color: #7b8997;
      font-size: 12px;
      font-weight: 500;
    }
    .support-mini-link:hover,
    .support-mini-link:focus-visible { color: #1261aa; }
    :focus-visible {
      outline: 3px solid rgba(18,57,186,.25);
      outline-offset: 3px;
    }

    @media (max-width: 1120px) {
      .header-inner {
        grid-template-columns: 230px 1fr 260px;
        width: min(100% - 32px, 1060px);
      }
      .brand { width: 218px; height: 50px; }
      .main-nav { gap: 14px; }
      .main-nav a { font-size: 15px; }
      .quick-link { min-width: 58px; font-size: 11px; }
      .travel-products { width: min(940px, calc(100% - 96px)); }
      .shortcut-section { padding-inline: 28px; }
      .product-card { flex-basis: calc((100% - 24px) / 2); }
      .product-arrow.prev { left: -54px; }
      .product-arrow.next { right: -54px; }
    }

    @media (max-width: 1040px) {
      :root { --header-height: 72px; }
      .header-inner {
        display: flex;
        width: calc(100% - 32px);
        justify-content: space-between;
      }
      .brand { width: 205px; height: 47px; }
      .main-nav,
      .quick-nav { display: none; }
      .menu-button {
        display: grid;
        place-items: center;
      }
      .mobile-dim {
        position: fixed;
        z-index: 1090;
        inset: 0;
        display: block;
        visibility: hidden;
        border: 0;
        background: rgba(8, 17, 38, .42);
        opacity: 0;
        transition: opacity .28s ease, visibility .28s ease;
      }
      .mobile-panel {
        position: fixed;
        z-index: 1100;
        top: 0;
        right: 0;
        display: flex;
        width: min(86vw, 390px);
        height: 100dvh;
        padding: 21px 22px 30px;
        flex-direction: column;
        background: #fff;
        box-shadow: -20px 0 50px rgba(10, 25, 58, .15);
        transform: translateX(105%);
        transition: transform .3s cubic-bezier(.22,.8,.3,1);
      }
      .mobile-panel.open { transform: translateX(0); }
      .mobile-dim.open {
        visibility: visible;
        opacity: 1;
      }
      .mobile-head {
        display: flex;
        justify-content: flex-end;
        padding-bottom: 12px;
      }
      .close-button {
        display: grid;
        width: 42px;
        height: 42px;
        padding: 0;
        place-items: center;
        border: 0;
        border-radius: 12px;
        color: #303745;
        background: #f4f6f8;
        cursor: pointer;
      }
      .close-button svg { width: 22px; height: 22px; }
      .mobile-main {
        display: flex;
        flex-direction: column;
        border-top: 1px solid var(--line);
      }
      .mobile-main a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 62px;
        border-bottom: 1px solid var(--line);
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -.03em;
      }
      .mobile-main a::after {
        color: #a8afba;
        
        font-size: 26px;
        font-weight: 300;
      }
      .mobile-quick {
        display: grid;
        margin-top: 24px;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
      }
      .mobile-quick .quick-link {
        min-width: 0;
        min-height: 76px;
        background: #f5f7fb;
        font-size: 12px;
      }
      body.menu-open { overflow: hidden; }
      .page-canvas { padding-top: 18px; }
      .hero-slider {
        --slide-width: calc(100vw - 32px);
        height: min(112vw, 480px);
      }
      .hero-card {
        border-radius: 24px;
        box-shadow: 0 16px 38px rgba(11,35,61,.12);
      }
      .hero-copy {
        top: 34px;
        left: 28px;
        max-width: calc(100% - 56px);
      }
      .hero-copy h1 {
        margin-bottom: 12px;
        font-size: clamp(27px, 8vw, 38px);
        line-height: 1.28;
      }
      .hero-copy p {
        font-size: 15px;
        line-height: 1.65;
      }
      .slider-controls {
        right: 30px;
        bottom: 22px;
      }
      .slide-button {
        width: 40px;
        height: 40px;
      }
      .travel-products {
        width: calc(100% - 48px);
        margin-top: 82px;
      }
      .product-section { margin-bottom: 88px; }
      .product-section-title { margin-bottom: 34px; }
      .shortcut-section {
        width: 100%;
        margin-bottom: 0;
        padding: 58px 24px 66px;
      }
      .shortcut-title { margin-bottom: 24px; }
      .support-section { padding: 44px 24px 52px; }
      .support-inner {
        padding: 32px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
      }
      .notice-panel {
        padding: 0;
        grid-column: 1 / -1;
        border-right: 0;
      }
      .support-mini-nav { grid-column: 1 / -1; }
      .product-arrow.prev { left: -20px; }
      .product-arrow.next { right: -20px; }
    }

    @media (max-width: 640px) {
      .travel-products { width: 100%; }
      .product-section-title {
        padding: 0 24px;
        font-size: 27px;
      }
      .product-viewport { padding: 0 24px; }
      .product-card { flex-basis: calc(100vw - 48px); }
      .product-track { gap: 16px; }
      .product-photo { border-radius: 16px; }
      .product-info { padding-inline: 8px; }
      .product-arrow {
        top: 30%;
        width: 42px;
        height: 42px;
      }
      .product-arrow.prev { left: 4px; }
      .product-arrow.next { right: 4px; }
      .shortcut-section {
        width: 100%;
        padding: 48px 16px 54px;
      }
      .shortcut-grid { gap: 12px; }
      .shortcut-card { border-radius: 12px; }
      .shortcut-content {
        min-height: 0;
        padding: 16px 0 0;
      }
      .shortcut-content h3 { font-size: 16px; }
      .shortcut-content p { min-height: 32px; font-size: 12px; }
      .support-section { padding: 32px 16px 40px; }
      .support-inner {
        padding: 26px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
        border-radius: 16px;
      }
      .notice-panel { grid-column: auto; }
      .support-card + .support-card {
        padding-top: 28px;
        border-top: 1px solid #e8ecef;
      }
      .support-card-top {
        grid-template-columns: 66px 1fr;
        gap: 15px;
      }
      .support-icon { width: 66px; height: 66px; }
      .support-icon svg { width: 32px; height: 32px; }
      .support-mini-nav {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: -8px;
      }
      .support-mini-link { font-size: 14px; }
      .site-footer { padding: 44px 20px 32px; }
      .footer-nav { margin-top: 24px; gap: 16px 20px; }
      .footer-meta { margin-top: 18px; font-size: 12px; }
      .footer-copy { margin-top: 24px; }
    }

    @media (max-width: 380px) {
      .header-inner { width: calc(100% - 24px); }
      .brand { width: 181px; height: 42px; }
      .mobile-panel { padding-inline: 17px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .product-photo img,
      .shortcut-card { transition: none; }
    }

    .floating-quick {
      position: fixed;
      top: 50%;
      right: 22px;
      z-index: 1200;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transform: translateY(-50%);
    }
@media (max-width: 640px) {
  .floating-quick {
    display: none;
  }
}

    .floating-quick-link {
      width: 112px;
      min-height: 78px;
      padding: 13px 10px;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 15px;
      background: #ff5669;
      color: #fff;
      box-shadow: 0 8px 22px rgba(23,77,134,.22);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-align: center;
      text-decoration: none;
      font: inherit;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .floating-quick-link:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(60,30,38,.24); }
    .floating-quick-link:focus-visible { outline: 3px solid #8ed1ff; outline-offset: 2px; }
    .floating-quick-link svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
    .floating-quick-title { font-size: 15px; font-weight: 800; }
    .floating-quick-phone { font-size: 12px; font-weight: 700; }
    .floating-quick-hours { font-size: 10px; line-height: 1.35; opacity: .9; }
    .floating-quick-link.is-kakao { background: #3d1c20; color: #fff; border-color: #3d1c20; }
    .floating-quick-link.is-quote, .floating-quick-link.is-phone { background: #ff5669; }
    .floating-quick-link.floating-top { min-height: 94px; background: #fff; color: #273142; border-color: #edf0f4; box-shadow: 0 7px 22px rgba(32,45,64,.13); }
    .floating-quick-link.floating-top span { font-size: 12px; font-weight: 700; }
    @media (max-width: 640px) {
      .floating-quick { right: 10px; gap: 8px; }
      .floating-quick-link { width: 78px; min-height: 65px; border-radius: 12px; padding: 9px 5px; gap: 4px; }
      .floating-quick-link svg { width: 21px; height: 21px; }
      .floating-quick-title { font-size: 12px; }
      .floating-quick-phone { font-size: 10px; }
      .floating-quick-hours { display: none; }
      .floating-quick-link.floating-top { min-height: 52px; }
    }