/**
 * 마이페이지 대시보드 스타일 (토스 디자인 시스템)
 *
 * @package Terra_TossPay
 */

/* =============================================================================
   대시보드 본문 텍스트
   ============================================================================= */
.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 15px;
    color: #4E5968;
    line-height: 1.8;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.woocommerce-account .woocommerce-MyAccount-content strong {
    color: #0064FF;
    font-weight: 600;
}

/* =============================================================================
   대시보드 링크
   ============================================================================= */
.woocommerce-account .woocommerce-MyAccount-content a {
    color: #0064FF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.15s ease;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* =============================================================================
   대시보드 환영 메시지
   ============================================================================= */
.woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
    font-size: 16px;
    color: #191F28;
    padding: 24px 28px;
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F3FF 100%);
    border-radius: 16px;
    margin-bottom: 32px;
    border: 1px solid #D4E8FF;
}

/* =============================================================================
   대시보드 퀵 액션 그리드
   ============================================================================= */
.dashboard-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.dashboard-quick-action {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #FAFBFC;
    border: 1px solid #E5E8EB;
    border-radius: 16px;
    text-decoration: none;
    color: #191F28;
    transition: all 0.2s ease;
}

.dashboard-quick-action:hover {
    background: #F0F7FF;
    border-color: #B8D4FF;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 100, 255, 0.1);
}

.dashboard-quick-action-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0064FF 0%, #0052D4 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-quick-action-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.dashboard-quick-action-text {
    flex: 1;
}

.dashboard-quick-action-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #191F28;
    letter-spacing: -0.02em;
}

.dashboard-quick-action-desc {
    font-size: 14px;
    color: #6B7684;
    line-height: 1.5;
}

/* =============================================================================
   대시보드 인포 카드
   ============================================================================= */
.dashboard-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.dashboard-info-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #E5E8EB;
    border-radius: 16px;
}

.dashboard-info-card-label {
    font-size: 13px;
    color: #6B7684;
    font-weight: 500;
    margin-bottom: 8px;
}

.dashboard-info-card-value {
    font-size: 28px;
    font-weight: 700;
    color: #191F28;
    letter-spacing: -0.02em;
}

.dashboard-info-card-value.highlight {
    color: #0064FF;
}

/* =============================================================================
   반응형: 모바일
   ============================================================================= */
@media (max-width: 600px) {
    .woocommerce-account .woocommerce-MyAccount-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .woocommerce-account .woocommerce-MyAccount-content > p:first-of-type {
        font-size: 15px;
        padding: 20px;
        border-radius: 14px;
        margin-bottom: 24px;
    }

    .dashboard-quick-actions {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }

    .dashboard-quick-action {
        padding: 20px;
        border-radius: 14px;
        gap: 14px;
    }

    .dashboard-quick-action-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .dashboard-quick-action-icon svg {
        width: 26px;
        height: 26px;
    }

    .dashboard-quick-action-title {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .dashboard-quick-action-desc {
        font-size: 13px;
    }

    .dashboard-info-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dashboard-info-card {
        padding: 18px;
        border-radius: 14px;
    }

    .dashboard-info-card-label {
        font-size: 12px;
    }

    .dashboard-info-card-value {
        font-size: 24px;
    }
}
