    * { box-sizing: border-box; }

    body {
      margin: 0;
      padding: 0;
      font-family: -apple-system, BlinkMacSystemFont, "맑은 고딕", "Malgun Gothic", sans-serif;
      background-color: #E5DFD5;
      color: #22252a;
    }

    .app {
      max-width: 480px;
      margin: 0 auto;
      min-height: 100vh;
      padding: 12px 12px 24px;
    }

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

    .back-btn {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: none;
      background: rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
    }

    .page-title {
      font-size: 18px;
      font-weight: 700;
    }

    .main-card {
      background: #f9f2e3;
      border-radius: 20px;
      padding: 16px 16px 14px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      text-align: center;
      margin-bottom: 14px;
    }

    .main-card-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 8px;
      border-radius: 18px;

      background: transparent;

      display: flex;
      align-items: center;
      justify-content: center;

      /* 이미지 잘리지 않게 */
      overflow: visible;
    }

    .main-card-icon img {
      border-radius: 14px;
      width: 70px; 
      height: 70px;
      object-fit: contain;
      display: block;
    }

    .detail-name {
      font-size: 18px;
      font-weight: 700;
      margin: 4px 0;
    }

    .detail-region {
      font-size: 13px;
      color: #4b5563;
      margin-bottom: 4px;
    }

    .detail-address {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 10px;
    }

    .detail-main-actions {
      display: flex;
      gap: 8px;
      margin-top: 4px;
    }

    .btn-main {
      flex: 1;
      border-radius: 999px;
      border: none;
      padding: 8px 0;
      font-size: 13px;
      cursor: pointer;
    }

    .btn-call {
      background: #2563eb;
      color: #ffffff;
      font-weight: 600;
    }

    .btn-share {
      background: rgba(0,0,0,0.04);
      color: #111827;
      font-weight: 500;
    }

    .info-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .info-box {
      flex: 1 1 calc(50% - 4px);
      background: #f6efe1;
      border-radius: 14px;
      padding: 8px 10px;
      font-size: 12px;
    }

    .info-label {
      font-size: 11px;
      color: #6b7280;
      margin-bottom: 2px;
    }

    .info-value {
      font-size: 13px;
      font-weight: 600;
    }

    .section {
      background: #f9f2e3;
      border-radius: 18px;
      padding: 12px 12px 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 14px;
      font-weight: 700;
      margin: 0 0 6px;
    }

    .section-desc {
      font-size: 12px;
      color: #4b5563;
      margin: 0 0 6px;
    }

    .map-wrapper {
      width: 100%;
      border-radius: 14px;
      background: #e3d6c0;
      padding: 8px;
    }

    .map-tab {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
    }

    .map-tab-btn {
      flex: 1;
      border-radius: 999px;
      border: none;
      padding: 6px 0;
      font-size: 12px;
      cursor: pointer;
      background: rgba(0,0,0,0.06);
      color: #111827;
    }

    .map-tab-btn.active {
      background: #4A4A72;
      color: #ffffff;
      font-weight: 600;
    }

    .map-box {
      width: 100%;
      height: 260px;
      min-height: 220px;
      border-radius: 10px;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    }

    #kakaoMap,
    #naverMap {
      width: 100%;
      height: 100%;
    }

    .guide-list {
      list-style: none;
      padding: 0;
      margin: 6px 0 0;
      font-size: 12px;
      color: #4b5563;
    }

    .guide-list li {
      margin-bottom: 4px;
    }

    .notice-text {
      font-size: 11px;
      color: #6b7280;
      margin-top: 4px;
      line-height: 1.4;
    }