/* =========================================================
   ShopPlatform — 글로벌 + 랜딩 페이지 스타일
   ========================================================= */

:root {
    --sp-primary:   #2563eb;
    --sp-primary-d: #1d4ed8;
    --sp-accent:    #f59e0b;
    --sp-bg:        #f8fafc;
    --sp-dark:      #0f172a;
    --sp-gray:      #64748b;
    --sp-border:    #e2e8f0;
    --sp-radius:    14px;
    --sp-shadow:    0 4px 24px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; }

/* 전역 포커스 아웃라인 — 폼 요소 외 제거 (접근성: 키보드 탐색 시만 표시) */
*:focus { outline: none; }
input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible {
    outline: 2px solid var(--sp-primary);
    outline-offset: 2px;
}
/* hero 내 링크 outline 명시적 제거 */
.sp-hero-wrapper a:focus,
.sp-hero-inner a:focus { outline: none; }

body {
    margin: 0;
    background: var(--sp-bg);
    font-family: 'Pretendard', 'Segoe UI', system-ui, sans-serif;
    color: var(--sp-dark);
    line-height: 1.6;
}

a { color: var(--sp-primary); }

/* ── Hero ──────────────────────────────────────────────── */
.sp-hero-wrapper {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%, #fefce8 100%);
    width: 100%;
}

.sp-hero {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 72px 32px 80px;
}

.sp-hero-inner { max-width: 520px; }

.sp-hero-badge {
    display: inline-block;
    background: #dbeafe;
    color: var(--sp-primary);
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
    letter-spacing: .03em;
}

.sp-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
}

.sp-accent { color: var(--sp-primary); }

.sp-hero-sub {
    font-size: 1.05rem;
    color: var(--sp-gray);
    margin-bottom: 36px;
}

.sp-hero-cta { display: flex; flex-direction: column; gap: 12px; }

.sp-cta-note {
    font-size: .9rem;
    color: var(--sp-gray);
}
.sp-cta-link {
    color: var(--sp-primary);
    font-weight: 600;
    text-decoration: none;
}
.sp-cta-link:hover { text-decoration: underline; }

/* ── 목업 ──────────────────────────────────────────────── */
.sp-hero-visual { flex-shrink: 0; }

.sp-mockup {
    width: 320px;
    border-radius: var(--sp-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37,99,235,.18);
    background: #fff;
    border: 1px solid var(--sp-border);
}

.sp-mockup-bar {
    background: #f1f5f9;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--sp-border);
}
.sp-mockup-bar span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    display: inline-block;
}
.sp-mockup-url {
    margin-left: 10px;
    font-size: .75rem;
    color: var(--sp-gray);
    background: #fff;
    padding: 2px 10px;
    border-radius: 6px;
    border: 1px solid var(--sp-border);
    flex: 1;
}
.sp-mockup-url em { color: var(--sp-primary); font-style: normal; font-weight: 600; }

.sp-mockup-body { padding: 18px; }
.sp-mock-header {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--sp-dark);
}
.sp-mock-products { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.sp-mock-card {
    height: 70px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    animation: shimmer 2s infinite alternate;
}
.sp-mock-card:nth-child(2) { animation-delay: .3s; }
.sp-mock-card:nth-child(3) { animation-delay: .6s; }

@keyframes shimmer {
    from { opacity: .6; }
    to   { opacity: 1; }
}

/* ── 특징 ──────────────────────────────────────────────── */
.sp-features {
    padding: 80px 40px;
    background: #fff;
    border-top: 1px solid var(--sp-border);
}
.sp-features-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
}
.sp-feature-item { text-align: center; }
.sp-feature-icon { font-size: 2.4rem; margin-bottom: 14px; }
.sp-feature-item h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 10px; }
.sp-feature-item p  { font-size: .92rem; color: var(--sp-gray); margin: 0; }

/* ── 사용법 ────────────────────────────────────────────── */
.sp-how {
    padding: 80px 40px;
    background: #f8fafc;
    border-top: 1px solid var(--sp-border);
}
.sp-how-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.sp-how-inner h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 48px; }

