/* v7/adv/point.css - 포인트 광고 안내 페이지 스타일 */

/* 페이지 헤더 */
.point-page-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.point-header-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.point-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--wa-color-brand-600, #2563eb);
    font-size: 1.2rem;
}

.point-hot-badge {
    position: absolute;
    top: -2px;
    right: -8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: #dc2626;
    padding: 2px 6px;
    border-radius: 20px;
    line-height: 1;
}

.point-page-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin: 0.25rem 0 0.25rem;
}

.point-page-desc {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* 구매 안내 카드 */
.point-purchase-section {
    margin-bottom: 2rem;
}

.point-info-card {
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.point-info-card-accent {
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #00b894, #fdcb6e);
}

.point-info-card-body {
    padding: 1.25rem;
}

.point-info-card-body h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.point-info-card-body h2 i {
    color: var(--wa-color-brand-600, #2563eb);
    font-size: 1rem;
}

/* 구매 안내 그리드 */
.point-purchase-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .point-purchase-info-grid {
        grid-template-columns: 1fr;
    }
}

.point-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.5rem;
}

.point-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.point-info-icon--primary {
    background: #eff6ff;
    color: var(--wa-color-brand-600, #2563eb);
}

.point-info-icon--success {
    background: #f0fdf4;
    color: #16a34a;
}

.point-info-icon--warning {
    background: #fffbeb;
    color: #d97706;
}

.point-info-text h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 0.25rem;
}

.point-info-text p {
    font-size: 0.825rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* 버튼 공통 (입금 정보 스타일은 banner.css의 .adv-payment-* 공용 클래스 사용) */
.point-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}

.point-btn:hover {
    opacity: 0.85;
}

.point-btn--warning {
    background: #f59e0b;
    color: #fff;
}

.point-btn--brand {
    background: var(--wa-color-brand-600, #2563eb);
    color: #fff;
}

/* 마케팅 메시지 */
.point-marketing-section {
    margin: 2rem 0 1.5rem;
}

.point-marketing-box {
    text-align: center;
    background: #eff6ff;
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
}

.point-marketing-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.point-marketing-header i {
    color: #1d4ed8;
    font-size: 1.05rem;
}

.point-marketing-header h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d4ed8;
    margin: 0;
}

.point-marketing-desc {
    font-size: 0.9rem;
    color: #1e40af;
    line-height: 1.5;
    margin: 0 0 0.75rem;
}

.point-marketing-box .point-btn--brand {
    margin-top: 0.25rem;
}
