@charset "utf-8";

/* =========================================
   1. 기본 리셋 및 핑크/민트 컬러 설정
========================================= */
:root {
    --sh-pink: #ff007f;
    --sh-mint: #00ffcc;
    --sh-bright-cyan: #00f0ff;
    --sh-base-dark: #070308;
    --sh-panel-bg: rgba(20, 10, 20, 0.7);
}

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

body, html {
    margin: 0; padding: 0; background-color: var(--sh-base-dark); color: #fff;
    font-family: 'Pretendard', sans-serif; overflow-x: hidden; word-break: keep-all;
}

/* =========================================
   2. 화려한 애니메이션 정의 (핑크/민트빛 글로우)
========================================= */
@keyframes sh-txt-bounce {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
@keyframes sh-glow-btm {
    0% { box-shadow: 0 0 10px rgba(255, 0, 127, 0.4); transform: translateX(-50%) scale(1); }
    50% { box-shadow: 0 0 35px 5px rgba(0, 255, 204, 0.8); transform: translateX(-50%) scale(1.05); }
    100% { box-shadow: 0 0 10px rgba(255, 0, 127, 0.4); transform: translateX(-50%) scale(1); }
}
@keyframes sh-border-pulse {
    0% { border-color: rgba(255, 0, 127, 0.3); box-shadow: 0 0 5px rgba(255, 0, 127, 0.2); }
    50% { border-color: rgba(0, 255, 204, 0.9); box-shadow: 0 0 20px rgba(0, 255, 204, 0.6); }
    100% { border-color: rgba(255, 0, 127, 0.3); box-shadow: 0 0 5px rgba(255, 0, 127, 0.2); }
}

/* =========================================
   3. 메인 히어로 영역
========================================= */
.sh-zone-wrapper { width: 100%; overflow-x: hidden; position: relative; z-index: 1;}

.sh-hero-section {
    position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; text-align: center;
    background: radial-gradient(circle at center, #260026 0%, var(--sh-base-dark) 60%);
}
.sh-hero-inner { z-index: 10; width: 100%; padding: 0 20px; }

.sh-brand-logo {
    display: block; margin: 0 auto 30px auto; max-width: 350px; width: 65%; height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 0, 127, 0.8)); mix-blend-mode: screen; 
}