.sp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.sp-step { max-width: 220px; text-align: center; }
.sp-step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sp-primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.sp-step h4 { font-size: .95rem; font-weight: 700; margin: 0 0 8px; }
.sp-step p  { font-size: .86rem; color: var(--sp-gray); margin: 0; }
.sp-step-arrow { font-size: 1.5rem; color: #cbd5e1; padding-top: 14px; align-self: flex-start; }

/* ── 푸터 ──────────────────────────────────────────────── */
.sp-footer {
    text-align: center;
    padding: 32px 20px;
    font-size: .85rem;
    color: var(--sp-gray);
    border-top: 1px solid var(--sp-border);
    background: #fff;
}
.sp-footer a { color: var(--sp-gray); }

/* ── 쇼핑몰 공통 ───────────────────────────────────────── */
.shop-header {
    background: #fff;
    border-bottom: 1px solid var(--sp-border);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.product-card {
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    box-shadow: var(--sp-shadow);
    border: none;
    border-radius: var(--sp-radius);
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.nav-tabs .nav-link { color: #374151; }
.nav-tabs .nav-link.active { font-weight: 600; }

/* ── 운영 중인 쇼핑몰 섹션 ──────────────────────────────── */
.sp-shops {
    background: #fff;
    padding: 80px 40px;
    border-top: 1px solid var(--sp-border);
}
.sp-shops-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.sp-shops-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .4rem;
}
.sp-shops-sub {
    color: var(--sp-gray);
    margin-bottom: 2rem;
}
.sp-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.sp-shop-card {
    display: flex;
    flex-direction: column;
    background: var(--sp-bg);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .15s, box-shadow .15s;
    box-shadow: var(--sp-shadow);
}
.sp-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    color: inherit;
}
.sp-shop-card-thumb {
    height: 160px;
    background: linear-gradient(135deg, #e0e7ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sp-shop-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sp-shop-card-placeholder {
    font-size: 3rem;
}
.sp-shop-card-body {
    padding: 16px 20px 20px;
}
.sp-shop-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px;
}
.sp-shop-card-desc {
    font-size: .875rem;
    color: var(--sp-gray);
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sp-shop-card-link {
    font-size: .78rem;
    color: var(--sp-primary);
    word-break: break-all;
}

/* ── 반응형 ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sp-hero { flex-direction: column; padding: 60px 24px 40px; gap: 40px; }
    .sp-hero-visual { width: 100%; display: flex; justify-content: center; }
    .sp-mockup { width: 280px; }
    .sp-steps { flex-direction: column; align-items: center; }
    .sp-step-arrow { transform: rotate(90deg); padding: 0; }
    .sp-features, .sp-how { padding: 60px 24px; }
}

/* ── ShopStorefront (ss-*) ────────────────────────────────── */

/* 고정 헤더 */
.ss-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--sp-border);
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.ss-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.ss-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 800;
    color: var(--sp-dark);
    flex-shrink: 0;
}
.ss-brand:hover { color: var(--sp-primary); text-decoration: none; }
.ss-brand-logo {
    height: 32px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}
.ss-brand-name { font-size: 1.05rem; }
.ss-nav {
    display: flex;
    gap: 24px;
    flex: 1;
}
.ss-nav a {
    color: #374151;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
}
.ss-nav a:hover, .ss-nav a.active { color: var(--sp-primary); }
.ss-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.ss-user-name { font-size: .85rem; color: var(--sp-gray); }
.ss-cart-btn {
    position: relative;
    font-size: 1.3rem;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background .15s;
}
.ss-cart-btn:hover { background: #f1f5f9; }
.ss-cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* 헤더 아래 본문 여백 */
.ss-body { padding-top: 60px; }

/* 히어로 배너 */
.ss-hero {
    min-height: 340px;
    background: linear-gradient(135deg, #1e3a8a 0%, #6d28d9 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.ss-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.38);
}
.ss-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 60px 24px;
    max-width: 720px;
}
.ss-hero-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 12px;
}
.ss-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: .5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.ss-hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    margin-bottom: .4rem;
    opacity: .95;
}
.ss-hero-sub {
    font-size: 1rem;
    opacity: .85;
    margin-bottom: 1.6rem;
}
.ss-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.ss-hero-cta .btn-outline-light {
    border-color: rgba(255,255,255,.7);
    color: #fff;
}
.ss-hero-cta .btn-outline-light:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}

/* 섹션 공통 */
.ss-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
}

/* 추천상품 섹션 */
.ss-featured {
    padding: 64px 24px;
    background: #fff;
}

/* 전체상품 페이지 */
.ss-products-page {
    padding: 40px 24px 64px;
    background: #f8fafc;
    min-height: calc(100vh - 60px - 80px);
}
.ss-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ss-search { flex: 1; min-width: 200px; }
.ss-sort { width: 180px; flex-shrink: 0; }

/* 상품 그리드 */
.ss-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.ss-product-card {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    overflow: hidden;
    box-shadow: var(--sp-shadow);
    transition: transform .15s, box-shadow .15s;
    display: flex;
    flex-direction: column;
}
.ss-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.ss-product-img-wrap {
    display: block;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
    text-decoration: none;
}
.ss-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s;
}
.ss-product-card:hover .ss-product-img-wrap img { transform: scale(1.04); }
.ss-product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #94a3b8;
}
.ss-sold-out {
    position: absolute;
    top: 8px; right: 8px;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.ss-product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ss-product-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--sp-dark);
}
.ss-product-desc {
    font-size: .82rem;
    color: var(--sp-gray);
    margin-bottom: 8px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ss-product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sp-primary);
    margin-bottom: 12px;
}
.ss-product-actions {
    display: flex;
    gap: 8px;
}