.sh-hero-inner h1 {
    font-size: clamp(38px, 7.5vw, 85px); font-weight: 900; line-height: 1.2; margin-bottom: 25px; letter-spacing: -1.5px;
    background: linear-gradient(to bottom, #ffccf2 0%, var(--sh-mint) 40%, var(--sh-pink) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: sh-txt-bounce 3s ease-in-out infinite;
}

.sh-hero-subtitle {
    font-size: clamp(16px, 4vw, 22px); color: #ddd; font-weight: 500; margin-bottom: 40px; word-break: keep-all; letter-spacing: -0.5px;
}
.sh-divide-line {
    display: inline-block; margin: 0 15px; color: #555; font-size: 20px; vertical-align: middle;
}
.sh-hash-group {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.sh-hash-item {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 0, 127, 0.4); 
    color: #ff99d6; padding: 12px 22px; border-radius: 50px; font-weight: 500; font-size: clamp(13px, 3.5vw, 16px);
    transition: all 0.3s ease; letter-spacing: -0.5px;
}
.sh-hash-item:hover {
    border-color: var(--sh-mint); color: var(--sh-mint); background: rgba(0, 255, 204, 0.08);
}

@media (max-width: 768px) {
    .sh-hero-subtitle .sh-divide-line { display: none; }
    .sh-hero-subtitle { line-height: 1.6; }
    .sh-hero-subtitle span.sh-mob-break { display: block; margin-top: 5px; } 
}

/* =========================================
   4. 본문 공통 타이틀
========================================= */
.sh-section-title { 
    text-align: center; font-size: clamp(30px, 6vw, 42px); margin-bottom: 50px; font-weight: 900; color: #fff; 
    text-shadow: 0 0 20px rgba(255,0,127,0.3); position: relative;
}
.sh-section-title .sh-accent-color { 
    color: var(--sh-mint); text-shadow: 0 0 25px rgba(0,255,204,0.7); 
}
.sh-section-title::after {
    content: ''; display: block; width: 70px; height: 4px; background: linear-gradient(90deg, var(--sh-pink), var(--sh-mint)); 
    margin: 20px auto 0; border-radius: 2px; box-shadow: 0 0 15px var(--sh-mint);
}

/* =========================================
   5. 이미지 갤러리 섹션
========================================= */
.sh-grid-section { max-width: 1400px; margin: 0 auto; padding: 20px 20px 80px 20px; }
.sh-grid-box { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.sh-item-card {
    background: #0e0512; border: 2px solid rgba(255, 0, 127, 0.4); border-radius: 16px;
    padding-bottom: 25px; text-align: center; overflow: hidden; position: relative;
    transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    display: flex; flex-direction: column;
}

.sh-grid-section:nth-of-type(1) .sh-item-card.sh-premium-pick,
.sh-grid-section:nth-of-type(2) .sh-item-card { 
    animation: sh-border-pulse 2.5s infinite; 
}

.sh-item-card:hover { transform: translateY(-8px); border-color: var(--sh-mint); box-shadow: 0 15px 35px rgba(0, 255, 204, 0.3); }
.sh-thumb-wrap { width: 100%; aspect-ratio: 1 / 1; background: #111; overflow: hidden; border-bottom: 1px solid rgba(255,0,127,0.2); }
.sh-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sh-item-card:hover .sh-thumb-wrap img { transform: scale(1.08); }

.sh-info-txt { 
    margin: 15px 10px 20px 10px; line-height: 1.4; word-break: keep-all; 
    flex-grow: 1;
}
.sh-store-name { display: block; font-size: 20px; color: var(--sh-mint); font-weight: 700; margin-bottom: 4px; letter-spacing: 0.5px; text-shadow: 0 0 10px rgba(0,255,204,0.4); }
.sh-store-desc { display: block; font-size: 17px; color: #eee; font-weight: 500; }
.sh-premium-pick .sh-store-desc { color: #e6fffa; text-shadow: 0 0 8px rgba(0,255,204,0.3); font-weight: 500; }
.sh-check-mark { color: var(--sh-pink); font-size: 13px; margin-right: 4px; text-shadow: 0 0 10px var(--sh-pink); }

.sh-action-btn {
    display: inline-block; 
    background: #190a1f; 
    color: var(--sh-mint); 
    padding: 10px 15px; 
    width: 88%; 
    max-width: 220px;
    border-radius: 30px; 
    text-decoration: none; 
    font-size: clamp(13px, 3.2vw, 15px); 
    font-weight: 800;
    border: 2px solid var(--sh-pink);
    transition: all 0.3s ease;
    margin: 0 auto;
}
.sh-action-btn:hover { background: var(--sh-mint); color: #070308; border-color: var(--sh-mint); box-shadow: 0 0 15px var(--sh-mint); }

/* =========================================
   6. 텍스트 정보 섹션 공통 스타일
========================================= */
.sh-content-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.sh-content-head { margin-bottom: 40px; text-align: left; }
.sh-sub-heading { color: var(--sh-pink); font-size: 14px; font-weight: 800; letter-spacing: 1px; margin-bottom: 15px; display: block; text-transform: uppercase; text-shadow: 0 0 8px rgba(255,0,127,0.4); }
.sh-main-heading { font-size: clamp(28px, 5vw, 42px); font-weight: 900; color: #fff; margin: 0 0 15px 0; letter-spacing: -1px; }
.sh-desc-text { font-size: 16px; color: #aaa; line-height: 1.6; word-break: keep-all; max-width: 800px; }

/* 3단 카드 */
.sh-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sh-guide-card { background: #0e0512; border-radius: 20px; padding: 40px 30px; border: 1px solid rgba(255,0,127,0.2); transition: all 0.3s ease; }
.sh-guide-card:hover { border-color: var(--sh-mint); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,255,204,0.15); }
.sh-step-num { color: var(--sh-pink); font-size: 18px; font-weight: 800; margin-bottom: 20px; display: block; text-shadow: 0 0 8px rgba(255,0,127,0.4); }
.sh-step-tit { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 15px; letter-spacing: -0.5px; }
.sh-step-desc { font-size: 15px; color: #888; line-height: 1.6; word-break: keep-all; }

/* 2x2 카드 */
.sh-theme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sh-theme-card { background: #0e0512; border-radius: 20px; padding: 35px 30px; border: 1px solid rgba(255,0,127,0.2); transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; }
.sh-theme-card:hover { border-color: var(--sh-mint); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,255,204,0.15); }
.sh-theme-tit { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.5px;}
.sh-theme-desc { font-size: 15px; color: #888; line-height: 1.6; word-break: keep-all; }

/* =========================================
   7. 리얼 방문후기 섹션
========================================= */
.sh-review-section { max-width: 1200px; margin: 0 auto; padding: 20px 20px 80px 20px; }
.sh-review-box { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sh-review-item {
    background: #0e0512; border: 1px solid rgba(255,0,127,0.2); border-radius: 16px; padding: 30px 25px;
    transition: transform 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.3); display: flex; flex-direction: column;
}
.sh-review-item:hover { transform: translateY(-5px); border-color: var(--sh-mint); box-shadow: 0 0 15px rgba(0,255,204,0.2); }
.sh-star-rating { color: var(--sh-mint); font-size: 20px; margin-bottom: 15px; letter-spacing: 2px; text-shadow: 0 0 8px rgba(0,255,204,0.5); }
.sh-review-content { font-size: 16px; line-height: 1.6; color: #ddd; margin-bottom: 20px; font-weight: 500; flex-grow: 1; }
.sh-review-author { font-size: 14px; color: #888; text-align: right; font-weight: 700; }

/* =========================================
   8. 자주 묻는 질문(FAQ) 섹션
========================================= */
.sh-qna-section { max-width: 1200px; margin: 0 auto; padding: 20px 20px 100px 20px; }
.sh-qna-item { background: #0e0512; border: 1px solid rgba(255,0,127,0.2); border-radius: 12px; margin-bottom: 15px; overflow: hidden; transition: all 0.3s ease; }
.sh-qna-item[open] { border-color: var(--sh-mint); box-shadow: 0 0 15px rgba(0,255,204,0.2); }
.sh-qna-item summary {
    list-style: none; padding: 22px 25px; font-size: 17px; font-weight: 800; cursor: pointer; color: #fff;
    position: relative; display: flex; justify-content: space-between; align-items: center;
}
.sh-qna-item summary::-webkit-details-marker { display: none; }
.sh-qna-item summary::after { content: '+'; font-size: 26px; color: var(--sh-pink); transition: transform 0.3s ease; font-weight: 300; text-shadow: 0 0 8px rgba(255,0,127,0.5); }
.sh-qna-item[open] summary::after { transform: rotate(45deg); color: var(--sh-mint); text-shadow: 0 0 8px rgba(0,255,204,0.8); }
.sh-qna-answer {
    padding: 0 25px 25px 25px; font-size: 16px; line-height: 1.6; color: #bbb;
    border-top: 1px dashed rgba(255,0,127,0.2); margin-top: 5px; padding-top: 20px; font-weight: 500;
}
.sh-qna-answer b { color: var(--sh-mint); text-shadow: 0 0 6px rgba(0,255,204,0.4); }

/* =========================================
   9. 특징 & 추천 대상 섹션
========================================= */
.sh-feature-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 20px 120px 20px; }
.sh-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sh-feat-card {
    background: #0e0512; border: 1px solid rgba(255,0,127,0.2); border-radius: 16px; padding: 35px 25px;
    transition: transform 0.3s ease, border-color 0.3s;
}
.sh-feat-card:hover { transform: translateY(-5px); border-color: var(--sh-mint); box-shadow: 0 10px 30px rgba(0,255,204,0.2); }
.sh-feat-ico { color: var(--sh-pink); font-size: 22px; margin-bottom: 15px; display: block; font-style: normal; text-shadow: 0 0 10px rgba(255,0,127,0.6); }
.sh-feat-ico::before { content: '✦'; }
.sh-feat-tit { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; }
.sh-feat-desc { font-size: 14px; color: #999; line-height: 1.6; word-break: keep-all; }

/* =========================================
   10. 맞춤형 프리미엄 푸터
========================================= */
.sh-site-footer { 
    background: #030104; border-top: 1px solid rgba(255,0,127,0.2); padding: 60px 20px 120px 20px; 
    color: #777; font-size: 14px; line-height: 1.8; 
}
.sh-footer-inner { 
    max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; 
}
.sh-footer-logo { 
    color: var(--sh-mint); font-size: 22px; font-weight: 800; margin: 0 0 15px 0; letter-spacing: -1px; text-shadow: 0 0 10px rgba(0,255,204,0.4);
}
.sh-footer-info p { margin: 0 0 5px 0; word-break: keep-all; }
.sh-footer-info a { color: var(--sh-pink); text-decoration: none; transition: color 0.3s; font-weight: 600; }
.sh-footer-info a:hover { color: var(--sh-mint); }
.sh-footer-copy { 
    border-top: 1px solid rgba(255,0,127,0.1); margin-top: 20px; padding-top: 20px; 
    font-size: 13px; color: #444; text-align: left; 
}

/* 모바일/태블릿 공통 반응형 */
@media (max-width: 1024px) { 
    .sh-grid-box { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sh-guide-grid { grid-template-columns: 1fr; }
    .sh-theme-grid { grid-template-columns: 1fr; }
    .sh-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sh-review-box { grid-template-columns: 1fr; } 
    .sh-feat-grid { grid-template-columns: 1fr; }
    .sh-info-txt br { display: none; }
}
@media (max-width: 480px) {
    .sh-grid-box { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sh-info-txt .sh-store-name { font-size: 18px; }
    .sh-info-txt .sh-store-desc { font-size: 16px; }
    .sh-action-btn { padding: 8px 10px; font-size: 12px; }
    .sh-qna-item summary { font-size: 15px; padding: 18px; }
    .sh-qna-answer { font-size: 14px; padding: 0 18px 18px 18px; }
}
@media (min-width: 768px) {
    .sh-footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
    .sh-footer-copy { border-top: none; margin-top: 0; padding-top: 0; text-align: right; }
}

/* =========================================
   플로팅 버튼 (핑크/민트 네온 그라데이션)
========================================= */
.sh-floating-cta {
    position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 480px; z-index: 9999; 
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    padding: 18px 20px; color: #070308; 
    background: linear-gradient(45deg, var(--sh-mint), var(--sh-pink), #ff0055);
    background-size: 200% 200%;
    border-radius: 50px; text-decoration: none; border: 2px solid rgba(255, 255, 255, 0.9);
    animation: sh-glow-btm 1.5s infinite ease-in-out; 
    transition: background 0.3s;
}
.sh-floating-cta:hover { background: #fff; color: #000; border-color: var(--sh-mint); }
.sh-floating-cta .sh-cta-text { font-size: clamp(14px, 3.8vw, 17px); font-weight: 900; margin-bottom: 0; letter-spacing: -0.5px; }

/* =========================================
   카드 안의 버튼 반짝임 효과
========================================= */
@keyframes sh-btn-bounce {
    0%, 100% { 
        transform: translateY(0); 
        box-shadow: 0 0 5px rgba(255,0,127,0.4); 
        border-color: rgba(255,0,127,0.6); 
    }
    50% { 
        transform: translateY(-5px); 
        box-shadow: 0 0 15px rgba(0,255,204,0.8); 
        border-color: var(--sh-mint); 
    }
}

.sh-grid-section:nth-of-type(1) .sh-action-btn,
.sh-grid-section:nth-of-type(2) .sh-action-btn {
    animation: sh-btn-bounce 2s infinite ease-in-out; 
}

.sh-grid-section:nth-of-type(1) .sh-action-btn:hover,
.sh-grid-section:nth-of-type(2) .sh-action-btn:hover { 
    background: var(--sh-mint); 
    color: #070308; 
    transform: scale(1.05); 
    animation: none; 
}