/* 푸터 */
.ss-footer {
    background: #f1f5f9;
    border-top: 1px solid var(--sp-border);
    text-align: center;
    padding: 24px;
    color: var(--sp-gray);
    font-size: .875rem;
}
.ss-footer a { color: var(--sp-gray); }

/* 반응형 */
@media (max-width: 640px) {
    .ss-nav { display: none; }
    .ss-hero-title { font-size: 1.8rem; }
    .ss-hero-cta { flex-direction: column; align-items: center; }
    .ss-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ss-filters { flex-direction: column; }
    .ss-sort { width: 100%; }
}
@media (max-width: 400px) {
    .ss-product-grid { grid-template-columns: 1fr; }
}

/* ── 사업자 정보 푸터 (ss-footer-biz) ─────────────────────── */
.ss-footer-biz {
    background: #1e293b;
    color: #94a3b8;
    font-size: .82rem;
    text-align: center;
    padding: 32px 24px 24px;
    line-height: 1.9;
}
.ss-footer-info p {
    margin: 0 0 2px;
}
.ss-footer-sep {
    margin: 0 6px;
    opacity: .4;
}
.ss-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 14px 0 10px;
}
.ss-footer-links a {
    color: #94a3b8;
    text-decoration: underline;
    font-size: .82rem;
}
.ss-footer-links a:hover { color: #e2e8f0; }
.ss-footer-tax {
    color: #64748b;
    font-size: .78rem;
    margin: 4px 0 0;
}
.ss-footer-copy {
    margin-top: 12px;
    color: #64748b;
    font-size: .8rem;
}
.ss-footer-copy a { color: #64748b; }
.ss-footer-biz a { color: #94a3b8; }


/* ── 상품 상세 페이지 ─────────────────────────────────── */
.ss-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 768px) {
    .ss-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.ss-detail-main-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.ss-detail-img-placeholder {
    width: 100%;
    height: 320px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.ss-detail-title { font-size: 1.6rem; font-weight: 700; margin-bottom: .5rem; }
.ss-detail-desc  { color: #64748b; margin-bottom: .75rem; }
.ss-detail-stock-ok  { color: #16a34a; font-weight: 600; font-size: .9rem; }
.ss-detail-stock-out { color: #dc2626; font-weight: 600; font-size: .9rem; }
.ss-detail-divider { border-top: 1px solid #e2e8f0; margin: 1rem 0; }
.ss-detail-price-area { margin-bottom: 1rem; }
.ss-detail-price { font-size: 1.75rem; font-weight: 800; color: #1e293b; }
.ss-detail-qty { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; }
.ss-detail-qty-label { font-weight: 600; min-width: 40px; }
.ss-qty-ctrl { display: flex; align-items: center; border: 1px solid #cbd5e1; border-radius: 8px; overflow: hidden; }
.ss-qty-btn { background: #f8fafc; border: none; padding: .35rem .75rem; font-size: 1.1rem; cursor: pointer; }
.ss-qty-btn:hover { background: #e2e8f0; }
.ss-qty-val { padding: .35rem .9rem; font-weight: 600; min-width: 36px; text-align: center; }
.ss-detail-total { font-size: 1rem; color: #374151; margin-bottom: .5rem; }
.ss-detail-btns { display: flex; gap: .5rem; flex-wrap: wrap; }
.ss-detail-btns .btn { flex: 1; min-width: 100px; }
.ss-detail-back { display: inline-block; margin-top: 1.25rem; color: #64748b; text-decoration: none; font-size: .9rem; }
.ss-detail-back:hover { color: var(--sp-primary); }
.ss-detail-video-wrap { position: relative; border-radius: 12px; overflow: hidden; background: #000; }
.ss-detail-video { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.ss-detail-html-wrap { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.ss-detail-html-inner { padding: 1.5rem 2rem; font-size: .97rem; line-height: 1.8; color: #374151; }
.ss-detail-html-inner img { max-width: 100%; border-radius: 8px; margin: .5rem 0; }
.ss-detail-html-inner ul { padding-left: 1.5rem; }
.ss-detail-html-inner h2,.ss-detail-html-inner h3 { margin-top: 1.5rem; font-weight: 700; }
.ss-policy-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.ss-policy-accordion { border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; }
.ss-policy-item + .ss-policy-item { border-top: 1px solid #e2e8f0; }
.ss-policy-hd { width: 100%; background: #f8fafc; border: none; padding: .9rem 1.25rem; display: flex; justify-content: space-between; align-items: center; font-weight: 600; cursor: pointer; text-align: left; }
.ss-policy-hd:hover { background: #f1f5f9; }
.ss-policy-arrow { color: #94a3b8; font-size: .85rem; }
.ss-policy-body { padding: 1rem 1.5rem; font-size: .93rem; line-height: 1.8; color: #374151; background: #fff; }
.ss-policy-body ul { padding-left: 1.5rem; }
.ss-product-name-link { color: inherit; text-decoration: none; }
.ss-product-name-link:hover { color: var(--sp-primary); }

/* 상세 이미지 갤러리 */
.ss-detail-img-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ss-detail-gallery-img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    object-fit: contain;
    max-height: 800px;
}


/* ── 정책 페이지 ── */
.policy-content { line-height: 1.8; color: #333; }
.policy-content h1, .policy-content h2, .policy-content h3 { font-weight: 700; margin-top: 1.5rem; margin-bottom: .5rem; }
.policy-content h1 { font-size: 1.4rem; }
.policy-content h2 { font-size: 1.2rem; }
.policy-content h3 { font-size: 1.05rem; }
.policy-content p  { margin-bottom: .75rem; }
.policy-content ul, .policy-content ol { padding-left: 1.5rem; margin-bottom: .75rem; }
.policy-content li { margin-bottom: .25rem; }
.policy-content strong { font-weight: 600; }
.policy-content pre  { background: #f5f5f5; padding: 1rem; border-radius: 6px; overflow-x: auto; }
.policy-content code { background: #f0f0f0; padding: 2px 5px; border-radius: 3px; font-size: .875em; }

/* ── 신청 CTA 버튼 ── */
.sp-cta-btn { font-size: 1.05rem; padding: .65rem 1.8rem; border-radius: 10px; }
.sp-hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; margin-top: 1.5rem; }
.sp-cta-note { font-size: .9rem; color: #666; }

/* ── 서비스 안내 섹션 ── */
.sp-notice { background: #f8f9ff; padding: 3.5rem 1rem; }
.sp-notice-inner { max-width: 900px; margin: 0 auto; }
.sp-notice-title { text-align: center; font-size: 1.3rem; font-weight: 700; margin-bottom: 2rem; color: #333; }
.sp-notice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.sp-notice-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border-radius: 12px; padding: 1.25rem; box-shadow: 0 1px 6px rgba(0,0,0,.06); }
.sp-notice-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.sp-notice-item strong { font-size: .95rem; color: #222; display: block; margin-bottom: .35rem; }
.sp-notice-item p { font-size: .85rem; color: #666; margin: 0; line-height: 1.6; }
.sp-notice-item a { color: #2563eb; }

/* ── 개설 신청 페이지 ── */
.sp-apply-wrap { min-height: 100vh; background: linear-gradient(135deg, #f0f4ff 0%, #fff 60%); display: flex; align-items: flex-start; justify-content: center; padding: 3rem 1rem 4rem; }
.sp-apply-box { width: 100%; max-width: 540px; background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.08); padding: 2.5rem 2rem; }
.sp-apply-header { margin-bottom: 1.5rem; }
.sp-apply-header h1 { font-size: 1.6rem; font-weight: 800; }
.sp-apply-alert { background: #eff6ff; border-left: 4px solid #3b82f6; border-radius: 8px; padding: 1rem 1.1rem; margin-bottom: 1.75rem; font-size: .875rem; line-height: 2; color: #1e3a5f; }
.sp-form-group { margin-bottom: 1.25rem; }
.sp-form-group label { font-weight: 600; font-size: .9rem; margin-bottom: .35rem; display: block; }
.sp-slug-input-wrap { display: flex; align-items: center; border: 1px solid #ced4da; border-radius: 8px; overflow: hidden; }
.sp-slug-prefix { background: #f3f4f6; padding: .45rem .75rem; font-size: .85rem; color: #555; white-space: nowrap; border-right: 1px solid #ced4da; }
.sp-slug-field { border: none !important; border-radius: 0 !important; box-shadow: none !important; }
.sp-apply-terms { font-size: .875rem; color: #444; margin-top: 1rem; }
.sp-apply-terms input { margin-right: .3rem; }
.sp-apply-footer-note { text-align: center; font-size: .85rem; color: #888; margin-top: 1.25rem; }
.sp-apply-done { text-align: center; padding: 1.5rem 0; }
.sp-apply-done-icon { font-size: 3.5rem; margin-bottom: .75rem; }
.sp-apply-done h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.sp-apply-url-preview { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: .75rem 1rem; margin-top: 1rem; display: flex; flex-direction: column; gap: .2rem; font-size: .9rem; }
.sp-apply-notice { background: #fffbeb; border-left: 4px solid #f59e0b; border-radius: 8px; padding: .85rem 1rem; font-size: .85rem; line-height: 2; text-align: left; }
